28 lines
470 B
SCSS
28 lines
470 B
SCSS
$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;
|
|
} |