<body>
<div id="main-div">
<header>
- <img src="/lain2.png" alt="[lain.png]" width="150" height="150">
+ <img class="lain" src="/lain2.png" alt="[lain.png]" width="150" height="150">
<div id="header-middle">
<h1><a href="/">jxnshi.xyz</a></h1>
<div class="isle">
</div>
</div>
</div>
- <img src="/lain.png" alt="[lain.png]" width="150" height="150">
+ <img class="lain" src="/lain.png" alt="[lain.png]" width="150" height="150">
</header>
<div id="content-div">
<div>
src: url("/basis33.ttf");
}
+@media screen and (max-width: 780px) {
+ .lain {
+ visibility: hidden;
+ }
+
+ #header-middle {
+ width: 300px;
+ max-width: 100%;
+ }
+
+ #content-div > div {
+ display: flex;
+ flex-direction: column;
+ width: calc(100% - 70px);
+ gap: 30px;
+ }
+}
+
+@media screen and (min-width: 780px) {
+ #header-middle {
+ width: 400px;
+ max-width: 100%;
+ }
+
+ #content-div > div {
+ display: flex;
+ flex-direction: column;
+ width: 1000px;
+ gap: 30px;
+ }
+}
+
* {
color: white;
font-family: "basis33";
position: fixed;
left: 0;
top: 0;
- width: calc(100% + 30px);
- height: calc(100% + 30px);
+ width: 100%;
+ height: 100%;
background-image: url("/scanlines.png");
background-position: 0 0;
- background-position-x: 0px;
- background-position-y: 0px;
background-repeat: repeat;
- background-repeat-x: repeat;
- background-repeat-y: repeat;
pointer-events: none;
z-index: 10000000;
opacity: 0.1;
}
header {
- display: grid;
- grid-template-columns: 1fr 500px 1fr;
+ display: flex;
gap: 70px;
align-items: center;
}
width: 100%;
}
-#content-div > div {
- display: flex;
- flex-direction: column;
- width: 1000px;
- gap: 30px;
-}
-
#donation-div {
display: grid;
grid-template: "a b" "c d";
padding: 0;
align-items: center;
list-style: none;
+ flex-wrap: wrap;
}
#details {
display: flex;
gap: 80px;
+ flex-wrap: wrap;
}
#header-middle > div {