-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcalenderstyle.css
More file actions
61 lines (61 loc) · 1.01 KB
/
calenderstyle.css
File metadata and controls
61 lines (61 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
body {
font-family: Arial, Helvetica, sans-serif;
display: grid;
place-items: center;
height: 100vh;
margin: 0;
background-color: #333333;
}
.calender{
background-color: #111111;
border-radius: 10px;
box-shadow: 0 0 30px #222222;
overflow: hidden;
width: 300px;
color:white;
padding: 20px;
}
.header{
display :flex;
justify-content: space-between;
align-items: center;
padding: 10px;
}
.btn{
cursor: pointer;
}
#month-year{
font-size: 20px;
font-weight: bold;
}
.weekdays , .days{
display: flex;
flex-wrap: wrap;
gap:25px;
}
.weekdays{
display: flex;
flex-wrap: wrap;
gap: 25px;
}
.days{
height:300px;
}
.weekdays div, .days div{
width:20px;
text-align: center;
padding: 10px 0px;
border-radius: 5px;
}
.days div{
cursor: pointer;
transition:background-color 0.3s;
}
.days div:hover{
background-color: white;
color: orangered;
}
.days .today{
background-color: orangered;
color: white;
}