-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
103 lines (79 loc) · 1.42 KB
/
Copy pathstyles.css
File metadata and controls
103 lines (79 loc) · 1.42 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
* {
box-sizing: border-box;
}
body {
background-color: #121212;
color: #E0E0E0;
display: flex;
flex-flow: column;
align-items: center;
gap: 10px;
}
.calculator-container {
width: 350px;
height: 650px;
border: solid #1E1E1E;
border-radius: 20px;
background-color: #1E1E1E;
display: flex;
flex-flow: column;
justify-content: start;
align-items: center;
gap: 10px;
}
.calculator-head {
width: 100%;
border: 1px solid #242424;
border-radius: 20px;
background-color: #242424;
display: flex;
flex-flow: column;
align-items: center;
flex: 3;
}
.calculator-head * {
width: 90%;
border: 1px solid #242424;
border-radius: 20px;
color: #FFFFFF;
font-size: xx-large;
display: flex;
flex-flow: column;
flex: 1;
}
.calculator-body {
width: 100%;
padding: 10px;
display: flex;
flex-flow: column;
justify-content: start;
gap: 5px;
flex: 10;
}
.button-row {
display: flex;
flex-flow: row;
align-items: center;
gap: 5px;
flex: 1;
}
button {
height: 100%;
font-size: xx-large;
border: 1px solid black;
border-radius: 100px;
flex: 1;
}
.spec {
background-color: #3C3C3C;
color: #FF3B30;
font-weight: bold;
}
.operator {
background-color: #FF9500;
color: #FFFFFF;
}
.number {
background-color: #2A2A2A;
color: #E0E0E0;
}