-
Notifications
You must be signed in to change notification settings - Fork 6
/
style.css
68 lines (58 loc) · 1.14 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
* {
margin: 30px;
padding: 0;
}
html, body {
height: 100%;
overflow: hidden;
}
body {
background: #eee;
width: 100%;
height: 100%;
overflow-x: hidden;
font-family: 'Lato', Helvetica, sans-serif;
font-size: 16px;
color: #222;
-webkit-overflow-scrolling: touch;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
body p {
font-size: 16px;
line-height: 1.32;
}
input,
button {
height: 35px;
width: 150px;
font-size: 15px;
margin-top: 0px;
}
button {
border: 0px;
padding: 8px 10px;
border-radius: 1px;
cursor: pointer;
color: #fff;
background: #7aa76d;
text-align: left;
-webkit-transition: 0.15s background ease;
-moz-transition: 0.15s background ease;
-ms-transition: 0.15s background ease;
-o-transition: 0.15s background ease;
transition: 0.15s background ease;
}
button:hover {
background: #91cd85;
}
button:active {
background: #60895a;
}
h3 {
margin-bottom: 5px;
}
.answer {
margin-top: 0px;
}