-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
91 lines (78 loc) · 1.4 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
body,
html {
margin: 0;
padding: 0;
font-family: 'Roboto', sans-serif;
background: url("https://img.freepik.com/vetores-gratis/fundo-gradiente-abstrato-branco-simples_53876-99910.jpg?w=740");
background-size: cover;
}
p {
margin: 0
}
.container {
display: flex;
justify-content: center;
align-items: center;
margin: 0 auto;
height: 100vh;
}
.page-logo {
width: 200px;
}
.image-content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
height: 100vh;
background-color: #F5CB5C;
color: rgb(98, 93, 71);
}
.content {
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
padding: 50px;
}
.conversor {
margin-top: 50px;
display: flex;
flex-direction: row;
justify-content: space-between;
width: 100%;
}
.inputs {
display: flex;
flex-direction: column;
}
.result-content {
display: flex;
align-items: center;
background-color: #F5CB5C;
padding: 50px;
border-radius: 10px;
}
.selects {
display: flex;
align-items: center;
}
input,
select,
button {
height: 40px;
margin: 5px
}
button {
border: none;
background: #F5CB5C;
}
.footer-card {
display: flex;
justify-content: space-between;
align-items: center;
}
.footer-image {
border-radius: 15%;
width: 50px;
}