-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
112 lines (93 loc) · 1.5 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
body {
background-color: #faf9f9;
font-family: "Quicksand", sans-serif;
}
.title {
font-size: 50px;
margin-top: 20px;
color: #555b6e;
font-weight: 700;
}
.content {
margin-top: 20px;
font-size: 20px;
}
.forms {
width: 400px;
}
.forms label {
color: #555b6e;
}
.btn {
background-color: #89b0ae;
color: white;
}
.info {
text-align: center;
color: #555b6e;
}
.underweight {
background-color: red;
color: white;
padding: 5px;
font-weight: bold;
}
.normal {
background-color: green;
color: white;
padding: 5px;
font-weight: bold;
}
.obese {
background-color: darkred;
color: white;
padding: 5px;
font-weight: bold;
}
.slidecontainer {
margin-top: 50px;
text-align: center;
}
.slider:hover {
opacity: 1;
}
.slider {
width: 500px;
background-image: linear-gradient(to right, red,green,red);
}
.slider::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 20px;
height: 20px;
border-radius: 50%;
background: white;
cursor: pointer;
}
.slider::-moz-range-thumb {
width: 20px;
height: 20px;
border-radius: 50%;
background: white;
cursor: pointer;
}
/* Nese eshte nderpeshe ose mbipeshe */
.sliderun {
width: 500px;
}
.sliderun::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 20px;
height: 20px;
border-radius: 50%;
background: white;
cursor: pointer;
}
.sliderun::-moz-range-thumb {
width: 20px;
height: 20px;
border-radius: 50%;
background: white;
cursor: pointer;
}