-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
104 lines (86 loc) · 1.75 KB
/
style.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
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300&family=Sofia+Sans&family=Work+Sans:wght@300&display=swap');
* {
--col-font: #f7f2f2;
--col-header: #1c1c1c;
--col-border: #2b2b2b;
--col-bg: #171717;
--col-hover: #57f0c3;
font-family: 'Sofia Sans', sans-serif;
}
body {
color: var(--col-font);
margin: 0;
padding: 0;
background-color: var(--col-bg);
}
a {
text-decoration: none;
color: var(--col-font);
}
.navBar {
border-bottom: 2px solid var(--col-border);
position: sticky;
}
.navContainer {
display: flex;
flex-direction: row;
background-color: var(--col-header);
width: 100vw;
height: 6.3vh;
align-items: center;
justify-content: space-between;
}
.contRight {
display: flex;
align-items: center;
padding: .5em;
}
.logo {
height: 30px;
width: 30px;
}
.contRight p {
padding: 5px;
}
.contLeft {
display: flex;
align-items: center;
padding: .5em;
}
.contLeft a {
padding: 5px;
}
.contLeft :hover {
color: var(--col-hover);
border-bottom: 1px solid var(--col-hover);
}
.leaderBoard {
display: flex;
flex-direction: row;
justify-content: space-evenly;
align-items: center;
flex-wrap: wrap;
gap: 20px;
margin: 20px;
}
.subLeaderBoard {
background-color: var(--col-header);
border-radius: 5px;
padding: 20px;
border: 2px solid var(--col-border);
}
td {
text-align: center;
padding: 10px;
}
.link {
color: var(--col-hover);
}
.link :hover {
text-decoration: underline;
}
@media screen and (max-width:850px) {
.websiteName {
visibility: hidden;
}
}