-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
54 lines (53 loc) · 1.01 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
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap");
* {
margin: 0;
padding: 0;
font-family: "Roboto", sans-serif;
box-sizing: border-box;
}
/* Add your CSS styles for the converter here */
body {
width: 100%;
height: 100vh;
background: #b9f2f3 ;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
color: #404097 ;
}
.converter {
width: 520px;
margin: 0 auto;
padding: 10px;
border-radius: 20px;
background: #90dcf5;
display: flex;
justify-content: space-between;
font-size: 22px;
flex-wrap: wrap;
color:#05054787 ;
box-shadow: 0px 1px 2px 1px;
}
label {
margin-left: 20px;
margin-bottom: 0;
}
.container {
margin: 4px;
display: flex;
flex-direction: column;
}
input {
width: 180px;
border: 0px solid #05054776;
box-shadow: 0px 2px 3px 1px;
border-radius: 10px;
padding: 0;
margin: 8px 6px;
background: transparent;
font-size: 50px;
text-align: left;
cursor: pointer;
color: #05054798;
}