-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
70 lines (61 loc) · 895 Bytes
/
Copy pathstyle.css
File metadata and controls
70 lines (61 loc) · 895 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
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
body{
font-family: Arial, sans-serif;
background:#167a7a;
margin:0;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
height:100vh;
}
#topText{
text-align:center;
color:white;
margin-bottom:40px;
}
#topText h1{
margin:0;
font-size:42px;
}
#topText p{
margin:5px;
font-size:16px;
opacity:0.9;
}
#app{
background:#1f8fa0;
padding:40px;
border-radius:10px;
text-align:center;
width:400px;
}
#timer{
font-size:48px;
margin:30px 0;
}
#progressContainer{
width:100%;
height:12px;
background:#d6d6d6;
border-radius:6px;
overflow:hidden;
margin:15px 0 25px 0;
}
#progressBar{
height:100%;
width:0%;
background:#4CAF50;
}
button{
padding:10px 18px;
margin:6px;
font-size:16px;
border:none;
border-radius:6px;
background:#3b4db2;
color:white;
cursor:pointer;
}
button:hover{
background:#2f3f95;
}