-
Notifications
You must be signed in to change notification settings - Fork 0
/
circle-of-fifths.css
60 lines (52 loc) · 1.12 KB
/
circle-of-fifths.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
/*
*** CIRCLE OF FIFTHS STYLES ***
*/
@font-face {
font-family: 'Roboto Condensed';
font-style: normal;
font-weight: 300;
font-display: swap;
src: url(assets/fonts/Roboto_Condensed/RobotoCondensed-Light.ttf) format('truetype');
/* unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; */
}
body {
/* background-color: #00b140; */
background-color: #444;
font-family: 'Roboto Condensed', serif, Verdana, sans-serif;
box-sizing: border-box;
}
section.dashboard {
display: block;
padding: 20px 20px;
text-align: center;
position: relative;
}
.chart-container {
display: inline-block;
margin: 0 auto;
}
#circle-of-fifths-minor {
position: absolute;
top: 20px;
}
#circle-of-fifths-chords {
position: absolute;
top: 20px;
}
#settings-container {
position: absolute;
left: 0;
}
button {
padding: 8px 10px 8px 10px;
background: #fff;
font: 12px "Roboto Condensed", Verdana, sans-serif;
border: none;
}
button:hover {
cursor: pointer;
background: #efefef;
}
button#start-song {
/* display: none; */
}