-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
112 lines (99 loc) · 1.63 KB
/
main.css
File metadata and controls
112 lines (99 loc) · 1.63 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
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
body {
background-color: lightgreen;
}
.btn {
font-size: 33px;
width: 100px;
min-width: 100px;
height: 100px;
min-height: 100px;
margin: 0px;
margin-left: 0px;
margin-right: 0px;
border: 0px;
}
.mainContainer {
font-size: 0;
margin: auto;
background-color: black;
width: 50%;
height: 50%;
padding: 1px;
min-width: 400px;
max-width: 400px;
min-height: 600px;
max-height: 600px;
}
.displayScreen{
font-size: 33px;
border:1px solid black;
color: white;
text-align: right;
min-width: 399px;
max-width: 399px;
background-color: black;
min-height: 100px;
max-height: 100px;
}
/* form .display{
display: flex;
justify-content: flex-end;
margin: none;
} */
form .display input{
margin: 3%;
background-color: black;
color: white;
text-align: right;
flex: 1;
font-size: 30px;
}
.subDisp {
font-size: 33px;
min-height: 95px;
max-height: 95px;
min-width: 380px;
max-width: 380px;
}
.btnNumb {
color: black;
border: 1px solid black;
background-color: #d8d9db;
}
.btnNumb:hover {
background-color: #ebebeb;
}
.btnNumb:active {
background-color: #bbbcbe;
}
.btnClear{
font-size: 33px;
min-width: 200px;
max-width: 200px;
min-height: 100px;
max-height: 100px;
margin: 0px;
margin-left: 0px;
margin-right: 0px;
}
.btnZero{
font-size: 33px;
min-width: 300px;
max-width: 300px;
min-height: 100px;
max-height: 100px;
margin: 0px;
margin-left: 0px;
margin-right: 0px;
}
.btnFunc {
color: white;
border: 1px solid black;
background-color: #df974c;
}
.btnFunc:hover {
background-color: #dfb07e;
}
.btnFunc:active {
background-color: #dd8d37;
}