forked from fineanmol/Hacktoberfest2024
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStyle.css
56 lines (56 loc) · 1.02 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
@import url(https://fonts.googleapis.com/css?family=Montserrat:300);
* {
margin: 0;
padding: 0;
box-sizing: border-box;
border: 5px;
}
body {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
height: 100vh;
margin: 0;
font-family: Montserrat, sans-serif;
}
.container {
width: 28rem;
height: 34rem;
background-color: rgb(110, 100, 100);
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
}
#top {
top: -0.4rem;
left: -0.35rem;
}
#bottom {
bottom: -0.3rem;
left: -0.35rem;
}
input[type="range"]::-webkit-slider-runnable-track {
cursor: pointer;
background-color:blue;
border-radius: 0.3rem;
height: 0.6rem;
}
input[type="range"]::-webkit-slider-thumb {
background-color:grey;
color:navy;
cursor: hand;
margin-top: -0.1rem;
}
h4 {
text-shadow: 0.2px 0.2px 14px #ff1493;
}
.css {
background-color: blue;
color: grey;
text-align: center;
padding: 1.25rem 2.5rem;
width: 21.87rem;
height: 8.1rem;
}