mirror of
https://github.com/catmpeg/catmpeg.github.io.git
synced 2026-02-20 15:50:57 +03:00
104 lines
1.6 KiB
CSS
104 lines
1.6 KiB
CSS
body {
|
|
margin: 0;
|
|
min-height: 100svh;
|
|
font: 14px 'JetBrains Mono', monospace;
|
|
color: #fff;
|
|
text-align: center;
|
|
background: #111111;
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
main,
|
|
#webring,
|
|
#hello {
|
|
max-width: 1000px;
|
|
width: calc(100% - 20px);
|
|
margin: 0 auto;
|
|
padding: 20px;
|
|
box-sizing: border-box;
|
|
/* border: 4px double rgb(180, 180, 180); */
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
/* <-----------------------> */
|
|
|
|
#webring {
|
|
max-width: 1000px;
|
|
width: calc(100% - 20px);
|
|
margin: 0 auto;
|
|
padding: 20px;
|
|
box-sizing: border-box;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: 15px;
|
|
background-color: rgba(17, 17, 17, 0.7);
|
|
backdrop-filter: blur(10px);
|
|
/* border: 4px double rgb(180, 180, 180); */
|
|
}
|
|
|
|
body,
|
|
#webring {
|
|
display: flex;
|
|
}
|
|
|
|
a,
|
|
#webring {
|
|
color: rgb(66, 131, 252);
|
|
}
|
|
|
|
#jccenter {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
#myfriends {
|
|
margin-left: 50px;
|
|
}
|
|
|
|
/* <-----------------------> */
|
|
|
|
@media (max-width: 600px) {
|
|
body {
|
|
gap: 15px;
|
|
padding: 0 10px;
|
|
}
|
|
|
|
main {
|
|
padding: 15px;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
h2, h3 {
|
|
font-size: 1.1rem;
|
|
margin: 12px 0;
|
|
}
|
|
|
|
#jccenter {
|
|
display: block;
|
|
}
|
|
|
|
#myfriends {
|
|
margin-left: 0px;
|
|
}
|
|
|
|
#webring {
|
|
width: calc(100% - 20px);
|
|
margin: 10px auto 0;
|
|
padding: 8px 12px;
|
|
box-sizing: border-box;
|
|
}
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'JetBrains Mono';
|
|
src: url('JetBrainsMono-Bold.ttf') format('truetype');
|
|
font-weight: bold;
|
|
font-display: swap;
|
|
}
|