-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
116 lines (99 loc) · 2.03 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
body {
background: #6f7979;
font: normal bold 15px "Roboto Mono", monospace;
}
#root {
width: 100%;
height: 100%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.calculator {
background: white;
padding: 10px;
border-radius: 10px;
}
.calculator .button-bank {
width: 350px;
height: 350px;
border-spacing: 5px;
}
.calculator .button-bank td {
padding: 0;
border-radius: 5px;
background-color: #bdbdbd;
}
.calculator .button-bank td:hover {
background-color: #e0e0e0;
}
.calculator .button-bank td.clear {
background-color: #693b39;
color: white;
}
.calculator .button-bank td.clear:hover {
background-color: #965754;
}
.calculator .button-bank td.operator {
background-color: #7a7a7a;
}
.calculator .button-bank td.operator:hover {
background-color: #adadad;
}
.calculator .button-bank td.equals {
background-color: #34347a;
color: white;
}
.calculator .button-bank td.equals:hover {
background-color: #4747a7;
}
.calculator .button-bank .button {
width: 100%;
height: 100%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
cursor: pointer;
}
.calculator #screen {
background-color: #5ebe5e;
color: black;
margin: 5px;
border-radius: 5px;
}
.calculator #screen #display {
font-size: 23px;
text-align: right;
padding: 0 5px 5px 5px;
}
.calculator #screen #expression {
width: 330px;
min-height: 20px;
padding: 5px;
text-align: right;
color: #a521ad;
overflow-wrap: break-word;
}
.footer {
color: white;
padding: 20px;
text-align: center;
}
.footer a {
-webkit-text-decoration: solid;
text-decoration: solid;
color: aquamarine;
}
/*# sourceMappingURL=style.css.map */