-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
46 lines (43 loc) · 875 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
* {
margin: 0;
padding: 0;
}
.fundo {
background-image: linear-gradient(45deg,rgb(0, 0, 0), rgb(165, 151, 178));
height: 100vh;
color: #fff;
font-family: Arial, Helvetica, sans-serif;
text-align: center;
}
.calculadora {
position: absolute;
background-color: rgb(0, 0, 0, 0.8);
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border-radius: 15px;
padding: 15px;
}
#resultado {
background-color: white;
width: 207px;
height: 30px;
margin: 5px;
font-size: 25px;
color:black;
text-align: right;
padding: 5px;
}
.botao {
background-color: rgb(52, 51, 51);
height: 50px;
width: 50px;
font-size: 25px;
cursor: pointer;
border: none;
color: #fff;
margin: 3px;
}
.botao:hover {
background-color: black;
}