diff --git a/assets/styles/base.scss b/assets/styles/base.scss index 1be022933..361a7a569 100644 --- a/assets/styles/base.scss +++ b/assets/styles/base.scss @@ -292,7 +292,7 @@ hr { } .singlePage { - padding: 4em 30vw; + padding: 4em 25vw; @media all and (max-width: 1200px) { padding: 25px 5vw; diff --git a/assets/styles/simple-grid.scss b/assets/styles/simple-grid.scss new file mode 100644 index 000000000..b958fb2d5 --- /dev/null +++ b/assets/styles/simple-grid.scss @@ -0,0 +1,111 @@ +// SIMPLE GRID - SASS/SCSS + +// utility +.left { + text-align: left; +} + +.right { + text-align: right; +} + +.center { + text-align: center; + margin-left: auto; + margin-right: auto; +} + +.justify { + text-align: justify; +} + +.hidden-sm { + display: none; +} + +// grid + +$width: 96%; +$gutter: 4%; +$breakpoint-small: 33.75em; // 540px +$breakpoint-med: 45em; // 720px +$breakpoint-large: 60em; // 960px + +.container { + width: 90%; + margin-left: auto; + margin-right: auto; + + @media only screen and (min-width: $breakpoint-small) { + width: 80%; + } + + @media only screen and (min-width: $breakpoint-large) { + width: 75%; + max-width: 60rem; + } +} + +.row { + position: relative; + width: 100%; +} + +.row [class^="col"] { + float: left; + margin: 0.5rem 2%; + min-height: 0.125rem; +} + +.row::after { + content: ""; + display: table; + clear: both; +} + +.col-1, +.col-2, +.col-3, +.col-4, +.col-5, +.col-6, +.col-7, +.col-8, +.col-9, +.col-10, +.col-11, +.col-12 { + width: $width; +} + +.col-1-sm { width:($width / 12) - ($gutter * 11 / 12); } +.col-2-sm { width: ($width / 6) - ($gutter * 10 / 12); } +.col-3-sm { width: ($width / 4) - ($gutter * 9 / 12); } +.col-4-sm { width: ($width / 3) - ($gutter * 8 / 12); } +.col-5-sm { width: ($width / (12 / 5)) - ($gutter * 7 / 12); } +.col-6-sm { width: ($width / 2) - ($gutter * 6 / 12); } +.col-7-sm { width: ($width / (12 / 7)) - ($gutter * 5 / 12); } +.col-8-sm { width: ($width / (12 / 8)) - ($gutter * 4 / 12); } +.col-9-sm { width: ($width / (12 / 9)) - ($gutter * 3 / 12); } +.col-10-sm { width: ($width / (12 / 10)) - ($gutter * 2 / 12); } +.col-11-sm { width: ($width / (12 / 11)) - ($gutter * 1 / 12); } +.col-12-sm { width: $width; } + +@media only screen and (min-width: $breakpoint-med) { + .col-1 { width:($width / 12) - ($gutter * 11 / 12); } + .col-2 { width: ($width / 6) - ($gutter * 10 / 12); } + .col-3 { width: ($width / 4) - ($gutter * 9 / 12); } + .col-4 { width: ($width / 3) - ($gutter * 8 / 12); } + .col-5 { width: ($width / (12 / 5)) - ($gutter * 7 / 12); } + .col-6 { width: ($width / 2) - ($gutter * 6 / 12); } + .col-7 { width: ($width / (12 / 7)) - ($gutter * 5 / 12); } + .col-8 { width: ($width / (12 / 8)) - ($gutter * 4 / 12); } + .col-9 { width: ($width / (12 / 9)) - ($gutter * 3 / 12); } + .col-10 { width: ($width / (12 / 10)) - ($gutter * 2 / 12); } + .col-11 { width: ($width / (12 / 11)) - ($gutter * 1 / 12); } + .col-12 { width: $width; } + + .hidden-sm { + display: block; + } +} diff --git a/layouts/shortcodes/pricing-tables.html b/layouts/shortcodes/pricing-tables.html index b5afa25a2..3e17f94a8 100644 --- a/layouts/shortcodes/pricing-tables.html +++ b/layouts/shortcodes/pricing-tables.html @@ -1,21 +1,23 @@ -
- -
-
- +
+
+
    +
  • Free
  • +
  • $ 0 / month

    Try it free
  • +
  • Unlimited Notes
  • +
  • Chrome / Firefox Web Extension & Web App
  • +
  • Full-text search
  • +
  • Up to 2 devices synced
  • +
  • Access to plugin for Obsidian MD sync
  • +
+
+
+
    +
  • Sync+ Plan
  • +
  • $3 / month (75% off)

    Subscribe
  • +
  • Everything on the Free plan, plus
  • +
  • Access to Beta Versions
    (including Android / iOS builds)
  • +
  • Unlimited logged in devices
  • +
  • Early adopter pricing forever
    (75% off)
  • +
+
\ No newline at end of file