catmpeg.github.io/assets/styles.css
2025-09-21 12:27:01 +03:00

48 lines
No EOL
865 B
CSS

body {
margin: 0;
min-height: 100svh;
font: 14px 'SegoeUI',monospace;
color: #fff;
text-align: center;
background: #111;
display: flex;
flex-direction: column;
}
main {
max-width: 1000px;
width: calc(100% - 20px);
margin: 0 auto;
padding: 20px;
box-sizing: border-box;
}
a {
color: rgb(66,131,252);
text-decoration: none;
}
.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:0; }
}
@font-face{
font-family: 'SegoeUI';
src: url('Segoe UI.ttf') format('truetype');
font-weight: normal;
font-display: swap;
}