got rid of useless files
This commit is contained in:
parent
521c7221e2
commit
d8096e6e31
4 changed files with 0 additions and 492 deletions
|
|
@ -1,32 +0,0 @@
|
||||||
@use "sass:map"
|
|
||||||
|
|
||||||
$primary-color: #f5f5f5
|
|
||||||
$secondary-color: #f5f5f5
|
|
||||||
$tertiary-color: #f5f5f5
|
|
||||||
$quaternary-color: #c5b06a
|
|
||||||
|
|
||||||
$text-color: #f5f5f5
|
|
||||||
$background-color: #343434
|
|
||||||
|
|
||||||
$primary-font: "Times"
|
|
||||||
$secondary-font: "Roboto"
|
|
||||||
|
|
||||||
// Header Sizes and Colors Map
|
|
||||||
$header-styles: (h1: (size: 2em, color: $primary-color, border-size: 2px))
|
|
||||||
$header-styles: map.set($header-styles, h2, (size: 1.5em, color: $secondary-color, border-size: 2px))
|
|
||||||
$header-styles: map.set($header-styles, h3, (size: 1.0em, color: $tertiary-color, border-size: 1px))
|
|
||||||
$header-styles: map.set($header-styles, h4, (size: 1.0em, color: $quaternary-color, border-size: 1px))
|
|
||||||
|
|
||||||
|
|
||||||
// Colors
|
|
||||||
$anchor-color: #ff8800
|
|
||||||
$anchor-hover-color: #ffcc00
|
|
||||||
|
|
||||||
// Header Sizes
|
|
||||||
// $default-header-sizes: (h1: 2em, h2: 1.5em, h3: 1em, h4: 1em, h5: 1.1em, h6: 1em)
|
|
||||||
|
|
||||||
// Margins
|
|
||||||
$first-anchor-margin-left: 2em
|
|
||||||
|
|
||||||
|
|
||||||
$playlist-header-color: #00e5ff
|
|
||||||
107
business.sass
107
business.sass
|
|
@ -1,107 +0,0 @@
|
||||||
@import 'variables'
|
|
||||||
@import 'fonts'
|
|
||||||
@import 'mixins'
|
|
||||||
|
|
||||||
// Base body styles
|
|
||||||
body
|
|
||||||
font-family: $primary-font
|
|
||||||
font-size: 16px
|
|
||||||
line-height: 1.6
|
|
||||||
color: $text-color
|
|
||||||
background-color: $background-color
|
|
||||||
|
|
||||||
// Headers
|
|
||||||
@each $header, $props in $header-styles
|
|
||||||
#{$header}
|
|
||||||
font-family: $secondary-font
|
|
||||||
font-weight: bold
|
|
||||||
color: map-get($props, color)
|
|
||||||
font-size: map-get($props, size)
|
|
||||||
margin-top: 20px
|
|
||||||
margin-bottom: 10px
|
|
||||||
|
|
||||||
// Default Link Style (Primary)
|
|
||||||
a
|
|
||||||
@include link-primary
|
|
||||||
|
|
||||||
// Specific Link Styles
|
|
||||||
a.secondary
|
|
||||||
@include link-secondary
|
|
||||||
|
|
||||||
a.inverse
|
|
||||||
@include link-inverse
|
|
||||||
|
|
||||||
h4 a
|
|
||||||
margin-left: 2em
|
|
||||||
@include link-secondary
|
|
||||||
|
|
||||||
// Tables
|
|
||||||
table
|
|
||||||
width: 100%
|
|
||||||
border-collapse: collapse
|
|
||||||
margin: 20px 0
|
|
||||||
font-size: 14px
|
|
||||||
|
|
||||||
th, td
|
|
||||||
padding: $table-padding
|
|
||||||
text-align: left
|
|
||||||
border-bottom: 1px solid $table-border-color
|
|
||||||
|
|
||||||
th
|
|
||||||
background-color: $table-header-bg
|
|
||||||
color: white
|
|
||||||
|
|
||||||
tr:nth-child(even)
|
|
||||||
background-color: lighten($table-border-color, 20%)
|
|
||||||
|
|
||||||
// Special Classes
|
|
||||||
.positives-negatives
|
|
||||||
th, td
|
|
||||||
text-align: center
|
|
||||||
padding: 12px
|
|
||||||
tr:nth-child(even)
|
|
||||||
background-color: lighten($tertiary-color, 30%)
|
|
||||||
th
|
|
||||||
background-color: $tertiary-color
|
|
||||||
color: white
|
|
||||||
|
|
||||||
.tax-bracket
|
|
||||||
th, td
|
|
||||||
padding: 8px
|
|
||||||
text-align: right
|
|
||||||
th
|
|
||||||
background-color: $primary-color
|
|
||||||
color: white
|
|
||||||
|
|
||||||
.ip-recap
|
|
||||||
th, td
|
|
||||||
padding: 10px
|
|
||||||
text-align: left
|
|
||||||
th
|
|
||||||
background-color: $quaternary-color
|
|
||||||
color: white
|
|
||||||
|
|
||||||
// Code Blocks
|
|
||||||
pre, code
|
|
||||||
background-color: $code-bg-color
|
|
||||||
padding: 10px
|
|
||||||
border-radius: $code-border-radius
|
|
||||||
font-family: $primary-font
|
|
||||||
color: $code-font-color
|
|
||||||
overflow-x: auto
|
|
||||||
font-size: 14px
|
|
||||||
|
|
||||||
// Lists
|
|
||||||
ul, ol
|
|
||||||
margin-left: $list-padding-left
|
|
||||||
padding-left: $list-padding-left
|
|
||||||
list-style-position: inside
|
|
||||||
|
|
||||||
li
|
|
||||||
margin-bottom: 5px
|
|
||||||
|
|
||||||
img
|
|
||||||
width: 20em
|
|
||||||
|
|
||||||
div#postamble
|
|
||||||
border-color: $tertiary-color
|
|
||||||
151
graphics.sass
151
graphics.sass
|
|
@ -1,151 +0,0 @@
|
||||||
@import 'variables'
|
|
||||||
@import 'fonts'
|
|
||||||
@import 'mixins'
|
|
||||||
@import 'themes/dark_graphics'
|
|
||||||
|
|
||||||
// Base body styles
|
|
||||||
body
|
|
||||||
font-family: $primary-font
|
|
||||||
font-size: 16px
|
|
||||||
line-height: 1.6
|
|
||||||
color: $text-color
|
|
||||||
background-color: $background-color
|
|
||||||
|
|
||||||
// Headers
|
|
||||||
@each $header, $props in $header-styles
|
|
||||||
#{$header}
|
|
||||||
font-family: $secondary-font
|
|
||||||
font-weight: bold
|
|
||||||
color: map-get($props, color)
|
|
||||||
font-size: map-get($props, size)
|
|
||||||
margin-top: 20px
|
|
||||||
margin-bottom: 10px
|
|
||||||
|
|
||||||
@include remove-section-number(h2)
|
|
||||||
|
|
||||||
h1
|
|
||||||
padding: 1em
|
|
||||||
|
|
||||||
div.outline-2
|
|
||||||
padding: 1em 0
|
|
||||||
|
|
||||||
div#table-of-contents
|
|
||||||
|
|
||||||
h2
|
|
||||||
font-size: get-header-property(h2, size) + .1em
|
|
||||||
border: none
|
|
||||||
|
|
||||||
h2
|
|
||||||
border-top: dashed $secondary-color 1px
|
|
||||||
text-transform: uppercase
|
|
||||||
|
|
||||||
// Default Link Style (Primary)
|
|
||||||
a
|
|
||||||
@include link-primary
|
|
||||||
|
|
||||||
// Specific Link Styles
|
|
||||||
a.secondary
|
|
||||||
@include link-secondary
|
|
||||||
|
|
||||||
a.inverse
|
|
||||||
@include link-inverse
|
|
||||||
|
|
||||||
// Tables
|
|
||||||
table
|
|
||||||
width: 100%
|
|
||||||
border-collapse: collapse
|
|
||||||
margin: 20px 0
|
|
||||||
font-size: 14px
|
|
||||||
|
|
||||||
th, td
|
|
||||||
padding: $table-padding
|
|
||||||
text-align: left
|
|
||||||
border-bottom: 1px solid $table-border-color
|
|
||||||
|
|
||||||
th
|
|
||||||
background-color: $table-header-bg
|
|
||||||
color: white
|
|
||||||
|
|
||||||
tr:nth-child(even)
|
|
||||||
background-color: lighten($table-border-color, 20%)
|
|
||||||
|
|
||||||
// Special Classes
|
|
||||||
.positives-negatives
|
|
||||||
th, td
|
|
||||||
text-align: center
|
|
||||||
padding: 12px
|
|
||||||
tr:nth-child(even)
|
|
||||||
background-color: lighten($tertiary-color, 30%)
|
|
||||||
th
|
|
||||||
background-color: $tertiary-color
|
|
||||||
color: white
|
|
||||||
|
|
||||||
.tax-bracket
|
|
||||||
th, td
|
|
||||||
padding: 8px
|
|
||||||
text-align: right
|
|
||||||
th
|
|
||||||
background-color: $primary-color
|
|
||||||
color: white
|
|
||||||
|
|
||||||
.ip-recap
|
|
||||||
th, td
|
|
||||||
padding: 10px
|
|
||||||
text-align: left
|
|
||||||
th
|
|
||||||
background-color: $quaternary-color
|
|
||||||
color: white
|
|
||||||
|
|
||||||
// Code Blocks
|
|
||||||
pre, code
|
|
||||||
background-color: $code-bg-color
|
|
||||||
padding: 10px
|
|
||||||
border-radius: $code-border-radius
|
|
||||||
font-family: $primary-font
|
|
||||||
color: $code-font-color
|
|
||||||
overflow-x: auto
|
|
||||||
font-size: 14px
|
|
||||||
|
|
||||||
// Lists
|
|
||||||
ul, ol
|
|
||||||
margin-left: $list-padding-left
|
|
||||||
padding-left: $list-padding-left
|
|
||||||
list-style-position: inside
|
|
||||||
|
|
||||||
li
|
|
||||||
margin-bottom: 5px
|
|
||||||
|
|
||||||
img
|
|
||||||
width: 20em
|
|
||||||
|
|
||||||
div#postamble
|
|
||||||
border-color: $tertiary-color
|
|
||||||
|
|
||||||
h3
|
|
||||||
margin-left: 1em
|
|
||||||
|
|
||||||
h4
|
|
||||||
margin-left: 2em
|
|
||||||
|
|
||||||
h4 a
|
|
||||||
margin-left: 2em
|
|
||||||
@include link-secondary
|
|
||||||
|
|
||||||
.outline-text-3
|
|
||||||
p
|
|
||||||
margin-left: 1em
|
|
||||||
padding-left: 1em
|
|
||||||
|
|
||||||
/*
|
|
||||||
.org-ol > li::marker
|
|
||||||
color: green
|
|
||||||
font-weight: bold
|
|
||||||
|
|
||||||
.org-ol > li::first-line
|
|
||||||
color: green
|
|
||||||
font-weight: bold
|
|
||||||
*/
|
|
||||||
|
|
||||||
// .outline-4
|
|
||||||
// margin-left: 2em
|
|
||||||
|
|
||||||
202
pickup.sass
202
pickup.sass
|
|
@ -1,202 +0,0 @@
|
||||||
@import 'variables'
|
|
||||||
@import 'themes/dark_scarlet'
|
|
||||||
|
|
||||||
@import 'fonts'
|
|
||||||
@import 'mixins'
|
|
||||||
|
|
||||||
@import 'tables'
|
|
||||||
|
|
||||||
$primary-font: 'Fira Mono', monospace
|
|
||||||
$secondary-font: 'Roboto', sans-serif
|
|
||||||
// Base body styles
|
|
||||||
body
|
|
||||||
font-family: $primary-font
|
|
||||||
font-size: 16px
|
|
||||||
line-height: 1.6
|
|
||||||
color: $text-color
|
|
||||||
background-color: $background-color
|
|
||||||
|
|
||||||
// Headers
|
|
||||||
@each $header, $props in $header-styles
|
|
||||||
#{$header}
|
|
||||||
font-family: $secondary-font
|
|
||||||
font-weight: bold
|
|
||||||
color: map-get($props, color)
|
|
||||||
font-size: map-get($props, size)
|
|
||||||
margin-top: 20px
|
|
||||||
margin-bottom: 10px
|
|
||||||
|
|
||||||
// Default Link Style (Primary)
|
|
||||||
a
|
|
||||||
@include link-primary
|
|
||||||
|
|
||||||
// Specific Link Styles
|
|
||||||
a.secondary
|
|
||||||
@include link-secondary
|
|
||||||
|
|
||||||
a.inverse
|
|
||||||
@include link-inverse
|
|
||||||
|
|
||||||
a
|
|
||||||
color: $link-color-primary
|
|
||||||
text-decoration: underline
|
|
||||||
|
|
||||||
&:hover
|
|
||||||
color: $link-color-secondary // Bold pinkish-red on hover
|
|
||||||
|
|
||||||
h4 a
|
|
||||||
margin-left: 2em
|
|
||||||
@include link-secondary
|
|
||||||
|
|
||||||
// Tables
|
|
||||||
table
|
|
||||||
width: 100%
|
|
||||||
border-collapse: collapse
|
|
||||||
margin: 20px 0
|
|
||||||
font-size: 14px
|
|
||||||
|
|
||||||
th, td
|
|
||||||
padding: $table-padding
|
|
||||||
text-align: left
|
|
||||||
border-bottom: 1px solid $table-border-color
|
|
||||||
|
|
||||||
th
|
|
||||||
background-color: $table-header-bg
|
|
||||||
color: white
|
|
||||||
|
|
||||||
tr:nth-child(even)
|
|
||||||
background-color: lighten($table-border-color, 20%)
|
|
||||||
|
|
||||||
// Special Classes
|
|
||||||
.positives-negatives
|
|
||||||
th, td
|
|
||||||
text-align: center
|
|
||||||
padding: 12px
|
|
||||||
tr:nth-child(even)
|
|
||||||
background-color: lighten($tertiary-color, 30%)
|
|
||||||
th
|
|
||||||
background-color: $tertiary-color
|
|
||||||
color: white
|
|
||||||
|
|
||||||
.tax-bracket
|
|
||||||
th, td
|
|
||||||
padding: 8px
|
|
||||||
text-align: right
|
|
||||||
th
|
|
||||||
background-color: $primary-color
|
|
||||||
color: white
|
|
||||||
|
|
||||||
.ip-recap
|
|
||||||
th, td
|
|
||||||
padding: 10px
|
|
||||||
text-align: left
|
|
||||||
th
|
|
||||||
background-color: $quaternary-color
|
|
||||||
color: white
|
|
||||||
|
|
||||||
// Code Blocks
|
|
||||||
pre, code
|
|
||||||
background-color: $code-bg-color
|
|
||||||
padding: 10px
|
|
||||||
border-radius: $code-border-radius
|
|
||||||
font-family: $primary-font
|
|
||||||
color: $code-font-color
|
|
||||||
overflow-x: auto
|
|
||||||
font-size: 14px
|
|
||||||
|
|
||||||
// Lists
|
|
||||||
ul, ol
|
|
||||||
margin-left: $list-padding-left
|
|
||||||
padding-left: $list-padding-left
|
|
||||||
list-style-position: inside
|
|
||||||
|
|
||||||
li
|
|
||||||
margin-bottom: 5px
|
|
||||||
|
|
||||||
img
|
|
||||||
width: 20em
|
|
||||||
|
|
||||||
div#postamble
|
|
||||||
border-color: $tertiary-color
|
|
||||||
|
|
||||||
|
|
||||||
@include toggle-section-numbers(h3, true)
|
|
||||||
|
|
||||||
h3
|
|
||||||
margin-left: 1em
|
|
||||||
a
|
|
||||||
font-size: 90%
|
|
||||||
text-decoration: underline
|
|
||||||
text-underline-offset: 4px
|
|
||||||
|
|
||||||
|
|
||||||
table
|
|
||||||
width: 100%
|
|
||||||
border-collapse: collapse
|
|
||||||
margin: 20px 0
|
|
||||||
color: $text-color
|
|
||||||
|
|
||||||
th
|
|
||||||
background-color: $table-header-bg
|
|
||||||
color: $text-color
|
|
||||||
|
|
||||||
td
|
|
||||||
border: 1px solid $table-border-color
|
|
||||||
padding: 10px
|
|
||||||
|
|
||||||
tr:nth-child(even)
|
|
||||||
background-color: lighten($table-header-bg, 5%)
|
|
||||||
|
|
||||||
|
|
||||||
ul, ol
|
|
||||||
margin: 1em 0
|
|
||||||
padding-left: 1.5em
|
|
||||||
list-style-position: inside
|
|
||||||
font-size: 1rem
|
|
||||||
line-height: 1.6
|
|
||||||
|
|
||||||
// Unordered List
|
|
||||||
ul
|
|
||||||
list-style-type: disc
|
|
||||||
|
|
||||||
li
|
|
||||||
margin-bottom: 0.5em
|
|
||||||
&:before
|
|
||||||
content: '•'
|
|
||||||
color: $primary-color
|
|
||||||
font-weight: bold
|
|
||||||
display: inline-block
|
|
||||||
width: 1em
|
|
||||||
margin-left: -1.5em
|
|
||||||
|
|
||||||
// Ordered List
|
|
||||||
ol
|
|
||||||
list-style-type: decimal
|
|
||||||
|
|
||||||
li
|
|
||||||
margin-bottom: 0.5em
|
|
||||||
&:before
|
|
||||||
color: $secondary-color
|
|
||||||
font-weight: bold
|
|
||||||
|
|
||||||
// Nested Lists
|
|
||||||
ul ul, ol ol, ul ol, ol ul
|
|
||||||
margin-top: 0.5em
|
|
||||||
margin-left: 1em
|
|
||||||
list-style-type: circle
|
|
||||||
|
|
||||||
li
|
|
||||||
margin-bottom: 0.25em
|
|
||||||
|
|
||||||
// Special Class for Inline Lists
|
|
||||||
.inline-list
|
|
||||||
list-style-type: none
|
|
||||||
margin: 0
|
|
||||||
padding: 0
|
|
||||||
display: flex
|
|
||||||
flex-wrap: wrap
|
|
||||||
gap: 1em
|
|
||||||
|
|
||||||
li
|
|
||||||
display: inline
|
|
||||||
|
|
||||||
Loading…
Add table
Reference in a new issue