SplatNet/site_policy/policy.css

118 lines
1.8 KiB
CSS
Raw Normal View History

@font-face {
font-family: "Regular";
src: url("../regular.otf") format("opentype");
font-weight: normal;
font-style: normal;
}
html, body {
margin: 0;
padding: 0;
}
body {
background-image: url("../assets/friendlist.png");
background-repeat: repeat;
background-size: 800px 800px;
font-family: "Regular", sans-serif;
color: white;
}
2026-02-01 04:57:59 +01:00
.header {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
position: relative;
z-index: 1;
}
.logo {
display: block;
max-width: 280px;
height: auto;
}
.content {
display: flex;
flex-direction: column;
align-items: center;
padding: 24px 20px;
2026-02-01 04:57:59 +01:00
position: relative;
z-index: 1;
}
.policy-container {
width: 100%;
max-width: 700px;
display: flex;
flex-direction: column;
gap: 32px;
}
.policy-section {
line-height: 1.5;
}
.policy-section h2 {
font-size: 36px;
margin: 0 0 12px;
}
.policy-section h3 {
font-size: 28px;
margin: 20px 0 8px;
}
.policy-section h4 {
font-size: 24px;
margin: 16px 0 6px;
}
.policy-section p,
.policy-section li {
font-size: 20px;
margin: 6px 0;
}
.policy-section ul {
padding-left: 20px;
margin: 8px 0;
}
#squid-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
overflow: visible;
pointer-events: none;
z-index: 0;
}
#squid-canvas {
position: absolute;
left: 50%;
top: 0;
transform: translateX(-50%);
width: 1920px;
height: 1080px;
pointer-events: none;
z-index: 0;
}
.text-link {
color: inherit;
text-decoration: none;
}
.text-link:hover,
.text-link:focus,
.text-link:active {
text-decoration: underline;
}
.text-link::selection {
text-decoration: underline;
}