-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
48 lines (41 loc) · 834 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
body {
margin: 0;
background-color: #002b36;
color: #fff;
font-family: Recursive, "Segoe UI", "Helvetica Neue", Helvetica, Roboto, "Open Sans", FreeSans, sans-serif;
}
body h1 {
text-align: center;
}
body .concepts-container {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-gap: 1rem;
padding: 3rem;
}
body .concepts-container a {
padding: 1rem;
list-style: none;
background-color: #011c23;
transition: transform ease-in 0.3s;
min-height: 100px;
}
body .concepts-container a:hover {
transform: translateY(-5px);
}
body .concepts-container h5 {
margin-top: 0;
font-size: 1.5rem;
font-weight: 500;
}
a {
text-decoration: none;
color: #fff;
}
.tag {
background-color: #676300;
padding: 0.25rem;
border-radius: 0.25rem;
display: inline-block;
margin-bottom: 0.25rem;
}