-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
89 lines (79 loc) · 1.42 KB
/
style.css
File metadata and controls
89 lines (79 loc) · 1.42 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
#calculator {
height: 530px;
width: 350px;
background-color: #807A7A;
box-shadow: -6px 5px 5px #807a7a88;
margin-top: 50px;
display: flex;
flex-direction: column;
justify-content: space-around;
border-radius: 50px;
}
body {
background-color: whitesmoke;
}
/*Centraliza e organiza os números*/
.bottom-display #numbers {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 15px;
}
.top-display, #display-clear {
display: flex;
flex-direction: column;
align-items: center;
}
.extern {
display: flex;
justify-content: center;
align-items: center;
}
#numbers button{
width: 90px;
height: 40px;
border: 0px;
border-radius: 15px;
}
#display {
background-color: #D9D9D9;
height: 95px;
width: 299px;
display: flex;
justify-content: center; /*centralize numbers*/
align-items: center;
border-radius: 40px;
flex-wrap: wrap;
}
#clear-button button {
width: 270px;
height: 33px;
border-radius: 35px;
border: 0px;
}
#operators button {
height: 35px;
width: 48px;
border: 0px;
border-radius: 15px;
}
#operators {
display: flex;
gap: 15px;
}
.top-display {
gap: 7px;
}
#display-clear {
gap: 5px;
}
/* values customized */
span {
color: #434040ee;
font-family: "Cause", cursive;
font-weight: bolder;
}
#result {
flex-basis: 100%;
text-align: center;
}