65 lines
1 KiB
SCSS
65 lines
1 KiB
SCSS
$font-path: 'ibm-plex';
|
|
@import 'ibm-plex/css/ibm-plex.scss';
|
|
|
|
*, *:before, *:after {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html, body {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
body {
|
|
background: #fefefe;
|
|
font-family: 'IBM Plex Mono', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', Courier, monospace;
|
|
font-size: 16px;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-weight: normal;
|
|
}
|
|
|
|
|
|
// the base size of the header svg is 500 * 500, strokes will need to be
|
|
// adjusted for exact pixel sizes
|
|
$logo-size: 216;
|
|
$factor: 1 / ($logo-size / 500);
|
|
|
|
.ten-print {
|
|
width: $logo-size;
|
|
height: $logo-size;
|
|
}
|
|
|
|
|
|
.ten-print path {
|
|
stroke: #ff005f;
|
|
fill: transparent;
|
|
stroke-width: 1.5px * $factor;
|
|
stroke-linecap: round;
|
|
}
|
|
|
|
main {
|
|
display: grid;
|
|
max-width: 960px;
|
|
margin: 48px auto 48px 48px;
|
|
grid-gap: 32px;
|
|
grid-auto-rows: 1fr;
|
|
grid-template-columns: repeat(16, 1fr);
|
|
grid-auto-flow: dense;
|
|
}
|
|
|
|
aside {
|
|
grid-column: span 4;
|
|
}
|
|
|
|
nav ul {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
article {
|
|
grid-column: span 12;
|
|
}
|