-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
66 lines (63 loc) · 1.17 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
*,*:after,*:before{
padding:0;
margin:0;
box-sizing:border-box;
}
body{
height:100vh;
background-color: aqua;
}
.container{
width:40%;
min-width:450px;
background-color: #1c1e21;
padding:80px 30px;
position:absolute;
left:50%;
top:50%;
transform:translate(-50%,-50%);
border-radius:10px;
box-shadow: 15px 20px 20px rgba(0 0 0 0.5);
}
#output{
background-color: transparent;
border:none;
border-bottom:2px solid #e2e2e2;
width:75%;
height:35px;
padding:20px 5px;
font-family: monospace;
color:#f5f5f5;
font-size:18px;
letter-spacing: 1px;
}
button{
width:10%;
height:38px;
background-color:transparent;
border:none;
color:#ffffff;
font-size:18px;
float:right;
text-align:right;
cursor: pointer;
}
input[type="range"]{
width:85%;
height:3.5px;
margin-top:80px;
background-color: #e2e2e2;
border-radius:3px;
}
h3{
font-family:sans-serif;
display:inline-block;
width:10%;
color:#1c1e21;
text-align:center;
padding:5px 0 ;
margin-left:3%;
border-radius:3px;
background-color: #ffffff;
font-size:18px;
}