teamreview/style.scss

45 lines
618 B
SCSS

@import url('https://fonts.googleapis.com/css?family=Raleway&display=swap');
$highlight-color: #569975;
body {
font-family: Raleway;
margin: 2em;
}
table {
border-collapse: collapse;
box-shadow: 0px 0px 5px rgba(#AAAAAA, 25%);
}
thead {
background-color: $highlight-color;
color: white;
}
th {
padding: 1em;
}
td {
padding-top: 0.25em;
padding-bottom: 0.25em;
padding-left: 0.5em;
}
tr:not(.nested-row) {
td:first-child {
font-weight: bold;
}
}
tr.nested-row {
td:first-child {
padding-left: 2em;
}
}
section {
margin-bottom: 3em;
}