-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevents.css.js
More file actions
88 lines (73 loc) · 1.23 KB
/
events.css.js
File metadata and controls
88 lines (73 loc) · 1.23 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
import { gray } from '@shgysk8zer0/jss/palette/bootstrap.js';
export default `:host {
display: block;
text-align: initial;
line-height: 1.3;
border-width: 1px;
border-style: solid;
border-radius: 6px;
max-width: 100%;
box-sizing: border-box;
overflow: auto;
padding: 4px 12px;
}
.event {
padding-bottom: 0.7em;
line-height: 1.5;
}
.event:not(:last-of-type) {
border-width: 0 0 1px 0;
border-style: solid;
border-color: light-dark(${gray[3]}, ${gray[6]});
margin-bottom: 1.1em;
}
.event-heading, .title {
margin-block: 0.3em;
}
.event-section {
font-family: system-ui;
}
.event-section:not(:last-of-type) {
margin-bottom: 6px;
}
.event-name {
text-align: center;
text-decoration: underline;
padding: 0;
margin: 0.2em;
}
.event-url {
color: inherit;
display: block;
cursor: pointer;
text-decoration: none;
}
.event-description {
display: inline-block;
max-width: calc(100% - 1.8em);
margin: 0 0 0 0.3em;
line-height: 1.2;
}
.center {
text-align: center;
}
.icon {
width: auto;
height: 1em;
}
.event-section .icon {
margin: 0.1em 0.4em 0 0;
}
.float-left {
float: left;
}
.app-link {
color: inherit;
text-decoration: none;
display: block;
}
.clearfix::after {
content: "";
display: block;
clear: both;
}`;