-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
116 lines (98 loc) · 2.09 KB
/
style.css
File metadata and controls
116 lines (98 loc) · 2.09 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
106
107
108
109
110
111
112
113
114
115
116
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Quicksand",sans-serif;
}
html{
font-size: 62.5%;
}
.container{
width: 100%;
height: 100vh;
background-color: #153365;
color: #eee;
display: flex;
justify-content: center;
align-items: center;
}
.calender{
width: 47rem;
height: 55rem;
border-radius: 30px;
background-color: #041873;
box-shadow: 0 0.5rem 3rem rgba(0,0,0,0.4);
}
.month{
width: 100%;
height: 12rem;
background-color: #4e0ba6;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 2rem;
text-align: center;
text-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.5);
}
.month i{
font-size: 2.5rem;
cursor: pointer;
}
.month h1{
font-size: 3rem;
font-weight: 400;
text-transform: uppercase;
letter-spacing: 0.2rem;
margin-bottom: 1rem;
}
.month p{
font-size: 1.6rem;
}
.weekdays{
width: 100%;
height: 5rem;
padding: 0 0.4rem;
display: flex;
align-items: center;
}
.weekdays div{
font-size: 1.5rem;
font-weight: 400;
letter-spacing: 0.1rem;
width: calc(44.4rem / 7);
display: flex;
justify-content: center;
align-items: center;
text-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.5);
}
.days{
width: 100%;
display: flex;
flex-wrap: wrap;
padding: 0.2rem;
}
.days div{
font-size: 1.4rem;
margin: 0.3rem;
width: calc(40.4rem/7);
height: 5.5rem;
display: flex;
justify-content: center;
align-items: center;
text-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.5) ;
transition: background-color 0.2s;
}
.days div:hover:not(.today){
border: 0.2rem solid #777;
cursor: pointer;
text-decoration: none;
border-radius: 50%;
}
.prev-date, .next-date{
opacity: 0.5;
}
.today{
background-color: #4e0ba6;
border-radius: 50%;
}