-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
115 lines (100 loc) · 1.85 KB
/
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
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
* {
font-family: 'Roboto', sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
outline: none;
}
body {
height: 100%;
background: linear-gradient(180deg, rgba(198,148,49,1) 0%, rgba(16,71,44,1) 25%);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.gifs {
display: flex;
align-items: center;
justify-content: center;
gap: 80px;
margin: 20px auto;
}
.logo {
width: 100px;
display: block;
}
main {
width: 375px;
border-radius: 20px;
background-color: #f4f4f4;
padding: 44px 24px 23px;
margin: 0 auto 40px;
border: 2px solid #0a063b;
}
label {
color: #777777;
font-weight: 400;
font-size: 14px;
}
select, input {
background: #ffffff;
border: 1px solid #10472c;
border-radius: 4px;
height: 48px;
width: 100%;
margin-bottom: 24px;
padding-left: 18px;
font-weight: 700;
font-size: 16px;
color: #555555;
cursor: pointer;
}
button {
width: 100%;
background: #347e59;
border-radius: 30px;
border: none;
height: 48px;
color: #ffffff;
font-size: 18px;
font-weight: 700;
cursor: pointer;
box-shadow: 6px 6px 10px #347e59;
text-transform: uppercase;
}
button:hover {
opacity: .8;
font-size: 20px;
}
button:active {
opacity: .5;
font-size: 18px;
}
section {
border: 1px solid #10472c;
border-radius: 20px;
margin-top: 36px;
padding: 12px;
display: flex;
flex-direction: column;
align-items: center;
}
.arrow-img {
margin: 15px 0;
}
.currency-box {
display: flex;
flex-direction: column;
align-items: center;
gap: 4px;
}
.currency {
color: #777777;
font-size: 14px;
}
.currency-value, .currency-value-to-convert {
color: #555555;
font-weight: 700;
font-size: 20px;
}