-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtalk.css
140 lines (116 loc) · 2.16 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
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
/**
* 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 {
margin: 0;
filter: drop-shadow(.1rem .1rem .5rem rgba(0,0,0,.5));
line-height: .95;
}
#intro h1 {
margin-top: auto;
color: var(--color-aqua);
letter-spacing: -.04em;
font-size: calc(90% + 15vh);
}
@supports (-webkit-background-clip: text) {
#intro h1 {
background: linear-gradient(to bottom right, var(--color1), var(--color2), var(--color3), var(--color2), var(--color1));
-webkit-background-clip: text;
color: transparent;
}
}
#intro .attribution {
margin-top: auto;
color: var(--color-yellow);
text-align: center;
}
#intro .attribution a {
font-weight: bold;
}
#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;
}
@keyframes scrollbg {
from {
background-position-y: 0%;
}
to {
background-position-y: 100%;
}
}
a.source::after {
content: 'Image: ' attr(href);
background: black;
padding: 0.125em 0.25em;
position: absolute;
bottom: 0;
right: 0;
white-space: nowrap;
font-size: 16px;
}
.type-table table {
transform: rotate(45deg);
}
.type-table th {
padding: 0;
background: unset;
line-height: 1;
vertical-align: middle;
border: none;
}
.type-table th,
.type-table td {
font-size: unset;
text-align: center;
width: 100px;
height: 100px;
max-width: 100px;
max-height: 100px;
}
.type-table td {
border: 1px grey solid;
}
.type-table div {
transform: rotate(-45deg);
}
.type-common .a1,
.type-common .a2,
.type-common .b1,
.type-common .b2,
.type-simple-input .a1,
.type-simple-input .a2,
.type-simple-input .a3,
.type-simple-output .a1,
.type-simple-output .b1,
.type-simple-output .c1 {
background: var(--color2);
}
.terminology {
background: var(--dark2);
/* height: 98vh; */
}
.terminology pre {
background: var(--dark1);
padding: 1em;
border-radius: 1em;
}
.terminology header {
border: 2px currentColor solid;
padding: 0 2em;
/* margin: 1em; */
}
.bgimg {
background-size: cover;
background-position: 50% 0;
}