Spaces:
Sleeping
Sleeping
File size: 2,214 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 |
.token {
font: 18px DejaVu Sans;
fill: black;
font-family:sans-serif;
--wordDistance:33;
text-align: center;
}
.lemma {
font: 15px DejaVu Sans;
fill: black;
font-family:sans-serif;
text-align: center;
font-style: italic;
}
.postag {
font: 11px DejaVu Sans;
fill: #E03737;
/* font-family:sans-serif; */
text-align: center;
}
.deprel {
font: 12px Arial;
fill: #1d2ec1;
font-style: oblique;
font-family:sans-serif;
--funcCurveDist:3; /* distance between the function name and the curves highest point */
}
.arrowhead {
fill: white;
stroke: black;
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 #aaa;
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: 2px;
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;
}
/* logo animation transitions */
.arboratorlogo {
transition: all 0.4s ease-in-out;
-webkit-transition: all 0.4s ease-in-out;
}
.arboratorlogo:hover {
transform: scale(1.1);
transition: all 0.2s ease-in-out;
-webkit-transition: all 0.2s ease-in-out;
opacity: .9;
}
.svgbox {
overflow-x: auto;
} |