-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
85 lines (78 loc) · 2 KB
/
styles.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
:root {
--grid-cols: 1;
--grid-rows: 1;
}
main{
display:flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
}
#button_c{
display:flex;
flex-direction: column;
align-items: center;
padding-bottom:20px;
}
body{
display:flex;
flex-direction:column;
align-self:center;
justify-self: center;
background-color: antiquewhite;
}
#container {
display:flex;
flex-wrap: wrap;
display: grid;
grid-gap: 0em;
grid-template-rows: repeat(var(--grid-rows), 0fr);
grid-template-columns: repeat(var(--grid-cols), 0fr);
cursor: pointer;
height: 550px;
width:550px;
background-color: beige;
}
#bigBorder {
background-color: brown;
padding: 50px;
border-radius: 50px;
}
.grid-item {
text-align: center;
}
#btn{
background-color: azure;
margin-bottom: 100px;
}
.slidecontainer {
width: 100%; /* Width of the outside container */
}
.slider {
-webkit-appearance: none; /* Override default CSS styles */
appearance: none;
width: 100%; /* Full-width */
height: 25px; /* 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;
}
.slider:hover {
opacity: 1; /* Fully shown on mouse-over */
}
.slider::-webkit-slider-thumb {
-webkit-appearance: none; /* Override default look */
appearance: none;
width: 25px; /* Set a specific slider handle width */
height: 25px; /* Slider handle height */
background: #04AA6D; /* Green background */
cursor: pointer; /* Cursor on hover */
}
.slider::-moz-range-thumb {
width: 25px; /* Set a specific slider handle width */
height: 25px; /* Slider handle height */
background: #04AA6D; /* Green background */
cursor: pointer; /* Cursor on hover */
}