layer-8/public/stylesheet.css

92 lines
1.9 KiB
CSS
Raw Normal View History

@font-face {
2023-11-15 23:37:23 +01:00
font-family: 'sans';
src: url('../resources/fonts/LiberationSans.woff') format('woff'),
url('../resources/fonts/LiberationSans.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
2023-11-15 23:37:23 +01:00
font-family: 'mono';
src: url('../resources/fonts/LiberationMono.woff') format('woff'),
url('../resources/fonts/LiberationMono.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
2023-11-15 23:37:23 +01:00
font-family: 'hyper';
src: url('../resources/fonts/RealityHyperRegular.woff') format('woff'),
url('../resources/fonts/RealityHyperRegular.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
2023-11-15 23:37:23 +01:00
*, body {
box-sizing: border-box;
2023-11-15 23:37:23 +01:00
font-family: 'sans';
color: white;
background-color: black;
}
.logo_font {
2023-11-15 23:37:23 +01:00
color: #BFBFBF;
font-family: 'hyper';
font-size: 6rem;
text-shadow: 0 1px 0 #17202A, 0 2px 0 #17202A,
0 7px 0 #17202A, 0 8px 0 #17202A,
0 11px 0 #17202A, 0 12px 0 #17202A;
z-index: 999;
2023-11-16 23:37:16 +01:00
padding-left: 4rem;
}
.logo_gif {
2023-11-16 23:37:16 +01:00
height: 8.5rem;
margin: -4rem;
2023-11-15 23:37:23 +01:00
z-index: 998;
}
.logo_group {
display: flex;
justify-content: center;
align-items: center;
2023-11-15 23:37:23 +01:00
pointer-events: none;
2023-11-16 23:37:16 +01:00
margin-bottom: -4rem;
}
.logo_link {
text-decoration: none;
}
2023-11-15 23:37:23 +01:00
.menu_bar {
display: flex;
2023-11-15 23:37:23 +01:00
justify-content: center;
align-items: center;
font-family: 'mono';
font-size: 2rem;
text-shadow: 0 1px 0 #17202A, 0 2px 0 #17202A,
0 7px 0 #17202A, 0 8px 0 #17202A,
0 11px 0 #17202A, 0 12px 0 #17202A;
}
.menu_bar li {
list-style-type: none;
margin: 1rem;
}
.menu_bar li a {
text-decoration: none;
2023-11-16 23:37:16 +01:00
}
.menu_bar li a:hover {
text-decoration: underline;
text-decoration-thickness: 5px;
text-decoration-color: #f3a041;
}
.menu_bar li a:active {
text-decoration: underline;
text-decoration-thickness: 6px;
text-decoration-color: #41a3f3;
}