-
Notifications
You must be signed in to change notification settings - Fork 3
/
styles.css
127 lines (108 loc) · 1.89 KB
/
styles.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
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
input {
margin-right: 5px;
}
input[type='number']:not(.offset) {
margin-top: 10px;
margin-bottom: 10px;
}
input[type='number'] {
margin-top: 5px;
}
input[type='range']:not(.zoom) {
background-color: transparent;
height: 5px;
margin-right: 0px;
margin-left: 0px;
}
/** FF*/
input[type="range"]::-moz-range-progress {
background-color: #0ec978;
}
input[type="range"]::-moz-range-track {
background-color: #9a905d;
}
/* IE*/
input[type="range"]::-ms-fill-lower {
background-color: #0ec978;
}
input[type="range"]::-ms-fill-upper {
background-color: #9a905d;
}
div:not(.siteContainerDiv) {
display: inline-block;
}
body {
background-color: rgb(221,221,221);
}
canvas {
box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.5);
}
label {
-webkit-user-select: none; /* Safari */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Standard */
}
a {
color: black;
}
a:visited {
color: black;
}
.darkButton {
border: 1px solid #cccccc;
background-color: #333333;
color: white;
}
.darkButton:hover {
background-color: #555555;
}
.darkButton:active {
background-color: #777777;
}
.lightButton {
border: 1px solid #111111;
background-color: #eeeeee;
color: black;
}
.lightButton:hover {
background-color: #cccccc;
}
.lightButton:active {
background-color: #aaaaaa;
}
.siteContainerDiv {
display: flex;
flex-direction: row;
margin-top: 20px;
}
.inputsDiv {
margin-right: 10px;
margin-left: 10px;
width: 400px;
height: 685px;
background-color: #eeeeee;
padding: 10px;
}
.zoomSliderDiv {
margin-left: 15px;
margin-right: 15px;
margin-top: 180px;
}
.zoom {
-webkit-appearance: slider-vertical;
background-color: transparent;
width: 10px;
height: 300px;
}
#resetAll {
margin-bottom: 10px;
}
#canvas-div {
margin-left: 10px;
}
#footer {
position: fixed;
bottom: 0%;
left: 1.3%;
}