-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
73 lines (73 loc) · 1.6 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, Helvetica, sans-serif;
}
body{
background-color:rgb(9, 2, 37);
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
}
.container{
width: 90%;
max-width: 600px;
background-image: linear-gradient(120deg,rgb(253, 62, 244),rgb(90, 62, 250));
border-radius: 15px;
padding: 30px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
display: flex;
flex-direction: column;
align-items: center;
color: #fff;
text-align: center;
}
.container h1{
font-size: 28px;
font-weight: bold;
margin-bottom: 20px;
color: #fff;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.converter_row{
display: flex;
width: 100%;
justify-content: space-between;
align-items: center;
background-color: rgb(4, 2, 41);
border-radius: 10px;
padding: 20px;
box-shadow: 0 4px 12px rgba(0,0,0,0.15)
}
.col{
flex-basis: 30%;
display: flex;
flex-direction: column;
align-items: center;
}
.col label{
font-size: 16px;
font-weight: 600;
margin-bottom: 8px;
color: #f2f2f2;
text-transform: uppercase;
}
.col input{
width: 100%;
max-width: 150px;
padding: 8px;
border: none;
border-radius: 5px;
background-color: #fff;
color: #333;
font-size: 16px;
text-align: center;
box-shadow: 0 2px 6px rgba(0,0,0,0.1);
transition: 0.3s;
}
.col input:focus{
outline: none;
box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}