alpinesmuseum-public/assets/less/components/Others.less

102 lines
2 KiB
Text
Raw Normal View History

2022-09-23 02:08:37 +00:00
.modal-body p {
.small-text;
font-size: 120%;
}
.modal-body h4 {
.medium-text;
}
.marquee {
position: relative;
overflow: hidden;
--offset: 100vw;
--move-initial: calc(-25% + var(--offset));
}
.marquee__inner {
width: fit-content;
display: flex;
position: relative;
transform: translate3d(var(--move-initial), 0, 0);
animation: marquee 15s linear infinite;
animation-play-state: running;
.small-text;
font-size: 18px;
}
.marquee span {
padding: 0 2vw;
}
@keyframes marquee {
0% {
transform: translate3d(var(--move-initial), 0, 0);
}
100% {
transform: translate3d(var(--move-final), 0, 0);
}
}
div.modal-body {
padding-left: 100px;
padding-right: 100px;
padding-bottom: 93px;
}
.modal-header .btn-close {
background: transparent url("/static/gfx/alps_x.svg") center / 1em auto no-repeat;
background-size: 92px 92px;
}
.modal-dialog {
margin-top: 1rem;
}
.modal-body .big-text {
margin: 0;
}
.modal-content {
border-radius: 0;
text-align: left;
h1.big-text {
margin-left: 100px;
}
}
.modal-backdrop.show {
opacity: 0.75;
}
.modal-body h4 {
.medium-text;
margin-top: 34.58px;
}
.modal-header {
border-bottom: 0;
}
.modal-header .btn-close {
padding: .1rem .1rem;
margin: 0;
font-size: 72px;
color: black;
opacity: 1;
}
.modal-xl {
max-width: 990px;
}
.modal-header .close {
font-size: 40px; //bigger
}
.stroke-2 {
stroke-width: 0.5em;
}
.btn-close {
background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' class='stroke-2' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat
}
.CVForm a {
text-decoration: underline !important;
font-size: 18px;
}