SplatNet/friend_list/styles.css

201 lines
3.6 KiB
CSS
Raw Permalink Normal View History

2026-02-02 07:38:35 +01:00
@font-face {
font-family: "Splatoon1";
src: url("../splatoon1.otf") format("opentype");
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: "Regular";
src: url("../regular.otf") format("opentype");
font-weight: normal;
font-style: normal;
}
html {
height: 100%;
}
body {
margin: 0;
padding: 0;
display: flex;
align-items: flex-start;
min-height: 100vh;
background-image: url("/assets/en/bg/@2x/bg_friendlist-d20dccde83e0d769455ff580421b84805be7ff1c6494e812200a51d067b10be0.png");
background-repeat: repeat;
background-size: 800px 800px;
background-attachment: fixed;
}
.menu-item .hover-state {
display: none;
}
.menu-item:hover .hover-state,
.menu-item.active .hover-state {
display: block;
}
.menu-item:hover .default,
.menu-item.active .default {
display: none;
}
.loading-overlay {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 200px;
height: 200px;
background-color: rgba(0,0,0);
border-radius: 20px;
padding: 20px 24px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
z-index: 9999;
user-select: none;
pointer-events: none;
box-sizing: border-box;
2026-02-02 07:38:35 +01:00
}
#loading-canvas {
image-rendering: pixelated;
width: 100px;
height: 100px;
display: block;
margin: 0 auto;
}
#loading-text {
margin-top: 12px;
color: white;
font-family: "Splatoon1", sans-serif;
font-size: 20px;
letter-spacing: 1.2px;
text-align: center;
}
#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;
will-change: transform;
pointer-events: none;
user-select: none;
z-index: 0;
display: block;
}
#loading-text img {
height: 35px;
width: auto;
display: block;
2026-02-04 04:03:12 +01:00
}
.logo-left-align {
display: flex;
2026-02-04 04:53:58 +01:00
flex-direction: column;
align-items: flex-start;
2026-02-04 04:03:12 +01:00
justify-content: flex-start;
width: 100%;
margin-top: 20px;
margin-bottom: 20px;
margin-left: 40px;
}
#stage-header-logo {
position: relative;
width: 400px;
height: 80px;
cursor: default;
pointer-events: none;
2026-02-04 04:53:58 +01:00
margin-bottom: 10px;
2026-02-04 04:03:12 +01:00
}
#stage-header-logo .bg-layer {
width: 400px;
height: auto;
position: relative;
display: block;
}
#stage-header-logo .icon-layer {
position: absolute;
width: 65px;
left: 10px;
top: 50%;
transform: translateY(-50%);
z-index: 2;
margin-left: 10px;
}
#stage-header-logo .label-layer {
position: absolute;
width: 200px;
left: 110px;
top: 45%;
transform: translateY(-50%);
z-index: 2;
2026-02-04 04:53:58 +01:00
}
.friendsubtitle-text {
margin: 0;
padding-top: 20px;
max-width: 1200px;
text-align: left;
color: white;
font-family: "Regular", sans-serif;
font-size: 24px;
line-height: 1.3;
2026-02-04 05:56:59 +01:00
}
.main-wrapper {
display: flex;
flex-direction: column;
align-items: flex-start;
width: 100%;
}
.content {
width: 100%;
display: flex;
flex-direction: column;
align-items: flex-start;
}
.splat-info-box {
background-color: rgba(0, 0, 0, 0.6);
border-radius: 10px;
padding: 25px 40px;
max-width: 700px;
margin: 40px auto;
z-index: 5;
box-sizing: border-box;
}
.splat-info-box p {
color: #ffffff;
font-family: "Regular", sans-serif;
font-size: 20px;
line-height: 1.6;
margin: 0;
text-align: left;
2026-02-02 07:38:35 +01:00
}