-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
108 lines (91 loc) · 1.54 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
label,
button,
input,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: 'Roboto Mono', monospace !important;
}
#catName {
font-family: monospace;
}
.center {
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
}
.flex-container {
display: flex;
flex-direction: row;
}
.pcSlider {
-webkit-appearance: none;
width: 100%;
height: 10px;
border-radius: 5px;
background: #d3d3d3;
outline: none;
opacity: 0.7;
-webkit-transition: .2s;
transition: opacity .2s;
}
.pcSlider:hover {
opacity: 1;
}
.pcSlider::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 15px;
height: 15px;
border-radius: 50%;
background: rgb(44, 44, 44);
cursor: pointer;
}
.pcSlider::-moz-range-thumb {
width: 15px;
height: 15px;
border-radius: 50%;
background: rgb(44, 44, 44);
cursor: pointer;
}
.guibutton {
background-color: darkgrey;
transition: 250ms;
}
.guibutton:hover {
background-color: lightgrey;
}
.guibutton:active {
background-color: grey;
}
/* Responsive layout - makes a one column layout instead of a two-column layout */
#canvas {
margin: 0 auto;
}
#render {
margin: 0 auto;
}
@media (max-width: 800px) {
.flex-container {
flex-direction: column;
}
#canvas {
margin: 0px;
}
#render {
margin-left: 90px;
}
}
.sliderWidthControl {
width: 49.9999%
}
@media (min-width: 800px) and (max-width: 1000px) {
.sliderWidthControl {
width: 100%
}
}