forked from Alsan/Post_finder
static
This commit is contained in:
parent
cf7d96d169
commit
d6934329de
25
static/css/style.css
Normal file
25
static/css/style.css
Normal 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
1
static/css/style.css.map
Normal 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
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;
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user