-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
51 lines (45 loc) · 922 Bytes
/
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
@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@300&display=swap");
body {
height: 100vh;
text-align: center;
background-image: url("https://images.alphacoders.com/697/697322.jpg");
background-color: aqua;
background-size: cover;
color: white;
font-family: "Ubuntu", sans-serif;
font-size: 20px;
margin: 0;
}
.container {
text-align: center;
height: 300px;
padding-top: calc(50vh - 150px);
}
input {
font-size: 18px;
font-family: "Ubuntu", sans-serif;
width: 90px;
border: none;
background: transparent;
border-bottom: solid 2px white;
color: white;
outline-style: none;
}
select {
font-size: 19px;
font-family: "Ubuntu", sans-serif;
outline: none;
border: none;
color: white;
background: #070d2d;
}
#valorConvertido {
margin: auto;
margin-top: 20px;
background-color: #00000077;
padding: 10px;
width: 260px;
}
h1 {
font-size: 35px;
}