-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
105 lines (90 loc) · 1.67 KB
/
style.css
File metadata and controls
105 lines (90 loc) · 1.67 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
html, body {
margin: 0;
padding: 0;
}
html, body {
background-color: #F4DAB5;
}
.container {
background-color: #fff;
width: 500px;
height: 350px;
margin: 150px auto;
border-radius: 10px;
position: relative;
}
header {
background-color: #0E0E0E;
width: 100%;
height: 20%;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
display: flex;
justify-content: space-between;
align-items: center;
}
header img {
width: 40px;
height: 40px;
margin: auto 10px;
}
header span {
color: #fff;
font-size: 35px;
text-transform: uppercase;
}
.leftArrow {
transform: rotateY(180deg);
}
.weeksSection {
background-color: #FF623F;
width: 100%;
height: 10%;
display: flex;
justify-content: space-around;
align-items: center;
font-size: 20px;
text-transform: uppercase;
color: #fff;
}
.daysSection{
width: 100%;
height: 60%;
}
.daysSection div {
display: flex;
justify-content: space-around;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 15px;
font-weight: bold;
line-height: 5px;
}
.pastMonth, .nextMonth {
color: #DCDADB;
}
.selectedDay span {
background-color: #DCDADB;
border-radius: 50%;
}
.favoriteDay {
position: relative;
}
.favoriteDay span {
color: red;
font-size: 30px;
position: absolute;
margin-top: -15px;
}
footer {
color: #DCDADB;
width: 100%;
height: 5%;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
text-align: center;
font-size: 15px;
font-weight: bold;
}
footer span {
text-decoration: red line-through;
}