-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
113 lines (104 loc) · 2.11 KB
/
style.css
File metadata and controls
113 lines (104 loc) · 2.11 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
*{
padding: 0px;
margin: 0px;
}
body{
background: black;
}
#main{
position: absolute;
top:0;
left: 0;
width: 50vw;
height: 100vh;
}
#canvas-reference{
position: absolute;
top:10px;
left: 10px;
width: calc((100vw / 2) - 10px);
height: calc((100vh / 2) - 10px);
}
#canvas{
position: absolute;
top:calc((100vh / 2) + 5px);
left: 10px;
width: calc((100vw / 2) - 10px);
height: calc((100vh / 2) - 10px);
}
#editor{
position: absolute;
top: 10px;
left: calc((100vw / 2) + 10px);
width: calc((100vw / 2) - 10px);
height: calc(100vh - 10px);
background:rgb(75, 59, 74);
}
input[type="range"]{
-webkit-appearance:none;
-moz-appearance:none;
appearance:none;
outline: none;
width: 90%;
height: 40px;
margin-left: 5%;
border-radius: 15px;
background: #f1f6f4;
box-shadow: 3px 4px 2px #1c0f0f;
}
input[type="range"]::-webkit-slider-thumb{
-webkit-appearance:none;appearance:none;
width: 40px;
height: 40px;
border-radius: 20px;
background: #62c130;
box-shadow: inset 2px 2px 2px black;
}
input[type="range"]::-moz-range-thumb{
-moz-appearance:none;appearance:none;
width: 40px;
height: 40px;
border-radius: 20px;
background: #62c130;
box-shadow: inset 2px 2px 2px black;
}
#function{
position:absolute;
top: 0;
left: 0;
width: 100%;
height: 20vh;
background: rgb(106, 82, 119);
}
.button{
width:170px;
height: 30px;
color: rgb(255, 255, 255);
background-color: rgb(62, 160, 147);
border-radius: 7px;
outline: none;
box-shadow: 2px 3px 1px 3px #f3e6f1;
font-weight: bolder;
font-size: 15px;
float: left;
margin: 12px 0px 0 10px;
}
#editor-value{
position: absolute;
top:calc(100vh - 80vh);
left: 0;
width: 100%;
height:78vh;
overflow: scroll;
}
p{
margin-left: 5%;
color: #70d923;
font-size: 20px;
}
span{
margin-left: 45%;
color: #0bb493;
font-weight: 900;
font-size: 28px;
}