-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
94 lines (82 loc) · 1.5 KB
/
index.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
body {
margin: 0px auto;
padding: 0;
text-align: center;
color: white;
font-family: "Inter", sans-serif;
max-width: 550px;
}
#container-Top {
width: 550px;
height: 285px;
background: #6943FF;
border: 3px solid black;
border-radius: 30px 30px 0px 0px;
}
h1 {
padding-top: 35px;
}
#input {
display: block;
border-radius: 5px;
font-size: 50px;
margin: 0px auto;
width: 120px;
font-size: 58px;
font-weight: 800;
background: #6943FF;
border: 3px solid #B295FF;
text-align: center;
color: white;
}
#input:focus {
outline: none;
border: 3px solid #273549;
color: lightgrey;
text-shadow: 1px 1px 5px black;
}
#input:hover {
cursor: pointer;
}
#convert-btn{
margin-top: 25px;
border: none;
border-radius: 5px;
font-size: 16px;
color: #3D3D3D;
padding: 8px 25px;
background: white;
box-shadow: 0px 1px 2px 0px #00000D;
}
#convert-btn:hover{
cursor: pointer;
}
#convert-btn:active{
box-shadow: 0 0.5em 0.5em -0.4em #00000D;
transform: translateY(-0.25em);
}
.conversionInfo {
background: #273549;
width: 500px;
height: 110px;
margin: 30px auto;
color: #CCC1FF;
width: 500px;
border-radius: 5px 0px 0px 0px;
}
h3 {
padding: 30px 0px 0px 0px;
margin: 0px;
font-size: 20px;
}
#lengthInfo, #volumeInfo, #massInfo {
margin: 15px 0px 0px 0px;
font-size: 14px;
}
#container-Bottom {
width: 550px;
height: 450px;
background: #1F2937;
border: 3px solid black;
border-radius: 0px 0px 30px 30px;
}