Skip to content

Commit

Permalink
get rid of some junk, add basic landing
Browse files Browse the repository at this point in the history
  • Loading branch information
pickledish committed Aug 30, 2023
1 parent 4ea643b commit f3a1a38
Show file tree
Hide file tree
Showing 10 changed files with 38 additions and 1,284 deletions.
Binary file removed .DS_Store
Binary file not shown.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,9 @@ _site
.jekyll-cache
.jekyll-metadata
vendor

# generated CSS
/assets/css/tailwind.css

# macOS stuff
.DS_Store
12 changes: 9 additions & 3 deletions _layouts/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,15 @@
{% seo %}
</head>

<body class="text-stone-900 bg-[#fefcfa] dark:text-stone-100 dark:bg-[#181410] antialiased">
<div class="h-screen w-screen flex justify-center">
<p>this is a test</p>
<body class="text-stone-900 bg-[#E8DED1] dark:text-stone-100 dark:bg-[#181410]">
<div class="w-screen flex flex-col">
<div class="w-full h-48 md:h-64 bg-red-800 flex items-end px-4 py-2">
<p class="font-['SNES'] text-6xl md:text-9xl text-[#E8DED1]">CLOUDY BUT NO RAIN</p>
</div>
<div class="w-full px-5 py-16">
<p>A WIP static site hosting service with built-in analytics and monitoring.</p>
<p>Check back soon for nicer copy.</p>
</div>
</div>
</body>

Expand Down
Binary file removed assets/.DS_Store
Binary file not shown.
8 changes: 8 additions & 0 deletions assets/css/fonts.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
@font-face {
font-family: 'SNES';
src: url('/assets/fonts/SNES.woff2') format('woff2');
font-weight: normal;
font-style: normal;
font-display: block;
}

/*@font-face {
font-family: 'Wotfard';
src: url('/assets/fonts/wotfard-extralight.woff2') format('woff2');
Expand Down
78 changes: 0 additions & 78 deletions assets/css/markdown.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,81 +4,3 @@ body {
line-height: 1.6rem;
font-family: "Wotfard", "Avenir Medium", "Avenir Next Medium", "Avenir Next LT Pro", "Montserrat", sans-serif;
}

code, pre {
font-family: "Roboto Mono", "Consolas", monospace;
font-size: 14px;
background-color: #e5e5e5;
border-radius: 4px;
padding: 1px 3px 1px 3px;
}

@media (prefers-color-scheme: dark) {
code, pre {
background-color: #525252;
}
}

#content a {
color: #ba8c2a;
}

p, blockquote, ul, ol, dl, table, pre, article {
margin: 12px 0 18px 0;
}

h1 {
font-weight: 600;
font-size: 48px;
margin: 28px 0 18px 0;
}

h2 {
font-weight: 600;
font-size: 28px;
margin: 28px 0 18px 0;
border-bottom: 1px solid #d6d3d1;
padding-bottom: 12px;
}

h3 {
font-weight: 600;
font-size: 24px;
margin: 28px 0 0 0;
}

h4 {
font-weight: 600;
font-size: 24px;
margin: 28px 0 -8px 0;
}

li {
list-style: initial;
margin-left: 28px;
}

hr {
margin: 24px 0 24px 0;
}

blockquote {
padding-left: 14px;
margin-left: 10px;
border-left: 2px solid #d6d3d1;
}

img {
margin: 32px auto 32px auto;
}

.pxl {
width: 67%;
image-rendering: pixelated;
}

@media only screen and (min-width: 600px) {
.pxl {
width: 50%;
}
}
68 changes: 0 additions & 68 deletions assets/css/syntax.css

This file was deleted.

Loading

0 comments on commit f3a1a38

Please sign in to comment.