better mobile support
This commit is contained in:
parent
0a3d8bf027
commit
5b6f162809
|
@ -0,0 +1,2 @@
|
|||
# old revisions
|
||||
scrap
|
|
@ -16,6 +16,8 @@
|
|||
<meta name="theme-color" content="#c4b5a1">
|
||||
|
||||
<title>min.rip</title>
|
||||
|
||||
<script>0</script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
@ -23,7 +25,6 @@
|
|||
<div id="bordeur"></div>
|
||||
<main>
|
||||
<div id="floats">
|
||||
<img src="/assets/icon.webp" alt="" id="icon">
|
||||
<div id="yapping">
|
||||
<h1>hi, world!</h1>
|
||||
<h2>i am minish</h2>
|
||||
|
@ -35,7 +36,7 @@
|
|||
a simple, performant file upload server
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://git.min.rip/breeze/hls_convert">hls_convert</a> -
|
||||
<a href="#">hls_convert</a> -
|
||||
easily download videos and fix embeds
|
||||
</li>
|
||||
<li>
|
||||
|
@ -51,6 +52,7 @@
|
|||
<li>cafe de touhou <img src="/assets/interests/cdth.webp" alt=""></li>
|
||||
</ul>
|
||||
</div>
|
||||
<img src="/assets/icon.webp" alt="" id="icon">
|
||||
</div>
|
||||
<div id="cont">
|
||||
<hr>
|
||||
|
|
56
style.css
56
style.css
|
@ -20,9 +20,8 @@ body {
|
|||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: calc(100% - calc(2px * 2));
|
||||
width: calc(100vw - calc(2px * 2));
|
||||
height: calc(100vh - calc(2px * 2));
|
||||
z-index: -97;
|
||||
|
||||
margin: 2px;
|
||||
|
||||
|
@ -34,20 +33,18 @@ body {
|
|||
content: "";
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
z-index: -98;
|
||||
|
||||
backdrop-filter: blur(0px);
|
||||
/* backdrop-filter: blur(2px); */
|
||||
}
|
||||
|
||||
#bg {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
z-index: -99;
|
||||
|
||||
background-image: linear-gradient(rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.53)), url(/assets/bg.webp);
|
||||
background-attachment: fixed;
|
||||
|
@ -62,6 +59,9 @@ main {
|
|||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
||||
font-size: 10pt;
|
||||
line-height: 2em;
|
||||
|
||||
|
@ -77,34 +77,49 @@ main {
|
|||
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
||||
}
|
||||
|
||||
a:link, a:visited, a:hover, a:active {
|
||||
@media only screen and (max-width: 700px) {
|
||||
main {
|
||||
min-width: 90dvw;
|
||||
}
|
||||
|
||||
#bordeur {
|
||||
border-width: 0px;
|
||||
}
|
||||
|
||||
#icon {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
a:link,
|
||||
a:visited,
|
||||
a:hover,
|
||||
a:active {
|
||||
color: var(--accent-b)
|
||||
}
|
||||
|
||||
main * {
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
main h2 {
|
||||
h2 {
|
||||
font-size: medium;
|
||||
font-weight: lighter;
|
||||
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
|
||||
#floats {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
#icon {
|
||||
float: right;
|
||||
position: relative;
|
||||
justify-self: right;
|
||||
|
||||
/* make some space around it */
|
||||
margin-bottom: 6px;
|
||||
margin-left: 24px;
|
||||
|
||||
height: 7em;
|
||||
}
|
||||
|
||||
#yapping {
|
||||
float: left;
|
||||
justify-self: right;
|
||||
}
|
||||
|
||||
ul {
|
||||
|
@ -126,7 +141,7 @@ li {
|
|||
vertical-align: middle;
|
||||
}
|
||||
|
||||
main hr {
|
||||
hr {
|
||||
margin-bottom: 10px;
|
||||
margin-top: 12px;
|
||||
|
||||
|
@ -143,8 +158,7 @@ main hr {
|
|||
}
|
||||
|
||||
#cont {
|
||||
/* This has to be here or the separator margin disappears. Dear god i have no idea what the hell i am doing. */
|
||||
padding-top: 1px;
|
||||
|
||||
clear: both;
|
||||
|
||||
margin-top: auto;
|
||||
}
|
Loading…
Reference in New Issue