You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

172 lines
2.9 KiB
SCSS

2 years ago
*,
*::before,
*::after {
box-sizing: border-box;
}
:root {
--bg-100: #ffffff;
--bg-500: #f0f0f0;
--bg-600: #e0e0e0;
--bg-2-400: #666;
--bg-2-500: #38383d;
--fg-400: #3d3d3d;
--fg-500: #333;
--fg-2-500: #ddd;
--ft-sans: 'Open Sans', sans-serif;
--ft-sans-wt-light: 300;
--ft-sans-wt-normal: 400;
--ft-sans-wt-bold: 600;
}
2 years ago
body {
margin: 0;
width: 100%;
min-height: 100vh;
font-family: var(--ft-sans);
2 years ago
font-size: 16px;
color: var(--fg-500);
background: var(--bg-500);
}
//
// Structure
//
main {
display: flex;
.sidebar {
display: flex;
flex-direction: column;
padding: 1rem;
min-height: 100vh;
min-width: 15rem;
color: var(--fg-2-500);
background: var(--bg-2-500);
font-size: 18px;
z-index: -1;
}
.main-content {
width: 100%;
background: var(--bg-500);
box-shadow: 0 0 2rem 0 #00000022;
header {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
padding: 1rem;
gap: 0.75rem;
background: var(--bg-100);
border-bottom: 1px solid var(--bg-600);
color: var(--fg-400);
vertical-align: middle;
.logo {
font-size: 32px;
font-weight: var(--ft-sans-wt-bold);
}
.machine {
font-size: 24px;
font-weight: var(--ft-sans-wt-normal);
}
}
.widgets {
display: flex;
justify-content: center;
align-items: start;
flex-wrap: wrap;
gap: 2rem;
max-width: 120ch;
.widget {
background: var(--bg-100);
border: 1px solid var(--bg-600);
padding: 1rem;
min-height: 10rem;
max-width: 50ch;
.title {
font-weight: var(--ft-sans-wt-bold);
code {
font-weight: normal;
}
}
&.todo {
width: 300px;
height: 200px;
}
}
}
}
}
//
// Typography
//
b {
font-weight: var(--ft-sans-wt-bold);
2 years ago
}
p {
margin: 0;
& + p {
margin-top: 0.5rem;
}
}
2 years ago
$base-font-size: 16px;
2 years ago
$heading-scale: 1.33;
@function pow($number, $exponent) {
$value: 1;
@if $exponent > 0 {
@for $i from 1 through $exponent {
$value: $value * $number;
}
}
@return $value;
}
@for $i from 1 through 5 {
h#{$i} {
margin: 0;
$factor: pow($heading-scale, 5 - $i);
font-size: $base-font-size * $factor;
line-height: 1.5;
}
}