This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en" class="font-montserrat"> | |
| <head> | |
| <meta charset='utf-8'> | |
| <meta name='viewport' content='width=device-width,initial-scale=1.0'> | |
| <meta name='theme-color' content='#333333'> | |
| %sapper.base% | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @import "tailwindcss/base"; | |
| h1 { | |
| @apply text-2xl; | |
| } | |
| /* | |
| .h1:md { | |
| @apply text-3xl; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // @ts-nocheck | |
| // TODO: remove once there are typings in place | |
| import babel from 'rollup-plugin-babel'; | |
| import commonjs from 'rollup-plugin-commonjs'; | |
| import config from 'sapper/config/rollup.js'; | |
| import getPreprocessor from 'svelte-preprocess' | |
| import path from 'path' | |
| import pkg from './package.json'; | |
| import postcss from 'rollup-plugin-postcss' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const colors = { | |
| transparent: 'transparent', | |
| black: '#000000', | |
| white: '#FFFFFF', | |
| 'red-50': '#FFEBEE', | |
| 'red-100': '#FFCDD2', | |
| 'red-200': '#EF9A9A', | |
| 'red-300': '#E57373', | |
| 'red-400': '#EF5350', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| h1 { | |
| @apply text-2xl; | |
| } | |
| h2 { | |
| @apply text-xl; | |
| } | |
| h3 { | |
| @apply text-lg; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const colors = { | |
| transparent: 'transparent', | |
| black: '#000000', | |
| white: '#FFFFFF', | |
| 'red-50': '#FFEBEE', | |
| 'red-100': '#FFCDD2', | |
| 'red-200': '#EF9A9A', | |
| 'red-300': '#E57373', | |
| 'red-400': '#EF5350', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const colors = { | |
| transparent: 'transparent', | |
| black: '#000000', | |
| white: '#FFFFFF', | |
| 'red-50': '#FFEBEE', | |
| 'red-100': '#FFCDD2', | |
| 'red-200': '#EF9A9A', | |
| 'red-300': '#E57373', | |
| 'red-400': '#EF5350', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const colors = { | |
| transparent: 'transparent', | |
| black: '#000000', | |
| white: '#FFFFFF', | |
| 'red-50': '#FFEBEE', | |
| 'red-100': '#FFCDD2', | |
| 'red-200': '#EF9A9A', | |
| 'red-300': '#E57373', | |
| 'red-400': '#EF5350', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const colors = { | |
| transparent: 'transparent', | |
| black: '#000000', | |
| white: '#FFFFFF', | |
| 'red-50': '#FFEBEE', | |
| 'red-100': '#FFCDD2', | |
| 'red-200': '#EF9A9A', | |
| 'red-300': '#E57373', | |
| 'red-400': '#EF5350', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @import "tailwindcss/base"; | |
| @import "tailwindcss/components"; | |
| @import './components'; | |
| @import "tailwindcss/utilities"; | |
| @import './edm-utilities'; | |
| :root { | |
| --font-primary: Montserrat, sans-serif; | |
| --font-secondary: Roboto, sans-serif; |