-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
77 lines (66 loc) · 1.33 KB
/
styles.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
@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Rubik&display=swap");
* {
user-select: none;
}
.App {
font-family: sans-serif;
text-align: center;
}
.controls {
width: 234px;
padding: 0 2px;
display: flex;
justify-content: space-between;
font-family: "DM Serif Display";
margin-bottom: 4px;
}
.controls-button {
display: flex;
align-items: center;
justify-content: center;
width: 20px;
height: 20px;
font-family: "Rubik";
color: #808080;
background-color: #e9e8e8;
border-radius: 4px;
transition: all 0.15s ease-in-out;
}
.controls-button:hover {
background-color: #c7c7c7;
cursor: pointer;
}
.week {
display: flex;
}
.day {
display: flex;
align-items: center;
justify-content: center;
width: 30px;
height: 30px;
margin: 2px;
font-family: Rubik;
border-radius: 8px;
transition: all 0.15s ease-in-out;
}
.day:hover {
color: rgb(32, 108, 250);
border-color: rgb(32, 108, 250);
background-color: rgb(206, 223, 255);
cursor: pointer;
}
.day-previous-month {
color: rgb(204, 204, 204);
border-color: rgb(204, 204, 204);
}
.day-next-month {
color: rgb(204, 204, 204);
border-color: rgb(204, 204, 204);
}
.day-selected,
.day-selected:hover {
color: rgb(255, 255, 255);
border-color: rgb(32, 108, 250);
background-color: rgb(0, 87, 250);
}