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" /> <link rel="stylesheet" href="/styles/global.css" />
</head> </head>
<body> <body>
<main><header class="py-10 bg-gray-300"> <main><header class="pt-20 pb-10 px-4">
<h1 class="text-4xl text-center">The KDL Document Language</h1> <img src="./static/logo.svg" class="mx-auto h-20">
<h1 class="text-2xl text-center">The KDL Document Language</h1>
</header> </header>
<section class="kdl-section" id="description"> <section class="kdl-section" id="description">
<p>KDL is a document language with xml-like semantics that looks like you're <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; height: auto;
} }
.bg-gray-300 {
--tw-bg-opacity: 1;
background-color: rgba(209, 213, 219, var(--tw-bg-opacity));
}
.table { .table {
display: table; display: table;
} }
@ -524,16 +519,33 @@ video {
display: contents; display: contents;
} }
.text-4xl { .h-20 {
font-size: 2.25rem; height: 5rem;
line-height: 2.5rem;
} }
.py-10 { .text-2xl {
padding-top: 2.5rem; 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; padding-bottom: 2.5rem;
} }
.pt-20 {
padding-top: 5rem;
}
* { * {
--tw-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000;
} }