-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
57 lines (47 loc) · 953 Bytes
/
style.css
File metadata and controls
57 lines (47 loc) · 953 Bytes
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
@font-face {
font-family: 'Monofonto';
src: url('monofonto/monofonto rg.otf') format('opentype');
font-weight: normal;
font-style: normal;
}
body {
margin:0;
padding:0;
background:0;
font-family:'Monofonto','Courier New', Courier, monospace,fixed-width;
color:#FFF;
background-color:#000;
}
.stuff_container{
max-width:400px;
margin:20px auto;
}
#spectrogram_3d {
border:1px solid white;
padding:20px;
min-height:330px;
min-width:100px;
position:relative;
}
#spectrogram_3d .h_line {
color: transparent;;
padding:0;
margin:0;
position:absolute;
width:100%;
height:2px;
left:0;
bottom:0;
/* overflow:hidden; */
box-shadow:2px 2px 6px rgba(48,48,48,.6);
/* background-color:red; */
}
#spectrogram_3d .fundamental_x_partial{
float:left;
}
#spectrogram_3d .in_hz{
float:right;
}
#staff {
background:rgba(255,255,255,.75);
}