-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
52 lines (46 loc) · 940 Bytes
/
style.css
File metadata and controls
52 lines (46 loc) · 940 Bytes
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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: url(bg.jpg);
background-size: cover;
background-position: center;
}
.calendar {
position: relative;
width: 200px;
margin-bottom: 10rem;
background: #fff;
text-align: center;
border-radius: 8px;
overflow: hidden;
-webkit-box-reflect: below 1px linear-gradient(transparent,transparent,
#000400);
}
.calendar #monthName {
position: relative;
padding: 5px 10px;
background: #ff6331;
font-size: 30px;
font-weight: 700;
}
.calendar #dayNamber {
margin-top: 0;
line-height: 1em;
font-size: 80px;
font-weight: 700;
color: #333;
}
.calendar #year {
margin-bottom: 20px;
font-size: 20px;
font-weight: 500;
color: #999;
}