-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.css
More file actions
87 lines (75 loc) · 1.23 KB
/
App.css
File metadata and controls
87 lines (75 loc) · 1.23 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
75
76
77
78
79
80
81
82
83
84
85
86
87
body {
display: flex;
align-items: center;
justify-content: center;
background: pink;
user-select: none;
}
.wrapper {
background-color: white;
width: 450px;
border-radius: 10px;
}
header .cdate {
font-size: 1.45rem;
font-weight: 500;
}
.wrapper header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 25px 30px 10px;
}
header .icons span {
height: 38px;
width: 38px;
text-align: center;
margin: 0 1px;
line-height: 38px;
border-radius: 50%;
background-color: #f2f2f2;
cursor: pointer
}
header .icon span:last-child {
margin-right: -10px;
}
.calender {
padding: 20px;
}
.calender .days {
margin-bottom: 20px;
}
.calender .days li {
margin-bottom: 30px;
z-index: 1;
}
.calender .weeks li {
font-weight: 500;
}
.calender ul {
display: flex;
list-style: none;
flex-wrap: wrap;
}
.calender ul li {
position: relative;
width: calc(100%/7)
}
.calender .days li::before {
position: absolute;
content: "";
height: 40px;
width: 40px;
top: 60%;
left: 16%;
border-radius: 50%;
z-index: -1;
transform: translate(-50%, -50%);
background-color: #f2f2f2;
}
.days li.inactive {
color: blue;
}
.days li.active::before {
background-color: aqua;
}