-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
88 lines (79 loc) · 1.57 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
*{
margin: 0;
padding: 0;
border: 0;
font-family: 'Inter',sans-serif;
}
body{
display: flex;
justify-content: center;
height: 100vh;
align-items: center;
background: linear-gradient(320deg, #9bb8ff, #87cefa, #76e0ff);
}
main{
max-width: 400px;
height: auto;
margin: 10px 18px;
padding: 20px;
background-color: rgba(255, 255, 255, 0.364);
backdrop-filter: blur(10px); /* Aplica o desfoque no fundo */
border-radius: 16px;
box-shadow: 0px 4px 30px #49b9ff90 ;
}
.resultado{
display: flex;
justify-content:center;
}
.tela{
display: block;
width: 332.6px;
height: 80px;
background-color: rgba(255, 255, 255, 0.364);
backdrop-filter: blur(10px);
border-radius: 16px;
font-size: 2rem;
text-align: right;
margin-bottom: 20px;
padding: 5px;
box-shadow: 1px 1px 20px #64c2fc57;
}
.teclado{
display: flex;
flex-direction: column;
}
.butn-row{
display: flex;
}
.butn{
display: block;
width: 80px;
height: 80px;
margin: 3px;
border-radius: 16px;
font-size: 24px;
text-align: center;
cursor: pointer;
transition: all 0.1s ease;
}
.butn:hover {
box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
transform: translateY(-1px);
}
/* Efeito ao clicar (afundar) */
.butn:active {
box-shadow: 0 2px 5px #a9adb73f;
transform: translateY(4px);
}
.butn-zero{
width: 167px;
}
.butn-simbolo{
color: #526cae;
font-weight: 500;
box-shadow: 4.5px 2px #a9adb73f ;
}
.butn-igual{
background-color: #9bb8ff;
color: white;
}