-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathround_off.css
More file actions
59 lines (59 loc) · 1.19 KB
/
round_off.css
File metadata and controls
59 lines (59 loc) · 1.19 KB
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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body{
display: flex;
height: 100vh;
justify-content: center;
padding: 10px;
background: linear-gradient(135deg, #71b7e6, #9b59b6);
}
.container{
align-self: center;
text-align: center;
font-size: 30px;
font-weight: 500;
align-items: center;
}
#value{
margin-top: 3%;
border: 2px solid pink;
border-radius: 50px;
outline: none;
padding: 10px;
font-size: 20px;
width: 300px;
height: 50px;
}
#value::-webkit-inner-spin-button{
-webkit-appearance: none;
margin: 0;
}
.btn{
margin-top: 3%;
border: 2px solid pink;
border-radius: 50px;
outline: none;
padding: 10px;
font-size: 20px;
width: 150px;
height: 50px;
}
.nearest{
font-size: 40px;
}
.select{
width: 110px;
height: 40px;
font-size: 20px;
text-align: center;
outline: none;
border: 2px solid pink;
align-items: center;
border-radius: 20px;
margin-left: 10px;
}