-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
61 lines (51 loc) · 787 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
49
50
51
52
53
54
55
56
57
58
59
60
61
:root {
--radius: 8px;
}
body {
font-family: sans-serif;
background: #e3e5e8;
}
main {
display: grid;
padding: 1rem;
gap: 1rem;
grid-template-columns: repeat(4, 1fr);
grid-template-rows: 200px;
min-height: 100dvh;
}
.panel {
background: white;
border-radius: var(--radius);
padding: 1rem;
}
/* Sidebar */
.sidebar {
display: flex;
flex-direction: column;
gap: 1.5rem;
grid-row: span 2;
}
.logo {
font-size: 1.5rem;
font-weight: bold;
}
.sidebar ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: start;
gap: 0.5rem;
}
.sidebar li {
display: inline-flex;
gap: 0.5rem;
align-items: center;
justify-content: center;
}
/* Content */
header,
article {
grid-column: span 3;
}