Compare commits
2 Commits
f65aadc03c
...
80f9b45682
| Author | SHA1 | Date | |
|---|---|---|---|
|
80f9b45682
|
|||
|
2aa6612a28
|
@@ -1,5 +1,6 @@
|
|||||||
---
|
---
|
||||||
title: Kosmos Infrastructure Foundation
|
title: Kosmos Infrastructure Foundation
|
||||||
|
description: Providing physical infrastructure for Kosmos software and services
|
||||||
menu:
|
menu:
|
||||||
main:
|
main:
|
||||||
identifier: foundation
|
identifier: foundation
|
||||||
|
|||||||
@@ -5,6 +5,9 @@
|
|||||||
<div class="max-w-5xl mx-auto -mt-12 py-8 px-8 text-left bg-white">
|
<div class="max-w-5xl mx-auto -mt-12 py-8 px-8 text-left bg-white">
|
||||||
<header class="mb-8">
|
<header class="mb-8">
|
||||||
<h2 class="text-2xl font-bold">{{ .Title }}</h1>
|
<h2 class="text-2xl font-bold">{{ .Title }}</h1>
|
||||||
|
{{ if .Description }}
|
||||||
|
<p class="mt-2 text-lg text-zinc-500">{{ .Description }}</p>
|
||||||
|
{{ end }}
|
||||||
</header>
|
</header>
|
||||||
<div class="content">
|
<div class="content">
|
||||||
{{ .Content }}
|
{{ .Content }}
|
||||||
|
|||||||
@@ -5,6 +5,9 @@
|
|||||||
<div class="max-w-5xl mx-auto -mt-12 py-8 px-8 text-left bg-white">
|
<div class="max-w-5xl mx-auto -mt-12 py-8 px-8 text-left bg-white">
|
||||||
<header class="mb-8">
|
<header class="mb-8">
|
||||||
<h2 class="text-2xl font-bold">{{ .Title }}</h1>
|
<h2 class="text-2xl font-bold">{{ .Title }}</h1>
|
||||||
|
{{ if .Description }}
|
||||||
|
<p class="mt-2 text-lg text-zinc-500">{{ .Description }}</p>
|
||||||
|
{{ end }}
|
||||||
</header>
|
</header>
|
||||||
<div class="content">
|
<div class="content">
|
||||||
{{ .Content }}
|
{{ .Content }}
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
<header class="max-w-5xl mx-auto px-8 text-left">
|
<header class="max-w-5xl mx-auto px-8 text-left">
|
||||||
<div class="flex items-center justify-between h-20">
|
<div class="flex items-center justify-between h-20">
|
||||||
<div class="flex items-center">
|
<div class="flex items-center">
|
||||||
<div>
|
<div class="flex-shrink-0">
|
||||||
<h1 class="uppercase font-bold">{{ .Site.Title }}</h1>
|
<svg class="inline-block align-top -mt-0.5 mr-1 w-auto h-6" width="65.364" height="55.773" enable-background="new 0 0 100 100" version="1.1" viewBox="0 0 65.364 55.773" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><g id="layer1" transform="translate(28.868 20.259)" fill="#000"><path id="path2" d="m22.81-9.2546-0.0137-0.0072c-0.0445-0.0196-0.0895-0.04052-0.13335-0.06078l-23.822-10.937s2.0034 9.219 2.914 11.778c0 0-27.292-8.1582-30.623-8.9354 1.0916 4.2618 20.006 40.848 20.006 40.848 3.8225 7.7608 12.677 12.083 21.912 12.083 12.949 0 23.446-10.497 23.446-23.446 6.6e-4 -9.4655-5.609-17.62-13.685-21.323z" fill="#000" stroke-width=".65365"/></g></svg>
|
||||||
|
<h1 class="inline-block uppercase font-bold">{{ .Site.Title }}</h1>
|
||||||
</div>
|
</div>
|
||||||
<nav class="hidden md:block">
|
<nav class="hidden md:block">
|
||||||
<ul class="ml-20 flex items-baseline space-x-8">
|
<ul class="ml-20 flex items-baseline space-x-8">
|
||||||
|
|||||||
@@ -473,22 +473,6 @@ Ensure the default browser behavior of the `hidden` attribute.
|
|||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.ml-10 {
|
|
||||||
margin-left: 2.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ml-20 {
|
|
||||||
margin-left: 5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.-mt-8 {
|
|
||||||
margin-top: -2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.-mt-10 {
|
|
||||||
margin-top: -2.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.-mt-12 {
|
.-mt-12 {
|
||||||
margin-top: -3rem;
|
margin-top: -3rem;
|
||||||
}
|
}
|
||||||
@@ -497,10 +481,42 @@ Ensure the default browser behavior of the `hidden` attribute.
|
|||||||
margin-bottom: 2rem;
|
margin-bottom: 2rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.mt-2 {
|
||||||
|
margin-top: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ml-20 {
|
||||||
|
margin-left: 5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.-mt-2 {
|
||||||
|
margin-top: -0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.-mt-1 {
|
||||||
|
margin-top: -0.25rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mr-1 {
|
||||||
|
margin-right: 0.25rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.-mt-0\.5 {
|
||||||
|
margin-top: -0.125rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.-mt-0 {
|
||||||
|
margin-top: -0px;
|
||||||
|
}
|
||||||
|
|
||||||
.block {
|
.block {
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.inline-block {
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
.flex {
|
.flex {
|
||||||
display: flex;
|
display: flex;
|
||||||
}
|
}
|
||||||
@@ -509,44 +525,40 @@ Ensure the default browser behavior of the `hidden` attribute.
|
|||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.h-16 {
|
.h-32 {
|
||||||
height: 4rem;
|
height: 8rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.h-20 {
|
.h-20 {
|
||||||
height: 5rem;
|
height: 5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.h-28 {
|
.h-7 {
|
||||||
height: 7rem;
|
height: 1.75rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.h-32 {
|
.h-6 {
|
||||||
height: 8rem;
|
height: 1.5rem;
|
||||||
}
|
|
||||||
|
|
||||||
.h-48 {
|
|
||||||
height: 12rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.h-40 {
|
|
||||||
height: 10rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.h-36 {
|
|
||||||
height: 9rem;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.w-full {
|
.w-full {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.w-auto {
|
||||||
|
width: auto;
|
||||||
|
}
|
||||||
|
|
||||||
.max-w-5xl {
|
.max-w-5xl {
|
||||||
max-width: 64rem;
|
max-width: 64rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.list-none {
|
.flex-shrink-0 {
|
||||||
list-style-type: none;
|
flex-shrink: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.transform {
|
||||||
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
||||||
}
|
}
|
||||||
|
|
||||||
.items-center {
|
.items-center {
|
||||||
@@ -561,28 +573,12 @@ Ensure the default browser behavior of the `hidden` attribute.
|
|||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
}
|
}
|
||||||
|
|
||||||
.space-x-4 > :not([hidden]) ~ :not([hidden]) {
|
|
||||||
--tw-space-x-reverse: 0;
|
|
||||||
margin-right: calc(1rem * var(--tw-space-x-reverse));
|
|
||||||
margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
|
|
||||||
}
|
|
||||||
|
|
||||||
.space-x-6 > :not([hidden]) ~ :not([hidden]) {
|
|
||||||
--tw-space-x-reverse: 0;
|
|
||||||
margin-right: calc(1.5rem * var(--tw-space-x-reverse));
|
|
||||||
margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)));
|
|
||||||
}
|
|
||||||
|
|
||||||
.space-x-8 > :not([hidden]) ~ :not([hidden]) {
|
.space-x-8 > :not([hidden]) ~ :not([hidden]) {
|
||||||
--tw-space-x-reverse: 0;
|
--tw-space-x-reverse: 0;
|
||||||
margin-right: calc(2rem * var(--tw-space-x-reverse));
|
margin-right: calc(2rem * var(--tw-space-x-reverse));
|
||||||
margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
|
margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
|
||||||
}
|
}
|
||||||
|
|
||||||
.border-b-4 {
|
|
||||||
border-bottom-width: 4px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.border-b-2 {
|
.border-b-2 {
|
||||||
border-bottom-width: 2px;
|
border-bottom-width: 2px;
|
||||||
}
|
}
|
||||||
@@ -592,21 +588,6 @@ Ensure the default browser behavior of the `hidden` attribute.
|
|||||||
border-color: rgb(20 184 166 / var(--tw-border-opacity));
|
border-color: rgb(20 184 166 / var(--tw-border-opacity));
|
||||||
}
|
}
|
||||||
|
|
||||||
.border-emerald-500 {
|
|
||||||
--tw-border-opacity: 1;
|
|
||||||
border-color: rgb(16 185 129 / var(--tw-border-opacity));
|
|
||||||
}
|
|
||||||
|
|
||||||
.bg-teal-50 {
|
|
||||||
--tw-bg-opacity: 1;
|
|
||||||
background-color: rgb(240 253 250 / var(--tw-bg-opacity));
|
|
||||||
}
|
|
||||||
|
|
||||||
.bg-slate-200 {
|
|
||||||
--tw-bg-opacity: 1;
|
|
||||||
background-color: rgb(226 232 240 / var(--tw-bg-opacity));
|
|
||||||
}
|
|
||||||
|
|
||||||
.bg-white {
|
.bg-white {
|
||||||
--tw-bg-opacity: 1;
|
--tw-bg-opacity: 1;
|
||||||
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
||||||
@@ -620,53 +601,10 @@ Ensure the default browser behavior of the `hidden` attribute.
|
|||||||
background-size: cover;
|
background-size: cover;
|
||||||
}
|
}
|
||||||
|
|
||||||
.bg-center {
|
|
||||||
background-position: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.bg-top {
|
|
||||||
background-position: top;
|
|
||||||
}
|
|
||||||
|
|
||||||
.bg-\[center_top_20rem\] {
|
|
||||||
background-position: center top 20rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.bg-\[center_top_10rem\] {
|
|
||||||
background-position: center top 10rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.bg-\[center_bottom_10rem\] {
|
|
||||||
background-position: center bottom 10rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.bg-\[center_top_50rem\] {
|
|
||||||
background-position: center top 50rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.bg-\[center_top_40rem\] {
|
|
||||||
background-position: center top 40rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.bg-\[center_top_30rem\] {
|
.bg-\[center_top_30rem\] {
|
||||||
background-position: center top 30rem;
|
background-position: center top 30rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.py-4 {
|
|
||||||
padding-top: 1rem;
|
|
||||||
padding-bottom: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.px-4 {
|
|
||||||
padding-left: 1rem;
|
|
||||||
padding-right: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.py-10 {
|
|
||||||
padding-top: 2.5rem;
|
|
||||||
padding-bottom: 2.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.py-8 {
|
.py-8 {
|
||||||
padding-top: 2rem;
|
padding-top: 2rem;
|
||||||
padding-bottom: 2rem;
|
padding-bottom: 2rem;
|
||||||
@@ -685,14 +623,26 @@ Ensure the default browser behavior of the `hidden` attribute.
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.align-top {
|
||||||
|
vertical-align: top;
|
||||||
|
}
|
||||||
|
|
||||||
|
.align-middle {
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
|
||||||
|
.align-bottom {
|
||||||
|
vertical-align: bottom;
|
||||||
|
}
|
||||||
|
|
||||||
.text-2xl {
|
.text-2xl {
|
||||||
font-size: 1.5rem;
|
font-size: 1.5rem;
|
||||||
line-height: 2rem;
|
line-height: 2rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.text-4xl {
|
.text-lg {
|
||||||
font-size: 2.25rem;
|
font-size: 1.125rem;
|
||||||
line-height: 2.5rem;
|
line-height: 1.75rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.font-bold {
|
.font-bold {
|
||||||
@@ -703,11 +653,9 @@ Ensure the default browser behavior of the `hidden` attribute.
|
|||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width: 640px) {
|
.text-zinc-500 {
|
||||||
.sm\:px-0 {
|
--tw-text-opacity: 1;
|
||||||
padding-left: 0px;
|
color: rgb(113 113 122 / var(--tw-text-opacity));
|
||||||
padding-right: 0px;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
|
|||||||
1
themes/kosmos-22/static/img/comet.svg
Normal file
1
themes/kosmos-22/static/img/comet.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg width="65.364" height="55.773" enable-background="new 0 0 100 100" version="1.1" viewBox="0 0 65.364 55.773" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><g id="layer1" transform="translate(28.868 20.259)" fill="#000"><path id="path2" d="m22.81-9.2546-0.0137-0.0072c-0.0445-0.0196-0.0895-0.04052-0.13335-0.06078l-23.822-10.937s2.0034 9.219 2.914 11.778c0 0-27.292-8.1582-30.623-8.9354 1.0916 4.2618 20.006 40.848 20.006 40.848 3.8225 7.7608 12.677 12.083 21.912 12.083 12.949 0 23.446-10.497 23.446-23.446 6.6e-4 -9.4655-5.609-17.62-13.685-21.323z" fill="#fff" stroke-width=".65365"/></g></svg>
|
||||||
|
After Width: | Height: | Size: 611 B |
Reference in New Issue
Block a user