-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInputs.css
110 lines (99 loc) · 2.01 KB
/
Inputs.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
.headContainer {
width: 50%;
margin: auto;
color: white;
font-size: 30px;
background-color: rgba(99, 98, 98, 0.8);
border-color: black;
border-radius: 5px;
border-width: 2px;
border-style: solid;
text-align: center;
}
.slideContainer {
width: 50%;
margin: auto;
color: white;
line-height: 30px;
background-color: rgba(99, 98, 98, 0.8);
border-color: black;
border-radius: 5px;
border-width:.5px;
border-style:solid;
}
.slider {
-webkit-appearance: none;
appearance: none;
margin-left: 2%;
width: 88%;
height: 10px;
border-radius: 4px;
background: #D3D3D3;
outline: none;
opacity: 0.7;
-webkit-transition: .2s;
transition: opacity .2s;
}
.slider:hover {
opacity: 1; /* Fully shown on mouse-over */
}
.slider::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 25px;
height: 25px;
background: #FF8C00;
cursor: pointer;
border-color: white;
border-radius: 20px;
}
.slider::-moz-range-thumb {
width: 25px;
height: 25px;
background: #FF8C00;
cursor: pointer;
border-color: white;
border-radius: 20px;
}
.slideAmount {
color: white;
background-color: rgba(99, 98, 98, 0.8);
width: 250px;
height: 100px;
line-height: 100px;
border-radius: 10px;
border-style: solid;
border-width: medium;
font-family: 'Roboto', sans-serif;
font-weight: bold;
font-size: 20px;
margin: 10px;
}
.slideTitle {
margin: 10px auto;
width: 90%;
background-color: rgba(255, 102, 0, 0.8)!important;
text-align: center;
border-color: black;
border-radius: 5px;
border-width:.5px;
border-style:solid;
}
.slideAmt{
color:white;
background-color: rgba(255, 102, 0, 0.8);
font-size: 18px;
border-color: white;
border-radius: 5px;
border-width: .5px;
border-style:solid;
}
.mainBtn:nth-child(1) {
background-color: rgba(255, 102, 0, 0.8);
}
.mainBtn:hover {
background-color: rgb(149, 148, 148);
}
.mainBtn:nth-child(1):hover {
background-color: rgb(255, 153, 51);
}