-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
98 lines (77 loc) · 1.62 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
96
97
98
#calculator {
display: flex;
flex-direction: column;
align-items: center;
width: 500px;
margin: 50px auto;
padding: 20px;
background-color: #F9C5D5;
border: solid #F2789F;
border-radius: 10px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
#display-outer {
border-radius: 10px;
border: inset 2px #F2789FA1;
height: 140px;
width: 480px;
display: flex;
justify-content: center;
align-items: center;
background-color: #ffd1df;
}
#display-inner {
background-color: #FFDEE8;
border: inset #F2789F42;
padding: 10px;
height: 100px;
width: 440px;
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: flex-end;
color: #3f0316;
}
#display-top {
margin: 0px 5px;
font-size: 25px;
line-height: 25px;
height: 30px;
}
#display-bottom {
margin: 0px;
font-size: 45px;
line-height: 45px;
height: 45px;
}
.button-row {
display: flex;
justify-content: center;
width: 100%;
height: 90px;
background-color: #F9C5D5;
padding: 0 10px;
}
#first-row {
padding-top: 10px;
}
.button-row button {
flex: 1 1 25%;
background-color: #F999B7;
margin: 5px;
border-radius: 20px;
border: 2px solid #F2789F;
font-size: 30px;
color: #3f0316d7;
font-weight: 900;
}
.button-row button:hover {
background-color: #f383a7db;
}
.button-row button.operator, #equals {
background-color: #F2789F;
border: 2px solid #EE5788;
}
.button-row button.operator:hover, #equals:hover {
background-color: #f36692;
}