-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
76 lines (62 loc) · 1.04 KB
/
style.css
1
2
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
body {
font-family: 'Gentium Book Basic', serif;
background-color: #e6d6b5;
}
h1 {
font-family: 'MedievalSharp', cursive;
text-align: center;
}
a {
text-decoration: none;
color: #495679
}
a:hover {
color: black;
text-decoration: underline;
}
img {
max-width: 100%;
}
input, select, button, textarea {
border: none;
padding: 5px;
margin: 5px;
border-radius: 5px;
max-width: 100%;
background-color: #f5f2ec;
box-shadow: none;
}
input:hover, select:hover, button:hover, textarea:hover {
background-color: #e2ded4;
}
input[type="number"] {
min-width: 100px;
-moz-appearance: textfield;
}
input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
#main {
width: 700px;
margin: auto;
}
#content {
font-size: 1.2em;
}
#description {
text-align: justify;
line-height: 1.4em
}
#survey-form > p {
margin: 0.1em;
}
.credits {
text-align: center;
}
@media (max-width: 750px) {
#main {
width: 90%;
padding: 5%;
}
}