diff options
Diffstat (limited to 'assets/sass/_class.scss')
-rw-r--r-- | assets/sass/_class.scss | 85 |
1 files changed, 85 insertions, 0 deletions
diff --git a/assets/sass/_class.scss b/assets/sass/_class.scss new file mode 100644 index 0000000..f0fb73b --- /dev/null +++ b/assets/sass/_class.scss @@ -0,0 +1,85 @@ +body { + a { + color: $color-primary; + } + + a:hover { + color: $color-secondary; + text-decoration: none; + } +} + +// main title style +.main-title { + font-family: 'Product Sans', -apple-system, BlinkMacSystemFont, Arial, monospace; + font-weight: 700; + font-size: $font-size-logo; + white-space: nowrap; + display: block; +} + +.link-alter { + a { + color: $color-secondary; + } + + a:hover { + color: $color-primary-dark; + text-decoration: none; + } +} + +.markdown-body { + a { + color: $color-secondary; + } + + a:hover { + color: $color-primary-dark; + text-decoration: none; + } + + h1, + h2, + h3, + h4, + h5, + h6 { + color: $color-primary; + } + + h1 { + font-size: $font-size-l1; + border-bottom: $spliter; + margin-top: 1.5rem; + } + + h2 { + font-size: $font-size-l2; + border-bottom: $spliter; + margin-top: 1.25rem; + } + + h3 { + font-size: $font-size-l3; + } + + h4, + h5, + h6 { + font-size: $font-size-l4; + } + + hr { + background-color: $color-spliter; + } + + ul { + list-style-type: circle; + } + + img { + border: 2px solid $color-secondary; + border-radius: 1px; + } +}
\ No newline at end of file |