-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
103 lines (87 loc) · 1.58 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
* {
box-sizing: border-box;
}
body {
background-color: #121212;
}
h1 {
margin: 0;
}
h2 {
color: rgba(102, 153, 102, 0.507);
font-size: 40px;
text-align: center;
font-family: 'Josefin Sans', sans-serif
}
h5 {
color: #6969;
height: 40px;
font-size: 20px;
text-align: center;
font-family: 'Josefin Sans', sans-serif
}
th {
color: #E1AD01;
height: 80px;
font-size: 30px;
font-family: 'Josefin Sans', sans-serif;
}
td {
color: #ffdb60;
border: rgba(255, 219, 96, .5);
border-bottom-style: solid;
padding: 10px;
text-align: center;
font-size: 20px;
font-family: 'Josefin Sans', sans-serif;
}
.container {
width: 100%;
max-width: 1600px;
margin: 0 auto;
}
.grid {
width: 100%;
padding: 20px;
display: grid;
grid-template-columns: repeat(12, minmax(0, 1fr));
gap: 1rem;
}
.custom-card {
padding: 20px;
border-radius: 5px;
background-color: #171717;
border: 1px solid #252525;
grid-column: span 6 / span 6;
color: #fff !important;
}
@media screen and (max-width: 768px) {
.custom-card {
grid-column: span 12 / span 12;
}
}
header {
width: 100%;
}
.nav-wrapper {
display: flex;
width: 100%;
max-width: 1600px;
margin: 0 auto;
justify-content: space-between;
align-items: center;
padding: 20px 20px;
}
nav {
display: flex;
align-items: center;
gap: 2rem;
}
.link-nav {
text-decoration: none;
color: white;
transition: 200ms ease-in-out;
}
.link-nav:hover {
color: rgba(255, 255, 255, 0.56);
}