-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.scss
61 lines (49 loc) · 869 Bytes
/
index.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
html,
body {
height: 100%;
margin: 0;
user-drag: none;
-webkit-user-drag: none;
user-select: none;
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
}
body {
align-items: center;
display: flex;
justify-content: center;
background: linear-gradient(to bottom right, #444444, #009a5b);
font-size: 1.5rem;
}
main {
color: #fff6d5;
font-family: sans-serif;
text-align: center;
}
.graph-editor {
background-color: black;
flex-direction: row;
display: flex;
width: 800px;
height: 400px;
}
.graph-handle {
flex: 1;
display: flex;
.graph-handle-indicator {
width: 100%;
background-color: red;
transform: scaleY(-1);
}
}
.sytrus {
background-color: black;
flex-direction: row;
display: flex;
height: 400px;
.graph-handle {
padding-right: 10px;
width: 20px;
}
}