forked from J404Simpson/calculator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
86 lines (73 loc) · 1.43 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
@font-face {
font-family: "Digital";
src: url('./@font-face/8e22783d707ad140bffe18b2a3812529.woff');
}
button {
border-color: rgb(233, 19, 197);
color: white;
font-size: 11px;
}
body {
display: flex;
align-items: center;
justify-content: center;
background-color: palevioletred;
}
.grid-container {
margin-top: 300px;
display: grid;
grid-template-columns: 80px 80px 80px 80px ;
grid-template-rows: 65px 65px 65px 65px 65px 65px ;
background-color: #2196F3;
width: 320px;
padding: 5px;
background-color: pink;
color: white;
}
.grid-item {
padding: 25px;
outline: 1px solid pink;
text-align: center;
background-color: #4D4D4D;
}
#display {
grid-column: 1 / 5;
grid-row: 1 / 2;
display: grid;
grid-template-rows: 50% 50%;
text-align: end;
padding: 7px;
background-color:pink;
}
#outputDisplay {
font-size: 25px;
font-family: digital;
margin-top: 4px;
}
#outputDisplay {
margin: none;
}
#clear {
grid-column: 1 / 3;
background-color: #AC3939;
}
#equals {
grid-column: 4 / 5;
grid-row: 5 / 7;
display: flex;
align-items: center;
justify-content: center;
background-color: #004466;
}
#zero {
grid-column: 1 / 3;
}
#divide, #multiply, #subtract, #add {
background-color: #666666;
}
#equation-display {
font-size: 20px;
font-family: digital;
margin-top: 4px;
color: #FEA429;
}