mirror of
https://github.com/catmpeg/catmpeg.github.io.git
synced 2026-02-20 15:50:57 +03:00
да
This commit is contained in:
parent
a0fbc194fd
commit
10078b6d20
3 changed files with 41 additions and 38 deletions
10
index.html
10
index.html
|
|
@ -13,10 +13,10 @@
|
|||
<main>
|
||||
<h1>Добро пожаловать на страницу semkapc</h1>
|
||||
|
||||
<div class="buttons">
|
||||
<div id="buttons">
|
||||
|
||||
<a href="games/"><img width="64" src="images/flashpla.svg"
|
||||
style="border-radius: 50%; height: 64px; object-fit: cover; box-shadow: 10px 10px 20px 0px rgba(0,0,0,0.45);"
|
||||
id="gamesicon"
|
||||
alt="Игры"></a><br>
|
||||
|
||||
<a href="chat/"><img width="64" src="images/chat.png"
|
||||
|
|
@ -40,10 +40,10 @@
|
|||
<h3>Gamma63: <a href="//delta-gamma.org" target="_blank">delta-gamma.org</a></h3>
|
||||
</main>
|
||||
|
||||
<div class="webring">
|
||||
<a href="https://otomir23.me/webring/34/prev">‹ prev</a>
|
||||
<div id="webring">
|
||||
<a href="https://otomir23.me/webring/34/prev">~prev</a>
|
||||
<a href="https://otomir23.me/webring" target="_blank">webring</a>
|
||||
<a href="https://otomir23.me/webring/34/next">next ›</a>
|
||||
<a href="https://otomir23.me/webring/34/next">next~</a>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -30,8 +30,8 @@
|
|||
<h3>4. Слушать музыку</h3>
|
||||
<br>
|
||||
<h2>Характеристики моих компов:</h2>
|
||||
<div class="spec">
|
||||
<div class="oldpc">
|
||||
<div id="spec">
|
||||
<div>
|
||||
<h3>Старый</h3>
|
||||
<h3>ASROCK X570 Pro4</h3>
|
||||
<h3>GTX 1060 3GB PALIT StormX</h3>
|
||||
|
|
@ -43,7 +43,7 @@
|
|||
<h3>Proxmox VE</h3>
|
||||
<h3>MacOS Big Sur</h3>
|
||||
</div>
|
||||
<div class="newpc">
|
||||
<div id="newpc">
|
||||
<h3>Новый</h3>
|
||||
<h3>Acer AN16-41</h3>
|
||||
<h3>RTX 4070 Mobile</h3>
|
||||
|
|
|
|||
87
styles.css
87
styles.css
|
|
@ -8,47 +8,12 @@
|
|||
body {
|
||||
margin: 0;
|
||||
min-height: 100svh;
|
||||
font: 14px/1.5 'JetBrains Mono', monospace;
|
||||
font: 14px 'JetBrains Mono', monospace;
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
background: black url(images/bg.jpg) center/cover fixed;
|
||||
flex-direction: column;
|
||||
gap: 22px;
|
||||
}
|
||||
|
||||
header,
|
||||
.webring,
|
||||
main {
|
||||
background-color: rgba(34, 34, 34, 0.3);
|
||||
backdrop-filter: blur(10px);
|
||||
}
|
||||
|
||||
body,
|
||||
.webring,
|
||||
.buttons,
|
||||
.spec {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.webring {
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
width: 100%;
|
||||
margin-top: auto;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a,
|
||||
.webring {
|
||||
color: rgb(66, 131, 252);
|
||||
}
|
||||
|
||||
a:visited {
|
||||
color: rgb(0, 17, 255);
|
||||
}
|
||||
|
||||
main {
|
||||
|
|
@ -60,25 +25,56 @@ main {
|
|||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.buttons {
|
||||
#webring,
|
||||
main {
|
||||
background-color: rgba(34, 34, 34, 0.3);
|
||||
backdrop-filter: blur(10px);
|
||||
}
|
||||
|
||||
body,
|
||||
#webring,
|
||||
#buttons,
|
||||
#spec {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
#webring {
|
||||
justify-content: center;
|
||||
gap: 15px;
|
||||
align-items: center;
|
||||
width: 100%;
|
||||
margin-top: auto;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a,
|
||||
#webring {
|
||||
color: rgb(66, 131, 252);
|
||||
}
|
||||
|
||||
#buttons {
|
||||
justify-content: center;
|
||||
gap: 20px;
|
||||
margin: 20px 0;
|
||||
}
|
||||
|
||||
.buttons img {
|
||||
#buttons img {
|
||||
transition: transform 0.3s ease;
|
||||
}
|
||||
|
||||
.buttons img:hover {
|
||||
#buttons img:hover {
|
||||
transform: scale(1.3);
|
||||
}
|
||||
|
||||
.spec {
|
||||
#spec {
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.newpc {
|
||||
#newpc {
|
||||
margin-left: 100px;
|
||||
}
|
||||
|
||||
|
|
@ -86,6 +82,13 @@ iframe {
|
|||
border: 2px solid rgb(66, 131, 252);
|
||||
}
|
||||
|
||||
#gamesicon {
|
||||
border-radius: 50%;
|
||||
height: 64px;
|
||||
object-fit: cover;
|
||||
box-shadow: 10px 10px 20px 0px rgba(0,0,0,0.45);
|
||||
}
|
||||
|
||||
@media (max-width: 600px) {
|
||||
body {
|
||||
gap: 15px;
|
||||
|
|
@ -105,7 +108,7 @@ iframe {
|
|||
margin: 12px 0;
|
||||
}
|
||||
|
||||
.webring {
|
||||
#webring {
|
||||
width: calc(100% - 20px);
|
||||
margin: 10px auto 0;
|
||||
padding: 8px 12px;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue