Remove bootstrap dependency

This commit is contained in:
Chris Dill 2023-03-19 08:38:11 +00:00
parent bfbb2ceeaa
commit f8f3f269c8
6 changed files with 91 additions and 29 deletions

View File

@ -6,7 +6,6 @@
<meta name="theme-color" content="#333333"> <meta name="theme-color" content="#333333">
<meta name="description" content="Quartznet is a small team developing games, tools and more!"> <meta name="description" content="Quartznet is a small team developing games, tools and more!">
<link rel="stylesheet" href="/css/bootstrap.min.css">
<link rel="stylesheet" href="/css/global.css"> <link rel="stylesheet" href="/css/global.css">
<link rel="icon" type="image/png" href="/img/favicon.ico"> <link rel="icon" type="image/png" href="/img/favicon.ico">

View File

@ -1,8 +1,3 @@
<script>
export let segment;
export let rightComponent;
</script>
<style> <style>
a { a {
font-size: 1rem; font-size: 1rem;
@ -10,14 +5,22 @@
} }
nav { nav {
max-width: 1200px; display: flex;
justify-content: space-between;
max-width: 1400px;
margin: 0 auto; margin: 0 auto;
padding-left: 1rem;
padding-right: 1rem;
} }
ul { ul {
display: flex; display: flex;
font-weight: bold; font-weight: bold;
text-align: center; text-align: center;
list-style: none;
margin-top: 8px;
margin-bottom: 8px;
padding: 0;
} }
ul li a { ul li a {
@ -32,18 +35,18 @@
</style> </style>
<header> <header>
<nav class="navbar navbar-expand"> <nav>
<ul class="navbar-nav mr-auto"> <ul>
<li> <li>
<a aria-current="{segment === undefined ? 'page' : undefined}" href="/">Quartznet</a> <a href="/">Quartznet</a>
</li> </li>
<li> <li>
<a aria-current="{segment === 'about' ? 'page' : undefined}" href="/about">About</a> <a href="/about">About</a>
</li> </li>
</ul> </ul>
<ul class="navbar-nav ml-auto"> <ul>
<li> <li>
<svelte:component this={rightComponent}/> <a href="/admin">Admin</a>
</li> </li>
</ul> </ul>
</nav> </nav>

View File

@ -2,18 +2,40 @@
export let name; export let name;
export let link; export let link;
export let img = "https://placehold.it/600x300"; export let img = "https://placehold.it/600x300";
export let imgClass = "img-fluid mb-3 mb-md-0";
export let size = { width: 600, height: 300 }; export let size = { width: 600, height: 300 };
export let description; export let description;
</script> </script>
<div class="row"> <style>
<div class="thumb col-md-7"> .card {
display: flex;
gap: 2.5rem;
}
.back a img {
max-width: 100%;
height: auto;
}
.description {
width: 500px;
}
@media screen and (max-width: 978px) {
.card {
flex-wrap: wrap;
gap: 0.25rem;
}
}
</style>
<div class="card">
<div class="back">
<a href="{link}"> <a href="{link}">
<img class={imgClass} src={img} alt={name} width={size.width} height={size.height}> <img src={img} alt={name} width={size.width} height={size.height}>
</a> </a>
</div> </div>
<div class="blurb col-md-5"> <div class="description">
<h2>{name}</h2> <h2>{name}</h2>
<p>{description}</p> <p>{description}</p>
</div> </div>

View File

@ -1,9 +1,6 @@
<script> <script>
import Nav from '../components/Nav.svelte'; import Nav from '../components/Nav.svelte';
import userManager from '../components/UserManager.svelte'
import Modal from '../components/Modal.svelte' import Modal from '../components/Modal.svelte'
export let segment;
</script> </script>
<style> <style>
@ -23,8 +20,8 @@
</style> </style>
<Modal/> <Modal/>
<Nav {segment} rightComponent={userManager}/> <Nav/>
<slot></slot> <slot></slot>
<footer></footer> <footer class="container"></footer>

File diff suppressed because one or more lines are too long

View File

@ -30,13 +30,22 @@ body {
font-display: swap; font-display: swap;
font-size: 1rem; font-size: 1rem;
line-height: 1.6; line-height: 1.6;
margin: 0 auto;
} }
h1, h2, h3, h4, h5 { h1, h2, h3, h4, h5 {
color: var(--headings-color); color: var(--headings-color);
font-weight: bold; font-weight: bold;
line-height: 1.2; line-height: 1.2;
margin-top: 0;
margin-bottom: 0.5rem;
} }
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }
hr { hr {
background-color: var(--line-color); background-color: var(--line-color);
@ -79,6 +88,44 @@ a:hover {
text-decoration: none; text-decoration: none;
} }
.container {
width: 100%;
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
}
@media (min-width: 576px) {
.container {
width: 540px;
}
}
@media (min-width: 768px) {
.container {
width: 720px;
}
}
@media (min-width: 992px) {
.container {
width: 960px;
}
}
@media (min-width: 1200px) {
.container {
width: 1140px;
}
}
.link {
text-decoration: none;
transition: color 0.1s linear;
padding: 4px 12px;
}
.link:hover {
border-bottom: 2px solid var(--line-color);
}
/* Content */ /* Content */
main { main {
margin-top: 20px; margin-top: 20px;