Update CSS to increase contrast

This commit is contained in:
Rico Sta. Cruz 2020-07-05 16:11:28 +10:00
parent 360bb87287
commit bec53c5405
4 changed files with 17 additions and 5 deletions

View File

@ -111,6 +111,7 @@
.MarkdownBody table.-key-values {
& tbody tr td + td code {
display: block;
text-align: left;
}
}
@ -166,3 +167,13 @@
}
}
}
/* Separators (rehype-table-separators) */
.MarkdownBody table tr.separator {
& > td {
padding: 0;
height: 4px;
background: $line-color;
box-shadow: inset 0 1px 0 $dark-line-color, inset 0 2px 4px $line-color;
}
}

View File

@ -1,6 +1,3 @@
// Generated by parcel
@import '../../assets/packed/app.css';
@import './variables';
@import '../vendor/modularscale/modularscale';
@import '../vendor/ionicons-inline/ionicons';

View File

@ -46,8 +46,8 @@ $body-bg: $base-body;
$gray-bg: mix($base-body, $base-panel, 50%);
$gray-text: $base-mute;
$line-color: rgba($base-mute, 0.05);
$dark-line-color: rgba($base-mute, 0.2);
$line-color: rgba($base-mute, 0.1);
$dark-line-color: rgba($base-mute, 0.3);
//
// Variants

View File

@ -1,4 +1,8 @@
---
type: other
---
// Generated by parcel (relative to _sass)
@import '../../assets/packed/app.css';
// From _sass
@import '2017/style.scss';