-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
125 lines (122 loc) · 2.67 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
html, body {
margin: 0;
padding: 0;
/* overflow: hidden; */
}
canvas {
display: block;
}
p {
padding: 5px 25px 5px;
}
.slider {
-webkit-appearance: none; /* Override default CSS styles */
appearance: none;
width: 90%; /* Full-width */
height: 12px; /* Specified height */
background: #d3d3d3; /* Grey background */
outline: none; /* Remove outline */
opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
-webkit-transition: .2s; /* 0.2 seconds transition on hover */
transition: opacity .2s;
margin-left: 100px;
display: none;
}
.slider:hover {
opacity: 1; /* Fully shown on mouse-over */
}
.slider::-webkit-slider-thumb {
-webkit-appearance: none; /* Override default look */
appearance: none;
width: 10px; /* Set a specific slider handle width */
height: 16px; /* Slider handle height */
background: #041daa; /* blue background */
cursor: pointer; /* Cursor on hover */
}
.slider::-moz-range-thumb {
width: 10px; /* Set a specific slider handle width */
height: 16px; /* Slider handle height */
background: #041daa; /* blue background */
cursor: pointer; /* Cursor on hover */
}
.iconToggle{
width: 40px;
height: 40px;
padding: 5px;
border: .5px solid black;
box-shadow: 2px 2px 3px grey;
border-radius: 10px;
transition: all 0.2s ease-in-out;
filter: brightness(.5);
cursor: pointer;
}
.iconToggle:hover{
width: 45px;
height: 45px;
margin-left: -2px;
margin-top: -1px;
}
label{
margin-left: 125px;
margin-top: -50px;
font-style: italic;
display: none;
}
.advancedInput{
margin-left: 100px;
margin-top: -40px;
width: 100px;
display: none;
margin-bottom: 17px;
}
.advancedInput::-webkit-slider-thumb{
width: 10px;
}
.advancedInput::-moz-range-thumb{
width: 10px;
}
.advancedSubmit{
display: none;
}
#advancedFeatures{
height: 140px;
-moz-user-select: none;
-webkit-user-drag: none;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
}
#lanselect{
position: fixed;
height: auto;
width: 105px;
background-color: rgb(211, 211, 211);
top: 0;
right: 0;
display: flex;
padding: 5px;
padding-right: 9px;
border-radius: 5px;
border: 4px solid rgb(181, 181, 181);
margin: 4px;
}
#lanselect>img{
height: 35px;
transition: all 0.2s ease-in-out;
float: left;
border-radius: 3px;
cursor: pointer;
}
#lanselect>img:hover{
margin-left: -2px;
height: 38px;
}
#langen{
padding-right: 5px;
}
#langnl{
filter: opacity(60%);
}
button{
cursor: pointer;
}