-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
97 lines (83 loc) · 1.32 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
body {
font-family: "Roboto Mono", monospace;
min-height: 400px;
background-image: linear-gradient( to top, #F71678 ,black );
background-size: 100vh;
}
.areadeentrada{
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
border: 2px solid black;
border-radius: 2px;
}
.areadeconversao {
display: flex;
flex-direction: row;
justify-content: space-around
}
.container {
display: flex;
align-items: center;
flex-direction: column;
flex-wrap: wrap;
text-align: center;
padding: 20px;
height: 80vh;
width:42%;
border: 2px solid black;
border-radius: 2px;
}
.page-title {
text-align: center;
color: #ffffff;
margin: 0 0 10px;
}
.page-subtitle {
color: #ffffff;
margin-top: 5px;
}
.page-logo {
position: absolute;
top: 45px;
right: 45vw;
width: 200px;
}
.alura-logo {
display: flex;
align-items:justify;
flex-direction: column ;
width: 40px;
position: absolute;
top: 10px;
right: 40px;
}
.redeSocial{
width: 3vw;
height: auto;
padding: 2px;
}
.imagemConversor{
width: inherit;
height: auto;
margin: 2px;
}
input {
margin: 12px;
padding: 6px;
border-radius: 5px;
}
label {
color: white;
}
button {
margin-top: 12px;
padding: 4px 8px;
border-radius: 10px;
background: #ffffff;
}
h2 {
color: #ffffff;
font-size: 30px;
}