-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
125 lines (105 loc) · 1.8 KB
/
style.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
122
123
124
125
/* Main UI font: IBMPlex */
@font-face {
font-family: IBMPlex;
src: url(fonts/ui/IBMPlexSansVar-Roman.woff2);
font-weight: 300 700;
}
/* Symbols UI font: FontAwesome: https://fontawesome.com/ */
@font-face {
font-family: FontAwesome;
src: url(fonts/ui/fa-regular-400.woff2) format("woff2");
font-weight: normal;
}
@font-face {
font-family: FontAwesome;
src: url(fonts/ui/fa-solid-900.woff2) format("woff2");
font-weight: bold;
}
@font-face {
font-family: AdobeBlank;
src: url(fonts/ui/AdobeBlank.woff2) format("woff2"); /* Adobe Blank v1: curiously, Adobe Blank v2 causes problems in Safari in contentEditable divs */
}
body {
font-size: 12px;
font-family: IBMPlex;
background-color: #303030;
}
h1 {
font-size: 18px;
}
h2 {
font-size: 18px;
font-weight: bold;
margin-bottom: 0;
}
h3 {
margin-top: 0;
font-weight: normal;
font-size: 12px;
color: grey;
}
.panel {
float: left;
position: relative;
width: 300px;
height: 400px;
margin: 5px;
padding: 5px;
border-radius: 10px;
overflow: hidden;
}
.panel li.axis-record {
list-style-type: none;
margin: 0;
padding: 0;
display: grid;
grid-template-columns: 60px auto 60px;
}
.panel input[type=text] {
text-align: right;
}
.panel.title {
background-color: lightgrey;
}
.fontbox {
display: none;
background-color: white;
}
.sample {
overflow: hidden;
white-space: nowrap;
}
.sample.large {
font-size: 96px;
}
.sample.medium {
font-size: 36px;
}
.sample.small {
font-size: 10px;
white-space: normal;
}
.reset {
width: 20px;
height: 20px;
position: absolute;
right: 10px;
top: 14px;
font-size: 150%;
font-family: FontAwesome;
font-weight: bold;
text-align: center;
cursor: pointer;
}
.dragdrop {
background-color: beige;
}
#dropzone {
position: absolute;
width: 100%;
height: 100%;
opacity: 0;
}
p {
margin-block-end: 0;
}