-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
82 lines (73 loc) · 1.34 KB
/
index.css
File metadata and controls
82 lines (73 loc) · 1.34 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
body {
font-family: Inter;
margin: 0px;
height: 100%;
width: 100%;
}
#main-container{
background-color: #6943FF;
display: flex;
flex-direction: column;
align-items: center;
color: #fff;
font-size: 28px;
letter-spacing: -2px;
}
#name-h{
margin-left: 1rem;
margin-right: 1rem;
}
#convert-form{
display: flex;
flex-direction: column;
align-items: center;
box-sizing: border-box;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
#data-input{
-moz-appearance: textfield;
color: #fff;
width: 7rem;
height: 6rem;
background-color: #6943FF;
border: solid 2px #B295FF;
border-radius: 5px;
font-size: 58px;
text-align: center;
}
#convert-btn{
margin-top: 2rem;
margin-bottom: 2em;
color: #3D3D3D;
font-size: 16px;
border-radius: 5px;
border: none;
width: 7rem;
height: 3rem;
}
#results-area{
background: #F4F4F4;
display: flex;
flex-direction: column;
position: absolute;
width: 100%;
height: 100%;
}
.results-container{
background: #fff;
width: 80%;
height: 8rem;
margin: 1rem auto;
color: #000;
text-align: center;
padding-top: 1rem;
font-size: 14px;
}
.results-container h3{
color: #5A537B;
font-size: 20px;
}