-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
82 lines (82 loc) · 1.67 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
body {
background-color: #2D2D2D;
color: #B3B3B3;
font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
text-align: center;
}
h1 {
font-size: 36px;
background: linear-gradient(45deg, #6C63FF, #818CF8);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
margin-bottom: 50px;
}
.converter-box {
color: #B3B3B3;
background-color: #333;
padding: 20px;
border-radius: 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
}
.currency-input {
display: flex;
align-items: center;
gap: 10px;
position: relative;
}
.currency-symbol {
position: absolute;
left: 10px;
font-size: 18px;
color: #ccc;
}
input[type="number"] {
background-color: #555;
color: #ccc;
border: 2px solid #777;
border-radius: 20px;
padding: 10px 10px 10px 30px;
width: 150px;
font-size: 16px;
-moz-appearance: textfield;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
.exchange-rate {
font-size: 18px;
color: #b3b3b3a6;
display: flex;
align-items: center;
gap: 5px;
}
img {
width: 30px;
height: 30px;
border-radius: 50%;
object-fit: cover;
}
footer {
padding: 50px;
}
footer a {
color: #6C63FF;
text-decoration: none;
transition: color 0.3s ease-in-out;
}
footer a:hover {
color: #818CF8;
}