Skip to content
Snippets Groups Projects
styles.css 1.17 KiB
Newer Older
body {
  overflow: hidden;

.inline-container{
  display: inline;
}
.active-anchor {
  scroll-margin: 100px 0;
}

.active-anchor > mark, .active-anchor > aspect-marked[style*="background-color: rgb(249, 248, 113)"] {
  background-color: #bfbe57 !important;
}
.active-nested-anchor > mark, .active-nested-anchor > aspect-marked[style*="background-color: rgb(249, 248, 113)"] {
  background-color: #bfbe57 !important;

.active-anchor > mark, .active-anchor > aspect-marked[style*="background-color: rgb(157, 232, 235)"] {
  background-color: #80bdbf !important;
}
.active-nested-anchor > mark, .active-nested-anchor > aspect-marked[style*="background-color: rgb(157, 232, 235)"] {
  background-color: #80bdbf !important;
}


.active-anchor > mark, .active-anchor > aspect-marked[style*="background-color: rgb(255, 160, 106)"] {
  background-color: #bf7850 !important;
}

aspect-anchor:not(.active-anchor):not(.active-nested-anchor) {
  background-color: unset !important;
}
rhenck's avatar
rhenck committed

.dragging-active {
  cursor: grabbing;
}

.dragging-active * {
  cursor: inherit !important;
}
rhenck's avatar
rhenck committed

/*Fix underline color to be the same as parent u-element*/
u>span {
  text-decoration: underline;
}