forked from goldenyoshi22/PulsusKorean
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
48 lines (41 loc) · 904 Bytes
/
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
@font-face {
font-family: Quicksand;
src: url(Quicksand-VariableFont_wght.ttf);
}
body {
font-family: Quicksand, sans-serif;
background-image: linear-gradient(hsl(199, 100%, 10%), hsl(199, 100%, 20%));
color: hsl(199, 100%, 90%);
}
th, td {
padding-top: 5px;
padding-bottom: 5px;
padding-left: 10px;
padding-right: 10px;
border-right: 2px solid white;
text-align: center;
}
tbody:nth-child(odd) {
background-color: #00000030;
}
table {
border: 2px solid white;
border-collapse: collapse;
}
.container {
display: grid;
grid-template-columns: 0.9fr 0.8fr 1.3fr;
grid-template-rows: 0.5fr 0.5fr 2fr;
gap: 0px 0px;
grid-auto-flow: row;
grid-template-areas:
"profilePic info scores"
"profilePic info scores"
". . scores";
}
.profilePic { grid-area: profilePic; }
.info { grid-area: info; }
.scores { grid-area: scores; }
.hoverDark:hover {
filter: brightness(80%);
}