website for beta festival 2024
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1022 lines
16 KiB

4 months ago
html {
padding: 0;
margin: 0;
}
body {
font-family: 'Inter', sans-serif;
margin: 0;
padding: 0;
overflow-x: hidden;
4 months ago
overflow-y: hidden;
font-size: 16px; /* Base font size */
4 months ago
}
#scroll {
background-image:
linear-gradient(to bottom,
white 0%,
white 30%,
rgba(255, 255, 255, 0) 100%),
url('/public/images/skybox.png');
background-position: 0px calc(100vh / 2.2);
4 months ago
background-size: cover;
background-repeat: repeat-x;
2 months ago
4 months ago
}
2 months ago
::-webkit-scrollbar {
width: 0px;
background: transparent; /* make scrollbar transparent */
}
4 months ago
p {
margin: 0;
}
a {
text-decoration: none;
color: #0075FF;
}
hr {
clear:both;
display:block;
width: 100%;
4 months ago
margin: 0;
padding: 0;
border: 0;
2 months ago
border-top: thin solid #0075FF;
4 months ago
}
2 months ago
#socials {
display: flex;
flex-direction: row;
gap: 20px;
flex-wrap: wrap;
}
.social-image {
width: 25px;
height: 25px;
}
.social-image img {
width: 100%;
height: auto;
}
4 months ago
#main-wrapper {
display: flex;
flex-direction: column;
4 months ago
height: 100vh;
overflow-y: hidden;
overflow-x: hidden;
4 months ago
}
#access-tab {
2 months ago
width: 50px;
height: 50px;
position: absolute;
bottom: 20px;
2 months ago
overflow: hidden;
right: 20px;
2 months ago
}
#access-tab img {
height: 100%;
width: auto;
cursor: pointer;
}
#access-container {
display: none;
gap: 10px;
flex-direction: column;
width: fit-content;
height: fit-content;
position: absolute;
transition: right 0.5s ease-in-out;
bottom: 90px;
right: -100%;
}
#access-underline {
text-decoration: underline;
}
#access-grayscale {
color: black;
}
.access-item {
opacity: 0;
transform: translateX(100%);
transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}
.access-item.animate {
opacity: 1;
transform: translateX(0);
}
.access-item.hide {
opacity: 0;
transform: translateX(100%);
}
.access-element {
border-color: #0075FF;
background-size: cover; /* or contain, depending on your preference */
background-color: #ffffff;
background-repeat:repeat;
border-radius: 30px;
padding: 10px;
padding-left: 25px;
padding-right: 25px;
border: 1px solid;
text-align: center;
/* font-family: 'Syne Mono', monospace; */
color: #0075FF;
cursor: pointer;
}
4 months ago
#nav-bar {
display: flex;
flex-direction: row;
justify-content: space-between;
padding-left: 50px;
padding-right: 50px;
2 months ago
padding-top: 25px;
padding-bottom: 25px;
4 months ago
}
.nav-element {
2 months ago
font-size: 30px;
1 month ago
font-family: 'JetBrains', monospace;
2 months ago
font-weight: 300;
4 months ago
color: #0075FF;
2 months ago
display: flex;
flex-direction: row;
gap: 20px;
}
.nav-element-align {
text-align: right;
4 months ago
}
#main-container {
2 months ago
padding-top: 25px;
4 months ago
display: flex;
flex-direction: column;
gap: 50px;
4 months ago
padding-bottom: 50px;
padding-left: 50px;
padding-right: 50px;
overflow-y: scroll;
box-sizing: border-box; /* Include padding in the height calculation */
4 months ago
flex: 1;
1 month ago
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
#main-container::-webkit-scrollbar{
display: none;
4 months ago
}
#index-container {
display: flex;
2 months ago
padding-top: 0px;
flex-direction: row;
1 month ago
gap: 25px;
2 months ago
padding-bottom: 0px;
padding-right: 50px;
overflow-y: scroll;
box-sizing: border-box; /* Include padding in the height calculation */
flex: 1;
}
#index-info {
2 months ago
flex: 5.5;
display: flex;
flex-direction: column;
2 months ago
gap: 25px;
padding-top: 25px;
2 months ago
overflow-y: scroll;
1 month ago
padding-bottom: 50px;
padding-right: 25px;
padding-left: 50px;
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
#index-info::-webkit-scrollbar{
display: none;
}
#index-info p{
2 months ago
font-size: 18px;
line-height: 30px;
text-align: justify;
text-indent: 2rem;
2 months ago
flex-wrap: wrap;
text-wrap:wrap;
}
#container-index {
2 months ago
flex: 4.5 1;
min-height: 400px;
}
#index-socials{
display: flex;
flex-direction: row;
justify-content: space-between;
margin-top: 50px;
text-decoration: underline;
text-transform: uppercase;
}
2 months ago
.socials {
position: absolute;
padding-top: 25px;
right: 50px;
display: flex;
flex-direction: row;
gap: 20px;
color:#0075FF;
}
3 months ago
#main-container-article {
display: flex;
flex-direction: column;
gap: 50px;
overflow-y: hidden;
box-sizing: border-box; /* Include padding in the height calculation */
flex: 1;
}
4 months ago
#main-text {
font-size: 26px;
width: 60%;
line-height: 40px;
color:#0075FF;
}
#hyperlink-container {
display: flex;
flex-direction: row;
3 months ago
gap: 25px;
2 months ago
font-size: 20px;
4 months ago
color:#ffffff;
font-weight: 400;
2 months ago
flex-wrap: wrap;
1 month ago
justify-content: space-between;
margin-top: 50px;
margin-bottom: 50px;
text-transform: uppercase;
4 months ago
}
.hyperlink {
display: flex;
flex-direction: row;
gap: 20px;
width: fit-content;
3 months ago
border-color: #0075FF;
4 months ago
background-size: cover; /* or contain, depending on your preference */
4 months ago
background-repeat:repeat;
4 months ago
border-radius: 30px;
padding: 10px;
padding-left: 25px;
padding-right: 25px;
1 month ago
font-family: 'JetBrains', monospace;
3 months ago
border: 1px solid;
/* font-family: 'Syne Mono', monospace; */
3 months ago
color: #0075FF;
2 months ago
background-color: #ffffff95;
}
1 month ago
.hyperlink-home {
display: flex;
flex-direction: row;
gap: 20px;
width: fit-content;
border-color: #0075FF;
background-size: cover; /* or contain, depending on your preference */
background-repeat:repeat;
font-family: 'JetBrains', monospace;
text-decoration: underline;
color: #ffffff;
background-color: #0075FF;
font-size: 40px;
font-weight: 300;
padding: 5px;
filter: drop-shadow(0 0 0.25rem black);
}
.hyperlink-header {
display: flex;
flex-direction: row;
gap: 20px;
width: fit-content;
background-color: #0075FF;
background-size: cover; /* or contain, depending on your preference */
background-repeat:repeat;
padding: 10px;
padding-left: 25px;
padding-right: 25px;
color: white;
3 months ago
border-color: #0075FF;
1 month ago
font-family: 'JetBrains', monospace;
text-transform: uppercase;
3 months ago
}
.hyperlink-header:hover {
1 month ago
/* transform: scale(1.05); Scale up the element */
}
.active-page {
color: #0075FF;
background-color: white;
border: 1px solid;
4 months ago
}
#hyperlink-container a{
color: white;
}
#container {
position: absolute;
top:0px;
left:0px;
margin: 0;
padding: 0;
z-index: -999;
opacity: 1;
4 months ago
}
#list-container {
display: flex;
flex-wrap: wrap;
align-items: stretch;
row-gap: 100px;
column-gap: 50px;
1 month ago
justify-content: space-between;
padding-top: 0px;
padding-bottom: 50px;
}
.list {
display: flex;
flex-direction: column;
2 months ago
width: 400px;
1 month ago
min-height: 300px;
gap:10px;
}
.list-image {
width: 100%;
1 month ago
height: 200px;
overflow: hidden;
position: relative;
border-radius: 0px;
margin-bottom: 10px;
}
.list-image img {
width: 100%;
height: 100%;
object-fit: cover;
position: absolute;
top: 0;
left: 0;
filter: grayscale(50%);
transition: filter 0.5s ease-in-out;
}
.list-image img:hover {
filter: grayscale(0%);
}
.list-image-overlay {
position: absolute;
width: calc(100% + .2rem);
height: 100%;
3 months ago
box-shadow: 0 0 .25rem .1rem white inset;
pointer-events: none;
}
.list-title {
2 months ago
font-size: 20px;
color: #0075FF;
2 months ago
font-weight: 500;
1 month ago
font-family: 'JetBrains', monospace
}
.list-details {
2 months ago
font-size: 15px;
color: black;
display: flex;
flex-direction: row;
justify-content: flex-start;
row-gap: 5px;
column-gap: 20px;
flex-wrap: wrap;
1 month ago
font-family: 'JetBrains', monospace;
}
.list-artists {
2 months ago
font-size: 15px;
1 month ago
font-family: 'JetBrains', monospace;
color: black;
display: flex;
flex-wrap: wrap;
flex-direction: row;
1 month ago
text-transform: capitalize;
}
#list-info-container {
font-size: 18px;
font-family: 'Inter', sans-serif;
line-height: 25px;
1 month ago
font-weight: 300;
}
.list-info-text {
padding-bottom: 10px;
}
.list-header {
font-size: 18px;
text-transform: uppercase;
font-weight: 700;
}
#page-header {
display: flex;
flex-direction: row;
padding-top: 20px;
padding-bottom: 20px;
padding-left: 50px;
2 months ago
font-size: 20px;
gap: 20px;
2 months ago
height: fit-content;
color: #0075FF;
2 months ago
align-items: start;
overflow-x: scroll;
4 months ago
overflow-y: hidden;
}
#page-header::-webkit-scrollbar {
display: none;
}
#page-header a {
cursor: pointer;
}
.page-info-cont {
display: flex;
flex-direction: row;
gap:10px;
1 month ago
font-family: 'JetBrains', monospace;
}
.page-info-title {
2 months ago
font-size: 20px;
font-weight: 400;
}
#article-stats {
display: flex;
flex-direction: row;
gap: 10px 15px;
flex-wrap: wrap;
}
.page-info-entry {
4 months ago
color: black;
2 months ago
font-size: 20px;
font-weight: 300;
}
#article-sep {
color: #0075FF;
}
#article-container {
display: flex;
flex-direction: row;
width: 100%;
height: 100%;
1 month ago
gap: 5px;
}
#article-image {
flex: 6;
display: flex;
justify-content: space-evenly;
align-items: baseline;
}
#article-image img {
max-height:100%; max-width:100%;
object-fit: contain;
}
#article-text {
flex: 4;
display: flex;
flex-direction: column;
2 months ago
gap: 20px;
font-size: 20px;
line-height: 25px;
width: 100%;
3 months ago
padding-left: 50px;
1 month ago
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
3 months ago
overflow-y: scroll;
1 month ago
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
3 months ago
#article-text::-webkit-scrollbar {
display: none;
}
4 months ago
#article-information {
2 months ago
font-size: 18px;
text-align: justify;
text-indent: 2rem;
4 months ago
}
1 month ago
#article-information em {
font-size: 14px;
font-weight: 400;
font-family: 'JetBrains', monospace;
}
#article-title {
2 months ago
font-size: 25px;
1 month ago
font-family: 'JetBrains', monospace;
color: #0075FF;
2 months ago
text-transform: uppercase;
1 month ago
display: flex;
justify-content: space-between;
}
#article-book {
2 months ago
font-size: 25px;
padding-top: 20px;
font-family: 'Inter', sans-serif;
color: #0075FF;
2 months ago
margin-bottom: 50px;
3 months ago
width: fit-content;
2 months ago
text-transform: uppercase;
1 month ago
font-weight: 300;
}
#article-artists {
1 month ago
font-family: 'JetBrains', monospace;
color: #0075FF;
2 months ago
text-transform: uppercase;
}
4 months ago
#container-article {
width: 100%;
height: 100%;
3 months ago
opacity: 0;
transition: opacity 1s ease-in-out; /* 1s transition */
}
#main-container-locations {
display: flex;
flex-direction: row;
gap: 0px;
overflow-y: hidden;
box-sizing: border-box; /* Include padding in the height calculation */
flex: 1;
width: 100%;
height: 100%;
1 month ago
padding-bottom: 0;
}
#location-list {
display: flex;
flex-basis: 45%; /* Initial width */
flex-grow: 0; /* Do not grow beyond the flex-basis */
1 month ago
background-color: rgba(255, 255, 255, 0);
flex-direction: column;
2 months ago
padding-top: 25px;
1 month ago
padding-right: 25px;
2 months ago
gap: 25px;
1 month ago
height: 100%;
overflow-y: scroll;
}
#location-button-list {
padding-left: 50px;
2 months ago
padding-right: 50px;
display: flex;
flex-direction: row;
flex-wrap: wrap;
1 month ago
gap:10px 10px;
font-family: 'JetBrains', monospace;
}
#location-information {
padding-left: 50px;
display: flex;
flex-direction: column;
gap: 20px;
}
#location-information a{
width: fit-content;
}
#location-images {
display: flex;
flex-basis: 55%; /* Initial width */
flex-grow: 0; /* Do not grow beyond the flex-basis */
flex-shrink: 0; /* Do not shrink below the flex-basis */
align-items: center; /* Center align images if they have different sizes */
justify-content: center; /* Center align horizontally */
overflow: hidden; /* Ensures overflow content is not shown */
}
#location-image {
width: 100%;
height: 100%;
}
#location-image img {
width: 100%;
height: 100%;
object-fit: cover;
}
.location-button {
2 months ago
font-size: 20px;
1 month ago
/* border: 1px solid;
border-radius: 30px;
padding: 10px;
padding-left: 25px;
padding-right: 25px;
1 month ago
border-color: #0075FF; */
color: white;
width: fit-content;
cursor: pointer;
1 month ago
background-color: #0075FF;
padding: 5px;
}
#location-text {
2 months ago
font-size: 20px;
padding: 10px;
}
#location-sep {
font-size: 20px;
padding: 10px;
}
3 months ago
@keyframes fadeInUp {
0% {
transform: translateY(100%);
opacity: 0;
}
100% {
transform: translateY(0%);
opacity: 1;
}
}
.fadeInUp-animation {
animation: 2s fadeInUp;
4 months ago
}
4 months ago
/* Tablet breakpoint (768px to 1024px) */
@media (max-width: 1100px){
4 months ago
#nav-bar {
padding-left: 50px;
padding-right: 50px;
padding-top: 20px;
padding-bottom: 20px;
}
#main-text {
width: 70%;
}
#hyperlink-container {
flex-direction: column;
width: fit-content;
}
.hyperlink {
padding-left: 5vw;
width: 80%;
}
#article-container {
4 months ago
display: flex;
flex-direction: column;
4 months ago
width: 100%;
height: 100%;
3 months ago
gap: 0px
4 months ago
}
#article-image {
order: 1;
width: 100%;
}
#article-text {
order: 2;
gap: 10px;
3 months ago
width: auto;
padding-right: 50px;
}
#page-header {
overflow-y: hidden;
overflow-x: scroll;
padding-right: 20px;
padding-left: 20px;
white-space: nowrap;
gap: 10px;
height: 40px;
}
4 months ago
#container-article {
width: 100%;
height: 100%;
}
4 months ago
}
/* Mobile breakpoint (less than 768px) */
@media (max-width: 768px) {
#index-socials{
order: -1;
}
2 months ago
#article-sep {
text-align: center;
padding-top: 10px;
padding-bottom: 10px;
}
#main-container-locations {
flex-direction: column;
height: auto;
flex: 1;
}
#location-list {
padding-top: 20px;
1 month ago
gap: 25px;
padding-bottom: 20px;
flex-shrink: 0;
overflow-y: scroll;
flex-basis: 60%;
1 month ago
padding-right: 5px;
padding-left: 5px;
2 months ago
justify-content: space-evenly;
}
#location-images {
flex-basis: 40%;
}
.location-button {
1 month ago
font-size: 16px;
padding: 10px;
}
#location-information {
padding-left: 10px;
padding-right: 10px;
align-items: center;
align-self: center;
width: fit-content;
}
#location-text {
font-size: 18px;
padding: 0;
width: fit-content;
text-align: center;
}
#location-button-list {
padding-left: 0px;
2 months ago
padding-right: 0px;
gap: 5px 5px;
justify-content: center;
}
#index-info {
order: 2;
flex-basis: 0%;
flex-direction: column-reverse;
1 month ago
padding-top: 0px;
padding-left: 0px;
padding-right: 0px;
2 months ago
overflow-y: visible;
1 month ago
2 months ago
}
#container-index {
order: 1;
flex: 1;
}
#index-info p{
2 months ago
font-size: 16px;
line-height: 25px;
text-align: justify;
}
#index-container {
flex-direction: column;
padding-left: 25px;
padding-right: 25px;
padding-top: 0px;
padding-bottom: 75px;
2 months ago
gap: 0px;
2 months ago
overflow-y: scroll;
}
4 months ago
#nav-bar {
padding-left: 25px;
padding-right: 25px;
padding-top: 20px;
padding-bottom: 20px;
flex-direction: column;
text-align: center;
gap: 5px;
}
.nav-element-align {
text-align:center;
}
4 months ago
.nav-element {
font-size: 20px;
2 months ago
flex-direction: column;
gap: 5px;
}
.socials {
position: inherit;
justify-content: center;
width: 100%;
4 months ago
}
#main-container {
4 months ago
/* flex-direction: column-reverse; */
padding-left: 10px;
padding-right: 10px;
padding-bottom: 100px;
4 months ago
}
4 months ago
#main-text {
font-size: 18px;
width: 80%;
padding-left: 0px;
text-align:justify;
line-height: 28px;
margin-left: auto;
margin-right: auto;
mix-blend-mode:multiply;
4 months ago
order: 2;
4 months ago
}
#hyperlink-container {
2 months ago
font-size: 20px;
4 months ago
flex-direction: column;
width: 100%;
padding-left: 0px;
align-items: normal;
4 months ago
order: 1;
4 months ago
}
.hyperlink {
gap: 10px;
width: auto;
justify-content: center;
margin-left: 0px;
margin-right: 0px;
4 months ago
text-align: center;
}
4 months ago
.hyperlink-header {
margin-left: 0px;
margin-right: 0px;
}
.list-image {
height: 300px;
}
.list{
width: 90vw;
height: auto;
}
#page-header {
font-size: 20px;
}
#article-container {
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
gap: 0px
}
#article-image {
order: 1;
4 months ago
width: 100%;
3 months ago
flex-basis: 40%;
}
#article-text {
order: 2;
gap: 10px;
3 months ago
width: auto;
padding-right: 10px;
padding-left: 10px;
3 months ago
flex-basis: 60%;
padding-top: 20px;
}
#article-title {
font-size: 20px;
font-weight: 700;
}
#article-artists {
font-size: 18px;
}
#article-information {
font-size: 18px;
padding-bottom: 100px;
}
#article-book {
2 months ago
font-size: 20px;
}
#page-header {
overflow-y: hidden;
overflow-x: scroll;
height: 40px;
padding-right: 10px;
padding-left: 10px;
white-space: nowrap;
scroll-snap-align: center;
gap: 5px;
}
.page-info-title {
font-size: 20px;
}
.page-info-entry {
font-size: 20px;
}
4 months ago
#container-article {
width: 100%;
height: 100%;
}
#list-container {
padding-top: 0px;
}
}
@keyframes fadeInUp {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
4 months ago
}