This commit is contained in:
alex 2024-12-04 13:38:27 +05:00
parent cf7d96d169
commit d6934329de
3 changed files with 54 additions and 0 deletions

25
static/css/style.css Normal file
View File

@ -0,0 +1,25 @@
body {
font-family: Arial, sans-serif;
color: #333;
background-color: rgb(225.2719665272, 239.9163179916, 249.7280334728);
}
h2 {
color: #3498db;
}
form input[type=text],
form input[type=file],
form input[type=submit] {
margin: 10px 0;
padding: 10px;
border: 1px solid rgb(33.1380753138, 125.1882845188, 186.8619246862);
border-radius: 5px;
}
p {
margin: 5px 0;
font-weight: bold;
}
/*# sourceMappingURL=style.css.map */

1
static/css/style.css.map Normal file
View File

@ -0,0 +1 @@
{"version":3,"sourceRoot":"","sources":["../scss/style.scss"],"names":[],"mappings":"AAGA;EACI;EACA,OAJS;EAKT;;;AAGJ;EACI,OAVY;;;AAcZ;AAAA;AAAA;EAGI;EACA;EACA;EACA;;;AAIR;EACI;EACA","file":"style.css"}

28
static/scss/style.scss Normal file
View 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;
}