-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
115 lines (92 loc) · 1.51 KB
/
style.css
File metadata and controls
115 lines (92 loc) · 1.51 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
:root {
--heigh-factor: 3px;
--rest-color: #ddf;
--now-color: #afa;
--mark-color: #fdd;
--color-last-time: none;
}
* {
box-sizing: border-box;
}
body {
font-family: 'Readex Pro', sans-serif;
overflow-x: hidden;
background-color: #ddd;
}
h1,
h2 {
font-weight: 600;
width: auto;
}
p {
font-weight: 300;
}
main {
width: auto;
margin: 0 auto;
overflow-x: hidden;
}
section {
display: flex;
flex-direction: row;
flex-wrap: wrap;
gap: 0;
justify-content: center;
width: auto;
}
.ens {
display: flex;
flex-direction: column;
flex-basis: auto;
}
.rest {
background-color: var(--rest-color) !important;
}
.now {
background-color: var(--now-color) !important;
}
.blank {
background-color: initial !important;
border-top: none !important
}
.marked {
background-color: var(--mark-color) !important;
}
article {
padding-left: 2px;
height: calc(var(--rel-height) * var(--heigh-factor));
width: 10em;
position: relative;
}
.gc {
border-right: 1px solid black;
}
article {
border-bottom: 1px solid black;
}
article:first-of-type {
border-top: 1px solid black;
}
article:last-child {
--color-last-time: block;
}
.bottom-right {
display: var(--color-last-time);
position: absolute;
bottom: 2px;
left: 2p;
}
.time {
font-size: smaller;
}
p {
margin: 0;
}
footer {
margin-top: 10em;
text-align: center;
filter: blur(1px);
}
footer > a {
color: inherit;
}