-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
86 lines (75 loc) · 1.36 KB
/
Copy pathstyle.css
File metadata and controls
86 lines (75 loc) · 1.36 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
.container {
height: 97vh;
display: flex;
justify-content: center;
align-items: center;
}
.calculator {
padding: 0rem;
background-color: rgb(0, 0, 0);
border: 1.5rem ridge rgb(199, 194, 194);
border-radius: 1rem;
}
.text {
display: flex;
justify-content: right;
align-items: center;
height: 4rem;
margin: 0rem;
background-color: lightblue;
font-size: 1.5rem;
padding-right: 0.5rem;
padding-left: 0.5rem;
}
.keys {
display: flex;
}
.input {
display: flex;
flex-direction: column;
align-items: center;
}
.misc button {
background-color: lightgray;
color: black;
font-size: 1.5rem;
font-weight: bold;
margin: 0rem;
width: 4rem;
height: 4rem;
}
.numbers button {
background-color: gray;
font-size: 1.5rem;
font-weight: bold;
color: white;
margin: 0rem;
width: 4rem;
height: 4rem;
}
.row_four {
display: flex;
justify-content: space-between;
}
.row_four .zero {
display: flex;
justify-content: center;
align-items: center;
flex: 1 0 0;
}
.operands {
display: flex;
flex-direction: column;
}
.operands button {
background-color: rgb(243, 184, 74);
color: white;
font-size: 1.5rem;
font-weight: bold;
margin: 0rem;
width: 4rem;
height: 4rem;
}
button:hover {
filter: brightness(125%);
}