-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
110 lines (92 loc) · 2.18 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
html, body {
margin: 0;
padding: 0;
}
canvas {
padding-left: 0;
padding-right: 0;
margin-top: auto;
margin-left: auto;
margin-right: auto;
margin-bottom: auto;
display: block;
width: 800px;
}
.myButton {
font-size: 20px;
width: 40px;
height: 40px;
text-align: center;
background-color: #000000;
border-style: none;
cursor: pointer;
transition-duration: 0.3s;
color: #ffffff;
/* border-radius: 100%; */
/* padding: 20px, 25px; */
}
.myButton:hover {
transition-duration: 0.5s;
background-color: #ffffff;
color: #020202 ;
border: 2px solid black;
}
.saveButton{
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
width: 150px;
height: 45px;
border-style: none;
background-color: #040404;
color: #ffffff;
font-size: 16px;
cursor: pointer;
}
.saveButton:hover {
transition-duration: 0.5s;
background-color: #ffffff;
color: #020202 ;
border: 2px solid black;
}
.dropdown{
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
width: 150px;
height: 45px;
border: 2px solid black;
font-size: 16px;
}
.Instruction{
font-family: 'Helvetica', sans-serif;
font-size: 16px;
color: rgb(7, 7, 7);
border-style: none;
background-color: #ffffff;
}
.sizeSlider{
width: 150px;
height: 2px;
background-color: #000000;
/* Removes some defaults */
-webkit-appearance: none;
}
.sizeSlider:hover {
opacity: 0.7; /* Fully shown on mouse-over */
}
.sizeSlider::-webkit-slider-thumb {
width: 20px;
height: 20px;
background: #000000;
cursor: pointer;
-webkit-appearance: none;
/* negative top padding moves it up */
margin-top: 0px;
/* Border radius gives rounded corners, if they're big enough, you end up with circles */
border-radius: 50%;
}
.myRadio{
height: 35px;
padding-top:8px;
padding-left: 10px;
padding-right: 10px;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
border: 2px solid black;
}