-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
74 lines (59 loc) · 1.01 KB
/
style.css
File metadata and controls
74 lines (59 loc) · 1.01 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
body {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
#calendar-month {
display: grid;
grid-template-columns: auto auto auto auto auto auto auto;
grid-template-rows: auto auto auto auto;
height: 90vh;
width: 90vw;
}
.month-nav {
width: 80vw;
display: flex;
align-items: center;
justify-content: space-between;
}
.month-nav p {
cursor: pointer;
}
.day::-webkit-scrollbar {
display: initial;
}
.day {
border: 1px solid black;
overflow: scroll;
max-height: 100px;
text-align: center;
width: 100%;
height: 100%;
}
.buttonConfirm {
width: 25%;
height: 80%;
}
.buttonCancel {
width: 25%;
height: 80%;
}
.inputEvent {
height: 10vh;
}
.paragraph-content-future {
background-color: green;
text-align: center;
border-radius: 5px;
}
.paragraph-content-past {
background-color: gray;
text-align: center;
border-radius: 5px;
}
.paragraph-content-now {
background-color: skyblue;
text-align: center;
border-radius: 5px;
}