-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglobal.scss
60 lines (54 loc) · 1.41 KB
/
global.scss
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
$font-stack: -apple-system, BlinkMacSystemFont, Segoe WPC, Segoe UI,
HelveticaNeue-Light, Ubuntu, Droid Sans, sans-serif;
$page-background: #181818;
$page-toolbar-background: #252525;
$disabled-button-fill: #585858;
html,
body {
font-family: $font-stack;
background-color: $page-background;
overflow: hidden;
height: 100%;
margin: 0;
padding: 0;
}
:global {
/* =========================================================================
* Flexbox layout for the entire page
/* ========================================================================= */
.emulator-page {
height: 100%;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
}
/* =========================================================================
* ZX Spectrum Toolbar and buttons
/* ========================================================================= */
.toolbar {
padding: 2px 4px;
background: $page-toolbar-background;
margin: 2px;
display: flex;
height: 26px;
& .emu-button {
padding: 4px 4px 2px 4px;
display: inline-block;
cursor: pointer;
border: 1px solid transparent;
margin: 0 2px;
}
& .disabled-button {
padding: 4px 4px 2px 4px;
display: inline-block;
cursor: default;
border: 1px solid transparent;
margin: 0 2px;
fill: $disabled-button-fill;
}
& .start-fill {
fill: green;
}
}
}