-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.scss
93 lines (82 loc) · 1.14 KB
/
style.scss
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
85
86
87
88
89
90
91
92
93
:root {
--bg: #fff;
--fg: #000;
@media (prefers-color-scheme: dark) {
--bg: #000;
--fg: #fff;
}
}
html {
background-color: var(--bg);
color: var(--fg);
}
body {
margin: 0;
box-sizing: border-box;
}
* {
color: inherit;
background-color: inherit;
border-color: inherit;
&,
&::before,
&::after {
box-sizing: inherit;
}
}
.octicon {
fill: currentColor;
width: 1em;
height: 1em;
position: relative;
top: 4px;
}
.notes {
display: grid;
align-items: flex-start;
flex-wrap: wrap;
gap: 5px;
--columns: 8;
grid-template-columns: repeat(var(--columns), min-content);
}
.note {
width: 50px;
height: 50px;
border: 1px solid var(--fg);
display: flex;
align-items: center;
justify-content: center;
&.active {
background-color: red;
}
}
.app {
position: relative;
display: flex;
flex-direction: column;
height: 100vh;
}
.toolbar {
position: sticky;
top: 0;
padding: 0.5rem 0;
background-color: var(--bg);
}
.editor {
display: flex;
width: 100%;
gap: 1rem;
align-items: stretch;
flex-grow: 1;
}
.song {
resize: none;
}
.notesContainer {
overflow-x: auto;
overflow-y: hidden;
}
.song,
.notesContainer {
flex: 1 0 0px;
}