mirror of
https://github.com/modelec/assets-live.git
synced 2026-01-18 16:27:30 +01:00
82 lines
1.4 KiB
CSS
82 lines
1.4 KiB
CSS
/*
|
|
body{
|
|
background-color: rgba(255, 255, 255, 0);
|
|
margin: 0;
|
|
font-family: 'Roboto', sans-serif;
|
|
}
|
|
*/
|
|
|
|
body {
|
|
background-color: #00ff1a;
|
|
margin: 0;
|
|
font-family: 'Roboto', sans-serif;
|
|
font-weight: 600;
|
|
}
|
|
|
|
#logo {
|
|
margin-left: 1em;
|
|
max-height: 100px;
|
|
background-color: transparent;
|
|
mix-blend-mode: screen;
|
|
}
|
|
#topBar {
|
|
width: 100%;
|
|
height: 72px;
|
|
background-color: rgba(255, 89, 90, 0.5);
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
#void {
|
|
height: 936px;
|
|
}
|
|
|
|
#bottom {
|
|
bottom: 0;
|
|
width: 100%;
|
|
height: 72px;
|
|
background-color: rgba(255, 255, 255, 0.5);
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-direction: row;
|
|
flex-wrap: nowrap;
|
|
gap: 5em;
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
#bottom > span {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-content: center;
|
|
overflow: hidden;
|
|
}
|
|
|
|
#bottom > span > svg {
|
|
margin-right: 5px;
|
|
width: 25px;
|
|
}
|
|
|
|
.texte_anime {
|
|
animation: devoilement;
|
|
animation-duration: 20s;
|
|
animation-iteration-count: infinite;
|
|
}
|
|
|
|
@keyframes devoilement {
|
|
from {
|
|
transform: translateX(-100%);
|
|
opacity: 0;
|
|
}
|
|
10% {
|
|
opacity: 1;
|
|
transform: translateX(0);
|
|
}
|
|
95%{
|
|
opacity: 1;
|
|
}
|
|
to{
|
|
opacity: 0;
|
|
}
|
|
} |