-
Notifications
You must be signed in to change notification settings - Fork 0
/
alura-aula1.css
119 lines (106 loc) · 2.16 KB
/
alura-aula1.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
body{
background-image: url(https://exame.com/wp-content/uploads/2016/10/thinkstockphotos-489956624.jpg);
background-size: cover;
background-position: center bottom;
background-repeat: no-repeat;
font-family: 'Roboto Mono',monospace;
min-height: 400px;
margin-left: auto;
margin-right: auto
}
.caixa{
width: 400px;
background: #131417a6;
padding: 10px;
position: relative;
border-radius: 15px 0 15px 0;
border: 2px solid Burlywood;
}
.logo-principal { /*logo alura azul*/
width: 50px; /* logo no canto superior*/
position: absolute;
right: 5%;
top: 10px;
float: right;
display: inline;
padding: 3.5%;
}
.logo-secundario {
width: 150px;
position: absolute;
padding: 5px;
top: 100px;
left: 45%;
}
.bloco-principal{
padding: 20px;
text-align: center;
color: white;
font-size: 20px;
height: 100vh;
}
p{
padding: 25px;
margin-top: 5px
}
.cotacao{
position: absolute;
color: white;
font-size: 18px;
text-align: center;
font-weight: 300;
top: 52%;
left: 35%;
padding: 20px;
}
.caixa{
padding: 15px;
text-align: center;
position: absolute;
display: block;
top: 30%;
left: 35%;
}
input{
display: inline-block;
width: 66%;
height: 50%;
margin: 3px 0 15px;
outline: none!important;
padding: 0 25px;
font-size: 18px;
align-items: center;
border: 2px solid;
border-color: white;
border-radius: 15px;
}
button{
box-sizing: border-box;
background-color: transparent;
color: white;
border-color: white;
display: inline-block;
position: relative;
border-style: solid;
font-weight: 700;
border-radius: 15px;
width: 35%;
height: 50%;
cursor: pointer;
}
button:hover{
color: gold;
border-color: gold;
}
span{
text-align: center;
width: 35%;
padding: 10px;
display: block;
position: relative;
font-size: 18px;
top: 30%;
left: 30%;
color:gold;
font-weight: 900;
}