-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
102 lines (89 loc) · 1.31 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
97
98
99
100
101
102
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
text-align: center;
}
.container {
text-align: center;
}
button {
padding: 10px 20px;
margin: 5px;
font-size: 16px;
cursor: pointer;
border-radius: 10px;
border: none;
background-color: darkolivegreen;
color: #f4f4f4;
}
#resultadoConversao,
#resultadoCotacao {
margin-top: 20px;
font-size: 18px;
font-weight: bold;
}
#section2,
#section1,
#section3 {
padding-top: 100px;
}
#section2,
#section3 {
display: flex;
flex-direction: column;
max-width: 600px;
justify-content: center;
align-items: center;
gap: 10px;
margin: 0 auto;
}
input,
select {
border-radius: 5px;
height: 20px;
margin-bottom: 15px;
}
#section3 {
padding-bottom: 100px;
}
#footer {
height: 80px;
background-color: darkolivegreen;
color: #f4f4f4;
padding: 10px 0px 10px;
}
#navbar,
ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
gap: 20px;
}
#navbar {
background-color: darkolivegreen;
padding: 20px;
display: flex;
justify-content: center;
flex-direction: row;
align-items: flex-start;
width: 100%;
top: 0;
position: fixed;
z-index: 1000;
}
li {
margin-right: 20px;
}
a {
text-decoration: none;
color: white;
font-weight: bold;
}
button:hover,
button:active {
background-color: #98fb98;
color: black;
}