forked from mbaezpy/trentose2015-midterm1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
57 lines (46 loc) · 761 Bytes
/
styles.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
@import url(http://fonts.googleapis.com/css?family=Comfortaa|Courgette);
body {
font-family: 'Comfortaa', cursive;
}
h1 {
font-family: 'Comfortaa', cursive;
font-size: 3em;
text-align: center;
}
h1 > span{
font-family: 'Courgette', cursive;
color: #c12f2f;
}
.sentences {
list-style: none;
padding-left: 0;
display: inline-block;
width: 100%;
}
.sentences > li{
width: 100%;
height: 120px;
margin-right: 20px;
margin-top: 20px;
text-align: center;
display: none;
}
.sentences > li h3 {
font-size: 3em;
}
.sentences > .current {
display: block;
}
.options {
text-align: center;
}
.options > button{
font-size: 1.5em;
}
.solution {
color: brown;
}
.jumbotron {
min-height: 300px;
text-align: center;
}