-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcalculadora.css
More file actions
92 lines (78 loc) · 1.63 KB
/
Copy pathcalculadora.css
File metadata and controls
92 lines (78 loc) · 1.63 KB
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
*{
margin: 0;
padding: 0;
}
.fundo{
background-image: linear-gradient(45deg, rgb(251, 7, 48), rgb(234, 148, 182));
height: 100vh;
color: white;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
text-align: center;
}
.nome{
padding: 40px;
text-shadow: 2px 2px 4px #000012;
}
h1{
text-shadow: 2px 2px 4px #000012;
}
.calculadora{
position: absolute;
background-color: rgb(243, 155, 233);
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
border-radius: 30px;
padding: 15px;
box-shadow:3px 3px 5px #a0052f;
}
.botao{
width: 50px;
height: 50px;
font-size: 25px;
cursor: pointer;
background-color: white;
border-radius: 25px;
color:rgb(244, 5, 148);
margin: 2px;
border-color: purple;
box-shadow:1px 1px 2px #a0052f;
}
.botao:hover{
background-color:pink ;
}
.botao1{
width: 50px;
height: 100px;
font-size: 25px;
cursor: pointer;
background-color: white;
border-radius: 25px;
color:rgb(244, 5, 148);
border-color: purple;
box-shadow:1px 1px 2px #a0052f;
}
.botao2{
width: 109px;
height: 50px;
font-size: 25px;
cursor: pointer;
background-color: white;
border-radius: 25px;
color:rgb(244, 5, 148);
border-color: purple;
box-shadow:1px 1px 2px #a0052f;
}
#resultado{
background-color: white;
width: 207px;
left: 50px;
margin: 10px;
border-radius: 15px;
font-size: 25px;
color: black;
text-align: right;
padding: 6px;
height: 30px;
box-shadow:2px 2px 4px #a0052f;
}