-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
130 lines (115 loc) · 2.12 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: Arial, Helvetica, sans-serif;
}
body {
background-color: #1F5EAF;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
main {
background-color: #DC4500;
width: 35%;
height: 95%;
border-radius: 40px;
box-shadow: 0px 0px 5px 2px black;
display: flex;
align-items: center;
flex-direction: column;
}
#titulo {
width: 100%;
height: 15%;
border-bottom: 4px solid black;
color: white;
display: flex;
justify-content: center;
align-items: center;
}
#form {
width: 100%;
display: flex;
align-items: center;
flex-direction: column;
}
.campos {
width: 90%;
height: 50px;
margin: 13px 0px;
border: 2px solid black;
border-radius: 10px;
display: flex;
justify-content: center;
}
legend {
margin-left: 10px;
padding: 0px 4px;
color: white;
}
input {
background-color: transparent;
color: white;
border: none;
width: 98%;
height: 100%;
padding: 5px;
outline: none;
}
::-webkit-input-placeholder {
color: white;
opacity: .5;
}
#divResultado {
background-color: black;
width: 90%;
height: 180px;
border-radius: 10px;
font-size: 13px;
color: #f5814b;
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
}
#buttons {
/*background-color: black;*/
width: 90%;
margin-top: 13px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.btn {
background-color: transparent;
margin-bottom: 8px;
padding: 5px;
width: 100%;
height: 40px;
border: none;
border-radius: 10px;
font-weight: bold;
cursor: pointer;
display: flex;
justify-content: center;
align-items: center;
}
.calcular {
background-color: black;
color: white;
}
.calcular:hover {
background-color: transparent;
border: 2px solid #1F5EAF;
}
.limpar {
background-color: transparent;
border: none;
}
.limpar:hover {
border: 2px solid white;
}