2020-08-02 22:26:16 +00:00
|
|
|
$accent-color: #1b4ad6;
|
|
|
|
|
2020-08-02 21:46:18 +00:00
|
|
|
body {
|
|
|
|
font-family: -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
|
2020-07-30 00:49:51 +00:00
|
|
|
}
|
2020-08-02 21:46:18 +00:00
|
|
|
|
|
|
|
.container {
|
|
|
|
max-width: 1280px;
|
|
|
|
margin: 0 auto;
|
2020-07-30 00:49:51 +00:00
|
|
|
}
|
2020-08-02 21:46:18 +00:00
|
|
|
|
|
|
|
header nav {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
|
|
ul {
|
|
|
|
padding-left: 0;
|
|
|
|
|
|
|
|
li {
|
|
|
|
list-style: none;
|
|
|
|
display: inline;
|
|
|
|
margin-right: 15px;
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-07-30 00:49:51 +00:00
|
|
|
}
|
2020-08-02 21:46:18 +00:00
|
|
|
|
2020-08-02 22:26:16 +00:00
|
|
|
table {
|
|
|
|
width: 100%;
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
form {
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
|
|
|
label, input:not([type=file]), textarea {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
input, textarea {
|
|
|
|
font-size: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
input:not([type=file]), textarea {
|
|
|
|
width: 100%;
|
|
|
|
padding: 2px;
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
border: 1px solid lightgray;
|
|
|
|
border-radius: 5px;
|
|
|
|
}
|
|
|
|
|
2020-08-02 22:35:14 +00:00
|
|
|
input[type=radio], input[type=checkbox] {
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
2020-08-02 22:26:16 +00:00
|
|
|
textarea {
|
|
|
|
min-height: 200px;
|
|
|
|
max-width: 100%;
|
|
|
|
min-width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
button, input[type=submit] {
|
|
|
|
padding: 0.25rem 1.5rem;
|
|
|
|
border: 1px solid darken($accent-color, 10%);
|
|
|
|
border-radius: 5px;
|
|
|
|
background-color: $accent-color;
|
|
|
|
color: white;
|
|
|
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
border-color: darken($accent-color, 25%);
|
|
|
|
background-color: darken($accent-color, 10%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: $accent-color;
|
|
|
|
}
|
|
|
|
|
2021-04-11 02:05:06 +00:00
|
|
|
.page-upload {
|
|
|
|
img, video {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
audio {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|