-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathslideshow.css
151 lines (126 loc) · 2.19 KB
/
slideshow.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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
html, body {
margin: 0;
padding: 0;
background: #fafafa;
font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
color: #333;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Roboto Condensed';
}
a, a:visited {
color: #2196F3;
text-decoration: none;
}
.fab {
position: absolute;
top: 10px;
left: 10px;
width: 36px;
height: 36px;
border-radius: 18px;
background-color: white;
display: flex;
justify-content: center;
align-items: center;
font-size: 20px;
box-shadow: 0px 1px 2px rgba(0, 0, 0, .5);
}
.curtissimo-slideshow {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
overflow-x: hidden;
}
.curtissimo-slide {
position: absolute;
display: flex;
flex-direction: column;
width: 800px;
height: 600px;
justify-content: center;
transform-origin: top left;
}
.curtissimo-does-sliding {
transition: margin-left .5s ease-in-out;
}
.curtissimo-slide {
text-align: center;
}
.curtissimo-slide > * {
margin: 0 auto;
margin-bottom: 1rem;
}
.curtissimo-slide ol,
.curtissimo-slide ul {
list-style: none;
text-align: left;
margin-left: auto;
margin-right: auto;
padding: 0;
}
.curtissimo-slide {
font-size: 3rem;
}
.curtissimo-slide h1 {
font-size: 6rem;
text-shadow: 0 1px 1px rgba(32, 32, 32, .5);
}
.curtissimo-slide h2 {
font-size: 5rem;
text-shadow: 0 1px 1px rgba(32, 32, 32, .5);
}
.curtissimo-slide h3 {
font-size: 4rem;
font-style: italic;
text-shadow: 0 1px 1px rgba(32, 32, 32, .5);
}
#x-tag-logo {
font-family: Telex;
line-height: 4rem;
display: inline-block;
vertical-align: middle;
color: white;
}
#x-tag-logo > * {
display: inline-block;
line-height: 4rem;
vertical-align: middle;
}
.to-upper {
text-transform: uppercase;
}
.rotate-15 {
transform: rotate(-15deg);
}
.with-shadow {
text-shadow: 0 4px 4px rgba(0, 0, 0, .75);
}
.super-big {
font-size: 300% !important;
}
.tight-below {
margin-bottom: 0;
}
.highlighttable {
font-size: 2rem;
text-align: left;
width: 700px;
}
.highlighttable pre {
margin: 0;
padding: .25rem;
color: black;
}
.code {
width: 100%;
}
.normal-weight {
font-weight: 500;
}
.x-tag-logo-punc {
font-size: 60%;
color: #DD2C00;
}