static
This commit is contained in:
28
static/scss/style.scss
Normal file
28
static/scss/style.scss
Normal file
@ -0,0 +1,28 @@
|
||||
$primary-color: #3498db;
|
||||
$text-color: #333;
|
||||
|
||||
body {
|
||||
font-family: Arial, sans-serif;
|
||||
color: $text-color;
|
||||
background-color: lighten($primary-color, 40%);
|
||||
}
|
||||
|
||||
h2 {
|
||||
color: $primary-color;
|
||||
}
|
||||
|
||||
form {
|
||||
input[type="text"],
|
||||
input[type="file"],
|
||||
input[type="submit"] {
|
||||
margin: 10px 0;
|
||||
padding: 10px;
|
||||
border: 1px solid darken($primary-color, 10%);
|
||||
border-radius: 5px;
|
||||
}
|
||||
}
|
||||
|
||||
p {
|
||||
margin: 5px 0;
|
||||
font-weight: bold;
|
||||
}
|
Reference in New Issue
Block a user