Compare commits

..

No commits in common. "main" and "v2" have entirely different histories.
main ... v2

5 changed files with 10 additions and 25 deletions

5
.gitignore vendored
View file

@ -1,2 +1,3 @@
.DS_Store **/.DS_Store
*.tar.gz docker-compose.yml
.vscode/

View file

@ -1,2 +0,0 @@
bundle:
tar czf ./blisstown-web.tar.gz -C public .

View file

@ -4,7 +4,7 @@
<meta http-equiv="content-type" content="text/html; charset=UTF-8"> <meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="viewport" value="width=device-width, initial-scale=1">
<title>bliss town</title> <title>bliss town</title>
<link rel="icon" type="image/x-icon" href="/img/favicon.png"> <link rel="icon" type="image/x-icon" href="/img/favicon.png">
@ -22,10 +22,10 @@
<header> <header>
<nav> <nav>
<span class="nav-title"> <span class="nav-title">
<div class="title-icon"> <span class="title-icon">
<img src="/img/icon-light.svg" class="only-light" width=26 height=26 /> <img src="/img/icon-light.svg" class="only-light" width=26 height=26 />
<img src="/img/icon-dark.svg" class="only-dark" width=26 height=26 /> <img src="/img/icon-dark.svg" class="only-dark" width=26 height=26 />
</div> </span>
<strong>bliss<span class="col-on-primary">.</span>town</strong> <strong>bliss<span class="col-on-primary">.</span>town</strong>
</span> </span>
<a href="/">home</a> <a href="/">home</a>
@ -34,10 +34,10 @@
</header> </header>
<main> <main>
<h1> <h1>
<div class="title-icon"> <span class="title-icon">
<img src="/img/icon-light.svg" class="only-light" width=64 height=64 /> <img src="/img/icon-light.svg" class="only-light" width=64 height=64 />
<img src="/img/icon-dark.svg" class="only-dark" width=64 height=64 /> <img src="/img/icon-dark.svg" class="only-dark" width=64 height=64 />
</div> </span>
welcome to bliss<span class="col-on-primary">.</span>town! welcome to bliss<span class="col-on-primary">.</span>town!
</h1> </h1>

View file

@ -115,9 +115,3 @@
color: var(--on-primary); color: var(--on-primary);
border: 1px solid var(--on-primary); border: 1px solid var(--on-primary);
} }
@media screen and (max-width: 500px) {
.crew-tags {
flex-wrap: wrap;
}
}

View file

@ -153,15 +153,13 @@ footer:hover {
.title-icon { .title-icon {
position: relative; position: relative;
width: 1.3em; height: 1.2em;
height: 1.1em;
margin: 0 .1em; margin: 0 .1em;
padding-right: 1.6em;
display: inline-block; display: inline-block;
} }
.title-icon img { .title-icon img {
width: 1.4em;
height: 1.4em;
position: absolute; position: absolute;
} }
@ -181,9 +179,3 @@ footer:hover {
box-shadow: 0 2px 8px #0c03116e; box-shadow: 0 2px 8px #0c03116e;
} }
} }
@media screen and (max-width: 500px) {
h1 {
font-size: 1.2em;
}
}