blob: 9717e14e126e6651225c2958dfb9f9e516f60eaf (
plain)
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
|
.header {
display: flex;
justify-content: space-between;
align-items: center;
margin: 0.5rem 2rem;
color: var(--color-light);
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.header h1 {
margin: 0;
}
.header a {
text-decoration: none;
color: inherit;
}
.header__mini {
color: var(--color-yellow);
}
@media screen and (max-width: 480px) {
.header {
margin: 0.5rem 1rem;
}
.header h1 {
font-size: 2rem;
}
}
|