build rework

This commit is contained in:
Robin Appelman 2023-04-09 16:32:30 +02:00
commit dc80d715a6
18 changed files with 1681 additions and 115 deletions

12
style/dropzone.css Normal file
View file

@ -0,0 +1,12 @@
.dropzone {
width: 100%;
height: 300px;
border: 3px dashed #ccc;
margin: 20px auto 20px;
border-radius: 20px;
font-size: 25px;
cursor: pointer;
text-align: center;
vertical-align: middle;
line-height: 300px;
}

31
style/pages/upload.css Normal file
View file

@ -0,0 +1,31 @@
.upload-page .teams {
& input, & input:focus {
background: transparent none;
border: none;
outline: none;
text-align: inherit;
font-family: Arial, sans-serif;
font-size: 45px;
font-weight: bold;
float: inherit;
color: #f4f4f4;
&::placeholder {
opacity: 0.5;
color: #f4f4f4;
}
}
& .blue input {
text-align: right;
}
}
.demo-info {
font-weight: bold;
padding-bottom: 15px;
}
.demo-info span.time {
float: right;
}

View file

@ -16,6 +16,11 @@
color: var(--text-primary);
background-color: #E6E6E6;
text-decoration: none;
&[disabled] {
opacity: 0.5;
cursor: not-allowed;
}
}
.button:hover {

View file

@ -2,9 +2,11 @@
@import 'footer.css';
@import 'pure.css';
@import 'section.css';
@import 'dropzone.css';
@import 'pages/index.css';
@import 'pages/demo.css';
@import 'pages/upload.css';
:root {
--primary-color: white;
@ -143,8 +145,6 @@ pre {
display: block;
padding: 10px 10px 10px 19px;
margin: 20px 0 20px;
font-size: 13px;
line-height: 1.42857143;
color: var(--text-primary);
word-break: break-all;
word-wrap: break-word;
@ -177,8 +177,8 @@ pre {
}
kbd, pre, samp {
font-family: monospace, monospace;
font-size: 1em;
font-family: monospace;
font-size: 16px;
}
.noscript {