-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
70 lines (58 loc) · 1.22 KB
/
styles.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
body {
display: grid;
justify-content: center;
align-items: center;
height: 100vh;
font-family: Arial, sans-serif;
background-color: #f0f8ff;
}
.titulo{
flex-shrink: 0;
color: #000;
text-align: center;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 54.5%;
margin-top: 67px;
margin-right: 410;
}
.calculadora {
border: 1px solid #ffffff;
width: 400px;
border-radius: 10px;
overflow: hidden;
}
.display {
background-color: #000;
color: #5FEB3E;
padding: 10px 15px;
font-size: 25px;
text-align: right;
border-radius: 10px;
}
.buttons {
margin-top: 5px;
display: grid;
grid-template-columns: repeat(4, 1fr);
border: 1px solid #cccccc;
border-radius: 10px;
background-color: #f0f8ff;
}
button {
margin-top: 5px;
margin-left: 5px;
margin-right: 5px;
margin-bottom: 5px;
padding: 30px;
font-size: 20px;
border-radius: 10px;
background-color: #cccccc;
cursor: pointer;
}
button:nth-child(4n-) {
background-color: #f0f0f0;
}
button:hover {
background-color: #e5e5e5;
}