-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
105 lines (91 loc) · 2.84 KB
/
index.html
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
99
100
101
102
103
104
105
<html>
<head>
<title>Design - Test</title>
<style>
:root {
--dark-color: #222222;
--lightdark-color: #333333;
--lighteneddark-color: #555555;
--white-color: #f1f1f1;
--darkwhite-color: #e1e1e1;
--darkenedwhite-color: #c1c1c1;
--red-color: #ea2f10;
--green-color: #3c9a5f;
--brand1-color: #062f3c;
--brand2-color: #56c1ab;
--brand3-color: #008cba;
--brand4-color: #062f3c;
}
body {
margin: 0;
background-color: var(--dark-color);
}
.background {
position: fixed;
top: 0px;
left: 0px;
width: 50%;
height: 100%;
z-index: 1;
background-color: var(--white-color);
}
.content {
position: relative;
z-index: 2;
padding: 30px;
text-align: center;
font-weight: bold;
font-family: Arial, sans-serif;
padding: 5% 20%;
}
.bar {
height: 7px;
border-radius: 3px;
width: 100%;
}
.dot {
width: 36px;
height: 36px;
border-radius: 18px;
display: inline-block;
}
.padder {
padding-top: 25px;
}
.b-color-error {
background-color: var(--red-color);
}
.b-color-success {
background-color: var(--green-color);
}
.b-color-brand1 {
background-color: var(--brand1-color);
}
.b-color-brand2 {
background-color: var(--brand2-color);
}
.b-color-brand3 {
background-color: var(--brand3-color);
}
.b-color-brand4 {
background-color: var(--brand4-color);
}
</style>
</head>
<body>
<div class="content">
<div class="bar b-color-error"></div>
<div class="padder"></div>
<div class="bar b-color-success"></div>
<div class="padder"></div>
<div class="dot b-color-brand1"></div>
<div class="padder"></div>
<div class="dot b-color-brand2"></div>
<div class="padder"></div>
<div class="dot b-color-brand3"></div>
<div class="padder"></div>
<div class="dot b-color-brand4"></div>
</div>
<div class="background"></div>
</body>
</html>