-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
67 lines (59 loc) · 1.08 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: sans-serif;
}
body{
min-height: 100vh;
background-color: #090c31;
display: flex;
justify-content: center;
align-items: center;
}
.calculadora{
background-color: #15173c;
color: white;
width: 400px;
max-width: 100%;
padding: 1.5rem;
border-radius: 1rem;
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: .5rem;
}
.pantalla{
grid-column: 1/5;
background-color: #090c31;
padding: 1.5rem;
font-size: 2rem;
text-align: right;
border-radius: .5rem;
margin-bottom: 1rem;
font-family: monospace;
font-weight: 600;
}
.btn{
background-color: #15173c;
color: white;
border: 0;
padding: 1.5rem .5rem;
display: flex;
justify-content: center;
align-items: center;
border-radius: .5rem;
cursor: pointer;
}
.btn:hover{
background-color: #090c31;
}
#cero{
grid-column: span 2 ;
}
#igual{
grid-row: span 2;
background-color: #e6394a;
}
#igual:hover{
background-color: #e65766;
}