-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
106 lines (92 loc) · 1.45 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
body {
font-family: 'Roboto Mono', monospace;
min-height: 400px;
background-color: #000000;
background-size: 100vh;
background-position: center bottom;
background-repeat: no-repeat;
overflow-x: hidden;
}
.container {
width: 100vw;
height: 90vh;
display: flex;
justify-content: center;
align-items: center;
}
.box {
width: 300px;
height: 300px;
padding: 15px;
background: #fcf9d8;
text-align: center;
border-radius: 5px;
}
.page-title {
color: #000000;
margin: 0 0 5px;
}
.page-subtitle {
color: #000000;
margin-top: 5px;
}
.page-logo {
width: 200px;
position: absolute;
top: 10px;
left: 10px;
}
.alura-logo {
width: 40px;
position: absolute;
top: 10px;
right: 10px;
}
.github-logo{
width: 40px;
position: absolute;
top: 35px;
right: 10px;
}
input {
margin: 12px;
padding: 6px;
border-radius: 5px;
color: #000000;
background-color: #fdf4c8;
}
label {
color: rgb(0, 0, 0);
}
button {
border: 0;
border-radius: 5px;
padding: 9px;
height: 38px;
}
#dolar {
color: rgb(0, 0, 0);
font-size: 15px;
cursor: pointer;
background: #00ccbe;
transition: 0.3s ease;
}
#euro {
color: rgb(0, 0, 0);
font-size: 15px;
cursor: pointer;
background: #5cceee;
transition: 0.3s ease;
}
#bitcoin {
color: rgb(0, 0, 0);
font-size: 15px;
cursor: pointer;
background: #f8db57;
transition: 0.3s ease;
}
#valorConvertido {
color: #ffffff;
font-size: 30px;
margin-top: 135px;
}