Add .asciicontainer adaptivity fix

This commit is contained in:
2025-08-20 02:59:00 +03:00
parent ba0e6f92fe
commit 3a2271ebb6
10 changed files with 17 additions and 13 deletions

File diff suppressed because one or more lines are too long

View File

@@ -11,7 +11,7 @@
<link rel="icon" href="/nothingrun-favicon-whiteonblack.png" type="image/png">
<title>Беларусский или белорусский</title>
<link rel="stylesheet" href="/_astro/contact.f052f577.css" /></head>
<link rel="stylesheet" href="/_astro/contact.f16fd268.css" /></head>
<body>
<div class="header astro-HPNW4VWY">
<a href="/" class="astro-HPNW4VWY">~/</a>

View File

@@ -11,7 +11,7 @@
<link rel="icon" href="/nothingrun-favicon-whiteonblack.png" type="image/png">
<title>Restoration of Synapse after disappearing 1 year of database history</title>
<link rel="stylesheet" href="/_astro/contact.f052f577.css" /></head>
<link rel="stylesheet" href="/_astro/contact.f16fd268.css" /></head>
<body>
<div class="header astro-HPNW4VWY">
<a href="/" class="astro-HPNW4VWY">~/</a>

View File

@@ -11,7 +11,7 @@
<link rel="icon" href="/nothingrun-favicon-whiteonblack.png" type="image/png">
<title>Contact</title>
<link rel="stylesheet" href="/_astro/contact.f052f577.css" /></head>
<link rel="stylesheet" href="/_astro/contact.f16fd268.css" /></head>
<body>
<div class="header astro-HPNW4VWY">
<a href="/" class="astro-HPNW4VWY">~/</a>

View File

@@ -11,7 +11,7 @@
<link rel="icon" href="/nothingrun-favicon-whiteonblack.png" type="image/png">
<title>Donate :3</title>
<link rel="stylesheet" href="/_astro/contact.f052f577.css" /></head>
<link rel="stylesheet" href="/_astro/contact.f16fd268.css" /></head>
<body>
<div class="header astro-HPNW4VWY">
<a href="/" class="astro-HPNW4VWY">~/</a>

2
dist/index.html vendored
View File

@@ -11,7 +11,7 @@
<link rel="icon" href="/nothingrun-favicon-whiteonblack.png" type="image/png">
<title>nothing.run</title>
<link rel="stylesheet" href="/_astro/contact.f052f577.css" /></head>
<link rel="stylesheet" href="/_astro/contact.f16fd268.css" /></head>
<body>
<div class="header astro-HPNW4VWY">
<a href="/" class="astro-HPNW4VWY">~/</a>

View File

@@ -11,7 +11,7 @@
<link rel="icon" href="/nothingrun-favicon-whiteonblack.png" type="image/png">
<title>Matrix</title>
<link rel="stylesheet" href="/_astro/contact.f052f577.css" /></head>
<link rel="stylesheet" href="/_astro/contact.f16fd268.css" /></head>
<body>
<div class="header astro-HPNW4VWY">
<a href="/" class="astro-HPNW4VWY">~/</a>

View File

@@ -11,7 +11,7 @@
<link rel="icon" href="/nothingrun-favicon-whiteonblack.png" type="image/png">
<title>nothing.run</title>
<link rel="stylesheet" href="/_astro/contact.f052f577.css" /></head>
<link rel="stylesheet" href="/_astro/contact.f16fd268.css" /></head>
<body>
<div class="header astro-HPNW4VWY">
<a href="/" class="astro-HPNW4VWY">~/</a>

View File

@@ -11,7 +11,7 @@
<link rel="icon" href="/nothingrun-favicon-whiteonblack.png" type="image/png">
<title>nothing.run</title>
<link rel="stylesheet" href="/_astro/contact.f052f577.css" /></head>
<link rel="stylesheet" href="/_astro/contact.f16fd268.css" /></head>
<body>
<div class="header astro-HPNW4VWY">
<a href="/" class="astro-HPNW4VWY">~/</a>

View File

@@ -217,10 +217,14 @@ pre.smaller {
grid-template-columns: 250px repeat(auto-fit, minmax(250px, 1fr));
max-width: 1300px;
}
@media (min-width: 1570px) {
.bigcontainer {
display: flex;
gap: 50px;
@media (min-width: 1000px) {
.asciicontainer {
grid-template-columns: 250px repeat(auto-fit, minmax(250px, 1fr));
}
}
@media (max-width: 1000px) {
.asciicontainer {
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
}