-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
90 lines (78 loc) · 1.56 KB
/
styles.css
File metadata and controls
90 lines (78 loc) · 1.56 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
body {
margin: 0;
box-sizing: border-box;
height: 100%;
width: 100%;
}
#header {
width: 100%;
display: flex;
flex-direction: column;
position: fixed;
background-color: #fff;
border-bottom: 1px solid #000;
}
nav ul {
display: flex;
list-style: none;
justify-content: space-around;
}
nav ul li {
font-size: 20px;
font-family: monospace;
}
.progress-bar {
width: 100%;
background: linear-gradient(90deg, rgba(247,31,4,1) 0%, rgba(245,215,5,1) 29%, rgba(245,225,5,0.9979342078628326) 56%, rgba(0,255,16,1) 100%);
height: 100%;
position: absolute;
transition: all .3s ease-in-out;
}
.content {
padding-top: 100px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.title {
font-family: Arial, Helvetica, sans-serif;
font-size: 32px;
}
.para {
font-family: Arial, Helvetica, sans-serif;
font-size: 18px;
line-height: 1.9em;
width: 70%;
}
.footer {
display: flex;
height: 200px;
padding: 20px;
justify-content: center;
background-color: #e0e0e0;
}
.footer-columns {
flex-basis: 33%;
}
.progress-container {
width: 100%;
height: 10px;
background-color: #e0e0e0;
visibility: hidden;
position: relative;
transition: all .3s ease-in-out;
}
.progress-cover {
width: 100%;
background: #e0e0e0;
height: 100%;
transition: all .3s ease-in-out;
z-index: 5;
position: absolute;
}
.finished {
padding: 10px;
transition: all .3s ease;
background: #3FB310;
}