-
Notifications
You must be signed in to change notification settings - Fork 317
/
Copy pathstyle.css
78 lines (71 loc) · 1.37 KB
/
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
* {
box-sizing: border-box;
scroll-behavior: smooth;
}
body {
margin: 0;
padding: 20px;
font: 300 16px/1.5 "Roboto", Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
color: #111;
background-color: #fdfdfd;
-webkit-font-smoothing: antialiased;
width: 100%;
max-width: 1000px;
}
[disabled] {
opacity: 0.5;
pointer-events: none;
}
section {
background: #F2F2F2;
padding: 14px;
margin-bottom: 48px;
}
a {
color: #2a7ae2;
text-decoration: none;
}
a:visited {
color: #1756a9;
}
a:hover {
color: #111;
text-decoration: none;
}
button, .button {
font-family: "Roboto", Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
text-transform: uppercase;
font-weight: 700;
font-size: 16px;
padding: 4px 14px;
margin-right: 8px;
background: transparent;
cursor: pointer;
}
button:hover, .button:hover {
background: #6FC9C6;
color: white;
}
button, .button, textarea {
outline: none;
border: 3px solid #222;
color: #222;
background: white;
}
.player-container {
margin-top: 14px;
margin-bottom: 24px;
}
.visualizer-container {
background: white;
padding: 14px;
overflow-x: auto;
border: 3px solid black;
margin-top: -3px; /* so that the border doesn't overlap with the play buttons */
}
/* d3 chart styles */
.line {
fill: none;
stroke: blue;
stroke-width: 2;
}