This commit is contained in:
zkat 2021-01-06 02:19:35 +00:00
parent bdd8fa15ac
commit ebf7b6208f
3 changed files with 26 additions and 12 deletions

View File

@ -11,8 +11,9 @@
<link rel="stylesheet" href="/styles/global.css" />
</head>
<body>
<main><header class="py-10 bg-gray-300">
<h1 class="text-4xl text-center">The KDL Document Language</h1>
<main><header class="pt-20 pb-10 px-4">
<img src="./static/logo.svg" class="mx-auto h-20">
<h1 class="text-2xl text-center">The KDL Document Language</h1>
</header>
<section class="kdl-section" id="description">
<p>KDL is a document language with xml-like semantics that looks like you're

1
static/logo.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -511,11 +511,6 @@ video {
height: auto;
}
.bg-gray-300 {
--tw-bg-opacity: 1;
background-color: rgba(209, 213, 219, var(--tw-bg-opacity));
}
.table {
display: table;
}
@ -524,16 +519,33 @@ video {
display: contents;
}
.text-4xl {
font-size: 2.25rem;
line-height: 2.5rem;
.h-20 {
height: 5rem;
}
.py-10 {
padding-top: 2.5rem;
.text-2xl {
font-size: 1.5rem;
line-height: 2rem;
}
.mx-auto {
margin-left: auto;
margin-right: auto;
}
.px-4 {
padding-left: 1rem;
padding-right: 1rem;
}
.pb-10 {
padding-bottom: 2.5rem;
}
.pt-20 {
padding-top: 5rem;
}
* {
--tw-shadow: 0 0 #0000;
}