-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
129 lines (108 loc) · 2.33 KB
/
style.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
:root {
font-family: Arial, Helvetica, sans-serif;
font-size: 16px;
}
[hidden] {
display: none !important;
}
h1 {
font-size: 3rem;
text-align: center;
margin: 0.5rem
}
h1 span {
margin-left: 0.5rem;
font-weight: normal;
font-size: 0.5em;
}
.root-flex-con {
display: flex;
flex-direction: column;
}
.root-flex-overlay-con {
display: flex;
flex-direction: column;
position: absolute;
top: 0;
left: 0;
z-index: 0;
margin: 0.5rem
}
.selection {
margin: 1rem;
display: flex;
flex-direction: row;
justify-content: center;
}
.selection h2 {
margin: 0.5rem
}
.selection-box {
border-style: solid;
border-radius: 1rem;
border-color: #000000;
border-width: 0.2rem;
margin-right: 0.5rem;
display: flex;
flex-direction: row;
width: min-content;
height: min-content;
align-self: center;
}
.selection-box select {
margin: 0rem;
background-color: #00000000;
border: none;
font-size: 1rem;
text-align: center;
}
.important-button {
font-size: 2rem;
font-weight: bold;
cursor: pointer;
background-color: #00000000;
align-self: center;
width: min-content;
border-style: solid;
border-radius: 1rem;
border-color: #000000;
border-width: 0.2rem;
margin: 1rem;
}
.important-button:active {
box-shadow: 0 0 0.2rem 0.1rem;
}
.calendar {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
margin: 1rem;
}
.calendar .month {
display: flex;
flex-direction: column;
align-items: center;
}
.calendar h3 {
margin: 0.2rem
}
.calendar .month .weeks {
border-top: 0.15rem solid #000000;
width: 12rem;
margin: 0.5rem;
}
.calendar .month .weeks th {
font-size: 0.5rem;
}
.calendar .month .weeks td {
text-align: center;
font-size: 0.9rem;
font-weight: bold;
}
.calendar .month .weeks td:nth-last-child(1),
.calendar .month .weeks td:nth-last-child(2),
.calendar .month .weeks th:nth-last-child(1),
.calendar .month .weeks th:nth-last-child(2) {
color: #525252
}