-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathdayview.css
More file actions
115 lines (94 loc) · 1.76 KB
/
dayview.css
File metadata and controls
115 lines (94 loc) · 1.76 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 {
--primary: #30465D;
--primary-variant: #FFDE4D;
--secondary: #EF5454;
--borders: #E7E7E7;
--borders-variant: #F7F7F7;
}
html {
font-family: 'Assistant', sans-serif;
text-align: center;
}
#toptab {
background-color: var(--primary);
}
.schedule {
display: grid;
grid-template-rows: 1;
}
.times {
margin-top: 0.65em;
grid-row: 1 / -1;
grid-column: 1 / -1;
z-index: 40;
}
.baselines {
grid-row: 1 / -1;
grid-column: 1 / -1;
z-index: 38;
}
.eventgrid {
grid-row: 1 / -1;
grid-column: 1 / -1;
display: grid;
grid-template-rows: repeat(100, 0.375rem);
z-index: 39;
}
.hourbar {
margin-top: -1px;
}
.event {
font-size: 1.2rem;
padding: 0;
}
.total-time {
font-size: 0.8rem;
}
.title_size_small {
font-size: 0.8em;
}
.title_size_Xsmall {
font-size: 0.4em;
}
.title_size_tiny {
font-size: 0.2em;
line-height: 1em;
}
.actiongrid {
grid-row: 1 / -1;
grid-column: 1 / -1;
display: grid;
grid-template-rows: repeat(100, 0.375rem);
z-index: 42;
}
.action-icon {
visibility: hidden;
}
.action-continer:hover {
border-top: 1px dashed var(--borders);
border-bottom: 1px dashed var(--borders);
transition: 0.3;
}
.action-continer:hover .action-icon {
visibility: visible;
}
.week-view-title {
font-size: 2em;
}
.zodiac-sign {
position: fixed;
right: 1.2em;
top: 1.6em;
padding-right: 0.4em;
padding-left: 0.4em;
padding-bottom: 0.2em;
border: solid 0.1px var(--primary);
background-color: var(--borders-variant);
border-radius: 50px;
box-shadow: 1px 1px 2px #999;
}
.deleted_event {
text-decoration: line-through;
border: 2px dotted black;
background-color: #80808057 !important;
}