Skip to content

Commit 60660c4

Browse files
committed
hmmm
1 parent be4b0c1 commit 60660c4

File tree

4 files changed

+173
-27
lines changed

4 files changed

+173
-27
lines changed

content/slides/theme.css

Lines changed: 149 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,149 @@
1+
/* @theme cdl-theme */
2+
3+
@import 'uncover';
4+
@import url('https://fonts.googleapis.com/css?family=Roboto+Mono|Varela|Special+Elite&display=swap');
5+
6+
code {
7+
display: inline-block;
8+
font-family: 'Roboto Mono', monospace;
9+
font-size: 1em;
10+
letter-spacing: 0;
11+
margin: 0em 0.05em;
12+
padding: 0.2em 0.3em;
13+
vertical-align: baseline;
14+
color: #0d5f2e;
15+
}
16+
17+
h1 {
18+
font-size: 1.5em;
19+
}
20+
21+
h2 {
22+
font-size: 1.3em;
23+
}
24+
25+
h3 {
26+
font-size: 1.1em;
27+
}
28+
29+
h4 {
30+
font-size: 1em;
31+
}
32+
33+
h5 {
34+
font-size: 0.9em;
35+
}
36+
37+
h6 {
38+
font-size: 0.8em;
39+
}
40+
41+
p,
42+
blockquote {
43+
margin: 1em 3.5em 0;
44+
}
45+
46+
pre {
47+
display: block;
48+
margin: 1em 2em 0;
49+
overflow: visible;
50+
}
51+
52+
blockquote {
53+
margin: 1em 0 0;
54+
padding: 0 1.5em;
55+
position: relative;
56+
font-family: 'Special Elite';
57+
}
58+
59+
mark {
60+
background: transparent;
61+
}
62+
63+
table {
64+
border-spacing: 0;
65+
border-collapse: collapse;
66+
margin: 1em 0 0;
67+
font-size: 0.8em;
68+
}
69+
70+
a {
71+
color: #000000;
72+
text-decoration: underline;
73+
}
74+
75+
figure {
76+
height: 100px;
77+
max-width: 130px;
78+
padding-bottom: 10px;
79+
}
80+
81+
figcaption {
82+
position: relative;
83+
font-size: 9pt;
84+
left: -5px;
85+
top: -60px;
86+
overflow: visible;
87+
overflow-wrap: break-word;
88+
width: 90px;
89+
font-weight: bold;
90+
}
91+
92+
section {
93+
background-color: #dfdfdf;
94+
color: #000000;
95+
font-size: 35px;
96+
font-family: 'Varela';
97+
height: 720px;
98+
line-height: 1.35;
99+
letter-spacing: 1.25px;
100+
padding: 70px;
101+
width: 1280px;
102+
word-wrap: break-word;
103+
}
104+
105+
.note {
106+
position: relative;
107+
top: -35px;
108+
font-size: 20pt;
109+
}
110+
111+
.people_gallery {
112+
display: grid;
113+
grid-template-columns: repeat(11, 2.5em);
114+
grid-template-rows: repeat(4, 100px);
115+
position: relative;
116+
grid-gap: 5px;
117+
left: 0.75em;
118+
top: -40px;
119+
}
120+
121+
.funding_gallery {
122+
display: grid;
123+
grid-template-columns: repeat(8, 2.5em);
124+
grid-template-rows: repeat(1, 100px);
125+
position: relative;
126+
grid-gap: 5px;
127+
left: 2.5em;
128+
top: -30px;
129+
}
130+
131+
.funding_caption {
132+
position: relative;
133+
left: -8px !important;
134+
}
135+
136+
.gallery_img {
137+
max-height: 75px;
138+
max-width: 75px;
139+
}
140+
141+
.reference {
142+
font-size: 12pt;
143+
text-align: right;
144+
position: fixed;
145+
bottom: 0.5em;
146+
right: 0.25em;
147+
display: block;
148+
line-height: 12pt;
149+
}

0 commit comments

Comments
 (0)