-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
95 lines (79 loc) · 1.35 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
89
90
91
92
93
94
95
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, Helvetica, sans-serif;
}
body {
background: whitesmoke;
width: 100vw;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.calc {
align-items: center;
background-color: #e3e0e0;
display: flex;
flex-direction: column;
padding: 0.3rem;
width: auto;
}
.calc-botoes {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
grid-gap: 2px;
}
button {
width: 5rem;
height: 3.5rem;
border: none;
}
button:hover {
background-color: #ccc;
}
.botoes-numericos {
font-size: large;
font-weight: bold;
}
.bgWhite {
background-color: white;
}
.btnIgual {
background-color: #95bff5;
}
.btnIgual:hover {
background-color: #75a9ee;
}
.BtnsSinais {
font-size: 20px;
}
.scroll {
width: 20rem;
overflow-x: auto;
white-space: nowrap;
}
.display {
font-weight: bold;
width: 100%;
text-align: end;
font-size: 35px;
padding: 15px 5px;
}
@media(max-width: 600px) {
button {
width: 4rem;
}
.scroll {
width: 16rem;
}
}
@media(max-width: 300px) {
button {
width: 3rem;
}
.scroll {
width: 12rem;
}
}