Spaces:
Sleeping
Sleeping
File size: 4,424 Bytes
ec63fa6 |
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 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 |
.token {
font: 18px DejaVu Sans;
fill: black;
font-family:sans-serif;
--wordDistance:33;
text-align: center;
}
.FORM {
/* font: 18px DejaVu Sans; */
/* fill: black; */
/* font-family:sans-serif; */
--wordDistance:55;
fill:black;
text-align: center;
}
.LEMMA {
font: 15px DejaVu Sans;
fill: black;
font-family:sans-serif;
text-align: center;
font-style: italic;
--wordDistance:22;
}
.MISC-Gloss {
font: 15px DejaVu Sans;
fill: rgb(124, 96, 86);
font-family:sans-serif;
text-align: center;
font-style: italic;
--wordDistance:11;
}
.UPOS {
font: 11px DejaVu Sans;
fill: rgb(80, 29, 125);
text-align: center;
--wordDistance:22;
}
.DEPREL {
font: 12px Arial;
fill: #501d7d;
font-style: oblique;
font-family:sans-serif;
--funcCurveDist:3; /* distance between the function name and the curves highest point */
}
.lemma {
font: 15px DejaVu Sans;
fill: black;
font-family:sans-serif;
text-align: center;
font-style: italic;
}
.MISC-Gloss {
font: 15px DejaVu Sans;
fill: rgb(124, 96, 86);
font-family:sans-serif;
text-align: center;
font-style: italic;
--wordDistance:11;
}
.xdeprel {
font: 12px Arial;
font-style: oblique;
fill: #21ba45;
--funcCurveDist:3; /* distance between the function name and the curves highest point */
}
.xdep {
stroke: #21ba45;
fill: none;
--startOffset: 8;
--tokDepDist: 15; /* distance between tokens and depdendency relation */
--depMinHeight: 15; /* minimum height for dependency */
--wordDistanceFactor: -1; /* distant words get higher curves. this factor fixes how much higher */
}
.arrowhead {
fill: white;
stroke: black;
stroke-width: .8;
}
.arrowheadxdep {
fill: white;
stroke: #21ba45;
stroke-width: .8;
}
.curve {
stroke: black;
stroke-width: 1;
fill: none;
--startOffset: 8;
--tokDepDist: 15; /* distance between tokens and depdendency relation */
--depMinHeight: 15; /* minimum height for dependency */
--wordDistanceFactor: -1; /* distant words get higher curves. this factor fixes how much higher */
}
.conll {
display:none; /*toggles to inline*/
unicode-bidi: embed;
font-family: monospace;
white-space: pre;
margin-bottom: 0.6em;
border-bottom: 1px solid #aaa;
padding: 0.5em 0 0.17em 0;
tab-size: 12;
background-color: #fff ;
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
}
.sentencebox {
margin-bottom: 0.6em;
border-bottom: 1px solid lightgrey;
padding: 0.5em 0 0.17em 0;
margin-top: 1em;
}
/* Button */
.button {
display: inline-block;
position: relative;
width: 120px;
height: 32px;
line-height: 32px;
border-radius: 2px;
font-size: 0.9em;
background-color: #fff;
color: #646464;
cursor:pointer;
}
.button > paper-ripple {
border-radius: 0px;
overflow: hidden;
}
.button.raised {
transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
transition-delay: 0.2s;
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
}
.button.raised:active {
box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2);
transition-delay: 0s;
}
.center {
text-align: center;
}
.svgbox {
overflow-x: auto;
}
nav {
display: inline-block;
vertical-align: middle;
}
nav ul {
font-size: 0;
list-style: none;
margin: 0;
padding: 0;
/* text-align: center; */
width: 100%;
}
nav li {
display: inline-block;
margin: 0;
padding: 0;
position: relative;
/* min-width: 33%; */
}
nav a {
display: block;
font: normal 16px sans-serif;
padding-right: 9px;
text-decoration: none;
-webkit-transition: all .25s ease;
-moz-transition: all .25s ease;
-ms-transition: all .25s ease;
-o-transition: all .25s ease;
transition: all .25s ease;
}
nav li ul li:hover a {
background: #f5f5f5;
}
nav li ul {
background: #fff;
left: 0;
opacity: 0;
position: absolute;
top: 10px;
visibility: hidden;
z-index: 1;
-webkit-transition: all .25s ease;
-moz-transition: all .25s ease;
-ms-transition: all .25s ease;
-o-transition: all .25s ease;
transition: all .25s ease;
}
nav li:hover ul {
opacity: 1;
top: 23px;
visibility: visible;
}
nav li ul li {
width: 130px;
display: inline-block;
border-bottom: 1px solid lightgrey;
background: #fff;
cursor:pointer;
}
nav li ul a {
color: #000;
font: normal 16px/32px sans-serif
}
nav li ul a:hover {
color: #501d7d;
text-decoration: none;
}
|