-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
45 lines (44 loc) · 947 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
*{
font-family: Arial, Helvetica, sans-serif;
margin: 0;
padding: 0;
}
.fundo{
background-image: linear-gradient(to right top, #b5b9c0, #a0afd8, #98a0ec, #a18df8, #b971fb);;
height: 100vh;
text-align: center;
color: aliceblue;
}
#result{
width: 207px;
background-color: azure;
height: 30px;
margin: 5px;
border-radius: 2px;
color: black;
text-align: right;
}
.calculator-body{
position: absolute; /*vai ocupar só o espaço dela */
background-color: rgb(65, 105, 225, 0.7);
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
padding: 10px;
border-radius: 5px;
}
button{
border-radius: 5px;
border-style:hidden;
border: 5px;
width: 50px;
height: 50px;
font-size: 20px;
cursor: pointer;
background-color:rgb(181, 194, 231, 0.6) ;
border: none;
color: rgb(51, 51, 51);
}
button:hover{
background-color:#7c9bf1;
}