-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathportrait.css
99 lines (82 loc) · 1.41 KB
/
portrait.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
/* Turning Metadata off for the moment */
div#metadata { display: none; }
/* Container */
body {
width: 33em;
max-width: 65%;
margin: 0 auto;
position: relative; /* makes absolutely positioned items below relative to this one */
font-family: 'Droid Serif', serif;
}
.mainTitle {
text-align: center;
margin: 1em;
}
#controls {
padding: 1em;
margin: 2em;
border: 1px solid #A0A0C3;
background-color: #D5D5F3;
}
#controls input {
margin-left: 1em;
}
.heading {
text-align: center;
}
p {
margin: 0;
text-indent: 2em;
}
p.lg, p.song {
margin-top: 1em;
margin-bottom: 1em;
margin-left: 25%;
font-style: italic;
text-indent: 0;
}
p.dialog {
color: #962828;
text-indent: 0;
}
span.emph, span.lang {
font-style: italic;
}
/* this magically matches any class ending in "-tag" */
span.tag {
position: absolute;
color: black;
font-style: normal;
border-radius: 4px;
padding: 3px;
max-width: 15%;
text-indent: 0;
}
span.tag.lineNumber {
right: -10%;
border: 1px solid #91709D;
background-color: #D3A5E0;
}
span.tag.type, span.tag.lang {
right: -18%;
}
span.tag.type {
border: 1px solid #D7A192;
background-color: #F6CCC0;
}
span.tag.lang {
border: 1px solid #95CB95;
background-color: #CBEFCB;
}
span.tag.dialog {
border: 1px solid #A0A0C3;
background-color: #D5D5F3;
left: -18%;
}
span.hide {
display: none;
}
div.divider {
margin: 1em;
text-align: center;
}