-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
77 lines (64 loc) · 1.19 KB
/
Copy pathstyle.css
File metadata and controls
77 lines (64 loc) · 1.19 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'poppins', sans-serif;
}
body{
background-color: #A2A6A4;
}
.wrapper{
margin: 150px auto;
width: 90%;
}
.text-box{
color: #063251;
margin-top: 50px;
font-size: 20px;
}
.text-box h2{
font-size: 40px;
margin-top: -16px;
}
.text-box p{
font-size: 16px;
margin-top: 25px;
margin-bottom: 20px;
padding-bottom:3px;
padding-top: 5px;
}
img {
max-width: 570px;
float: left;
border: 3px solid none;
border-radius: 10px;
margin-right: 25px;
margin-bottom: 70px;
}
.COUNTDOWN{
display: flex;
flex-direction: row;
justify-content: space-between;
justify-items: center;
text-align: center;
}
.COUNTDOWN div {
width: 100px;
height: 100px;
background-color: #063251;
border-radius: 10px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
color: white;
border: 1px solid green;
font-size: 18px;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
font-family: 'Times New Roman', Times, serif;
}
.COUNTDOWN div p{
font-size:30px;
height: 30px;
margin-top: 20px;
}