-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
76 lines (65 loc) · 1.19 KB
/
style.css
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
*{
margin:0 ;
padding: 0;
font-family:'Poppins',sans-serif;
box-sizing: border-box;
}
.hero{
background: linear-gradient(45deg, #1d0000, #20205b);
height: 100%;
width: 100%;
min-height: 100vh;
}
#heading{
color: #fff;
text-align: center;
font-size: 60px;
padding-top: 50px;
font-weight: 500;
}
#heading span{
color: #f4351e ;
}
.calendar{
display: flex;
justify-content: center;
margin-top: 30px;
margin-bottom: 0px;
}
.box{
width: 300px;
height: 250px;
background: #fff;
display: flex;
align-items: center;
border-radius: 10px;
}
.left, .right{
height: 100%;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
font-size: 24px;
}
.right{
width: 42%;
background-color: #f4351e;
color: #fff;
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
}
.left{
width: 58%;
}
#date{
font-size: 100px;
line-height: 90px;
}
#copyright{
color: #fff;
text-align: center;
font-size: 20px;
font-weight: 500;
margin-top: 100px;
}