-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
130 lines (106 loc) · 4.5 KB
/
styles.css
File metadata and controls
130 lines (106 loc) · 4.5 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
:root {
--current-time-size: 16px;
--current-time-color: red;
--width: 20em;
}
body {
font-family: "Montserrat", sans-serif;
font-optical-sizing: auto;
font-style: normal;
}
.filters {
padding: 1em 1ex;
}
.calendar {
background: var(--theme-secondary-400);
padding: 1em;
display: grid;
grid-template-columns: [clock] 4em repeat(auto-fit, var(--width));
grid-auto-columns: var(--width);
grid-template-rows: repeat(calc(18 * 12), 20px);
column-gap: 1em;
row-gap: 2px;
font-size: small;
}
.venues, .talks, .clock {
display: contents;
}
.empty-talk-header {
grid-row: 1 / 5;
}
.talk-header {
background: #F77F02;
color: white;
font-size: larger;
grid-row: 1 / 5;
text-align: center;
}
.talk {
background: #AFC944;
padding: 0.5em 0.5ex;
}
.talkTitle {
font-weight: bold;
}
.clock {
color: white;
}
.currentTime {
background-color: var(--current-time-color);
width: 90vw;
height: 0.2rem;
position: relative;
}
.currentTime::before {
width: 0;
height: 0;
content: "";
position: absolute;
top: calc((var(--current-time-size) * -1) + 1px);
left: 0;
border-top: var(--current-time-size) solid transparent;
border-bottom: var(--current-time-size) solid transparent;
border-left: var(--current-time-size) solid var(--current-time-color);
}
.currentTime::after {
width: 0;
height: 0;
content: "";
position: absolute;
top: calc((var(--current-time-size) * -1) + 1px);
left: calc(100% - var(--current-time-size));
border-top: var(--current-time-size) solid transparent;
border-bottom: var(--current-time-size) solid transparent;
border-right: var(--current-time-size) solid var(--current-time-color);
}
.fa-video-slash {
color: #F55089;
}
.fa-ticket {
color: #2EADD9;
}
body:not(.theme-highcontrast):not(.theme-dark).theme-custom.themed {
--theme-base-primary-color-h: 72;
--theme-base-primary-color-s: 55%;
--theme-base-primary-color-l: 53%;
--theme-base-secondary-color-h: 93;
--theme-base-secondary-color-s: 52%;
--theme-base-secondary-color-l: 34%;
--theme-primary-custom: var(--theme-primary-custom-400);
--theme-primary-custom-100: hsl(var(--theme-base-primary-color-h), calc(var(--theme-base-primary-color-s) + 0 * 1%), clamp(70%, calc(var(--theme-base-primary-color-l) + 50 * 1%), 95%));
--theme-primary-custom-200: hsl(var(--theme-base-primary-color-h), calc(var(--theme-base-primary-color-s) + 0 * 1%), clamp(55%, calc(var(--theme-base-primary-color-l) + 35 * 1%), 90%));
--theme-primary-custom-300: hsl(var(--theme-base-primary-color-h), calc(var(--theme-base-primary-color-s) + 0 * 1%), clamp(35%, calc(var(--theme-base-primary-color-l) + 15 * 1%), 75%));
--theme-primary-custom-400: hsl(var(--theme-base-primary-color-h), calc(var(--theme-base-primary-color-s) + 0 * 1%), clamp(20%, calc(var(--theme-base-primary-color-l) + 0 * 1%), 60%));
--theme-primary-custom-500: hsl(var(--theme-base-primary-color-h), calc(var(--theme-base-primary-color-s) + 0 * 1%), clamp(15%, calc(var(--theme-base-primary-color-l) + -14 * 1%), 45%));
--theme-primary-custom-600: hsl(var(--theme-base-primary-color-h), calc(var(--theme-base-primary-color-s) + 0 * 1%), clamp(5%, calc(var(--theme-base-primary-color-l) + -26 * 1%), 30%));
--theme-secondary-custom: var(--theme-secondary-custom-400);
--theme-secondary-custom-100: hsl(var(--theme-base-secondary-color-h), calc(var(--theme-base-secondary-color-s) + 0 * 1%), clamp(70%, calc(var(--theme-base-secondary-color-l) + 50 * 1%), 95%));
--theme-secondary-custom-200: hsl(var(--theme-base-secondary-color-h), calc(var(--theme-base-secondary-color-s) + 0 * 1%), clamp(55%, calc(var(--theme-base-secondary-color-l) + 35 * 1%), 90%));
--theme-secondary-custom-300: hsl(var(--theme-base-secondary-color-h), calc(var(--theme-base-secondary-color-s) + 0 * 1%), clamp(35%, calc(var(--theme-base-secondary-color-l) + 15 * 1%), 75%));
--theme-secondary-custom-400: hsl(var(--theme-base-secondary-color-h), calc(var(--theme-base-secondary-color-s) + 0 * 1%), clamp(20%, calc(var(--theme-base-secondary-color-l) + 0 * 1%), 60%));
--theme-secondary-custom-500: hsl(var(--theme-base-secondary-color-h), calc(var(--theme-base-secondary-color-s) + 0 * 1%), clamp(15%, calc(var(--theme-base-secondary-color-l) + -14 * 1%), 45%));
--theme-secondary-custom-600: hsl(var(--theme-base-secondary-color-h), calc(var(--theme-base-secondary-color-s) + 0 * 1%), clamp(5%, calc(var(--theme-base-secondary-color-l) + -26 * 1%), 30%));
--theme-link-color: #213018;
--theme-link-color-hover: #213018;
--theme-link-color-visited: #213018;
}