-
Notifications
You must be signed in to change notification settings - Fork 0
/
presentation.css
117 lines (99 loc) · 2.65 KB
/
presentation.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
/*
base03 #002b36 0 43 54
base02 #073642 7 54 66
base01 #586e75 88 110 117
base00 #657b83 101 123 131
base0 #839496 131 148 150
base1 #93a1a1 147 161 161
base2 #eee8d5 238 232 213
base3 #fdf6e3 253 246 227
yellow #b58900 181 137 0
orange #cb4b16 203 75 22
red #dc322f 220 50 47
magenta #d33682 211 54 130
violet #6c71c4 108 113 196
blue #268bd2 38 139 210
cyan #2aa198 42 161 152
green #859900 133 153 0
*/
{
margin: 0;
padding: 0;
}
@font-face{
font-family: DroidSans;
src: url('fonts/Droid_Sans/DroidSans-Bold.ttf');
}
@font-face{
font-family: UbuntuMono;
src: url('fonts/Ubuntu_Mono/UbuntuMono-Regular.ttf');
}
@font-face{
font-family: LatoBlack;
src: url('fonts/Lato/Lato-Black.ttf');
}
body{
font-family: DroidSans;
min-height: 740px;
color: #EEE;
background: #073642;
background: -webkit-radial-gradient(center bottom, circle farthest-corner, #657b83, #073642, black);
background: -moz-radial-gradient(center bottom, circle farthest-corner, #657b83, #073642, black);
background: -o-radial-gradient(center bottom, circle farthest-corner, #657b83, #073642, black);
background: -ms-radial-gradient(center bottom, circle farthest-corner, #657b83, #073642, black);
background: radial-gradient(center bottom, circle farthest-corner, #657b83, #073642, black);
-webkit-font-smoothing: antialiased;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
a {
color: #268bd2;
text-shadow: 0 2px 2px rgba(0, 0, 0, 0.9);
}
pre {
font-family: UbuntuMono;
font-size: 18px;
line-height: 1.3em;
background: #002b36;
padding: 1em;
border-radius: 10px 10px 10px 10px;
border: 1px solid rgba(0, 0, 0, 0.3);
}
h1 {
font-family: DroidSans;
font-size: 40px;
margin-bottom: 1.5em;
color: #cb4b16;
text-shadow: 0 2px 2px rgba(0, 0, 0, 0.9);
}
img {
margin-left: auto;
margin-right: auto;
display: block;
}
dt {
color: #859900;
font-style: italic;
}
dl {
color: #fdf6e3;
}
.step {
border: 1px solid rgba(238, 232, 213, 0.3);
border-radius: 10px 10px 10px 10px;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
padding: 30px 60px;
color: #EEEEEE;
display: block;
font-family: LatoBlack;
font-size: 27px;
line-height: 36px;
position: relative;
text-shadow: 0 2px 2px rgba(0, 0, 0, 0.9);
width: 900px;
height: 600px;
background: rgba(10,238,232,0.1);
}
#step-1 > h1 {
color: #268bd2;
text-shadow: 0 2px 2px rgba(0, 0, 0, 0.8);
}