Powerful adaptive for the header
This commit is contained in:
@@ -52,6 +52,10 @@
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
:global(.header__menu-button) {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
.header__link {
|
.header__link {
|
||||||
font-size: 28px;
|
font-size: 28px;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
@@ -69,4 +73,42 @@
|
|||||||
gap: inherit;
|
gap: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: 1036px) {
|
||||||
|
.header {
|
||||||
|
grid-template-columns: auto auto auto;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: 935px) {
|
||||||
|
|
||||||
|
.header {
|
||||||
|
grid-template-columns: auto auto 1fr;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: 730px) {
|
||||||
|
|
||||||
|
.header {
|
||||||
|
grid-template-columns: auto auto auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
:global(.header__menu-button) {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container > .header__link {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container > :global(.header__language-button), :global(.container > .header__darkmode-button) {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: 622px) {
|
||||||
|
.header {
|
||||||
|
grid-template-columns: 1fr 1fr;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
@@ -6,15 +6,20 @@
|
|||||||
export let color = "var(--col_text_panel)";
|
export let color = "var(--col_text_panel)";
|
||||||
export let size = "25px";
|
export let size = "25px";
|
||||||
|
|
||||||
|
let externalClasses = "";
|
||||||
|
export { externalClasses as class };
|
||||||
|
|
||||||
|
const Clickablility = onclick ? "clickable" : "";
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<!-- FIXME: You horrible son of a goose-->
|
<!-- FIXME: You horrible son of a goose-->
|
||||||
<input class={"icon " + (onclick ? "clickable" : "")} type="button" value=""
|
<input class="{externalClasses} {Clickablility} icon" type="button" value=""
|
||||||
style="--image: url({image}); --color: {color}; background-color: {color}; --size: {size};"
|
style="--image: url({image}); --color: {color}; background-color: {color}; --size: {size};"
|
||||||
on:click={onclick ? onclick : null}>
|
on:click={onclick ? onclick : null}>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
.icon {
|
:global(.icon) {
|
||||||
background-color: var(--color);
|
background-color: var(--color);
|
||||||
object-fit: contain;
|
object-fit: contain;
|
||||||
-webkit-mask-image: var(--image);
|
-webkit-mask-image: var(--image);
|
||||||
|
|||||||
@@ -1,11 +1,20 @@
|
|||||||
<script>
|
<script>
|
||||||
import Icon from "./icon.svelte";
|
import Icon from "./icon.svelte";
|
||||||
import SearchIcon from "$lib/images/icons/ui/search.svg";
|
import SearchIcon from "$lib/images/icons/ui/search.svg";
|
||||||
|
|
||||||
|
let classList = "";
|
||||||
|
export { classList as class };
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div class="searchbar">
|
<div class="{classList} searchbar">
|
||||||
<Icon class="searchbar__icon" image={SearchIcon} size="36px"/>
|
<div class="normal">
|
||||||
<input class="searchbar__input" type="text" placeholder="Search stuff...">
|
<Icon class="searchbar__icon" image={SearchIcon} size="36px"/>
|
||||||
|
<input class="searchbar__input" type="text" placeholder="Search stuff...">
|
||||||
|
</div>
|
||||||
|
<div class="compact">
|
||||||
|
<Icon class="searchbar__icon" image={SearchIcon} size="36px"/>
|
||||||
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
@@ -18,6 +27,7 @@
|
|||||||
border-radius: 30px;
|
border-radius: 30px;
|
||||||
|
|
||||||
|
|
||||||
|
width: auto;
|
||||||
height: 36px;
|
height: 36px;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
}
|
}
|
||||||
@@ -27,6 +37,7 @@
|
|||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
color: var(--col_text_panel);
|
color: var(--col_text_panel);
|
||||||
|
|
||||||
|
max-width: 200px;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -34,4 +45,48 @@
|
|||||||
outline: none;
|
outline: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.compact {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: 935px) {
|
||||||
|
|
||||||
|
.searchbar {
|
||||||
|
margin-left: auto;
|
||||||
|
}
|
||||||
|
.normal {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.compact {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: 730px) {
|
||||||
|
|
||||||
|
.searchbar {
|
||||||
|
margin-left: auto;
|
||||||
|
}
|
||||||
|
.normal {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
.compact {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: 506px) {
|
||||||
|
|
||||||
|
.searchbar {
|
||||||
|
margin-left: auto;
|
||||||
|
}
|
||||||
|
.normal {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.compact {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
Reference in New Issue
Block a user