-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
116 lines (101 loc) · 1.76 KB
/
Copy pathstyle.css
File metadata and controls
116 lines (101 loc) · 1.76 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
113
114
115
116
@font-face {
font-family: 'Digital';
src: url('//db.onlinewebfonts.com/t/8e22783d707ad140bffe18b2a3812529.woff2');
}
body {
background: #c2c2d6;
user-select: none;
cursor: default;
}
#app {
display: flex;
align-items: center;
justify-content: center;
}
.calculator {
border: 2px solid #47476b;
padding: 5px;
background: black;
width: 320px;
position: relative;
/* margin-top: 200px; */
min-width: 320px;
}
#features {
margin: 190px 0px 0px 70px;
font-family: digital;
font-size: 20px;
max-width: 800px;
min-width: 800px;
min-height: 800px;
}
#features li {
margin-bottom: 20px;
}
.formulaScreen {
min-height: 20px;
font-family: digital;
font-size: 20px;
color: orange;
text-align: right;
vertical-align: text-top;
line-height: 20px;
overflow-wrap: break-word;
word-wrap: break-word;
}
.outputScreen {
font-size: 45px;
font-family: 'Digital';
text-align: right;
line-height: 55px;
color: #07F60B;
}
button {
position: relative;
height: 65px;
width: 80px;
color: white;
outline: 1px solid black;
border: none;
background: #4d4d4d;
font-family: monospace;
font-size: 20px;
cursor: default;
}
button:hover {
color: black;
/* color: yellowgreen; */
font-weight: bold;
outline: 0.05em solid grey;
z-index: 3;
}
#clear {
width: 160px;
background: rgb(172, 57, 57);
}
#divide,
#multiply,
#subtract,
#add {
background: rgb(102, 102, 102);
}
#zero {
width: 160px;
}
#equals {
background: rgb(0, 68, 102);
position: absolute;
height: 130px;
bottom: 5px;
}
#red-dot {
width: 10px;
height: 10px;
background-color: red;
border-radius: 50%;
position: absolute;
left: 340px;
top: 45px;
/* hide the dot by default, only show it when digits are truncated */
display: none;
}