-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
98 lines (86 loc) · 1.62 KB
/
style.css
File metadata and controls
98 lines (86 loc) · 1.62 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
body,
h2,
h1,
p,
h3 {
margin: 0;
}
img {
height: 550px;
width: 400px;
max-width: 100%;
border-radius: 40px;
}
:root {
--ff-heading: "Corinthia", cursive;
--ff-timer: "Readex Pro", sans-serif;
--head-color: #041c32;
}
.timer-heading {
font-family: var(--ff-timer);
box-sizing: border-box;
padding-top: 2rem;
/* padding-left: 10%; */
font-size: 3rem;
text-decoration: underline;
color: var(--head-color);
/* background-color: brown; */
width: 100%;
text-align: center;
}
.timer-subHeading {
font-family: var(--ff-timer);
box-sizing: border-box;
padding-top: 2rem;
color: var(--head-color);
/* background-color: brown; */
width: 100%;
text-align: center;
}
.timer-content {
font-family: var(--ff-heading);
box-sizing: border-box;
padding-top: 2rem;
color: var(--head-color);
font-size: 1.7rem;
/* background-color: brown; */
width: 100%;
text-align: center;
font-weight: bold;
}
.image-head {
width: 50%;
}
.flex-box {
display: flex;
justify-content: center;
padding-top: 2rem;
}
.flex-box-timer {
display: flex;
justify-content: center;
padding-top: 2rem;
}
.content-column {
/* background-color: violet; */
margin: 0;
padding: 0;
width: 50%;
text-align: center;
}
.countdown-area {
box-sizing: border-box;
margin: 2rem;
width: 30%;
height: auto;
background-color: #041c32;
border-radius: 10px;
}
.h2-design {
color: white;
font-size: 1.2rem;
padding-top: 10px;
padding-bottom: 20px;
text-align: center;
font-family: var(--ff-timer);
}