Compact boards.greenhouse.io by vednoc

Details
Authorvednoc
LicenseMIT
Created
Updated
Categorygreenhouse
Description
Compact style that aids you on the quest of finding your dream job.
Notes
This userstyle doesn't come with dark mode — for that I'm using Dark Reader.
Source code
/* ==UserStyle==
@name Compact boards.greenhouse.io
@namespace userstyles.world/user/vednoc
@version 1.0.0
@description Compact boards.greenhouse.io
@author vednoc
@license MIT
==/UserStyle== */
@-moz-document domain("boards.greenhouse.io") {
/* Add item counter. */
.level-0 > h3 { counter-reset: c }
.level-0 > .opening { counter-increment: c }
.level-0 > .opening::before {
content: counter(c, decimal-leading-zero);
display: inline-flex;
margin-right: 0.5rem;
font-family: monospace;
}
/* Make items inline. */
.opening {
display: flex;
margin: 1rem 0;
padding-bottom: 0.25rem;
line-height: unset !important;
}
/* Add dividers between items. */
.opening:not(:last-child) {
box-shadow: 0 1px #8883;
}
/* Remove line breaks. */
.opening > br { display: none }
/* Make sections more visible. */
h3 { margin-top: 3rem }
/* Fix location alignment and text overflow. */
.location {
margin: 0 0 0 auto;
width: 100%;
max-width: 180px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
}