updated sass
This commit is contained in:
parent
c1dc50f43a
commit
c678521967
11 changed files with 10 additions and 87 deletions
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
[submodule "_share/media/sass/org-media-sass"]
|
||||
path = _share/media/sass/org-media-sass
|
||||
url = git@bitbucket.org:ronnyabraham/org-media-sass.git
|
||||
|
|
@ -1 +0,0 @@
|
|||
/Users/ronny/notes/_share/media/sass/_fonts.sass
|
||||
|
|
@ -1 +0,0 @@
|
|||
/Users/ronny/notes/_share/media/sass/_mixins.sass
|
||||
|
|
@ -1 +0,0 @@
|
|||
/Users/ronny/notes/_share/media/sass/collapsible.sass
|
||||
|
|
@ -1 +0,0 @@
|
|||
/Users/ronny/notes/_share/media/sass/content-overview.sass
|
||||
|
|
@ -1 +0,0 @@
|
|||
/Users/ronny/notes/_share/media/sass/default-org-mode.sass
|
||||
|
|
@ -1 +0,0 @@
|
|||
/Users/ronny/notes/_share/media/sass/font-library/
|
||||
1
_share/media/sass/org-media-sass
Submodule
1
_share/media/sass/org-media-sass
Submodule
|
|
@ -0,0 +1 @@
|
|||
Subproject commit e58169a8b3d3c5eb67a9f88593d17ea11a617f35
|
||||
|
|
@ -1,11 +1,11 @@
|
|||
@use "sass:map"
|
||||
@use "sass:color"
|
||||
|
||||
@use 'default-org-mode'
|
||||
@use 'org-media-sass/default-org-mode'
|
||||
|
||||
@use 'themes/neon-noir' as *
|
||||
@use 'fonts' as fonts
|
||||
@use 'mixins' as mixins-basic
|
||||
@use 'org-media-sass/themes/neon-noir' as *
|
||||
@use 'org-media-sass/fonts' as fonts
|
||||
@use 'org-media-sass/mixins' as mixins-basic
|
||||
|
||||
@include mixins-basic.set-header-sizes($default-header-sizes)
|
||||
@include mixins-basic.set-header-colors($default-header-colors)
|
||||
|
|
|
|||
|
|
@ -1,75 +0,0 @@
|
|||
// _variables.sass
|
||||
@use "sass:map"
|
||||
@use "sass:color"
|
||||
@use '../fonts' as fonts
|
||||
|
||||
$list-padding-left: 1.5em
|
||||
|
||||
// Color Variables
|
||||
|
||||
// Colors
|
||||
$primary-color: #d10094 // Primary (Pink): Vibrant and attention-grabbing.
|
||||
$secondary-color: #5b8ee8 // Secondary (Blue): Rich, calming contrast to pink.
|
||||
$tertiary-color: #228b22 // Tertiary (Green): Strong, natural balance to pink and blue.
|
||||
$quaternary-color: #40e0d0 // Quaternary (Turquoise): Fresh and energetic, great for highlights or links.
|
||||
$quinary-color: #ffd966 // Quinary (Mustard Yellow): Warm and muted, adds subtle emphasis for accents.
|
||||
|
||||
$code-background-color: #1e1f29 // Very dark blue for code blocks
|
||||
$code-text-color: #f8f8f2 // Off-white for code text
|
||||
|
||||
$note-background-color: #333842 // Note background
|
||||
$note-border-color: $quinary-color // Note border color
|
||||
|
||||
// Text
|
||||
$text-color: #aeb1c7
|
||||
$background-color: #282a36 // Dark black-gray background
|
||||
|
||||
// Links, Anchors
|
||||
$anchor-color: color.adjust($secondary-color, $lightness: 15%)
|
||||
$anchor-hover-color: color.adjust($primary-color, $lightness: 15%)
|
||||
$toc-anchor-color: color.adjust($secondary-color, $lightness: -5%)
|
||||
$toc-anchor-hover-color: color.adjust($primary-color, $lightness: -5%)
|
||||
|
||||
// Tables
|
||||
$table-header-bg: #44475a // Steely blue for table headers
|
||||
$table-border-color: #6272a4 // Muted blue-gray for borders
|
||||
|
||||
$default-header-sizes: ()
|
||||
$default-header-sizes: map.set($default-header-sizes, h1, 2.5em)
|
||||
$default-header-sizes: map.set($default-header-sizes, h2, 2em)
|
||||
$default-header-sizes: map.set($default-header-sizes, h3, 1.5em)
|
||||
$default-header-sizes: map.set($default-header-sizes, h4, 1.2em)
|
||||
$default-header-sizes: map.set($default-header-sizes, h5, 1.2em)
|
||||
$default-header-sizes: map.set($default-header-sizes, h6, 1.1em)
|
||||
|
||||
$default-header-colors: ()
|
||||
$default-header-colors: map.set($default-header-colors, h1, $primary-color)
|
||||
$default-header-colors: map.set($default-header-colors, h2, $secondary-color)
|
||||
$default-header-colors: map.set($default-header-colors, h3, $secondary-color)
|
||||
$default-header-colors: map.set($default-header-colors, h4, $secondary-color)
|
||||
|
||||
|
||||
// Initialize empty maps
|
||||
$default-header-margins-sides: ()
|
||||
$default-header-margins-vertical: ()
|
||||
|
||||
// Dynamically populate sides map
|
||||
$default-header-margins-sides: map.set($default-header-margins-sides, h1, (left: 0, right: 0))
|
||||
$default-header-margins-sides: map.set($default-header-margins-sides, h2, (left: 0, right: 0))
|
||||
$default-header-margins-sides: map.set($default-header-margins-sides, h3, (left: 0, right: 0))
|
||||
$default-header-margins-sides: map.set($default-header-margins-sides, h4, (left: 0, right: 0))
|
||||
$default-header-margins-sides: map.set($default-header-margins-sides, h5, (left: 0, right: 0))
|
||||
$default-header-margins-sides: map.set($default-header-margins-sides, h6, (left: 0, right: 0))
|
||||
|
||||
// Dynamically populate vertical map
|
||||
$default-header-margins-vertical: map.set($default-header-margins-vertical, h1, (top: 1em, bottom: 0.5em))
|
||||
$default-header-margins-vertical: map.set($default-header-margins-vertical, h2, (top: 1em, bottom: 0.5em))
|
||||
$default-header-margins-vertical: map.set($default-header-margins-vertical, h3, (top: 1em, bottom: 0.5em))
|
||||
$default-header-margins-vertical: map.set($default-header-margins-vertical, h4, (top: 1em, bottom: 0.5em))
|
||||
$default-header-margins-vertical: map.set($default-header-margins-vertical, h5, (top: 1em, bottom: 0.5em))
|
||||
$default-header-margins-vertical: map.set($default-header-margins-vertical, h6, (top: 3.5em, bottom: 0.5em))
|
||||
|
||||
// Fonts
|
||||
$primary-font: 'Fira Mono', monospace
|
||||
$secondary-font: 'Roboto', sans-serif
|
||||
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
#+title: How To Attract Women | Dark Needle
|
||||
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../../_share/media/css/pickup.css" />
|
||||
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../../_share/media/css/content-overview.css" />
|
||||
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../../_share/media/css/collapsible.css" />
|
||||
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../../_share/media/css/org-media-sass/content-overview.css" />
|
||||
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../../_share/media/css/org-media-sass/collapsible.css" />
|
||||
#+HTML_HEAD: <script src="../../_share/media/js/collapsible.js"></script>
|
||||
|
||||
* Links
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue