-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththeme-default.css
More file actions
166 lines (126 loc) · 2.44 KB
/
theme-default.css
File metadata and controls
166 lines (126 loc) · 2.44 KB
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
/* Slide theming galore */
@import url(http://fonts.googleapis.com/css?family=Bitter:700);
body {
font-family: 'helvetica neue', helvetica, arial, sans-serif;
font-size: 18px;
line-height: 1.3;
color: #444;
}
h1, h2, h3, h4, h5, h6, p, ol, ul, li, blockquote {
margin: 0;
padding: 0;
}
h1, h2, h3, h4 {
padding-top: .75em;
}
p, ol, ul {
padding-bottom: .5em;
}
ol, ul {
padding-left: 1.5em;
}
ul {
list-style-type: square;
}
ol {
list-style-type: lower-roman;
}
li {
font-size: 21px;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Bitter', serif;
}
.slide {
padding: 0;
}
.title-only {
}
.title-only .slide-content, .title-subtitle .slide-content {
width: 100%;
position: absolute;
top: 50%;
padding: 24px;
border-top: 2px solid darkorange;
border-bottom: 2px solid darkorange;
}
.title-only h1, .title-subtitle h1 {
font-size: 48px;
font-weight: normal;
line-height: 48px;
margin: 0;
padding: 0 0 18px 0;
}
.title-only h2, .title-subtitle h2 {
font-family: "helvetica neue", helvetica, arial, sans-serif;
font-size: 36px;
font-weight: normal;
line-height: 36px;
margin: 0;
padding: 12px 0 0 0;
border-top: 1px dashed #bbb;
}
.title-subtitle {
}
.title-content, .title-content-2col {
padding: 24px;
}
.title-content h1, .title-content-2col h1 {
font-size: 36px;
padding-bottom: .25em;
padding-left: .25em;
margin-bottom: .5em;
border-bottom: 2px solid darkorange;
}
.title-content .slide-content, .title-content-2col .slide-content {
font-size: 1.25em;
padding: .5em;
}
.title-content .slide-content ul, .title-content-2col .slide-content ul, .title-content .slide-content ol, .title-content-2col .slide-content ol {
padding: 1em;
}
.title-content .slide-content li {
font-size: 1.15em;
padding: 0;
}
.title-content-2col {
}
.title-content-2col .slide-content:nth-child(odd) {
width: 49%;
padding-left: 3%;
display: inline-block;
}
.title-content-2col .slide-content:nth-child(even) {
width: 49%;
padding-right: 3%;
display: inline-block;
}
/* Yes, I know we have to refactor here */
.code-slide {
padding: 0 24px;
}
.code-slide h1 {
font-size: 36px;
padding-bottom: .25em;
padding-left: .25em;
margin-bottom: .5em;
border-bottom: 2px solid darkorange;
}
.code-slide .slide-content {
width: 49%;
padding: 1em;
}
.content-css{
}
.content-js {
}
.content-html {
}
.content-html-css {
}
.content-html-js {
}
.content-css-js {
}
.content-html-css-js {
}