Skip to content

Commit 14af187

Browse files
committed
Add styles
1 parent 1ac7be7 commit 14af187

File tree

1 file changed

+47
-0
lines changed

1 file changed

+47
-0
lines changed

Source-Code/CountdownTimer/style.css

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
* {
2+
box-sizing: border-box;
3+
}
4+
5+
body {
6+
background-image: url(./assets/eid.jpg);
7+
background-size: cover;
8+
background-position: center center;
9+
background-attachment: fixed;
10+
background-repeat: no-repeat;
11+
font-family: "Roboto", sans-serif;
12+
margin-top: 4rem;
13+
color: #c9cc6b;
14+
}
15+
16+
.container {
17+
display: flex;
18+
justify-content: center;
19+
align-items: center;
20+
margin-top: 10rem;
21+
flex-wrap: wrap;
22+
}
23+
24+
h1 {
25+
font-size: 4rem;
26+
margin-top: 1rem;
27+
text-align: center;
28+
flex-wrap: wrap;
29+
}
30+
31+
.big-text {
32+
font-weight: bold;
33+
font-size: 8rem;
34+
line-height: 0.5;
35+
margin: 1rem 2rem;
36+
}
37+
38+
.countdown {
39+
text-align: center;
40+
41+
/* margin-left: 2rem; */
42+
}
43+
44+
.countdown span {
45+
/* margin-left: -1 rem; */
46+
font-size: 2rem;
47+
}

0 commit comments

Comments
 (0)