new layout test

This commit is contained in:
2023-11-08 19:36:52 +01:00
parent 0dc3088069
commit 94bccd78a6
4 changed files with 90 additions and 401 deletions
+48
View File
@@ -0,0 +1,48 @@
* {
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;
}