-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcpcbasic.css
121 lines (98 loc) · 1.55 KB
/
cpcbasic.css
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
117
118
119
120
121
/* cpcbasic css */
body {
background-color: Beige;
}
.flexBox {
float: left;
padding: 2px;
margin: 2px;
background-color: LightGrey;
}
.clearLeft {
clear: left;
}
.legendButton {
background-color: LightGreen;
}
.legendButton:hover {
background-color: LimeGreen
}
.label {
background-color: WhiteSmoke;
float: left;
width: 4em;
margin-right: 0.2em;
text-align: right;
padding: 0px 2px 0px 2px;
overflow: hidden;
display: block;
}
.area {
padding: 2px;
margin: 1px;
border: 0.5px solid #7A7A7A;
float: left;
}
.field {
padding: 2px 2px 2px 2px;
float: left;
}
.editable {
background-color: white;
}
.invalid {
border-color: red;
}
.selectWrap select {
max-width: calc(22em - 6px);
text-overflow: ellipsis;
}
.kbdArea {
width: auto;
user-select: none;
}
.displayFlex {
display: flex;
}
.displayBlock {
display: block;
}
.displayNone {
display: none;
}
.kbdButton, .kbdButton1, .kbdButton2, .kbdButton3, .kbdButton4 , .kbdButton5 {
width: 2.5em;
min-height: 2em;
cursor: pointer;
margin-right: 3px;
}
.kbdButton1 {
overflow: hidden;
padding-left: 4px;
}
.kbdButton2 {
width: calc(2.5em*1.545);
}
.kbdButton3 {
width: calc(2.5em*2.085);
}
.kbdButton4 {
width: calc(2.5em*2.635);
}
.kbdButton5 {
width: calc(2.5em*9.168);
}
.kbdNoRightMargin {
margin-right: 0px;
}
.kbdMove {
border: 1px solid lightgrey;
background-color: rgba(173, 222, 232, 0.5); /* lightblue transparent */
font: 400 13px arial;
user-select: none;
}
#kbdAreaBox {
touch-action: none;
opacity: 0.8;
background-color: rgba(211, 211, 211, 0.5);
}