|
| 1 | +html{ |
| 2 | + scroll-behavior: smooth; |
| 3 | +} |
| 4 | + |
| 5 | +html,body{ |
| 6 | + margin: 0; |
| 7 | + font-size: 20px; |
| 8 | + font-weight: 400; |
| 9 | + font-family: Georgia, 'Times New Roman', Times, serif; |
| 10 | + color: #7883d3; |
| 11 | + /* display: flex; */ |
| 12 | + /* align-items: center; */ |
| 13 | +} |
| 14 | + |
| 15 | +nav{ |
| 16 | + height: 70px; |
| 17 | + width: 100%; |
| 18 | + overflow: hidden; |
| 19 | + background-color: #7883d3; |
| 20 | + color: #fff; |
| 21 | + display: flex; |
| 22 | + justify-content: center; /* Center the content horizontally */ |
| 23 | + align-items: center; |
| 24 | +} |
| 25 | +h2{ |
| 26 | + margin: 0 auto; |
| 27 | +} |
| 28 | + |
| 29 | + |
| 30 | +.inputs_{ |
| 31 | + /* margin-top: 50px; */ |
| 32 | + align-items: center; |
| 33 | + margin-top: 30px; |
| 34 | + |
| 35 | +} |
| 36 | + |
| 37 | +.container{ |
| 38 | + display: flex; |
| 39 | + padding: 20px 20px 20px 30px; |
| 40 | + align-items: center; |
| 41 | + place-content: center; |
| 42 | + margin-right: 20px; |
| 43 | +} |
| 44 | + |
| 45 | +.inputs_labels{ |
| 46 | + margin-right: 20px; |
| 47 | + color: #7883d3; |
| 48 | + text-decoration: solid; |
| 49 | +} |
| 50 | + |
| 51 | +.sliders{ |
| 52 | + display: flex; |
| 53 | + justify-content: space-around; |
| 54 | +} |
| 55 | + |
| 56 | +.container .sliders .sliderValue{ |
| 57 | + height: 40px; |
| 58 | + width: 600px; |
| 59 | + display: flex; |
| 60 | +} |
| 61 | + |
| 62 | +.container .sliders .sliderValue input{ |
| 63 | + height: 10px; |
| 64 | + width: 100%; |
| 65 | + margin-right: 20px; |
| 66 | + cursor: pointer; |
| 67 | + -webkit-appearance: none; |
| 68 | + outline: none; |
| 69 | + background: #f2f2f2; |
| 70 | + border-radius: 25px; |
| 71 | + box-shadow: inset 0px 0px 4px rgba(0, 0, 0, 0.2); |
| 72 | + |
| 73 | +} |
| 74 | + |
| 75 | +/* .sliderValue input::-moz-range-progress{ |
| 76 | + height: 10px; |
| 77 | + border-radius: 25px; |
| 78 | + background: #f9cf08; |
| 79 | +} |
| 80 | +
|
| 81 | +.sliderValue input::-moz-range-thumb{ |
| 82 | + height: 20px; |
| 83 | + width: 20px; |
| 84 | + border-radius: 50%; |
| 85 | + border: 4px solid white; |
| 86 | + background-color: #7883d3; |
| 87 | +
|
| 88 | +} */ |
| 89 | + |
| 90 | +.sliderValue input::-webkit-slider-runnable-track { |
| 91 | + height: 12px; |
| 92 | + border-radius: 25px; |
| 93 | + background: #f9cf08; |
| 94 | + border: none; |
| 95 | +} |
| 96 | + |
| 97 | +.sliderValue input::-webkit-slider-thumb { |
| 98 | + -webkit-appearance: none; |
| 99 | + height: 20px; |
| 100 | + width: 20px; |
| 101 | + border-radius: 50%; |
| 102 | + border: 2px solid white; |
| 103 | + background-color: #7883d3; |
| 104 | +} |
| 105 | + |
| 106 | +.sliderValue input:focus { |
| 107 | + outline: none; |
| 108 | +} |
| 109 | + |
| 110 | +.custom-btn { |
| 111 | + width: 130px; |
| 112 | + height: 40px; |
| 113 | + color: #fff; |
| 114 | + border-radius: 5px; |
| 115 | + padding: 10px 25px; |
| 116 | + font-family: Georgia, 'Times New Roman', Times, serif; |
| 117 | + font-weight: 500; |
| 118 | + background: transparent; |
| 119 | + cursor: pointer; |
| 120 | + transition: all 0.3s ease; |
| 121 | + margin-bottom: 100px; |
| 122 | + margin-left: 600px; |
| 123 | + position: relative; |
| 124 | + box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5), |
| 125 | + 7px 7px 20px 0px rgba(0,0,0,.1), |
| 126 | + 4px 4px 5px 0px rgba(0,0,0,.1); |
| 127 | + outline: none; |
| 128 | + display: flex; |
| 129 | + justify-content: center; |
| 130 | + align-items: center; |
| 131 | + } |
| 132 | + |
| 133 | +.btn-3 { |
| 134 | + background: rgb(1,196,223); |
| 135 | + /* background: linear-gradient(0deg, rgba(0,172,238,1) 0%, rgba(2,126,251,1) 100%); */ |
| 136 | + width: 130px; |
| 137 | + height: 40px; |
| 138 | + line-height: 42px; |
| 139 | + padding: 0; |
| 140 | + border: none; |
| 141 | + |
| 142 | + } |
| 143 | + .btn-3 span { |
| 144 | + position: relative; |
| 145 | + display: block; |
| 146 | + width: 100%; |
| 147 | + height: 100%; |
| 148 | + color: #7883d3; |
| 149 | + text-decoration: solid; |
| 150 | + align-items: center; |
| 151 | + } |
| 152 | + .btn-3:before, |
| 153 | + .btn-3:after { |
| 154 | + position: absolute; |
| 155 | + content: ""; |
| 156 | + right: 0; |
| 157 | + top: 0; |
| 158 | + /* left: 0; |
| 159 | + bottom: 0; */ |
| 160 | + background: rgba(1,196,223,1); |
| 161 | + transition: all 0.3s ease; |
| 162 | + } |
| 163 | + .btn-3:before { |
| 164 | + height: 0%; |
| 165 | + width: 2px; |
| 166 | + } |
| 167 | + .btn-3:after { |
| 168 | + width: 0%; |
| 169 | + height: 2px; |
| 170 | + } |
| 171 | + .btn-3:hover{ |
| 172 | + background: transparent; |
| 173 | + box-shadow: none; |
| 174 | + } |
| 175 | + .btn-3:hover:before { |
| 176 | + height: 100%; |
| 177 | + |
| 178 | + } |
| 179 | + .btn-3:hover:after { |
| 180 | + width: 100%; |
| 181 | + } |
| 182 | + .btn-3 span:hover{ |
| 183 | + color: rgba(1,196,223,1); |
| 184 | + } |
| 185 | + .btn-3 span:before, |
| 186 | + .btn-3 span:after { |
| 187 | + position: absolute; |
| 188 | + content: ""; |
| 189 | + left: 0; |
| 190 | + bottom: 0; |
| 191 | + /* right: 0; |
| 192 | + top: 0; */ |
| 193 | + background: rgba(1,196,223,1); |
| 194 | + transition: all 0.3s ease; |
| 195 | + } |
| 196 | + .btn-3 span:before { |
| 197 | + width: 2px; |
| 198 | + height: 0%; |
| 199 | + } |
| 200 | + .btn-3 span:after { |
| 201 | + width: 0%; |
| 202 | + height: 2px; |
| 203 | + } |
| 204 | + .btn-3 span:hover:before { |
| 205 | + height: 100%; |
| 206 | + } |
| 207 | + .btn-3 span:hover:after { |
| 208 | + width: 100%; |
| 209 | + } |
| 210 | +.output_{ |
| 211 | + display: flex; |
| 212 | + justify-content:space-evenly; |
| 213 | + margin-top: 50px; |
| 214 | +} |
| 215 | + |
| 216 | +.labels{ |
| 217 | + border: 10px; |
| 218 | + border-color: gray; |
| 219 | + padding: 80px 65px 100px 45px; |
| 220 | + background-color: white; |
| 221 | + box-shadow :2px; |
| 222 | + box-shadow: 2px 4px 8px rgba(0,0,0,0.1); |
| 223 | +} |
| 224 | + |
| 225 | +.out{ |
| 226 | + color: rgb(1,196,223); |
| 227 | + align-items: center; |
| 228 | +} |
0 commit comments