-
Notifications
You must be signed in to change notification settings - Fork 77
/
Copy pathstyle.css
125 lines (123 loc) · 2.1 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
body {
display: flex;
margin-top: 50px;
justify-content: center;
background-color: #FFFCFF;
}
button {
width: 75px;
cursor: pointer;
box-shadow: 0px 0px 2px gray;
border: none;
outline: none;
padding: 5px;
border-radius: 5px;
color: white;
}
#header {
padding: 10px;
color: #d36c6c;
font-size: 26px;
font-family: sans-serif;
display: flex;
justify-content: space-between;
}
#header button {
background-color:#92a1d1;
}
#container {
width: 770px;
}
#weekdays {
width: 100%;
display: flex;
color: #247BA0;
}
#weekdays div {
width: 100px;
padding: 10px;
}
#calendar {
width: 100%;
margin: auto;
display: flex;
flex-wrap: wrap;
}
.day {
width: 100px;
padding: 10px;
height: 100px;
cursor: pointer;
box-sizing: border-box;
background-color: white;
margin: 5px;
box-shadow: 0px 0px 3px #CBD4C2;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.day:hover {
background-color: #e8faed;
}
.day + #currentDay {
background-color:#e8f4fa;
}
.event {
font-size: 10px;
padding: 3px;
background-color: #58bae4;
color: white;
border-radius: 5px;
max-height: 55px;
overflow: hidden;
}
.padding {
cursor: default !important;
background-color: #FFFCFF !important;
box-shadow: none !important;
}
#newEventModal, #deleteEventModal {
display: none;
z-index: 20;
padding: 25px;
background-color: #e8f4fa;
box-shadow: 0px 0px 3px black;
border-radius: 5px;
width: 350px;
top: 100px;
left: calc(50% - 175px);
position: absolute;
font-family: sans-serif;
}
#eventTitleInput {
padding: 10px;
width: 100%;
box-sizing: border-box;
margin-bottom: 25px;
border-radius: 3px;
outline: none;
border: none;
box-shadow: 0px 0px 3px gray;
}
#eventTitleInput.error {
border: 2px solid red;
}
#cancelButton, #deleteButton {
background-color: #d36c6c;
}
#saveButton, #closeButton {
background-color: #92a1d1;
}
#eventText {
font-size: 14px;
}
#modalBackDrop {
display: none;
top: 0px;
left: 0px;
z-index: 10;
width: 100vw;
height: 100vh;
position: absolute;
background-color: rgba(0,0,0,0.8);
}