-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
78 lines (74 loc) · 1.25 KB
/
styles.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
html {
height: 100%;
}
body {
height: 100%;
background-color: rgb(31, 30, 30);
}
.title {
color: white;
font-family: system-ui;
font-size: 3rem;
margin: 10%;
text-align: center;
}
.container {
background-color: rgb(51, 51, 51);
display: flex;
align-items: center;
justify-content: space-around;
margin: auto;
height: 35%;
width: 75%;
border: 1px solid rgba(90, 89, 89, 0.644);
padding: 10px;
box-shadow: -5px -5px 50px black;
}
.center {
margin-left: auto;
margin-top: auto;
}
.converter {
justify-content: center;
display: flex;
align-items: center;
justify-content: space-around;
margin: 50px;
height: auto;
width: 80%;
}
.calc_input {
display: block;
}
.first_currency_select {
height: 35px;
border-radius: 3px
}
.second_currency_select {
height: 35px;
border-radius: 3px
}
.currency_input {
height: 35px;
border-radius: 5px;
}
.currency_output {
height: 35px;
border-radius: 5px;
}
.convert {
background-color: rgb(194, 194, 194);
height: 50px;
width: auto;
padding-left: 30px;
padding-right: 30px;
padding-bottom: 5px;
border: 1px solid #222222;
border-radius: 5px;
font-size: 32px;
font-weight: 600;
line-height: 20px;
}
.convert:hover {
background-color: gray;
}