-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
131 lines (114 loc) · 2.7 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
126
127
128
129
130
131
body {
font-family: Arial, Helvetica, sans-serif;
font-size: 20px;
padding: 0 20px 30px 0;
line-height: 1.4;
}
.flex-container{
margin-top: 10px;
display: flex;
flex-wrap: nowrap;
width: 100%;
height: 200px;
justify-content: center;
transition: 2s all ease;
}
.flex-item{
background: rgb(45,41,38);
border: 1pt solid rgb(233,75,60);
width: 10px;
transition: 0.1s all ease;
}
.row{
display: grid;
grid-template-columns: 1fr 1fr 2fr;
}
#input{
display: flex;
padding: 10px;
justify-content: space-around;
}
.button{
font-size: 7px;
margin: 3px 1px;
transition-duration: 0.4s;
cursor: pointer;
opacity: 1;
font-family: roboto;
padding: 10px 40px;
border: 1px solid rgb(233,75,60);
border-radius: 50px;
text-transform: uppercase;
letter-spacing: 2px;
font-weight: bold;
color: rgb(233,75,60);
text-align: center;
}
.n{
font-size: 7px;
margin: 3px 1px;
transition-duration: 0.4s;
cursor: pointer;
opacity: 1;
font-family: roboto;
padding: 10px 42px;
border: 1px solid rgb(233,75,60);
border-radius: 50px;
text-transform: uppercase;
letter-spacing: 2px;
font-weight: bold;
color: silver;
text-align: center;
}
.b1 {
background-color: rgb(45,41,38);
color:rgb(233,75,60);
border: 2px solid rgb(233,75,60);
}
.b1:hover {
background-color: rgb(233,75,60);
color: rgb(45,41,38);
}
.b2 {
background-color: rgb(45,41,38);
color:silver;
border: 2px solid silver;
}
.b2:hover {
background-color: silver;
color: rgb(45,41,38);
}
.slidecontainer {
width: 100%;
}
.slider {
-webkit-appearance: none;
width: 100%;
height: 15px;
border-radius: 5px;
background: #d3d3d3;
outline: none;
opacity: 0.7;
-webkit-transition: .2s;
transition: opacity .2s;
}
.slider:hover {
opacity: 1;
}
.slider::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 25px;
height: 25px;
border-radius: 50%;
background: rgb(45,41,38);
border: 2px solid rgb(233,75,60);
cursor: pointer;
}
.slider::-moz-range-thumb {
width: 25px;
height: 25px;
border-radius: 50%;
background: #04AA6D;
cursor: pointer;
}