-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
69 lines (64 loc) · 1.1 KB
/
styles.css
File metadata and controls
69 lines (64 loc) · 1.1 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
.calculator {
display: block;
height: 420px;
width: 200px;
background-color: rgb(150, 179, 156);
border: 1px solid black;
margin: 100px auto;
padding: 8px;
}
.display {
background-color: rgb(44, 44, 44, 50%);
border: 1px solid white;
height: 100px;
width: 90%;
margin: 8px auto;
padding: 4px;
color: white;
}
.operations {
text-align: end;
font-style: italic;
}
.result {
text-align: end;
font-size: x-large;
font-weight: 800;
}
.digits {
display: flex;
flex-wrap: wrap;
margin: 8px;
justify-content: center;
width: 180px;
}
.digits button {
padding: 8px;
margin: 2px;
width: 50px;
font-weight: 500;
font-size: larger;
}
.operators {
display: flex;
flex-wrap: wrap;
margin: 8px;
justify-content: center;
width: 180px;
}
.operators button {
padding: 8px;
margin: 2px;
font-weight: 500;
font-size: larger;
}
#clear {
display: block;
padding: 8px;
margin: 2px;
font-weight: 500;
margin: auto;
}
button {
background-color: rgb(255, 255, 255, 50%);
}