-
Notifications
You must be signed in to change notification settings - Fork 254
/
talk.css
67 lines (54 loc) · 1.12 KB
/
talk.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
/**
* Styles for the sample talk, you don’t need to copy this to use Inspire.js
* If you just want the theme of the sample talk, use theme.css
*/
#intro {
h1,
h2 {
margin: 0;
filter: drop-shadow(.1rem .1rem .5rem rgba(0,0,0,.5));
}
h1 {
margin-top: auto;
color: var(--color-aqua);
letter-spacing: -.04em;
font-size: calc(400% + 15vh);
@supports (-webkit-background-clip: text) {
background: linear-gradient(to bottom right, var(--color-accent-3), var(--color-accent-2), var(--color-accent-1), var(--color-accent-2), var(--color-accent-3));
-webkit-background-clip: text;
color: transparent;
}
}
h2 {
width: 12em;
font-size: calc(100% + 5vh);
color: white;
font-weight: 300;
&::first-line {
font-size: 80%;
}
}
.attribution {
margin-top: auto;
font-weight: bold;
font-size: 80%;
color: var(--color-yellow);
text-align: center;
> a {
color: inherit;
}
}
}
#media-plugin {
flex-flow: row;
padding: 2rem;
}
#media-plugin > div:first-child {
margin-right: 1em;
}
#media-plugin h1 {
font-size: 200%;
}
#media-plugin .annotation {
font-weight: 300;
}