-
Notifications
You must be signed in to change notification settings - Fork 1
/
lestyle.css
116 lines (109 loc) · 1.83 KB
/
lestyle.css
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
106
107
108
109
110
111
112
113
114
115
116
::selection{
background : orange;
color: white;
}
body{
background: #fff;
color: black;
font-family: 'Roboto',verdana;
font-size: 1.7rem;
}
.thin{
}
.header{
position: fixed;
top: 0;
width: 100%;
background: #fff;
border-bottom: 1px solid #e0e0e0;
font-family: 'Raleway',verdana;
font-weight: 500;
font-size: 1.7rem;
z-index: 100;
height: 65px;
}
.nav-ele{
display: inline-block;
}
.left-part{
position: relative;
font-size: 3rem;
top: 10px;
left: 20px;
font-family: 'Roboto',verdana;
font-weight: 600;
}
.thin{
font-family: 'Roboto',verdana;
font-weight: 300;
}
.right-part{
float: right;
position: relative;
top: 3px;
}
.right-part a{
font-family: 'Roboto',verdana;
position: relative;
font-weight: 500;
top: 15px;
right: 15px;
color: black;
text-decoration: none;
padding: 10px;
padding-bottom: 23px;
margin: 5px;
z-index: 1;
}
.right-part a:after{
position: absolute;
content: "";
width: 0;
height: 1px;
top: 100%;
left: 50%;
right: 50%;
background: orange;
opacity: 0;
z-index: -1;
transition: .3s;
border-radius: 10px;
}
.right-part a:hover{
text-decoration: none;
}
.right-part a:hover:after{
width: 100%;
left: 0;right: 0;
opacity: 1;
}
.leaderboard{
position: relative;
top: 120px;
font-family: 'Roboto',verdana;
font-weight: 100;
}
.text-heading{
font-size: 2rem;
}
.text-left{
padding: 10px;
}
th
{
padding-bottom:20px;
color: white;
padding: 10px;
font-size: 1.8rem;
font-family: 'Roboto',verdana;
background-color: orange;
}
table{
width: 50%;
}
tr{
text-align: center;
}
.orange{
color: orange;
}