-
Notifications
You must be signed in to change notification settings - Fork 7
/
style.css
executable file
·77 lines (77 loc) · 1.1 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
* {
margin: 0pt;
padding: 0pt;
}
body {
background-color: #FFFFFF;
font: 14px Verdana,Arial;
overflow-x: hidden;
}
#topbar {
color: #FFFFFF;
background-color: #292929;
position: absolute;
top: 0px;
left: 0px;
width: 100%;
padding: 0.5em;
}
#fontfileinput {
margin-left: 2em;
margin-right: 2em;
}
#content {
margin-top: 4em;
padding: 1em;
}
#glyphs {
margin-top: 2em;
}
#modalBackground {
background-color: #000000;
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
display: none;
opacity: 0.5;
z-index: 10;
}
#modal {
z-index: 20;
display: none;
background-color: #FFFFFF;
position: absolute;
padding: 1em;
}
#modal h2 {
font-weight: normal;
}
h1 {
letter-spacing: -2px;
font-weight: normal;
font-size: 1.5em;
}
#subitoFontViewer {
float: left;
}
.error {
color: #FF9494;
}
#glyphs div {
float: left;
position: relative;
}
#glyphs div span {
position: absolute;
top: 0px;
left: 0.2em;
font-style: italic;
font-family: monospace;
}
#glyphs svg {
padding: 0.5em;
border: 1px dashed #000000;
margin-right: 0.5em;
}