-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmvnhtml.css
160 lines (156 loc) · 2.63 KB
/
mvnhtml.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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
p {
position:relative;
left:100px;
}
span.romannumber{
color:darkorange;
}
p[title="head"]{
color: green;
display: block;
font-size:120%;
position:relative;
left:200px;
font-weight:bold;
}
span.foreign-la{
color: gray;
font-size:100%;
left:200px;
}
span.verseline {
position:absolute;
left:550px;
}
/* workaround for weird Webkit/Blink bug relating to absolute positioning
* which sometimes makes a space disappear */
span.verseline + span:before {
content: " "
}
span.linenumnewline {
position:absolute;
left:-50px;
}
span.moveleft {
position:absolute;
left:-80px;
}
span.del {
text-decoration:line-through;
color:red
}
span.ex{
font-style:italic;
}
span.fwheader{
padding-top: 30px;
color: maroon;
display: table;
font-size:80%;
position:relative;
left:200px;
}
span.subst {
border:thin solid green;
}
span.restore{
border:thin solid green;
}
div.text {
margin:20px;
padding:20px;
/*border: medium dotted black;*/
}
span.linenum {
position:absolute;
left:-60px;
}
span.note {
text-decoration:none;
color:maroon;
position:absolute;
left:600px;
}
span.underline {
display: inline;
text-decoration: underline;
}
span.ul {
display: inline;
text-decoration: underline;
}
span.ulr {
display: inline;
border-bottom:thin solid red;
}
span.rubric {
display: inline;
color:crimson;
}
span.capitalsize1 {
font-size:100%;
font-weight:bold;
}
span.capitalsize2 {
font-size:130%;
}
span.capitalsize3 {
font-size:160%;
}
span.capitalsize4 {
color: crimson;
float: left;
font-size: 5em;
font-weight:bold;
line-height: 0.8em;
margin-right: 0.05em;
margin-top: 0.075em;
}
span.capitalsize5 {
font-size:220%;
}
span.capitalsize6 {
font-size:250%;
}
span.capitalsize7 {
font-size:270%;
}
span.capitalsize8 {
font-size:300%;
}
span.junicode {
font-family:junicode, sans-serif;
}
span.add {
text-decoration:underline;
color:green;
}
html {background: #d8dfe5}
h2 {
font-family: "Georgia", serif;
font-size: 60px;
font-style: italic;
font-weight: bold;
margin: 30px 20px 10px;
text-align: center;
}
body > h2+div {
background: aliceblue;
border: 5px solid #444444;
padding: 10px;
}
body > div+div {
background: white;
display:table;
width: 800px;
margin:auto;
border: 1px solid #2A2A2A;
box-shadow: 0px 0px 5px #B1B1B1;
}
:target {
animation: highlight 5s ease;
}
@keyframes highlight {
0% { background: yellow; }
100% { background: transparent; }
}