Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 2,202 Bytes
63858e7 81fd184 63858e7 |
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 |
@import "palette.scss";
//@import "LatoLight.scss";
@import "../fonts/plex_sans.css";
@import "base";
@import "SentenceInput";
@import "AttentionConnectorControls";
body {
font-family: 'IBM Plex Sans';
margin-left: auto;
margin-right: auto;
width: 80%;
max-width: 1500px;
}
.layerCheckbox {
background-color: lightgrey;
padding-left: 8px;
padding-right: 8px;
&.active{
color: #fff;
background-color: #6c7067;
}
}
.main-grid {
width: 100%;
display: grid;
grid-template-columns: 0.18fr 0.2fr 0.2fr 0.04fr 0.2fr 0.2fr 0.18fr;
overflow: auto;
max-height: 100vh;
}
#vis-break {
height: 15px;
}
label {
margin-left: 5px;
}
#header {
width: 100%;
background-color: lightgray;
height: 40px;
margin-bottom: 5px;
.header-logo{
height: 20px;
display:inline-block;
margin-left: 10px;
margin-top: 5px;
margin-bottom: 5px;
}
.header-info{
font-size: 9pt;
height: 30px;
display:inline-block;
float:right;
margin-right: 10px;
margin-top: 10px;
//margin-bottom: 5px;
}
#headertext{
text-align: center ;
display: inline-block;
font-size: 18px;
margin-left: 30%;
margin-top: 5px;
margin-bottom: 5px;
}
}
.highlighted {
background: rgba(152, 83, 216, 0.8);
}
#selected-heads {
margin-bottom: 1em;
}
#corpus-selection-description {
display: inline-block;
margin-right: 15px;
}
#corpus-querying {
display: inline-block;
.btn {
display: inline-block;
}
}
#usage-info {
margin-top: 10px;
color: rgb(87, 87, 87);
font-size: 14px;
}
.tick {
font-size: 18px;
}
#connector-container {
.mat-hover-display{
pointer-events: none;
display: block;
position: absolute;
visibility: hidden;
background-color: rgba(200, 200, 200, 0.93);
font-size: 14px;
p {
margin: 4px 1px 1px 4px;
// margin: auto;
}
}
}
.right-token-hover {
border-radius: 1px 8px 8px 8px;
text-align: left;
}
.left-token-hover {
border-radius: 8px 1px 8px 8px;
text-align: right;
}
.next-token {
color: rgba(228, 1, 1, 0.8);
-moz-box-shadow: 0 0 3px #ccc;
-webkit-box-shadow: 0 0 3px #ccc;
box-shadow: 0 0 3px #ccc;
} |