-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
64 lines (53 loc) · 986 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
62
63
@tailwind base;
@tailwind components;
@tailwind utilities;
#app {
width: 100vw;
height: 100vh;
}
#app main {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
display: grid;
grid-template-areas: "header header header"
"side main main"
"footer footer footer";
grid-template-columns: 25rem 1fr 1fr;
grid-template-rows: 5rem auto 5rem;
}
main > header {
grid-area: header;
display: flex;
justify-content: center;
align-items: center;
}
main > footer {
grid-area: footer;
}
.content-pane {
grid-area: main;
}
.sidebar .title {
font-size: 1.3em;
font-weight: bold;
margin-bottom: .25em;
cursor: pointer;
}
.sidebar footer {
position: absolute;
bottom: 2em;
left: .5em;
}
.sidebar footer .add-project {
font-weight: 700;
font-size: 1.6em;
height: 2em;
width: 2em;
display: flex;
justify-content: center;
align-items: center;
border-radius: 9999px;
cursor: pointer;
}