mirror of
https://github.com/YouHaveTrouble/youhavetrouble.github.io.git
synced 2026-05-12 14:26:56 +00:00
49 lines
593 B
CSS
49 lines
593 B
CSS
* {
|
|
box-sizing: border-box;
|
|
}
|
|
:root {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
::-moz-selection {
|
|
background: rgba(255,255,255, 0.2);
|
|
}
|
|
|
|
::selection {
|
|
background: rgba(255,255,255, 0.2);
|
|
}
|
|
|
|
html {
|
|
background-size: cover;
|
|
font-size: 1.2em;
|
|
}
|
|
body {
|
|
margin: 0;
|
|
background-color: rgba(16, 16, 16, 0.7);
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 1rem;
|
|
width: 100%;
|
|
min-height: 100vh;
|
|
padding: 0;
|
|
}
|
|
|
|
small {
|
|
font-size: 0.6rem;
|
|
}
|
|
|
|
p, h1, h2, h3, h4, h5, h6 {
|
|
text-align: center;
|
|
margin: 0;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 1.1rem;
|
|
}
|