-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
52 lines (46 loc) · 945 Bytes
/
style.css
File metadata and controls
52 lines (46 loc) · 945 Bytes
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
.titulo{
font-family:Georgia, 'Times New Roman', Times, serif;
letter-spacing: 3px;
padding-top: 30px;
color: black;
}
.fundo{
margin-top: -50px;
background-image: linear-gradient(45deg, #DAD2F3, #FBA8A4 );
height: 100vh;
color: white;
font-family: Arial, Helvetica, sans-serif;
text-align: center;
}
.calculadora{
position: absolute;
background-color: rgba(0, 0,0, 0.7);
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
border-radius: 15px;
padding: 15px;
}
.botao{
width: 50px;
height: 50px;
font-size: 25px;
cursor: pointer;
background-color: rgb(31, 31, 31);
border: none;
color: #fff;
margin:3px;
}
.botao:hover{
background-color: black;
}
#resultado{
background-color:white;
width: 207px;
height: 30px;
margin: 5px;
font-size: 25px;
color: black;
text-align: right;
padding: 5px;
}