-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
84 lines (70 loc) · 1.43 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
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
line-height: 1.8;
font-weight: normal;
}
header, footer {
margin-inline: var(--sl-spacing-4x-large)
}
a {
text-decoration: none;
color: var(--sl-color-primary-500)
}
a:hover {
color: var(--sl-color-primary-600)
}
nav,
footer {
margin-block: var(--sl-spacing-x-large);
display: flex;
justify-content: space-between;
align-items: center;
text-align: center
}
main {
display: grid;
max-width: 1380px;
margin-block: var(--sl-spacing-x-large);
margin-inline: auto;
grid-template-columns: repeat(auto-fit, minmax(350px,1fr));
gap: var(--sl-spacing-large)
}
.card-container {
display: flex;
flex-direction: row;
gap: var(--sl-spacing-large);
}
.radio-logo {
display: block;
width: 80px;
object-fit: contain;
align-self: flex-start;
}
.logo-container {
display: flex;
flex-direction: column;
gap: var(--sl-spacing-large);
}
.info {
display: flex;
flex-direction: column;
gap: var(--sl-spacing-small);
}
.fi {
margin-left: .5em
}
footer p,
footer small {
color: var(--sl-color-neutral-600)
}
@media (max-width:600px) {
.footer {
gap: var(--sl-spacing-x-small)
}
}
@media (max-width:768px) {
nav,
footer {
flex-direction: column
}
}