-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
132 lines (117 loc) · 2.46 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
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
128
129
130
131
132
body {
background-color: rgb(245, 245, 245);
font-family: "Courier New", serif;
margin: 0;
padding: 75px 0 25px 0;
}
/* Navbar */
nav {
background-color: #fff;
left: 0;
padding: 10px 25px;
position: fixed;
top: 0;
width: 100%;
}
nav h4,
nav h6,
nav p {
margin: 0;
}
h6 { font-size: 0.9rem; }
a {
color: #000;
font-weight: bold;
text-decoration: none;
transition: ease 0.2s;
}
a:hover {
color: #000;
opacity: 0.65;
text-decoration: none;
}
/* Form */
form { font-size: 0.8rem; }
/* Form: Navbar */
#navbarCollapse form { padding-top: 15px; }
#navbarCollapse form .checkbox-container {
border-radius: 3px 0 0 3px;
display: inline-block;
margin-bottom: 15px;
padding: 2px 0 4px 5px;
vertical-align: middle;
}
#navbarCollapse form input,
#navbarCollapse form label {
cursor: pointer;
display: inline-block;
vertical-align: middle;
}
#navbarCollapse form label {
border-radius: 0 3px 3px 0;
color: #fff;
margin-bottom: 15px;
padding: 3px 5px;
}
#navbarCollapse form label[for="all_WHITE"],
#navbarCollapse form label[for="all_CLEARMEDIUM"] {
color: #000;
}
/* Form: Color Buttons Container */
form #colorButtonsContainer input,
form #colorButtonsContainer label {
cursor: pointer;
margin-bottom: 10px;
vertical-align: middle;
}
form #colorButtonsContainer label {
border-radius: 3px;
display: inline-block;
padding: 5px;
width: 77%;
}
form input:not([type="radio"]):not([type="checkbox"]),
form button {
background: #fff;
border: none;
font-family: "Courier New", serif;
margin-top: 5px;
padding: 7.5px 10px;
width: 100%;
}
input[type="range"] {
display: block;
height: 300px;
-webkit-appearance: slider-vertical;
width: 40px !important;
}
#rangeLabels {
display: block;
height: 300px;
padding-top: 10px;
text-align: right;
}
#rangeLabels p {
font-size: 12px;
height: 30.15px;
margin: 0;
vertical-align: text-top;
}
form button {
cursor: pointer;
margin-bottom: 10px;
transition: ease 0.2s;
}
form button:hover { opacity: 0.65; }
/* Canvas */
.canvas-container {
margin: 0 75px;
width: fit-content;
}
.canvas-container h6 {
font-size: 0.8rem;
margin: 5px 0 0 0;
}
.canvas-container h6 a {
font-weight: 400;
}