bpb-website/style.css

236 lines
4.4 KiB
CSS

:root {
/* --bulma-primary-h: ; */
--bulma-primary-l: 47%;
--bulma-info-h: 175deg;
--bulma-info-s: 88%;
--bulma-info-l: 42%;
--bulma-navbar-item-img-max-height: 200px;
}
html {
background-color: rgb(231, 230, 221);
font-family: "Autour One", serif; /* font-family: "Playwrite AU SA", serif; */
height: 100%;
}
body {
font-family: "Autour One", serif;
color:#363636;
}
nav {
font-family: "Autour One", serif;
}
header {
position: relative;
text-align: center;
color: antiquewhite;
}
.centerimg {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 4em;
}
#heroImg {
position: absolute; /* height: 600px; */
}
.navbar-item img, .navbar-item svg {
max-height: 1.30em;
}
.is-overlay {
margin: auto;
}
.padding{
padding: 1.2rem;
}
/* Centered text */
.text-on-image {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
}
.image-container {
position: relative;
display: inline-block;
width: 100%;
padding: 1rem;
}
.image-container img {
display: block;
width: 100%;
height: auto;
}
.overlay {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: rgba(0, 0, 0, 0.5); /* Optional: adds background for better readability */
padding: 10px;
text-align: center;
border-radius: 5px;
}
.lightbox .close {
pointer-events: auto;
z-index: 1001;
}
h1 label button{color: #363636}
form{
background-color: rgb(231, 230, 221);
font-family: "Autour One", serif; /* font-family: "Playwrite AU SA", serif; */
color:#363636;
}
#top {
font-family: "Autour One", serif; /* font-family: "Playwrite AU SA", serif; */
display: none; /* Hidden by default */
position: fixed; /* Fixed/sticky position */
bottom: 12px; /* Place the button at the bottom of the page */
right: 10px; /* Place the button 30px from the right */
z-index: 99; /* Make sure it does not overlap */
border: none; /* Remove borders */
outline: none; /* Remove outline */
background-color: #94d601; /* Set a background color */
cursor: pointer; /* Add a mouse pointer on hover */
padding: 15px; /* Some padding */
border-radius: 10px; /* Rounded corners */
font-size: 18px; /* Increase font size */
border:solid 1px #363636;
box-shadow: 3px 3px 3px #363636 ;
}
#top:hover {
background-color: #aedad3; /* Add a dark-grey background on hover */
}
#status{
color: rgb(221, 74, 214);
margin-bottom: 1rem;;
}
.neonTextOpen {
color: #fff;
text-shadow:
0 0 7px #fff,
0 0 10px #fff,
0 0 21px #fff,
0 0 42px #bc13fe,
0 0 82px #bc13fe,
0 0 92px #bc13fe,
0 0 102px #bc13fe,
0 0 151px #bc13fe;
animation: pulsateOpen 1.5s infinite alternate;
max-width: fit-content;
margin: auto;
border: 0.1rem solid #fff;
border-radius: 2rem;
padding: 0.4em;
margin-bottom: 1rem;
box-shadow:
0 0 0.2rem #fff,
0 0 0.2rem #fff,
0 0 2rem #bc13fe,
0 0 0.8rem #bc13fe,
inset 0 0 1.3rem #bc13fe;
}
.neonTextClosed {
color: #fff;
text-shadow:
0 0 7px #fff,
0 0 10px #fff,
0 0 21px #fff,
0 0 42px #11c9f7,
0 0 82px #11c9f7,
0 0 92px #11c9f7,
0 0 102px #11c9f7,
0 0 151px #11c9f7;
animation: pulsateClosed 1.5s infinite alternate;
max-width: fit-content;
margin: auto;
border: 0.1rem solid #fff;
border-radius: 2rem;
padding: 0.4em;
margin-bottom: 1rem;
box-shadow:
0 0 0.2rem #fff,
0 0 0.2rem #fff,
0 0 2rem #11c9f7,
0 0 0.8rem #11c9f7,
inset 0 0 1.3rem #11c9f7;
}
@keyframes pulsateOpen {
100% {
text-shadow:
0 0 4px #fff,
0 0 11px #fff,
0 0 19px #fff,
0 0 40px #bc13fe,
0 0 80px #bc13fe,
0 0 90px #bc13fe,
0 0 100px #bc13fe,
0 0 150px #bc13fe;
}
0% {
text-shadow:
0 0 2px #fff,
0 0 4px #fff,
0 0 6px #fff,
0 0 10px #bc13fe,
0 0 45px #bc13fe,
0 0 55px #bc13fe,
0 0 70px #bc13fe,
0 0 80px #bc13fe;
};
@keyframes pulsateClosed {
100% {
text-shadow:
0 0 4px #fff,
0 0 11px #fff,
0 0 19px #fff,
0 0 40px #11c9f7,
0 0 80px #11c9f7,
0 0 90px #11c9f7,
0 0 100px #11c9f7,
0 0 150px #11c9f7;
}
0% {
text-shadow:
0 0 2px #fff,
0 0 4px #fff,
0 0 6px #fff,
0 0 10px #11c9f7,
0 0 45px #11c9f7,
0 0 55px #11c9f7,
0 0 70px #11c9f7,
0 0 80px #11c9f7;
};