-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
98 lines (87 loc) · 1.83 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<style screen="media">
#root {
font-family: Helvetica, sans-serif;
max-width: 400px;
margin: 20px auto;
}
header {
margin-bottom: 25px;
text-align: center;
}
header h1 {
margin: 5px 0;
letter-spacing: 7px;
text-transform: uppercase;
}
header p {
margin: 5px 0;
color: #aaa;
font-size: 12px;
font-weight: 600;
}
ul {
list-style: none;
margin-top: 10px;
padding: 0;
border-top: 1px solid rgba(0,0,0,0.1);
}
ul li {
padding: 15px;
font-size: 17px;
font-weight: 300;
border-bottom: 1px solid rgba(0,0,0,0.1);
border-left: 4px solid transparent;
cursor: pointer;
transition: all 0.2s ease-in-out;
}
ul li:hover {
background-color: rgba(108,197,247,0.1);
border-left-color: rgb(21,144,213);
}
ul li span.position {
padding-right: 20px;
color: #aaa;
font-size: 14px;
font-weight: 400;
}
ul li span.points {
float: right;
font-size: 15px;
font-weight: 700;
line-height: 1.7;
}
footer {
padding: 10px;
font-size: 22px;
font-weight: 300;
}
footer button {
float: right;
height: 35px;
padding: 0 25px;
color: rgb(21, 144, 213);
font-size: 14px;
font-weight: 700;
background-color: transparent;
border: 1px solid rgb(21, 144, 213);
border-radius: 70px;
outline: none;
transition: all 0.1s linear;
cursor: pointer;
}
footer button:hover {
color: #fff;
background-color: rgb(21, 144, 213);
}
</style>
<body>
<div id="root"></div>
<script src="bundle.js"></script>
</body>
</html>