-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
45 lines (40 loc) · 717 Bytes
/
Copy pathstyle.css
File metadata and controls
45 lines (40 loc) · 717 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
body{
background-color:skyblue;
}
.container{
width: 95%;
height: 100vh;
margin: auto;
display: flex;
justify-content: center;
align-items: center;
}
#style{
color: red;
font-family: Georgia, 'Times New Roman', Times, serif;
font-size: xx-large;
}
.counter{
justify-content: center;
align-items: center;
flex-direction: column;
width: 500px;
min-height: 250px;
margin: auto;
padding: 25px;
text-align: center;
background: #FEFFEA;
border: 5px groove navy;
border-radius: 2rem;
color: white;
}
.counter h1{
font-size: 2rem;
color:#000;
}
#count{
font-size: 5rem;
padding-top: 6px;
padding-bottom: 10px;
color:green;
}