Spaces:
Sleeping
Sleeping
Update static/styles/style.css
Browse files- static/styles/style.css +37 -30
static/styles/style.css
CHANGED
@@ -1,30 +1,37 @@
|
|
1 |
-
/*
|
2 |
-
@author: idoia lerchundi
|
3 |
-
*/
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*
|
2 |
+
@author: idoia lerchundi
|
3 |
+
*/
|
4 |
+
body {
|
5 |
+
background-color: #121212;
|
6 |
+
color: #ffffff;
|
7 |
+
}
|
8 |
+
a {
|
9 |
+
color: #bb86fc;
|
10 |
+
}
|
11 |
+
input[type=message], input[type=email], input[type=text], textarea {
|
12 |
+
width: 100%;
|
13 |
+
padding: 12px;
|
14 |
+
border: 1px solid #ccc;
|
15 |
+
border-radius: 4px;
|
16 |
+
box-sizing: border-box;
|
17 |
+
margin-top: 6px;
|
18 |
+
margin-bottom: 16px;
|
19 |
+
resize: vertical;
|
20 |
+
}
|
21 |
+
button[type=submit] {
|
22 |
+
background-color: #04AA6D;
|
23 |
+
color: white;
|
24 |
+
padding: 12px 20px;
|
25 |
+
border: none;
|
26 |
+
border-radius: 4px;
|
27 |
+
cursor: pointer;
|
28 |
+
}
|
29 |
+
button[type=submit]:hover {
|
30 |
+
background-color: #45a049;
|
31 |
+
}
|
32 |
+
/* Hide Streamlit Branding */
|
33 |
+
#MainMenu {visibility: hidden;}
|
34 |
+
footer {visibility: hidden;}
|
35 |
+
header {visibility: hidden;}
|
36 |
+
|
37 |
+
.block-container{padding:0 20px 20px 20px}
|