diff --git a/.gitignore b/.gitignore index c0a5a6a..b35d071 100644 --- a/.gitignore +++ b/.gitignore @@ -9,7 +9,7 @@ public/* .hugo_build.lock deploy node_modules -env +.env Package.resolved # Local Netlify folder diff --git a/Caddyfile b/Caddyfile new file mode 100644 index 0000000..6825591 --- /dev/null +++ b/Caddyfile @@ -0,0 +1,53 @@ +{ + # Port to listen on + http_port 80 + + # Configure caddy-security. + order authenticate before respond + + security { + oauth identity provider generic { + delay_start 3 + realm generic + driver generic + client_id {env.OAUTH_CLIENT_ID} + client_secret {env.OAUTH_CLIENT_SECRET} + scopes openid email profile + base_auth_url https://id.housh.dev + metadata_url https://id.housh.dev/.well-known/openid-configuration + } + + authentication portal myportal { + crypto default token lifetime 3600 # Seconds until you have to re-authenticate + enable identity provider generic + cookie insecure on # Set to "on" if you're not using HTTPS + + transform user { + match realm generic + action add role user + } + } + + authorization policy mypolicy { + set auth url /caddy-security/oauth2/generic + allow roles user + inject headers with claims + } + } +} + +https://docs.housh.dev { + @auth { + path /caddy-security/* + } + + route @auth { + authenticate with myportal + } + + route /* { + authorize with mypolicy + root * /app + file_server + } +} diff --git a/Dockerfile b/Dockerfile index 9cad99a..4ddfa08 100644 --- a/Dockerfile +++ b/Dockerfile @@ -38,14 +38,17 @@ RUN npx -y pagefind --site deploy # ================================================== # Run Image # ================================================== -FROM caddy:2.9.1-alpine +FROM ghcr.io/authcrunch/authcrunch:latest WORKDIR /app COPY --from=css /build/deploy . COPY --from=css /build/content/static/output.css ./static/output.css COPY --from=css /build/deploy/pagefind ./pagefind +COPY Caddyfile /etc/caddy/Caddyfile + +RUN /usr/bin/caddy fmt --overwrite /etc/caddy/Caddyfile EXPOSE 80 -CMD ["/usr/bin/caddy", "file-server", "--root", "/app", "--listen", ":80"] +CMD ["/usr/bin/caddy", "run", "--config", "/etc/caddy/Caddyfile"] diff --git a/Sources/Docs/Templates/BaseLayout.swift b/Sources/Docs/Templates/BaseLayout.swift index 7fc7dda..14b60f0 100644 --- a/Sources/Docs/Templates/BaseLayout.swift +++ b/Sources/Docs/Templates/BaseLayout.swift @@ -21,10 +21,10 @@ func baseLayout( .documentType("html"), html(lang: "en-US") { generateHead(pageTitle, extraHeader) - body(class: "text-white text-lg pb-5 font-avenir \(section.rawValue)") { + body(class: "text-white text-lg font-avenir \(section.rawValue)") { siteHeader(section) - div(class: "container mb-auto") { + div(class: "mb-auto") { children() } if section == .articles { @@ -57,9 +57,7 @@ private func siteHeader(_ section: Section) -> Node { } } } - // if section == .home { div(class: "font-avenir w-full pt-4", id: "search") {} - // } } } } diff --git a/Sources/Docs/Templates/RenderArticle.swift b/Sources/Docs/Templates/RenderArticle.swift index ce2a18a..ae75b30 100644 --- a/Sources/Docs/Templates/RenderArticle.swift +++ b/Sources/Docs/Templates/RenderArticle.swift @@ -97,25 +97,38 @@ func renderArticle(context: ItemRenderingContext) -> Node { title: context.item.title, extraHeader: generateHeader(.article(context.item)) ) { - article(class: "pt-8") { - h1 { context.item.title } - div { - renderArticleInfo(context.item) - } - // Only index the body of the articles for search. - div(customAttributes: ["data-pagefind-body": ""]) { - Node.raw(context.item.body) + article(class: "pt-8 mx-10") { + div(class: "bg-slate-800 py-10") { + div(class: "mx-10") { + h1 { context.item.title } + div { + renderArticleInfo(context.item) + } + // Only index the body of the articles for search. + div(customAttributes: ["data-pagefind-body": ""]) { + Node.raw(context.item.body) + } + } } } - div(class: "border-t border-light pt-8 mt-16", id: "recents") { + div(class: "border-t border-light p-10 mt-16", id: "recents") { div(class: "grid lg:grid-cols-2") { h4(class: "text-3xl text-amber-500 font-extrabold mb-8") { otherArticles.title } if let tag = otherArticles.tag { a(href: "/articles/tag/\(tag)") { - div(class: " [&:hover]:border-b border-orange px-5 flex flex-row gap-5") { - img(src: "/static/img/tag.svg", width: "40") - span(class: "text-4xl font-extrabold text-orange") { tag } + div(class: " [&:hover]:border-b border-green-500 px-5 flex flex-row gap-5") { + img(class: "-mt-2", src: "/static/img/tag.svg", width: "40") + div(class: "block") { + div(class: "block") { + span(class: "mt-2 text-4xl font-extrabold text-orange") { tag } + } + div(class: "block") { + span(class: "text-sm text-orange-400") { + "View related articles with this tag." + } + } + } } } } @@ -137,16 +150,18 @@ func renderArticle(context: ItemRenderingContext) -> Node { } } -func renderArticleForGrid(article: Item) -> Node { - section { - h3(class: "post-title text-2xl font-bold mb-2") { - a(class: "[&:hover]:border-b border-orange-400", href: article.url) { article.title } - } - renderArticleInfo(article) - p { - a(href: article.url) { - div { - article.summary +func renderArticleForGrid(article: Item, border: Bool = true) -> Node { + div(class: "bg-slate-800\(border ? " border border-slate-400 rounded-lg" : "")") { + section(class: "m-4") { + h3(class: "post-title text-2xl font-bold mb-2") { + a(class: "[&:hover]:border-b border-green-500", href: article.url) { article.title } + } + renderArticleInfo(article) + p { + a(href: article.url) { + div { + article.summary + } } } } diff --git a/Sources/Docs/Templates/RenderArticles.swift b/Sources/Docs/Templates/RenderArticles.swift index 24ac883..cdb9d48 100644 --- a/Sources/Docs/Templates/RenderArticles.swift +++ b/Sources/Docs/Templates/RenderArticles.swift @@ -18,14 +18,16 @@ func renderArticles(context: ItemsRenderingContext) -> Node { return baseLayout(canocicalURL: "/articles/", section: .articles, title: "Articles", rssLink: "", extraHeader: "") { // TODO: Add list of tags here that can be navigated to. sortedByYearDescending.map { year, articles in - div { - div(class: "border-b border-light flex flex-row gap-4 mb-12") { - img(src: "/static/img/calendar.svg", width: "40") - h1(class: "text-4xl font-extrabold pt-3") { year } - } + div(class: "mt-8 bg-slate-800") { + div(class: "pt-8 mx-10") { + div(class: "border-b border-light flex flex-row gap-4 mb-12") { + img(src: "/static/img/calendar.svg", width: "40") + h1(class: "text-4xl font-extrabold pt-3") { year } + } - div(class: "grid gap-10 mb-16") { - articles.map { renderArticleForGrid(article: $0) } + div(class: "grid gap-10 mb-16") { + articles.map { renderArticleForGrid(article: $0, border: false) } + } } } } @@ -63,60 +65,6 @@ func renderYear(context: PartitionedRenderingContext) -> baseRenderArticles(context.items, canocicalURL: "/articles/\(context.key)/", title: "Articles in \(context.key)") } -private struct SearchData: Encodable { - let url: String - let title: String - let body: String - - init(article: Item) throws { - self.url = article.url - self.title = article.title - let rawContent: String = try article.absoluteSource.read() - self.body = Self.parse(rawContent) - } - - /// Grabs the metadata (wrapped within `---`), the first title, and the body of the document. - static func parts(from content: String) -> (String?, String?, String) { - let scanner = Scanner(string: content) - - var header: String? = nil - var title: String? = nil - - if scanner.scanString("---") == "---" { - header = scanner.scanUpToString("---") - _ = scanner.scanString("---") - } - - if scanner.scanString("# ") == "# " { - title = scanner.scanUpToString("\n") - } - - let body = String(scanner.string[scanner.currentIndex...]) - - return (header, title, body) - } - - static func parse(_ content: String) -> String { - let (_, _, body) = parts(from: content) - return body - .replacingOccurrences(of: "\n", with: " ") - .replacingOccurrences(of: "#", with: "") - } -} - -func renderJson(_ articles: ItemsRenderingContext) throws -> String { - print(articles.items.count) - print(articles.items) - let data = try jsonEncoder.encode(articles.items.map(SearchData.init(article:))) - return String(data: data, encoding: .utf8)! -} - -private let jsonEncoder: JSONEncoder = { - let encoder = JSONEncoder() - encoder.outputFormatting = [.prettyPrinted, .sortedKeys] - return encoder -}() - private func baseRenderArticles( _ articles: [Item], canocicalURL: String, diff --git a/Sources/Docs/Templates/RenderPage.swift b/Sources/Docs/Templates/RenderPage.swift index 59b52a2..c8ac35c 100644 --- a/Sources/Docs/Templates/RenderPage.swift +++ b/Sources/Docs/Templates/RenderPage.swift @@ -31,63 +31,65 @@ func renderHome(body: String) -> Node { Node.raw(body) } div { - h2 { "Quick Links" } - div(class: "grid lg:grid-cols-2 gap-6") { - HomeLink.internal( - "Articles", - icon: "newspaper", - href: "/articles/", - description: "Click here to view all articles." - ) + div(class: "bg-slate-800 p-10 rounded-lg border border-slate-400") { + h2 { "Quick Links" } + div(class: "grid lg:grid-cols-2 gap-6") { + HomeLink.internal( + "Articles", + icon: "newspaper", + href: "/articles/", + description: "Click here to view all articles." + ) - HomeLink.external( - "Purchase Orders", - icon: "calculator", - href: "https://po.housh.dev", - description: "Purchase orders application." - ) + HomeLink.external( + "Purchase Orders", + icon: "calculator", + href: "https://po.housh.dev", + description: "Purchase orders application." + ) - HomeLink.external( - "Service Monitor", - icon: "heart-pulse", - href: "https://uptime.housh.dev/status/housh-dev", - description: "Server and services uptime status page." - ) + HomeLink.external( + "Service Monitor", + icon: "heart-pulse", + href: "https://uptime.housh.dev/status/housh-dev", + description: "Server and services uptime status page." + ) - HomeLink.external( - "Unifi Console", - icon: "earth", - href: "https://unifi.ui.com", - description: "Network management." - ) + HomeLink.external( + "Unifi Console", + icon: "earth", + href: "https://unifi.ui.com", + description: "Network management." + ) - HomeLink.external( - "Excalidraw", - icon: "pen-tool", - href: "https://draw.housh.dev", - description: "A drawing utility that runs locally in your browser." - ) + HomeLink.external( + "Excalidraw", + icon: "pen-tool", + href: "https://draw.housh.dev", + description: "A drawing utility that runs locally in your browser." + ) - HomeLink.external( - "Gitea", - icon: "git-branch", - href: "https://git.housh.dev/explore/repos", - description: "Explore source code." - ) + HomeLink.external( + "Gitea", + icon: "git-branch", + href: "https://git.housh.dev/explore/repos", + description: "Explore source code." + ) - HomeLink.external( - "Legacy Purchase Orders", - icon: "file-archive", - href: "https://legach-po.housh.dev", - description: "Legacy purchase order application (pre-2025)." - ) + HomeLink.external( + "Legacy Purchase Orders", + icon: "file-archive", + href: "https://legach-po.housh.dev", + description: "Legacy purchase order application (pre-2025)." + ) - HomeLink.external( - "HVAC Toolbox", - icon: "hammer", - href: "https://hvac-toolbox.com", - description: "A collection of HVAC calculators." - ) + HomeLink.external( + "HVAC Toolbox", + icon: "hammer", + href: "https://hvac-toolbox.com", + description: "A collection of HVAC calculators." + ) + } } } script(src: "https://unpkg.com/lucide@latest") diff --git a/compose.yaml b/compose.yaml index fca2d2a..0f0aa66 100644 --- a/compose.yaml +++ b/compose.yaml @@ -3,6 +3,7 @@ services: image: git.housh.dev/homelab/docs:latest container_name: docs restart: unless-stopped + env_file: .env ports: - ${PORT:-8081}:80 networks: diff --git a/content/articles/2025-04-09-ServerManagementConsole.md b/content/articles/2025-04-09-ServerManagementConsole.md new file mode 100644 index 0000000..8316a23 --- /dev/null +++ b/content/articles/2025-04-09-ServerManagementConsole.md @@ -0,0 +1,119 @@ +--- +date: 2025-04-09 +tags: infrastructure, servers, homelab +primaryTag: infrastructure +--- + +# Server Management Console + +This article I'll describe some steps to manage and / or trouble shoot the +servers. + +## Management Console + +The servers have a management console that is accessible from the internal +network. You will need to get the login name and password from Michael. + +| Server | Link | +| ------------ | ---------------------------------------------------------------------- | +| mighty-mini | [console.mightymini.housh.dev](https://console.mightymini.housh.dev) | +| franken-mini | [console.frankenmini.housh.dev](https://console.frankenmini.housh.dev) | +| rogue-mini | [console.roguemini.housh.dev](https://console.roguemini.housh.dev) | + +The management console allows you to update the server, check logs, and access a +terminal on the machine. If you are updating the server via the management +console, it is often required to reboot the server. All of the services are +setup to restart upon a reboot of the server, so that should not cause problems, +but you will be disconnected from the management console when the server shuts +down. It does take a few minutes generally for the servers to go through the +full boot process. + +> Note: If something is not running the easiest thing to do would be to just +> reboot the servers and the services should restart. + +[You can view the server and services status here.](https://uptime.housh.dev/status/housh-dev) + +## Reboot the server + +You can reboot the server from the management console in the `Overview` section +or by typing the following command in the terminal. + +```bash +sudo reboot --now +``` + +## Useful Tips + +There are several commands that may help trouble shoot the services on the +server. For these you will need to make sure to turn on administrative access by +clicking the button, if needed. + +![console](/static/img/servermanagement.console.png) + +All of the following commands can be entered into the `Terminal` section of the +console. + +### Check the services are running + +```bash +sudo docker ps --all +``` + +If working on a small screen or the output is bunched up then you can use the +following command to only reveal a smaller portion of the output. + +```bash +sudo docker ps --format 'table {{.Names}}\t{{.Status}}' +``` + +![output](/static/img/servermanagement.dockerps.png) + +Here you would look for services where the **_STATUS_** says `Exited` or if any +of the services say `unhealthy`. + +### Service locations + +The services are primary located in `/etc/komodo/stacks` or `~/containers` +directories. You can list the contents of those directories using the following +command. + +```bash +ls -lah ~/containers +``` + +```bash +ls -lah /etc/komodo/stacks +``` + +### Starting services from the terminal + +If you would like to ensure a service is up and running from the terminal move +into the directory of the service. + +```bash +cd ~/containers/purchase-orders +``` + +And issue the following command + +```bash +sudo docker compose up -d +``` + +### Check the logs of a running container + +You can check the logs of a container in several different ways. The easiest is +if you know the containers name. + +```bash +sudo docker logs -f purchase_orders +``` + +Or if you know the directory you can move into the directory using the `cd` +command and use the following. + +```bash +sudo docker compose logs -f +``` + +To stop viewing the logs hit `Ctrl-c`. diff --git a/content/static/img/servermanagement.console.png b/content/static/img/servermanagement.console.png new file mode 100644 index 0000000..6dadece --- /dev/null +++ b/content/static/img/servermanagement.console.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0aa95304be8a9fefe1fc3592e343fd8a28d3e21cc42ad81988997553f18eede0 +size 135807 diff --git a/content/static/img/servermanagement.dockerps.png b/content/static/img/servermanagement.dockerps.png new file mode 100644 index 0000000..bd70d06 --- /dev/null +++ b/content/static/img/servermanagement.dockerps.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02bf8e2a33521ac9b291349d71dd5114761cc47dfc4b9359bded7c5cf3c57f1a +size 65136 diff --git a/content/static/input.css b/content/static/input.css index f42c328..f49da4f 100644 --- a/content/static/input.css +++ b/content/static/input.css @@ -170,15 +170,15 @@ td { } table { - @apply mb-8; + @apply py-8 mb-6; } table td { - @apply px-6; + @apply px-6 py-2; } .container { - @apply px-10; + @apply py-20; } .container img { @@ -193,3 +193,7 @@ blockquote { blockquote p { @apply px-6 pt-6 text-blue-600 font-semibold; } + +pre { + @apply mb-6; +} diff --git a/content/static/output.css b/content/static/output.css index 760d244..fd5344d 100644 --- a/content/static/output.css +++ b/content/static/output.css @@ -1,2 +1,2 @@ /*! tailwindcss v4.1.1 | MIT License | https://tailwindcss.com */ -@import "https://fonts.cdnfonts.com/css/avenir";@layer theme{:root,:host{--font-sans:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-mono:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--color-orange-400:oklch(75% .183 55.934);--color-orange-500:oklch(70.5% .213 47.604);--color-amber-500:oklch(76.9% .188 70.08);--color-green-400:oklch(79.2% .209 151.711);--color-green-600:oklch(62.7% .194 149.214);--color-sky-400:oklch(74.6% .16 232.661);--color-blue-300:oklch(80.9% .105 251.813);--color-blue-600:oklch(54.6% .245 262.881);--color-violet-500:oklch(60.6% .25 292.717);--color-violet-600:oklch(54.1% .281 293.009);--color-slate-200:oklch(92.9% .013 255.508);--color-slate-400:oklch(70.4% .04 256.788);--color-slate-900:oklch(20.8% .042 265.755);--color-gray-200:oklch(92.8% .006 264.531);--color-white:#fff;--spacing:.25rem;--text-sm:.875rem;--text-sm--line-height:calc(1.25/.875);--text-lg:1.125rem;--text-lg--line-height:calc(1.75/1.125);--text-xl:1.25rem;--text-xl--line-height:calc(1.75/1.25);--text-2xl:1.5rem;--text-2xl--line-height:calc(2/1.5);--text-3xl:1.875rem;--text-3xl--line-height:calc(2.25/1.875);--text-4xl:2.25rem;--text-4xl--line-height:calc(2.5/2.25);--text-5xl:3rem;--text-5xl--line-height:1;--text-6xl:3.75rem;--text-6xl--line-height:1;--font-weight-thin:100;--font-weight-semibold:600;--font-weight-bold:700;--font-weight-extrabold:800;--radius-lg:.5rem;--default-transition-duration:.15s;--default-transition-timing-function:cubic-bezier(.4,0,.2,1);--default-font-family:var(--font-sans);--default-mono-font-family:var(--font-mono);--font-avenir:"Avenir",sans-serif}}@layer base{*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;tab-size:4;line-height:1.5;font-family:var(--default-font-family,ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji");font-feature-settings:var(--default-font-feature-settings,normal);font-variation-settings:var(--default-font-variation-settings,normal);-webkit-tap-highlight-color:transparent}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;-webkit-text-decoration:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var(--default-mono-font-family,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace);font-feature-settings:var(--default-mono-font-feature-settings,normal);font-variation-settings:var(--default-mono-font-variation-settings,normal);font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1}@supports (not ((-webkit-appearance:-apple-pay-button))) or (contain-intrinsic-size:1px){::placeholder{color:color-mix(in oklab,currentColor 50%,transparent)}}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit{padding-block:0}::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-day-field{padding-block:0}::-webkit-datetime-edit-hour-field{padding-block:0}::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-millisecond-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){appearance:button}::file-selector-button{appearance:button}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}*,:after,:before,::backdrop{border-color:var(--color-gray-200,currentColor)}::file-selector-button{border-color:var(--color-gray-200,currentColor)}}@layer components;@layer utilities{.static{position:static}.isolate{isolation:isolate}.container{width:100%}@media (min-width:40rem){.container{max-width:40rem}}@media (min-width:48rem){.container{max-width:48rem}}@media (min-width:64rem){.container{max-width:64rem}}@media (min-width:80rem){.container{max-width:80rem}}@media (min-width:96rem){.container{max-width:96rem}}.m-580{margin:calc(var(--spacing)*580)}.my-24{margin-block:calc(var(--spacing)*24)}.mt-1{margin-top:calc(var(--spacing)*1)}.mt-4{margin-top:calc(var(--spacing)*4)}.mt-10{margin-top:calc(var(--spacing)*10)}.mt-16{margin-top:calc(var(--spacing)*16)}.mr-2{margin-right:calc(var(--spacing)*2)}.mb-2{margin-bottom:calc(var(--spacing)*2)}.mb-8{margin-bottom:calc(var(--spacing)*8)}.mb-10{margin-bottom:calc(var(--spacing)*10)}.mb-12{margin-bottom:calc(var(--spacing)*12)}.mb-16{margin-bottom:calc(var(--spacing)*16)}.mb-auto{margin-bottom:auto}.block{display:block}.flex{display:flex}.grid{display:grid}.inline{display:inline}.w-full{width:100%}.transform{transform:var(--tw-rotate-x)var(--tw-rotate-y)var(--tw-rotate-z)var(--tw-skew-x)var(--tw-skew-y)}.flex-row{flex-direction:row}.flex-wrap{flex-wrap:wrap}.justify-between{justify-content:space-between}.gap-2{gap:calc(var(--spacing)*2)}.gap-4{gap:calc(var(--spacing)*4)}.gap-5{gap:calc(var(--spacing)*5)}.gap-6{gap:calc(var(--spacing)*6)}.gap-10{gap:calc(var(--spacing)*10)}.gap-x-2{column-gap:calc(var(--spacing)*2)}.truncate{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.rounded-lg{border-radius:var(--radius-lg)}.border-2{border-style:var(--tw-border-style);border-width:2px}.border-t{border-top-style:var(--tw-border-style);border-top-width:1px}.border-r{border-right-style:var(--tw-border-style);border-right-width:1px}.border-b{border-bottom-style:var(--tw-border-style);border-bottom-width:1px}.border-green-400{border-color:var(--color-green-400)}.border-green-600{border-color:var(--color-green-600)}.border-orange-400{border-color:var(--color-orange-400)}.border-slate-400{border-color:var(--color-slate-400)}.bg-orange-400{background-color:var(--color-orange-400)}.p-4{padding:calc(var(--spacing)*4)}.px-4{padding-inline:calc(var(--spacing)*4)}.px-5{padding-inline:calc(var(--spacing)*5)}.ps-2{padding-inline-start:calc(var(--spacing)*2)}.pt-2{padding-top:calc(var(--spacing)*2)}.pt-3{padding-top:calc(var(--spacing)*3)}.pt-4{padding-top:calc(var(--spacing)*4)}.pt-6{padding-top:calc(var(--spacing)*6)}.pt-8{padding-top:calc(var(--spacing)*8)}.pr-2{padding-right:calc(var(--spacing)*2)}.pb-5{padding-bottom:calc(var(--spacing)*5)}.pl-2{padding-left:calc(var(--spacing)*2)}.text-center{text-align:center}.font-avenir{font-family:var(--font-avenir)}.text-2xl{font-size:var(--text-2xl);line-height:var(--tw-leading,var(--text-2xl--line-height))}.text-3xl{font-size:var(--text-3xl);line-height:var(--tw-leading,var(--text-3xl--line-height))}.text-4xl{font-size:var(--text-4xl);line-height:var(--tw-leading,var(--text-4xl--line-height))}.text-lg{font-size:var(--text-lg);line-height:var(--tw-leading,var(--text-lg--line-height))}.text-sm{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.leading-\[1\.25\]{--tw-leading:1.25;line-height:1.25}.font-bold{--tw-font-weight:var(--font-weight-bold);font-weight:var(--font-weight-bold)}.font-extrabold{--tw-font-weight:var(--font-weight-extrabold);font-weight:var(--font-weight-extrabold)}.font-thin{--tw-font-weight:var(--font-weight-thin);font-weight:var(--font-weight-thin)}.text-amber-500{color:var(--color-amber-500)}.text-orange-400{color:var(--color-orange-400)}.text-slate-400{color:var(--color-slate-400)}.text-white{color:var(--color-white)}.filter{filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.transition{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}@media (min-width:64rem){.lg\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.lg\:gap-x-5{column-gap:calc(var(--spacing)*5)}}.\[\&\:hover\]\:border-b:hover{border-bottom-style:var(--tw-border-style);border-bottom-width:1px}.\[\&\:hover\]\:bg-orange-500:hover{background-color:var(--color-orange-500)}.\[\&\>h1\>strong\]\:font-bold>h1>strong{--tw-font-weight:var(--font-weight-bold);font-weight:var(--font-weight-bold)}}@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){@layer base{*,:before,:after,::backdrop{--tw-rotate-x:rotateX(0);--tw-rotate-y:rotateY(0);--tw-rotate-z:rotateZ(0);--tw-skew-x:skewX(0);--tw-skew-y:skewY(0);--tw-border-style:solid;--tw-leading:initial;--tw-font-weight:initial;--tw-blur:initial;--tw-brightness:initial;--tw-contrast:initial;--tw-grayscale:initial;--tw-hue-rotate:initial;--tw-invert:initial;--tw-opacity:initial;--tw-saturate:initial;--tw-sepia:initial;--tw-drop-shadow:initial;--tw-drop-shadow-color:initial;--tw-drop-shadow-alpha:100%;--tw-drop-shadow-size:initial}}}:root{--accent:#a6e3a1;--background:#222129;--color:#fff;--border-color:#ffffff1a;--phoneWidth:(max-width: 684px);--tabletWidth:(max-width: 900px);--orange:#f5a87f;--green:#a6e3a1}*{box-sizing:border-box;-ms-box-sizing:border-box}.header{flex-direction:column;display:flex;position:relative}.header__inner{justify-center:space-between;align-items:center;display:flex}.header__logo{flex:1;display:flex}.header__logo:after{content:"";background:repeating-linear-gradient(90deg,#ffa86a,#ffa86a 2px,#0000 0 10px);background:repeating-linear-gradient(90deg,var(--accent),var(--accent)2px,transparent 0,transparent 10px);width:100%;display:block;right:10px}.header__logo a{flex:none;max-width:100%;text-decoration:none}.logo{background:#ffa86a;background:var(--accent);color:#000;align-items:center;padding:5px 10px;text-decoration:none;display:flex}.header .menu{flex-wrap:wrap;margin:0;padding:10px;list-style:none;display:flex}nav a:hover,nav a.active{border-bottom-style:var(--tw-border-style);border-bottom-width:2px;border-color:var(--color-orange-400)}body{background-color:var(--color-slate-900);font-family:var(--font-avenir);font-size:var(--text-xl);line-height:var(--tw-leading,var(--text-xl--line-height))}h1{padding-bottom:calc(var(--spacing)*2);font-size:var(--text-6xl);line-height:var(--tw-leading,var(--text-6xl--line-height))}h2{margin-bottom:calc(var(--spacing)*8);padding-top:calc(var(--spacing)*4);font-size:var(--text-5xl);line-height:var(--tw-leading,var(--text-5xl--line-height));color:var(--green)}h3{padding-block:calc(var(--spacing)*4);font-size:var(--text-3xl);line-height:var(--tw-leading,var(--text-3xl--line-height));--tw-font-weight:var(--font-weight-extrabold);font-weight:var(--font-weight-extrabold);color:var(--color-violet-500)}h4{padding-block:calc(var(--spacing)*4);font-size:var(--text-2xl);line-height:var(--tw-leading,var(--text-2xl--line-height));color:var(--color-sky-400)}section h3{color:var(--color-orange-400)}p{margin-bottom:calc(var(--spacing)*8)}article h2{border-bottom-style:var(--tw-border-style);border-bottom-width:2px;border-color:var(--color-slate-200)}article a{color:var(--color-orange-400)}article a:hover{border-bottom-style:var(--tw-border-style);border-bottom-width:1px;border-color:var(--color-green-400)}article code{background-color:var(--color-violet-600);padding-inline:calc(var(--spacing)*2);color:var(--color-white)}article ol{list-style-type:decimal}table{width:100%}table,th,td{border-collapse:collapse;border:1px solid}table{margin-bottom:calc(var(--spacing)*8)}table td{padding-inline:calc(var(--spacing)*6)}.container{padding-inline:calc(var(--spacing)*10)}.container img{padding-top:10px;padding-bottom:10px}blockquote{margin-block:calc(var(--spacing)*10);border-radius:var(--radius-lg);border-style:var(--tw-border-style);border-width:2px;border-color:var(--color-blue-600);background-color:var(--color-blue-300)}blockquote p{padding-inline:calc(var(--spacing)*6);padding-top:calc(var(--spacing)*6);--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold);color:var(--color-blue-600)}@property --tw-rotate-x{syntax:"*";inherits:false;initial-value:rotateX(0)}@property --tw-rotate-y{syntax:"*";inherits:false;initial-value:rotateY(0)}@property --tw-rotate-z{syntax:"*";inherits:false;initial-value:rotateZ(0)}@property --tw-skew-x{syntax:"*";inherits:false;initial-value:skewX(0)}@property --tw-skew-y{syntax:"*";inherits:false;initial-value:skewY(0)}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-leading{syntax:"*";inherits:false}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-blur{syntax:"*";inherits:false}@property --tw-brightness{syntax:"*";inherits:false}@property --tw-contrast{syntax:"*";inherits:false}@property --tw-grayscale{syntax:"*";inherits:false}@property --tw-hue-rotate{syntax:"*";inherits:false}@property --tw-invert{syntax:"*";inherits:false}@property --tw-opacity{syntax:"*";inherits:false}@property --tw-saturate{syntax:"*";inherits:false}@property --tw-sepia{syntax:"*";inherits:false}@property --tw-drop-shadow{syntax:"*";inherits:false}@property --tw-drop-shadow-color{syntax:"*";inherits:false}@property --tw-drop-shadow-alpha{syntax:"";inherits:false;initial-value:100%}@property --tw-drop-shadow-size{syntax:"*";inherits:false} \ No newline at end of file +@import "https://fonts.cdnfonts.com/css/avenir";@layer theme{:root,:host{--font-sans:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-mono:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--color-orange-400:oklch(75% .183 55.934);--color-orange-500:oklch(70.5% .213 47.604);--color-amber-500:oklch(76.9% .188 70.08);--color-green-400:oklch(79.2% .209 151.711);--color-green-500:oklch(72.3% .219 149.579);--color-green-600:oklch(62.7% .194 149.214);--color-sky-400:oklch(74.6% .16 232.661);--color-blue-300:oklch(80.9% .105 251.813);--color-blue-600:oklch(54.6% .245 262.881);--color-violet-500:oklch(60.6% .25 292.717);--color-violet-600:oklch(54.1% .281 293.009);--color-slate-200:oklch(92.9% .013 255.508);--color-slate-400:oklch(70.4% .04 256.788);--color-slate-800:oklch(27.9% .041 260.031);--color-slate-900:oklch(20.8% .042 265.755);--color-gray-200:oklch(92.8% .006 264.531);--color-white:#fff;--spacing:.25rem;--text-sm:.875rem;--text-sm--line-height:calc(1.25/.875);--text-lg:1.125rem;--text-lg--line-height:calc(1.75/1.125);--text-xl:1.25rem;--text-xl--line-height:calc(1.75/1.25);--text-2xl:1.5rem;--text-2xl--line-height:calc(2/1.5);--text-3xl:1.875rem;--text-3xl--line-height:calc(2.25/1.875);--text-4xl:2.25rem;--text-4xl--line-height:calc(2.5/2.25);--text-5xl:3rem;--text-5xl--line-height:1;--text-6xl:3.75rem;--text-6xl--line-height:1;--font-weight-thin:100;--font-weight-semibold:600;--font-weight-bold:700;--font-weight-extrabold:800;--radius-lg:.5rem;--default-transition-duration:.15s;--default-transition-timing-function:cubic-bezier(.4,0,.2,1);--default-font-family:var(--font-sans);--default-mono-font-family:var(--font-mono);--font-avenir:"Avenir",sans-serif}}@layer base{*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;tab-size:4;line-height:1.5;font-family:var(--default-font-family,ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji");font-feature-settings:var(--default-font-feature-settings,normal);font-variation-settings:var(--default-font-variation-settings,normal);-webkit-tap-highlight-color:transparent}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;-webkit-text-decoration:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var(--default-mono-font-family,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace);font-feature-settings:var(--default-mono-font-feature-settings,normal);font-variation-settings:var(--default-mono-font-variation-settings,normal);font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1}@supports (not ((-webkit-appearance:-apple-pay-button))) or (contain-intrinsic-size:1px){::placeholder{color:color-mix(in oklab,currentColor 50%,transparent)}}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit{padding-block:0}::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-day-field{padding-block:0}::-webkit-datetime-edit-hour-field{padding-block:0}::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-millisecond-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){appearance:button}::file-selector-button{appearance:button}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}*,:after,:before,::backdrop{border-color:var(--color-gray-200,currentColor)}::file-selector-button{border-color:var(--color-gray-200,currentColor)}}@layer components;@layer utilities{.static{position:static}.isolate{isolation:isolate}.container{width:100%}@media (min-width:40rem){.container{max-width:40rem}}@media (min-width:48rem){.container{max-width:48rem}}@media (min-width:64rem){.container{max-width:64rem}}@media (min-width:80rem){.container{max-width:80rem}}@media (min-width:96rem){.container{max-width:96rem}}.m-4{margin:calc(var(--spacing)*4)}.m-580{margin:calc(var(--spacing)*580)}.mx-10{margin-inline:calc(var(--spacing)*10)}.my-24{margin-block:calc(var(--spacing)*24)}.-mt-2{margin-top:calc(var(--spacing)*-2)}.mt-1{margin-top:calc(var(--spacing)*1)}.mt-2{margin-top:calc(var(--spacing)*2)}.mt-4{margin-top:calc(var(--spacing)*4)}.mt-8{margin-top:calc(var(--spacing)*8)}.mt-10{margin-top:calc(var(--spacing)*10)}.mt-16{margin-top:calc(var(--spacing)*16)}.mr-2{margin-right:calc(var(--spacing)*2)}.mb-2{margin-bottom:calc(var(--spacing)*2)}.mb-8{margin-bottom:calc(var(--spacing)*8)}.mb-10{margin-bottom:calc(var(--spacing)*10)}.mb-12{margin-bottom:calc(var(--spacing)*12)}.mb-16{margin-bottom:calc(var(--spacing)*16)}.mb-auto{margin-bottom:auto}.block{display:block}.contents{display:contents}.flex{display:flex}.grid{display:grid}.inline{display:inline}.table{display:table}.w-full{width:100%}.transform{transform:var(--tw-rotate-x)var(--tw-rotate-y)var(--tw-rotate-z)var(--tw-skew-x)var(--tw-skew-y)}.flex-row{flex-direction:row}.flex-wrap{flex-wrap:wrap}.justify-between{justify-content:space-between}.gap-2{gap:calc(var(--spacing)*2)}.gap-4{gap:calc(var(--spacing)*4)}.gap-5{gap:calc(var(--spacing)*5)}.gap-6{gap:calc(var(--spacing)*6)}.gap-10{gap:calc(var(--spacing)*10)}.gap-x-2{column-gap:calc(var(--spacing)*2)}.truncate{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.rounded-lg{border-radius:var(--radius-lg)}.border{border-style:var(--tw-border-style);border-width:1px}.border-2{border-style:var(--tw-border-style);border-width:2px}.border-t{border-top-style:var(--tw-border-style);border-top-width:1px}.border-r{border-right-style:var(--tw-border-style);border-right-width:1px}.border-b{border-bottom-style:var(--tw-border-style);border-bottom-width:1px}.border-green-400{border-color:var(--color-green-400)}.border-green-500{border-color:var(--color-green-500)}.border-green-600{border-color:var(--color-green-600)}.border-slate-400{border-color:var(--color-slate-400)}.bg-orange-400{background-color:var(--color-orange-400)}.bg-slate-800{background-color:var(--color-slate-800)}.p-4{padding:calc(var(--spacing)*4)}.p-10{padding:calc(var(--spacing)*10)}.px-4{padding-inline:calc(var(--spacing)*4)}.px-5{padding-inline:calc(var(--spacing)*5)}.py-10{padding-block:calc(var(--spacing)*10)}.ps-2{padding-inline-start:calc(var(--spacing)*2)}.pt-2{padding-top:calc(var(--spacing)*2)}.pt-3{padding-top:calc(var(--spacing)*3)}.pt-4{padding-top:calc(var(--spacing)*4)}.pt-6{padding-top:calc(var(--spacing)*6)}.pt-8{padding-top:calc(var(--spacing)*8)}.pr-2{padding-right:calc(var(--spacing)*2)}.pl-2{padding-left:calc(var(--spacing)*2)}.text-center{text-align:center}.font-avenir{font-family:var(--font-avenir)}.text-2xl{font-size:var(--text-2xl);line-height:var(--tw-leading,var(--text-2xl--line-height))}.text-3xl{font-size:var(--text-3xl);line-height:var(--tw-leading,var(--text-3xl--line-height))}.text-4xl{font-size:var(--text-4xl);line-height:var(--tw-leading,var(--text-4xl--line-height))}.text-lg{font-size:var(--text-lg);line-height:var(--tw-leading,var(--text-lg--line-height))}.text-sm{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.leading-\[1\.25\]{--tw-leading:1.25;line-height:1.25}.font-bold{--tw-font-weight:var(--font-weight-bold);font-weight:var(--font-weight-bold)}.font-extrabold{--tw-font-weight:var(--font-weight-extrabold);font-weight:var(--font-weight-extrabold)}.font-thin{--tw-font-weight:var(--font-weight-thin);font-weight:var(--font-weight-thin)}.text-amber-500{color:var(--color-amber-500)}.text-orange-400{color:var(--color-orange-400)}.text-slate-400{color:var(--color-slate-400)}.text-white{color:var(--color-white)}.filter{filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.transition{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}@media (min-width:64rem){.lg\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.lg\:gap-x-5{column-gap:calc(var(--spacing)*5)}}.\[\&\:hover\]\:border-b:hover{border-bottom-style:var(--tw-border-style);border-bottom-width:1px}.\[\&\:hover\]\:bg-orange-500:hover{background-color:var(--color-orange-500)}.\[\&\>h1\>strong\]\:font-bold>h1>strong{--tw-font-weight:var(--font-weight-bold);font-weight:var(--font-weight-bold)}}@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){@layer base{*,:before,:after,::backdrop{--tw-rotate-x:rotateX(0);--tw-rotate-y:rotateY(0);--tw-rotate-z:rotateZ(0);--tw-skew-x:skewX(0);--tw-skew-y:skewY(0);--tw-border-style:solid;--tw-leading:initial;--tw-font-weight:initial;--tw-blur:initial;--tw-brightness:initial;--tw-contrast:initial;--tw-grayscale:initial;--tw-hue-rotate:initial;--tw-invert:initial;--tw-opacity:initial;--tw-saturate:initial;--tw-sepia:initial;--tw-drop-shadow:initial;--tw-drop-shadow-color:initial;--tw-drop-shadow-alpha:100%;--tw-drop-shadow-size:initial}}}:root{--accent:#a6e3a1;--background:#222129;--color:#fff;--border-color:#ffffff1a;--phoneWidth:(max-width: 684px);--tabletWidth:(max-width: 900px);--orange:#f5a87f;--green:#a6e3a1}*{box-sizing:border-box;-ms-box-sizing:border-box}.header{flex-direction:column;display:flex;position:relative}.header__inner{justify-center:space-between;align-items:center;display:flex}.header__logo{flex:1;display:flex}.header__logo:after{content:"";background:repeating-linear-gradient(90deg,#ffa86a,#ffa86a 2px,#0000 0 10px);background:repeating-linear-gradient(90deg,var(--accent),var(--accent)2px,transparent 0,transparent 10px);width:100%;display:block;right:10px}.header__logo a{flex:none;max-width:100%;text-decoration:none}.logo{background:#ffa86a;background:var(--accent);color:#000;align-items:center;padding:5px 10px;text-decoration:none;display:flex}.header .menu{flex-wrap:wrap;margin:0;padding:10px;list-style:none;display:flex}nav a:hover,nav a.active{border-bottom-style:var(--tw-border-style);border-bottom-width:2px;border-color:var(--color-orange-400)}body{background-color:var(--color-slate-900);font-family:var(--font-avenir);font-size:var(--text-xl);line-height:var(--tw-leading,var(--text-xl--line-height))}h1{padding-bottom:calc(var(--spacing)*2);font-size:var(--text-6xl);line-height:var(--tw-leading,var(--text-6xl--line-height))}h2{margin-bottom:calc(var(--spacing)*8);padding-top:calc(var(--spacing)*4);font-size:var(--text-5xl);line-height:var(--tw-leading,var(--text-5xl--line-height));color:var(--green)}h3{padding-block:calc(var(--spacing)*4);font-size:var(--text-3xl);line-height:var(--tw-leading,var(--text-3xl--line-height));--tw-font-weight:var(--font-weight-extrabold);font-weight:var(--font-weight-extrabold);color:var(--color-violet-500)}h4{padding-block:calc(var(--spacing)*4);font-size:var(--text-2xl);line-height:var(--tw-leading,var(--text-2xl--line-height));color:var(--color-sky-400)}section h3{color:var(--color-orange-400)}p{margin-bottom:calc(var(--spacing)*8)}article h2{border-bottom-style:var(--tw-border-style);border-bottom-width:2px;border-color:var(--color-slate-200)}article a{color:var(--color-orange-400)}article a:hover{border-bottom-style:var(--tw-border-style);border-bottom-width:1px;border-color:var(--color-green-400)}article code{background-color:var(--color-violet-600);padding-inline:calc(var(--spacing)*2);color:var(--color-white)}article ol{list-style-type:decimal}table{width:100%}table,th,td{border-collapse:collapse;border:1px solid}table{margin-bottom:calc(var(--spacing)*6);padding-block:calc(var(--spacing)*8)}table td{padding-inline:calc(var(--spacing)*6);padding-block:calc(var(--spacing)*2)}.container{padding-block:calc(var(--spacing)*20)}.container img{padding-top:10px;padding-bottom:10px}blockquote{margin-block:calc(var(--spacing)*10);border-radius:var(--radius-lg);border-style:var(--tw-border-style);border-width:2px;border-color:var(--color-blue-600);background-color:var(--color-blue-300)}blockquote p{padding-inline:calc(var(--spacing)*6);padding-top:calc(var(--spacing)*6);--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold);color:var(--color-blue-600)}pre{margin-bottom:calc(var(--spacing)*6)}@property --tw-rotate-x{syntax:"*";inherits:false;initial-value:rotateX(0)}@property --tw-rotate-y{syntax:"*";inherits:false;initial-value:rotateY(0)}@property --tw-rotate-z{syntax:"*";inherits:false;initial-value:rotateZ(0)}@property --tw-skew-x{syntax:"*";inherits:false;initial-value:skewX(0)}@property --tw-skew-y{syntax:"*";inherits:false;initial-value:skewY(0)}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-leading{syntax:"*";inherits:false}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-blur{syntax:"*";inherits:false}@property --tw-brightness{syntax:"*";inherits:false}@property --tw-contrast{syntax:"*";inherits:false}@property --tw-grayscale{syntax:"*";inherits:false}@property --tw-hue-rotate{syntax:"*";inherits:false}@property --tw-invert{syntax:"*";inherits:false}@property --tw-opacity{syntax:"*";inherits:false}@property --tw-saturate{syntax:"*";inherits:false}@property --tw-sepia{syntax:"*";inherits:false}@property --tw-drop-shadow{syntax:"*";inherits:false}@property --tw-drop-shadow-color{syntax:"*";inherits:false}@property --tw-drop-shadow-alpha{syntax:"";inherits:false;initial-value:100%}@property --tw-drop-shadow-size{syntax:"*";inherits:false} \ No newline at end of file diff --git a/example.env b/example.env index 2957b21..b5f778a 100644 --- a/example.env +++ b/example.env @@ -1 +1,3 @@ PORT=8081 +OAUTH_CLIENT_ID="" +OAUTH_CLIENT_SECRET=""