-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
76 lines (65 loc) · 1.16 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
* {
border: 0;
margin: 0;
padding: 0;
font-family: "Courier New", sans-serif;
}
body {
display: flex;
justify-content: center;
}
.calculator {
background-color: #c714c7;
border: 3px solid black;
border-radius: 15px;
width: 400px;
height: 600px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
margin-top: 50px;
}
.calculator #display {
border: 1px solid black;
border-radius: 3px;
background-color: #ffffff;
font-size: 48px;
width: 360px;
height: 70px;
margin: 20px;
display: flex;
justify-content: space-between;
align-items: center;
}
.calculator #display p {
margin-right: 10px;
}
.calculator #display #sign {
margin: 0 0 0 10px;
}
.calculator .buttons div {
margin-bottom: 20px;
}
.calculator .buttons button {
border: 1px solid black;
border-radius: 40px;
font-size: 30px;
width: 80px;
height: 80px;
}
.buttons button {
background-color: #f89a8f;
}
#backspace {
width: 160px;
}
#add,
#subtract,
#multiply,
#divide,
#negate,
#all-clear,
#backspace {
background-color: #e06b5e;
}