-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
76 lines (63 loc) · 1.07 KB
/
Copy pathstyle.css
File metadata and controls
76 lines (63 loc) · 1.07 KB
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
:root {
--background: #112;
--block: #223;
--text: #9dd;
}
body {
max-width: 1280px;
margin: 0 auto;
padding: 1rem;
/* text-shadow: 1px 1px magenta; */
color: var(--text);
font-family: 'Andale Mono', monospace;
font-size: 14pt;
background-color: var(--background);
}
button {
cursor: pointer;
margin-left: 10px;
}
input {
margin: 5px 0;
}
.patch-bank {
width: 48%;
}
.patch-card {
cursor: pointer;
padding: 7px;
margin: 5px 0;
background-color: var(--block);
}
#main {
outline: none;
}
#header {
display: flex;
justify-content: space-between;
align-items: center;
height: 60px;
}
#how-play-link {
cursor: pointer;
}
#user-name-display {
padding: 0 15px 0 0;
}
#how-to-play {
background-color:var(--block);
padding: 20px;
}
#osc-flexbox {
display: flex;
justify-content: space-around;
}
#oscillator-container {
background-color: var(--block);
padding: 30px 20px;
margin: 20px 0;
}
#patch-container {
display: flex;
justify-content: space-between;
}