-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlocSimMods.css
More file actions
105 lines (84 loc) · 1.57 KB
/
locSimMods.css
File metadata and controls
105 lines (84 loc) · 1.57 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
/* Generic */
.twoCol {
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: repeat(var(--stackH), 1fr);
grid-auto-flow: column;
}
.twoCol > div {
height: 18px;
margin: 0 10%;
text-align: center;
}
.twoCol > div > div {
display: inline-block;
width: 50%;
}
/* LedMod */
.ledCont {
--led-size: 15px;
padding: 10px;
display: flex;
justify-content: space-around;
align-items: auto;
}
.ledCont .led {
display: inline-block;
background-color: darkred;
width: var(--led-size);
height: var(--led-size);
border-radius: 50%;
}
.ledCont .led.active {
background-color: red;
}
/* SwitchMod */
.swCont {
padding: 10px;
display: flex;
justify-content: space-around;
align-items: auto;
}
.swCont .input[type='checkbox'] {
cursor: pointer;
}
/* Stack */
.stackContent > div {
visibility: hidden;
}
/* ParLCD */
.lcdCont canvas {
image-rendering: pixelated;
margin-top: 15px;
border-radius: 5px;
}
.lcdCont {
text-align: center;
}
/* Keybaord */
.KBModCont {
display: grid;
grid-template-columns: 1fr 1fr;
}
.KBModCont input[type="number"] {
width: 50px;
}
.KBModCont .queueCont {
display: grid;
grid-template-rows: repeat(6, 1fr);
height: 100%;
}
.KBModCont .queueCont > * {
background-color: #c9c9b1
}
.KBModCont .queueCont > :first-child {
background-color: #b1b19c
}
.KBModCont .queueCont > div {
display: grid;
grid-template-columns: 1fr 4fr;
}
.KBModCont .queueCont > div > div {
margin-top: 1px;
padding-left: 2px;
}