-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
119 lines (108 loc) · 2.33 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
117
118
119
* {
transition: all .1s ease;
}
body {
/* remove default extra space */
margin: 0px;
display: flex;
align-items: center;
justify-content: center;
font-family: 'Courier New', Courier, monospace;
}
.button {
width: 100px;
height: 100px;
margin: 6px;
font-family: 'Courier New', Courier, monospace;
border-radius: 100px;
border-color: darkolivegreen;
background-color: rgb(39, 52, 17);
color: white;
}
.button-container {
max-width: 500px;
width: 500px;
max-height: 500px;
height: 500px;
display: flex;
flex-direction: row;
flex-grow: 1;
flex-wrap: wrap;
align-items: center;
justify-content: center;
}
/* click transition buttons */
button {
height: 70px;
width: 150px;
background-color: #3399FF;
border: lightblue solid 1px;
outline: none;
color: #fff !important;
}
button:active {
-webkit-box-shadow: inset 1px 1px 10px #333;
-moz-box-shadow: inset 1px 1px 10px #333;
box-shadow: inset 1px 1px 10px #333;
}
.display {
display: flex;
justify-content: flex-end;
align-items: center;
border: 5px inset black;
max-width: 450px;
width: 400px;
max-height: 30px;
height: 30px;
padding: 4px;
margin-bottom: 18px;
margin-top: 36px;
font-size: larger;
background-color: darkolivegreen;
color: white;
}
.container {
margin: 20px;
display: flex;
flex-direction: column;
align-items: center;
}
.number-button {
max-width: 100px;
width: 100px;
max-height: 100px;
height: 100px;
margin: 6px;
font-size: 20px;
font-family: 'Courier New', Courier, monospace;
font-weight: bold;
border-radius: 100px;
border-color: darkolivegreen;
background-color: rgb(7, 92, 7);
color: white
}
.operate-button {
max-width: 100px;
width: 100px;
max-height: 100px;
height: 100px;
margin: 6px;
font-size: 20px;
font-family: 'Courier New', Courier, monospace;
border-radius: 100px;
border-color: darkolivegreen;
background-color: rgb(44, 56, 23);
color: white;
}
#equal {
font-weight: 600;
font-size: 20px;
font-family: 'Courier New', Courier, monospace;
border-radius: 100px;
border-color: darkolivegreen;
background-color: rgb(16, 20, 9);
color: white;
}
#clear {
font-size: large;
}