-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbladerunner.css
149 lines (119 loc) · 2.55 KB
/
bladerunner.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
html {
width:100%;
}
div.typewritten {
font-family: "Courier New", monospace;
font-size:75%;
width:80%;
margin-left:20%
}
div.handwritten {
font-family:cursive;
font-size:80%;
width:80%;
margin-left:20%
}
.page-number {
font-style:italic;
color:grey;
}
.pageNum {
display:block;
}
.marginright {
width:150px;
}
.marginleft {
position:absolute;
margin-right:70%;
vertical-align:bottom;
left:5px;
display:inline-block;
}
.margintop {
}
.marginbottom {
}
.rotate270 {
-ms-transform: rotate(270deg); /* IE 9 */
-webkit-transform: rotate(270deg); /* Chrome, Safari, Opera */
transform: rotate(270deg);
}
span.anchor span.note {
display:none;
}
span.anchor:hover span.note {
display:block;
position:absolute;
color:black;
background-color:#CEB888;
border-style:solid;
border-color:black;
font-family:arial, helvetica, sans-serif;
}
span.gap {
font-style:italic;
color:grey;
}
.add {
font-style:italic;
}
.erased {
font-style:italic;
color:grey;
}
.upconnect {
border-top-left-radius:50px;
border-top: 1px solid ;
padding: 2px 2px 2px 2px;
border-top-right-radius:50px;


}
.updownconnect {
border-bottom: 1px solid ;
border-top: 1px solid ;
border-bottom-left-radius:50px;
padding: 2px 2px 2px 2px;
border-bottom-right-radius:50px;
border-top-right-radius:50px;
border-top-left-radius:50px;


}
span.transpose:first-child {
border-top: 1px solid ;
border-left: 1px solid;
border-right: 1px solid;
}
span.transpose:last-child {
border-bottom: 1px solid ;
border-left: 1px solid;
border-right: 1px solid;
}
/* This is a really cruddy way of indicating deletion spans. Favenzio/Bryan, if you can think of a better way, let me know!! */
/* Basically, it would work a lot better if I could say, "anything between these two anchors is scribbled out," but I'm not sure
I know how to do that with css. This way of doing it also doesn't work if the del span crosses to <tei:zone> elements, or if there's
a sibling html <span> that isn't included in the deletion. */
#delspants1_1 ~ span {
background-color:gray;
}
#delspants1_2 ~ span {
background-color:gray;
}
#delspants1_3 ~ span {
background-color:gray;
}
#delspants1_4 ~ span {
background-color:gray;
}
#delspants1_5 ~ span {
background-color:gray;
}
#delspants1_6 ~ span {
background-color:gray;
}
#delspants1_7 ~ span {
background-color:gray;
}
#delspants1_8 ~ span {
background-color:gray;
}