-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
52 lines (52 loc) · 960 Bytes
/
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
.main {
display: flex;
flex-direction: column;
justify-content: center; /* Horizontal centering */
align-items: center; /* Vertical centering */
height: 100vh; /* Set height to full viewport height */
}
input {
width: 54%;
height: 25px;
margin: 20px;
box-shadow: rgb(226, 247, 243) 1px 1px 2px 2px;
border: none;
}
.container {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
padding: 10px;
width: 60vw;
height: 35vh;
border: 2px solid;
}
.btn{
display: flex;
flex-direction: column;
align-items: center;
gap: 4px;
}
.btn button{
font-size: 1rem;
background-color: #8b8a8a;
}
.btn button:hover{
cursor: pointer;
}
.from,
.to {
display: flex;
flex-direction: column;
justify-content: space-between;
width: 100px;
padding: 4px;
box-shadow: rgb(67 38 38) 1px 1px 2px 2px;
}
.from h1, .to h1{
font-size: 1em;
}
.result h1{
font-size: 1em;
}