-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.scss
More file actions
94 lines (86 loc) · 1.93 KB
/
Copy pathstyle.scss
File metadata and controls
94 lines (86 loc) · 1.93 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
$button: #4d4d4d;
@import 'https://fonts.googleapis.com/css?family=Share+Tech+Mono';
@font-face {
font-family: 'Digital';
src: url('//db.onlinewebfonts.com/t/8e22783d707ad140bffe18b2a3812529.eot');
src: url('//db.onlinewebfonts.com/t/8e22783d707ad140bffe18b2a3812529.eot?#iefix')
format('embedded-opentype'),
url('//db.onlinewebfonts.com/t/8e22783d707ad140bffe18b2a3812529.woff2')
format('woff2'),
url('//db.onlinewebfonts.com/t/8e22783d707ad140bffe18b2a3812529.woff')
format('woff'),
url('//db.onlinewebfonts.com/t/8e22783d707ad140bffe18b2a3812529.ttf')
format('truetype'),
url('//db.onlinewebfonts.com/t/8e22783d707ad140bffe18b2a3812529.svg#Digital-7')
format('svg');
}
#app {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
body {
background: #000;
-webkit-touch-callout: none;
-moz-user-select: none;
-ms-user-select: none;
-webkit-user-select: none;
user-select: none;
cursor: default;
}
.calculator {
border: 2px solid #47476b;
padding: 5px;
background: black;
width: 320px;
position: relative;
}
.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: 29px;
font-family: digital;
color: white;
text-align: right;
line-height: 35px;
}
button {
position: relative;
height: 65px;
width: 80px;
color: white;
outline: 1px solid black;
border: none;
background: $button;
font-family: Share Tech Mono, monospace;
font-size: 20px;
cursor: default;
&:hover {
color: black;
outline: 0.05em solid grey;
z-index: 3;
}
}
.jumbo {
width: 160px;
}
.author {
text-align: center;
font-family: Share Tech Mono, sans;
margin-top: 15px;
a {
text-decoration: none;
color: #00264d;
line-height: 26px;
}
}