Spaces:
Running
Running
File size: 969 Bytes
7214b0b |
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 |
body {
padding: 0;
margin: 0;
font-family: "Source Sans Pro", sans-serif;
font-size: 1rem;
line-height: 1.4;
}
.highlighted-text, .status-bar {
color: black;
background-color: white;
}
.highlighted-text {
border: 1px solid #d2d2d2;
border-radius: 0 0 5px 5px;
padding: 4px;
cursor: pointer;
.token.active {
outline: 1px solid #444;
}
&.frozen {
.token {
opacity: 0.75;
&.context, &.active {
opacity: 1;
}
&.context {
text-decoration: #999 underline;
}
}
}
}
.status-bar {
min-height: 1.4em;
border: 1px solid #d2d2d2;
border-bottom: none;
border-radius: 5px 5px 0 0;
padding: 3px 4px;
.token {
border: 1px solid #aaa;
border-radius: 2px;
background: #f5f5f5;
padding: 1px;
margin: 1px;
margin-right: 2px;
}
}
|