-
Notifications
You must be signed in to change notification settings - Fork 0
/
screen.css
64 lines (53 loc) · 843 Bytes
/
screen.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
body {
color: #444;
}
p {
line-height: 1.3;
}
#logo h1 {
font-weight: 200;
font-size: 3em;
color: #335;
}
#container {
text-align: center;
}
#query {
margin-top: 10em;
-moz-transition: margin-top 0.5s;
-webkit-transition: margin-top 0.5s;
-o-transition: margin-top 0.5s;
transition: margin-top 0.5s;
}
#results {
margin-top: 4em;
}
.result iframe {
width: 90%;
left: 5%;
height: 300px;
margin: 0 auto 2em;
border: 1px solid #335;
}
.result .buttons {
position: absolute;
right: 6%;
margin-top: -1em;
}
input#encouragement {
width: 80%;
}
.content {
margin: 6em auto;
padding: 0 2em;
}
@media all and (min-width: 768px) {
.content {
width: 50%;
}
}
p.fineprint {
margin-top: 3em;
font-size: small;
color: #777;
}