1039 lines
25 KiB
CSS
Executable File
1039 lines
25 KiB
CSS
Executable File
@font-face {
|
|
font-family: 'Helvetica Rounded';
|
|
src: url('Helvetica Rounded Bold.otf') format('opentype');
|
|
|
|
}
|
|
|
|
|
|
|
|
body, body *, [ng-click], .button, a, button {
|
|
cursor: none !important;
|
|
}
|
|
|
|
body.show-cursor, body.show-cursor * {
|
|
cursor: auto !important;
|
|
}
|
|
|
|
.show-cursor {
|
|
cursor: auto;
|
|
/* Mostra o cursor quando a classe é aplicada */
|
|
}
|
|
|
|
html,
|
|
body {
|
|
/* width: 1080px;
|
|
height: 1920px; */
|
|
}
|
|
|
|
p.question {
|
|
font-family: 'Helvetica Rounded';
|
|
font-size: 3em;
|
|
line-height: normal;
|
|
margin: 0 10vw 40px 10vw;
|
|
color: #fff;
|
|
font-weight: bolder;
|
|
text-align: left;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.container-buttons {
|
|
display: flex;
|
|
flex-direction: column;
|
|
/* margin: 10vw; */
|
|
}
|
|
|
|
.quiz-button {
|
|
display: flex;
|
|
width: auto;
|
|
margin: 0vw 6vw 32px 6vw;
|
|
}
|
|
|
|
* {
|
|
font-family: Inter !important;
|
|
}
|
|
|
|
|
|
.logo {
|
|
display: block;
|
|
width: 70%;
|
|
height: auto;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.footer img {
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 80%;
|
|
margin-left: 10%;
|
|
}
|
|
|
|
|
|
.left-side {
|
|
background-color: #3498db;
|
|
background-color: #823F38;
|
|
/* Azul */
|
|
color: #fff;
|
|
padding: 20px;
|
|
box-sizing: border-box;
|
|
width: 20%;
|
|
/* Ajuste conforme necessário */
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
border-radius: 20px 0 0px 20px;
|
|
animation: fade-in 0.8s 0.5s forwards cubic-bezier(0.11, 0, 0.5, 0);
|
|
opacity: 0;
|
|
}
|
|
|
|
.left-side h1 {
|
|
font-family: "Helvetica Rounded";
|
|
font-weight: bolder;
|
|
font-size: 4em;
|
|
color: #fff;
|
|
}
|
|
|
|
.right-side {
|
|
background-color: #fff;
|
|
/* Branco */
|
|
padding: 20px;
|
|
box-sizing: border-box;
|
|
width: 80%;
|
|
/* Ajuste conforme necessário */
|
|
border-radius: 0px 20px 20px 0px;
|
|
line-height: initial;
|
|
font-family: "Helvetica Rounded";
|
|
font-size: 2.5em;
|
|
color: #333;
|
|
display: flex;
|
|
align-items: center;
|
|
animation: fade-in 0.8s 0.5s forwards cubic-bezier(0.11, 0, 0.5, 0);
|
|
opacity: 0;
|
|
align-content: center;
|
|
justify-content: flex-start;
|
|
flex-wrap: nowrap;
|
|
padding-top: 0px;
|
|
padding-bottom: 0;
|
|
}
|
|
|
|
|
|
@keyframes fade-in {
|
|
0% {
|
|
opacity: 0;
|
|
}
|
|
|
|
100% {
|
|
opacity: 1;
|
|
/* filter: blur(0); */
|
|
}
|
|
}
|
|
|
|
|
|
.resposta-incorreta .right-side {
|
|
background-color: #ef473a;
|
|
color: #fff;
|
|
}
|
|
|
|
.resposta-correta .left-side {
|
|
background-color: #24a82f;
|
|
color: #fff;
|
|
}
|
|
|
|
.resposta-correta .right-side {
|
|
background-color: #2c7515;
|
|
color: #fff;
|
|
}
|
|
|
|
.resposta-incorreta .left-side {
|
|
background-color: #a82d24;
|
|
color: #fff;
|
|
}
|
|
|
|
.has-header {
|
|
top: 0px !important;
|
|
width: 100%;
|
|
}
|
|
|
|
.bar-stable {
|
|
display: none;
|
|
}
|
|
|
|
.resposta-texto {
|
|
/* height: 1em; */
|
|
}
|
|
|
|
#transition.resposta-correta {
|
|
background-color: #4CAF50;
|
|
/* Verde para resposta correta */
|
|
color: white;
|
|
}
|
|
|
|
#transition.resposta-incorreta {
|
|
background-color: #f44336;
|
|
/* Vermelho para resposta incorreta */
|
|
color: white;
|
|
}
|
|
|
|
|
|
#transition {
|
|
z-index: 9999;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: #4CAF50;
|
|
--transition__duration: 0.5s;
|
|
--transition__easing: ease-in-out;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-weight: bold;
|
|
font-family: "Helvetica Rounded";
|
|
font-size: 5em;
|
|
color: #fff;
|
|
}
|
|
|
|
.pontos {
|
|
width: 100%;
|
|
height: 100%;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-content: center;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.pontos p {
|
|
line-height: 2em;
|
|
}
|
|
|
|
.pontos img {
|
|
width: 70%;
|
|
border-radius: 0.5em;
|
|
box-shadow: 0.2em 0.2em rgba(0, 0, 0, 30%);
|
|
border: 0.075em solid #ffffff
|
|
}
|
|
|
|
|
|
.area {
|
|
background: #4e54c8;
|
|
background-color: #707f20;
|
|
background: -webkit-linear-gradient(to left, #8f94fb, #4e54c8);
|
|
width: 100%;
|
|
height: 100vh;
|
|
|
|
|
|
}
|
|
|
|
.circles {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
color: #ffffff;
|
|
text-align: center;
|
|
font-family: "Helvetica Rounded";
|
|
}
|
|
|
|
.circles li {
|
|
position: absolute;
|
|
display: block;
|
|
list-style: none;
|
|
width: 20px;
|
|
height: 20px;
|
|
background: rgba(255, 255, 255, 0.2);
|
|
animation: animate 25s linear infinite;
|
|
bottom: -150px;
|
|
|
|
}
|
|
|
|
.circles li:nth-child(1) {
|
|
left: 25%;
|
|
width: 80px;
|
|
height: 80px;
|
|
animation-delay: 0s;
|
|
font-size: 60px;
|
|
line-height: 80px;
|
|
}
|
|
|
|
|
|
.circles li:nth-child(2) {
|
|
left: 10%;
|
|
width: 20px;
|
|
height: 20px;
|
|
animation-delay: 2s;
|
|
animation-duration: 12s;
|
|
font-size: 15px;
|
|
line-height: 20px;
|
|
}
|
|
|
|
.circles li:nth-child(3) {
|
|
left: 70%;
|
|
width: 20px;
|
|
height: 20px;
|
|
animation-delay: -20s;
|
|
font-size: 15px;
|
|
line-height: 20px;
|
|
}
|
|
|
|
.circles li:nth-child(4) {
|
|
left: 40%;
|
|
width: 60px;
|
|
height: 60px;
|
|
animation-delay: 0s;
|
|
animation-duration: 18s;
|
|
font-size: 50px;
|
|
line-height: 60px;
|
|
}
|
|
|
|
.circles li:nth-child(5) {
|
|
left: 65%;
|
|
width: 20px;
|
|
height: 20px;
|
|
animation-delay: 0s;
|
|
font-size: 15px;
|
|
line-height: 20px;
|
|
}
|
|
|
|
.circles li:nth-child(6) {
|
|
left: 75%;
|
|
width: 110px;
|
|
height: 110px;
|
|
animation-delay: -7s;
|
|
font-size: 85px;
|
|
line-height: 110px;
|
|
}
|
|
|
|
.circles li:nth-child(7) {
|
|
left: 35%;
|
|
width: 150px;
|
|
height: 150px;
|
|
animation-delay: 7s;
|
|
font-size: 120px;
|
|
line-height: 150px;
|
|
}
|
|
|
|
.circles li:nth-child(8) {
|
|
left: 50%;
|
|
width: 25px;
|
|
height: 25px;
|
|
animation-delay: -10s;
|
|
animation-duration: 45s;
|
|
font-size: 20px;
|
|
line-height: 25px;
|
|
}
|
|
|
|
.circles li:nth-child(9) {
|
|
left: 20%;
|
|
width: 15px;
|
|
height: 15px;
|
|
animation-delay: -2s;
|
|
animation-duration: 35s;
|
|
font-size: 10px;
|
|
line-height: 15px;
|
|
}
|
|
|
|
.circles li:nth-child(10) {
|
|
left: 85%;
|
|
width: 150px;
|
|
height: 150px;
|
|
animation-delay: -4s;
|
|
animation-duration: 11s;
|
|
font-size: 120px;
|
|
line-height: 150px;
|
|
}
|
|
|
|
.circles li:nth-child(11) {
|
|
left: 50%;
|
|
width: 25px;
|
|
height: 25px;
|
|
animation-delay: 10s;
|
|
animation-duration: 45s;
|
|
font-size: 20px;
|
|
line-height: 25px;
|
|
}
|
|
|
|
.circles li:nth-child(12) {
|
|
left: 50%;
|
|
width: 55px;
|
|
height: 55px;
|
|
animation-delay: -20s;
|
|
animation-duration: 45s;
|
|
font-size: 45px;
|
|
line-height: 55px;
|
|
}
|
|
|
|
@keyframes animate {
|
|
|
|
0% {
|
|
transform: translateY(0) rotate(0deg);
|
|
opacity: 0.25;
|
|
border-radius: 0;
|
|
}
|
|
|
|
|
|
|
|
100% {
|
|
transform: translateY(-100vh) rotate(720deg);
|
|
opacity: 0;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
}
|
|
|
|
.trophy2 {
|
|
width: 70%;
|
|
overflow-x: hidden;
|
|
display: flex;
|
|
justify-content: center;
|
|
border: 9px solid white;
|
|
border-radius: 35px;
|
|
box-shadow: 9px 9px 5px #00000053;
|
|
margin-bottom: 20px;
|
|
;
|
|
}
|
|
|
|
.backwrap {
|
|
background: #113243;
|
|
/* Old browsers */
|
|
background-image: url("data:image/png;base64,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");
|
|
background-repeat: no-repeat;
|
|
background-size: 100% 100%;
|
|
width: 100%;
|
|
height: 100%;
|
|
position: fixed;
|
|
left: 0;
|
|
top: 0;
|
|
z-index: 1;
|
|
}
|
|
|
|
.cube {
|
|
position: absolute;
|
|
top: 80vh;
|
|
left: 45vw;
|
|
width: 10px;
|
|
height: 10px;
|
|
border: solid 1px #ffffff55;
|
|
transform-origin: top left;
|
|
transform: scale(0) rotate(0deg) translate(-50%, -50%);
|
|
-webkit-animation: cube 12s ease-in forwards infinite;
|
|
animation: cube 12s ease-in forwards infinite;
|
|
}
|
|
|
|
/* .cube:nth-child(2n) {
|
|
border-color: #eeeeee55;
|
|
}
|
|
|
|
.cube:nth-child(2n) {
|
|
-webkit-animation-delay: 2s;
|
|
animation-delay: 2s;
|
|
left: 25vw;
|
|
top: 40vh;
|
|
}
|
|
|
|
.cube:nth-child(3n) {
|
|
-webkit-animation-delay: 4s;
|
|
animation-delay: 4s;
|
|
left: 75vw;
|
|
top: 50vh;
|
|
}
|
|
|
|
.cube:nth-child(4n) {
|
|
-webkit-animation-delay: 6s;
|
|
animation-delay: 6s;
|
|
left: 90vw;
|
|
top: 10vh;
|
|
}
|
|
|
|
.cube:nth-child(5n) {
|
|
-webkit-animation-delay: 8s;
|
|
animation-delay: 8s;
|
|
left: 10vw;
|
|
top: 85vh;
|
|
}
|
|
|
|
.cube:nth-child(6n) {
|
|
-webkit-animation-delay: 10s;
|
|
animation-delay: 10s;
|
|
left: 50vw;
|
|
top: 10vh;
|
|
} */
|
|
|
|
@-webkit-keyframes cube {
|
|
from {
|
|
transform: scale(0) rotate(0deg) translate(-50%, -50%);
|
|
opacity: 1;
|
|
}
|
|
|
|
to {
|
|
transform: scale(20) rotate(960deg) translate(-50%, -50%);
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
@keyframes cube {
|
|
from {
|
|
transform: scale(0) rotate(0deg) translate(-50%, -50%);
|
|
opacity: 1;
|
|
}
|
|
|
|
to {
|
|
transform: scale(20) rotate(960deg) translate(-50%, -50%);
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
/* Shapes & Animation
|
|
*/
|
|
.back-shapes {
|
|
width: 100%;
|
|
height: 100%;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.back-shapes img {
|
|
opacity: 0.2;
|
|
position: absolute;
|
|
width: 1.5%;
|
|
}
|
|
|
|
.floating {
|
|
position: absolute;
|
|
animation-name: floating;
|
|
-webkit-animation-name: floating;
|
|
animation-duration: 5s;
|
|
-webkit-animation-duration: 5s;
|
|
animation-iteration-count: infinite;
|
|
-webkit-animation-iteration-count: infinite;
|
|
}
|
|
|
|
.floating.circle {
|
|
display: inline-block;
|
|
width: 39px;
|
|
height: 39px;
|
|
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAYAAACMo1E1AAAABHNCSVQICAgIfAhkiAAAA0pJREFUWIXdmL1O40AQx8fZ5BxQCqRrLqKxqKjAOl0JvMHxBIjHyCu4dGkJ+khpQNa9QeTyZIkihbtYCKWwbC1KFXbtvYJxbrIYMOBD1o20UhDe//x2dnb2w1BKQVut25SQYRhG+Vs1NGLjvToI0yHNwKawFWV7L+yb4AhQFwC6QRB8tyzrxDTN3V6vN2SMfc3zPBVCLFar1d18Pp8eHR2FACCxvQ1UKfVqg8eIMADo+75/kKbphRDiVtUwIcRtmqYXvu8fAEAfdYxafmuC9TzPs5IkuSyK4qEOlG5FUTwkSXLpeZ4FAL06gHXA+mEYnkops1f851LKe6VU/tJHUsosDMNTjOKLgK+CxXE8KopCVDjhWZZNZrPZ2Xg83rdtewcABrZt74zH4/3ZbHaWZdlESskroijiOB69BvgSmBnH8ahq9JzzK8dxLBTvweZqLRdNDwD6juNYnPOrKh0ENJ8DfDbHwjA81SMmpUyiKDoHgO06iU0W0nYURedSykSPIE5xZQ5WCTLP8yw9x5bL5dR13b26yVw1YNd195bL5VQbcIaLhL0IV+ZZkiSXesQQrPtWME2767runh7BJEkuq/LvSdR83z/QywVO5Zf3gmmAX6IoOtem9wHr4Eb09M5mmqYXtCPn/AoAtgCg8xEw4qMDAFv6IknT9AIAzEo4HNWAVn4pJcdV+SQfPgjIHMexaJkRQtwCwIDOzkaHIAiO6WiyLJvUKZbvnN5+lmUT6i8IgmMaiA7ZZpllWSd0310sFr8AIFeo2JShXo76a0P/rPybwhmmae7Sj29ubn4DQN4kGLEc9deG/tfnwo0wc86vSZRz3JIanVI6tbZt7yiyF3POr4Gk0QYcLZBSynvQEvQf5N0ADwtKqcdCT+HotEKe52n5mzE2sG27sWN8ldm23WWMDar8A2DOYYIqIcSC/m80Gn0DmgPNmoH66wChf1UuQBo5tVqt7mjvw8PDH0BWT8PGUH9t6H9dGShcPp/Pp/Tj4XD4EwAYvVk1YajHUH9t6P9vddATtJU7BHZq595ajqjNp5L2nufK6LXyJEyFWnmHIKLtu31pgO27t+qArbvxa4DteyvRAD/9lanV73P/z8tmDVgAaMGb8GfYHwpq7kYvpXclAAAAAElFTkSuQmCC");
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
background-position: center center;
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.floating.square {
|
|
display: inline-block;
|
|
width: 35px;
|
|
height: 35px;
|
|
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAjCAYAAAAe2bNZAAAABHNCSVQICAgIfAhkiAAAAUNJREFUWIXt2DFugzAUBuD/EVMGJMyQsZ3aA+QQ3ZjrIzKQgYWD5ACVOjRjBkBiSHF4XRJEIzmBCgiD/83Ysj9ZxrJNzIylRHQLREQAaMbxmTuz0WKUUk9Zlj0XRbHSWk8OEkKwlPKklNonSfLTYojISdP0JYqiz6kR16nr+o2Ivpi5cS4fy7JczQ25Hte51XDuCFOF1vpQVdWOiEb73ZiZfN/fCCHWgzBVVe3CMPwAcAQwBogAeHmeb6WU74Mw5xk5jozBrZk2Yjr5sxf8W0L3d4tFLWCLMcViTLEYUyzGFIsxxWJMsRhTFoXpc7iiPgejPv3ca2DEMDMB8C7FkTDeud9hGN/3N3meb6e4HQzGCCHWplP8VFnUAm4xQRCcHgHojisAgJkbpdS367qvc79CxHG8Z+YGAKh7JXr0+wwt6eXqFzNGfAM6wJFPAAAAAElFTkSuQmCC");
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
background-position: center center;
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.floating.triangle {
|
|
display: inline-block;
|
|
width: 35px;
|
|
height: 35px;
|
|
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACkAAAAjCAYAAAAJ+yOQAAAABHNCSVQICAgIfAhkiAAABARJREFUWIXNVj2IGlsU/sa/3XWDRWCICyFNTF4Rq7AQSJUmiKRN2rAuBlKlM03gRV4lj9hYmSLwigQMCA9iZcAmNrIpDLurNiNKoiiODE+HmXXezNz7ird3ubvPdf17cQ9MMXfunPud75zvniNQSnHZzbFqANPYUkEKguDY3t52C4Kw3OAppUt5ADjC4bBP1/U/w+GwD4Bjab6XBFAAsNZqtV5RSmmr1XoFYA2AcJlAOlOp1E3btgeUUmrb9iCVSt0E4LwUII9Z3FAU5T3lTFGU9wA2lsHmMkC6isXiA0qpTU+bXSwWHwBwrRQk/r0dNnVd/0rHmK7rXwFsLiqiRUF66vX6cx7Y0dGRxL/X6/XnADwrAQnAEYvF/KZpdhkgwzB+7O7u/mIYxg+2ZppmNxaL+Rdhc16AAoD1Xq+X4lmr1Wo7ADZrtdoOv97r9VIA1ucV0bwgnblc7i4hxGBANE0rHtefE8CmpmlF9o0QYuRyubvzXklzpRmAV1XVzxwIq1Ao3GdKBuAqFAr3CSEW26Oq6mcA3nnSPg9Id6VSecKns9/vv+PTycqh3++/4/dVKpUnANz/K0gAjlAodNUwjBMFW5alJBKJG2cZAuBIJBI3LMtS2F7DMKRQKHR1VjZnFctau91+zbPTbDZj510xADzNZjPG72+3269n7esziSWdTt+ybVtlB45Go0ogEDh34gHgCAQCvtFoVGH/2LatptPpW7OIaBYWNxRF+cizUi6XH13U9gC4yuXyI/4/RVE+ztLXpwXpKpVKDymlhB00GAw+TXMQC3AwGHzicJJSqfRw2r4+lVhEUbyi6/q3kxMIOcpkMsFpUwbAmclkgoSQI+ZD1/VvoihemUZE0xzgaTQaL/h0dTqdN7MUPxNdp9N5w/tpNBovpunrF7IYj8evW5YlM8emabaj0ei1ma8RwBGNRq+ZptlmvizLkuPx+PWLfF0U/bosy2/56CVJejbvVAPAI0nSM96fLMtvL+rrE8WSz+fvEUJM5lDTtL1F5kM2f2qatsd8EkLMfD5/b5KIJjpTVfULF/RSJu1xk7yqql8mBX+eI3e1Wn3Kp0VRlA+z3G0TQLI79wPvv1qtPj2vr49lMRKJiIZhfD+h0LaHyWTyNgDP8Si26ONJJpO3bdsesjMMw/geiUTEcWyyqQUAIAiCAMDT6XR+8/v9L9m6LMvZw8PDP3w+n4kl2XA4dAeDwR1RFB+ztW63+/vW1tavAP6mPLAzLDqz2ewdQohOV2CEED2bzd7BmSbxn1o5075+uo1rt6dYlCQpvEqAzCRJCvNsurgyIfv7+3sHBwcBXdcdlmUJy6q/ac3lclGv10sopX8BIGx9nHB+OrgxRikH7BTIy2r/AAlu0j5Iy8AaAAAAAElFTkSuQmCC");
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
background-position: center center;
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.floating.cross {
|
|
display: inline-block;
|
|
width: 35px;
|
|
height: 35px;
|
|
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACUAAAAlCAYAAADFniADAAAABHNCSVQICAgIfAhkiAAAAgJJREFUWIXN2MFO4zAQBuDfbSpaiUOvvTRS3w6EoEChwAvsZS9IvAnwOK5rV5V7Se8cNrOHNVXWpMk4caEj5dDInvkySeMkgohwbNH5aUBZJP4OIYQA0HU//9ABWllXo+MN7gDobzab+/V6fQbgxCWIDTqx1k6ttdPSGkQEBxUABsaYJ/oXuZTyGkAfgPgc12ZzNfpa6zkR5USUa63nfo3ihMRae0f/Ry6lvIkBKwHtalhrZwCSz7H+hU5u23V7Mpn8llKel7Y58JRpra/G4/EvB9wfjCMhIsoXi8Vtk47V5a08fZwEy+UyCNYE9AUVE9YUVIpiwmZVsDagvag2sLagShQTdlcsEANUiwqEJTFALBSzA/cAhjFAbBQHlmXZWwxQEIoB86MRKBhVgA2UUg8VsFwp9QBgEApqhHKwLoBhlmXvZaLtdvsKYAig2yj/ATs1/5ZOhV5T/n0sOorx73sv298EFgXk/mV771N1a2UwKmDpqLyjh8BigVhrH/uxJxaIO48Diwrizq97tI4O4uapeks6CKgt7GAgbl6l1NTPW5ycWGtnMUFc2Gq1ukTFy6gfZIx5TNP0GcAHuQqh4eZ9pGn6bIx5hPfC2+v1Tv0J+46mdYc4HTPGPMFbuEXx4AtfRC4AYDQavbTpUFl4NUShRr4b49c7hu9TX1DHEEf5efEvSKr5qd+QqggAAAAASUVORK5CYII=");
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
background-position: center center;
|
|
opacity: 0.5;
|
|
}
|
|
|
|
@keyframes floating {
|
|
0% {
|
|
transform: translateY(0%) rotate(-55deg);
|
|
}
|
|
|
|
50% {
|
|
transform: translateY(300%) rotate(55deg);
|
|
}
|
|
|
|
100% {
|
|
transform: translateY(0%) rotate(-55deg);
|
|
}
|
|
}
|
|
|
|
@-webkit-keyframes floating {
|
|
0% {
|
|
-webkit-transform: translateY(0%);
|
|
}
|
|
|
|
50% {
|
|
-webkit-transform: translateY(300%);
|
|
}
|
|
|
|
100% {
|
|
-webkit-transform: translateY(0%);
|
|
}
|
|
}
|
|
|
|
@keyframes move-it {
|
|
0% {
|
|
background-position: initial;
|
|
}
|
|
|
|
100% {
|
|
background-position: 100px 0px;
|
|
}
|
|
}
|
|
|
|
.bglines {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: repeating-linear-gradient(45deg,
|
|
#ffffff00,
|
|
#ffffff20 5%,
|
|
#00000040 5%,
|
|
#00000066 10%);
|
|
background-size: 100px 100px;
|
|
animation: move-it 2s linear infinite;
|
|
}
|
|
|
|
.starburst {
|
|
--stripe1: #503dca;
|
|
--stripe2: #705ee7;
|
|
position: fixed;
|
|
top: -68%;
|
|
left: 50%;
|
|
translate: -50%;
|
|
width: 4000px;
|
|
height: 4000px;
|
|
position: fixed;
|
|
animation: spin 40s linear infinite;
|
|
background-image: radial-gradient(rgba(255, 255, 255, 0.5), rgba(0, 0, 0, 0.5)), conic-gradient(var(--stripe1) 0%, var(--stripe1) 5%, var(--stripe2) 5%, var(--stripe2) 10%, var(--stripe1) 10%, var(--stripe1) 15%, var(--stripe2) 15%, var(--stripe2) 20%, var(--stripe1) 20%, var(--stripe1) 25%, var(--stripe2) 25%, var(--stripe2) 30%, var(--stripe1) 30%, var(--stripe1) 35%, var(--stripe2) 35%, var(--stripe2) 40%, var(--stripe1) 40%, var(--stripe1) 45%, var(--stripe2) 45%, var(--stripe2) 50%, var(--stripe1) 50%, var(--stripe1) 55%, var(--stripe2) 55%, var(--stripe2) 60%, var(--stripe1) 60%, var(--stripe1) 65%, var(--stripe2) 65%, var(--stripe2) 70%, var(--stripe1) 70%, var(--stripe1) 75%, var(--stripe2) 75%, var(--stripe2) 80%, var(--stripe1) 80%, var(--stripe1) 85%, var(--stripe2) 85%, var(--stripe2) 90%, var(--stripe1) 90%, var(--stripe1) 95%, var(--stripe2) 95%, var(--stripe2) 100%);
|
|
background-size: 4000px 4000px;
|
|
background-position: 50% 50%;
|
|
background-attachment: fixed;
|
|
background-repeat: no-repeat;
|
|
z-index: -100;
|
|
}
|
|
|
|
.bigVictory {
|
|
--stripe1: #ca713d;
|
|
--stripe2: #e7d95e;
|
|
}
|
|
|
|
div#victory {
|
|
z-index: 200;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
#gide {
|
|
width: 70%;
|
|
position: absolute;
|
|
top: 40px;
|
|
}
|
|
|
|
#victory img.banner {
|
|
width: 90%;
|
|
height: auto;
|
|
margin: 0;
|
|
padding: 0;
|
|
margin-top: -72px;
|
|
}
|
|
|
|
img#trophy {
|
|
z-index: 9999;
|
|
position: relative;
|
|
width: 50vw;
|
|
transform: translateY(0%);
|
|
}
|
|
|
|
.resultado,
|
|
.resultado h1 {
|
|
font-family: "Helvetica Rounded" !important;
|
|
font-size: 3em;
|
|
color: #ecdf24;
|
|
text-align: center;
|
|
line-height: 330px;
|
|
}
|
|
|
|
.resultado p {
|
|
color: #fff;
|
|
margin-top: -440px;
|
|
font-size: 1.5em;
|
|
}
|
|
|
|
.resultado .shadow {
|
|
margin: -150px;
|
|
color: transparent;
|
|
text-shadow: 0 0 15px #00000080;
|
|
line-height: 101px;
|
|
z-index: -1;
|
|
position: relative;
|
|
|
|
text-shadow: 0 0 15px #00000080, 0 0 25px #000000ff;
|
|
-webkit-text-stroke: 5px #ffffffd0;
|
|
}
|
|
|
|
.resultado h1 {
|
|
letter-spacing: -5px;
|
|
font-size: 150px;
|
|
font-weight: bold;
|
|
/* background-image: linear-gradient(to right, #7e7314 0, #cb9b51 22%, #f6e27a 45%, #b8b04a 50%, #f6e27a 55%, #cb9b51 78%, #61491d 100%); */
|
|
background-color: #e9663e;
|
|
color: transparent;
|
|
line-height: 180px;
|
|
-webkit-background-clip: text;
|
|
background-clip: text;
|
|
}
|
|
|
|
|
|
@keyframes spin {
|
|
from {
|
|
transform: rotate(0deg);
|
|
}
|
|
|
|
to {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
.restart {
|
|
width: 40vw;
|
|
font-family: "Helvetica Rounded";
|
|
text-align: center;
|
|
padding: 40px;
|
|
background-color: #ffffff;
|
|
color: #333333;
|
|
border-radius: 50px;
|
|
font-size: 6em;
|
|
position: fixed;
|
|
bottom: 7vh;
|
|
animation: fade-in 2s 10s ease-out 1 forwards;
|
|
opacity: 0;
|
|
}
|
|
|
|
div#initTransition {
|
|
width: 100%;
|
|
height: 100%;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
background-color: #fcc450;
|
|
z-index: 9998;
|
|
animation-duration: 1s;
|
|
display: flex;
|
|
align-content: center;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
#initTransition img {
|
|
width: 100%;
|
|
}
|
|
|
|
|
|
#initTransition .bglines {
|
|
background: repeating-linear-gradient(00deg, #ffffff00, #ffffff20 0.5vh, #00000040 1.5vh, #00000066 2vh);
|
|
animation-name: move-it2;
|
|
}
|
|
|
|
@keyframes move-it2 {
|
|
0% {
|
|
background-position: initial;
|
|
}
|
|
|
|
100% {
|
|
background-position: 00px 6vh;
|
|
}
|
|
}
|
|
|
|
div#lose {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
#lose .area {
|
|
background-color: #7e2626;
|
|
}
|
|
|
|
@keyframes swing {
|
|
20% {
|
|
transform: rotate(15deg);
|
|
}
|
|
|
|
40% {
|
|
transform: rotate(-10deg);
|
|
}
|
|
|
|
60% {
|
|
transform: rotate(5deg);
|
|
}
|
|
|
|
80% {
|
|
transform: rotate(-5deg);
|
|
}
|
|
|
|
100% {
|
|
transform: rotate(0deg);
|
|
}
|
|
}
|
|
|
|
lottie-player {}
|
|
|
|
div#lose {
|
|
display: flex;
|
|
align-content: center;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.area {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
font-family: "Helvetica Rounded";
|
|
}
|
|
|
|
#lose h1 {
|
|
font-size: 10em;
|
|
font-family: "Helvetica Rounded";
|
|
color: #e7c113;
|
|
text-shadow: 4px 5px 4px black;
|
|
letter-spacing: -0.02em;
|
|
}
|
|
|
|
#lose p {
|
|
font-size: 4em;
|
|
line-height: 0.75em;
|
|
color: #fff;
|
|
}
|
|
|
|
lottie-player {
|
|
width: 500px;
|
|
height: 500px;
|
|
margin-bottom: -60px;
|
|
}
|
|
|
|
#lose img {
|
|
margin: -260px;
|
|
z-index: 9;
|
|
}
|
|
|
|
div#page-container2 {
|
|
position: absolute;
|
|
width: 100%;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
}
|
|
|
|
p.pontosTotal.ng-binding {
|
|
font-size: 4em;
|
|
margin-top: -240px;
|
|
font-weight: 900;
|
|
color: #f8ff00;
|
|
text-shadow: 2px 2px 2px #000, -2px -2px 2px black, 2px -2px 2px black, -2px 2px 2px black;
|
|
letter-spacing: -5px;
|
|
}
|
|
|
|
div#page-container1 {
|
|
height: 27%;
|
|
display: flex;
|
|
align-content: center;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
|
|
div#start {
|
|
z-index: 50;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
background-color: #222263;
|
|
background-color: #48530e;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-wrap: nowrap;
|
|
align-content: center;
|
|
justify-content: center;
|
|
align-items: center;
|
|
animation-duration: 1.5s;
|
|
}
|
|
|
|
.logoStart img {
|
|
width: 100vw;
|
|
height: auto;
|
|
position: fixed;
|
|
left: 0;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
}
|
|
|
|
.headerStart {
|
|
position: relative;
|
|
top: 0;
|
|
width: 100%;
|
|
height: 50%;
|
|
display: flex;
|
|
color: #ffffff;
|
|
font-family: "helvetica rounded";
|
|
flex-direction: column;
|
|
align-content: center;
|
|
justify-content: center;
|
|
align-items: center;
|
|
margin-top: -110px;
|
|
margin-bottom: 110px;
|
|
}
|
|
|
|
|
|
|
|
#start .regras {
|
|
text-align: center;
|
|
font-size: 5em;
|
|
color: #ffe12b;
|
|
line-height: 2em;
|
|
}
|
|
|
|
#start .footerStart {
|
|
position: relative;
|
|
top: 0;
|
|
width: 100%;
|
|
height: 50%;
|
|
color: #ffffff;
|
|
font-family: "helvetica rounded";
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-wrap: nowrap;
|
|
align-content: center;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
#start span {
|
|
text-align: center;
|
|
width: 80%;
|
|
position: relative;
|
|
font-size: xxx-large;
|
|
line-height: 1.5em;
|
|
}
|
|
|
|
.footerStart h1 {
|
|
font-size: 5em;
|
|
font-family: "helvetica Rounded";
|
|
width: 85%;
|
|
text-align: center;
|
|
color: #f8d600;
|
|
line-height: 1em;
|
|
}
|
|
|
|
html.play {
|
|
rotate: 90deg;
|
|
position: fixed;
|
|
top: -50vw;
|
|
left: -50vh;
|
|
width: 100vh;
|
|
height: 100vw;
|
|
transform: translate(50vh, -50vw);
|
|
}
|
|
|
|
div#lose {
|
|
width: 100vh;
|
|
height: 100vw;
|
|
}
|
|
|
|
.area {
|
|
width: 100vh;
|
|
height: 100vw;
|
|
background: linear-gradient(0deg, rgb(0 117 104) 0%, rgb(54 102 144) 100%);
|
|
}
|
|
|
|
div#start {
|
|
width: 100vh;
|
|
height: 100vw;
|
|
background: linear-gradient(0deg, rgb(88, 9, 87) 0%, #903aa5 50%, rgb(145, 68, 126) 100%);
|
|
}
|
|
|
|
.logoStart img {
|
|
width: 100%;
|
|
}
|
|
|
|
#lose .area {
|
|
|
|
background: none;
|
|
background-color: #7e2626;
|
|
}
|
|
|
|
.left-side {
|
|
background-color: #7A6E0D;
|
|
}
|
|
|
|
.bigVictory {
|
|
--stripe1: #3798bd;
|
|
--stripe2: #af15d5;
|
|
}
|
|
|
|
.cube img {
|
|
width: 200%;
|
|
height: 200%;
|
|
position: absolute;
|
|
left: -50%;
|
|
top: -50%;
|
|
opacity: 0.25;
|
|
}
|
|
|
|
.cube {
|
|
border: none;
|
|
}
|
|
|
|
.circles li img {
|
|
width: 100%;
|
|
}
|
|
|
|
.circles li {
|
|
background: none;
|
|
}
|
|
|
|
img#gide {
|
|
width: 50%;
|
|
}
|
|
|
|
div#victory {
|
|
padding-top: 35%;
|
|
}
|
|
|
|
img#trophy {
|
|
width: 60vh;
|
|
}
|
|
|
|
.trophy2 {
|
|
margin-top: 13%;
|
|
} |