forked from regebro/hovercraft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hovercraft.css
executable file
·131 lines (104 loc) · 2.13 KB
/
hovercraft.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
@import url(http://fonts.googleapis.com/css?family=Libre+Baskerville|Racing+Sans+One|Satisfy);
body {
font-size: 150%;
text-align: center;
font-family: Libre Baskerville;
}
p {
font-size: 125%;
font-weight: normal;
margin-bottom: 0.3em;
margin-top: 0.3em;
}
em {
font-family: Satisfy;
font-size: 142%;
}
strong {
font-family: Racing Sans One;
font-size: 127%;
letter-spacing: -2px;
}
h1, h2, h3, h4 {
font-weight: normal;
margin-bottom: 0.3em;
margin-top: 0.3em;
}
ul {
list-style-position: inside;
}
li {
font-size: 125%;
font-family: serif;
font-weight: normal;
margin-bottom: 0.3em;
margin-top: 0.3em;
padding-left: 0.3em;
line-height: 1.8em;
/*list-style-type: circle;*/
}
a {
text-decoration: none;
color: #444;
}
#ThreeD H1 {
font-family: Racing Sans One;
font-size: 300%;
}
#thequestion p {
font-family: Racing Sans One;
}
div.green {
/* Custom CSS here */
background-color:#9FDC2D;
-webkit-border-radius: 15px;
-moz-border-radius: 15px;
border-radius: 15px;
}
div.orange {
/* Custom CSS here */
background-color:#DC8D2C;
-webkit-border-radius: 15px;
-moz-border-radius: 15px;
border-radius: 15px;
}
div.blue {
/* Custom CSS here */
background-color:#23BADC;
-webkit-border-radius: 15px;
-moz-border-radius: 15px;
border-radius: 15px;
}
/* var*/
.step {
width: 1350px;
/*height: 400px;*/
padding: 100px ;
/*padding: 40px 0;*/
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
-webkit-transition: opacity 1s;
-moz-transition: opacity 1s;
-ms-transition: opacity 1s;
-o-transition: opacity 1s;
transition: opacity 1s;
background-color: rgba(255,255,255,0.92);
}
.impress-enabled .step {
margin: 0;
opacity: 0.3;
-webkit-transition: opacity 1s;
-moz-transition: opacity 1s;
-ms-transition: opacity 1s;
-o-transition: opacity 1s;
transition: opacity 1s;
}
.step:not(.active) {
opacity: 0.0;
}
.impress-enabled .step.active {
opacity: 1
}