|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873 |
- .page-container {
- padding-bottom: 0;
- }
-
- .nav-header {
- button.list-button {
- margin-left: auto;
-
- .icon {
- width: 20px;
- height: 20px;
- fill: white;
- }
- }
- }
-
- .question-status {
- background-color: var(--ash-black);
- padding: 10px 0;
- display: block;
- width: 100%;
- overflow: auto;
- position: relative;
-
- .container {
- width: 100%;
- padding: 0 5%;
- white-space: nowrap;
- display: flex;
- flex-wrap: wrap;
- align-items: center;
- overflow: auto;
- }
-
- &::before {
- content: '';
- position: absolute;
- left: 0;
- top: 0;
- width: 10px;
- height: 100%;
- box-shadow: 10px 0px 10px 10px var(--ash-black);
- opacity: 0.8;
- background-color: var(--ash-black);
- }
-
- &::after {
- content: '';
- position: absolute;
- right: 0;
- top: 0;
- width: 10px;
- height: 100%;
- box-shadow: -10px 0px 10px 10px var(--ash-black);
- opacity: 0.8;
- background-color: var(--ash-black);
- }
-
- .question-number {
- width: 17px;
- height: 17px;
- background-color: var(--dark-grey);
- color: white;
- margin-right: 7px;
- border-radius: 50%;
- overflow: hidden;
- border: 1px solid var(--dark-grey);
- box-sizing: content-box;
-
- span {
- display: flex;
- width: 100%;
- height: 100%;
- align-items: center;
- justify-content: center;
- }
-
- label {
- font-size: 10px;
- }
-
- .icon {
- width: 100%;
- height: 100%;
- fill: white;
- display: none;
- }
-
- &.current {
- border-color: var(--light-grey);
- background-color: var(--black);
-
- &.correct {
- background-color: var(--green);
-
- .correct-icon {
- fill: var(--black);
- }
- }
-
- &.wrong {
- background-color: var(--danger-dark);
-
- .wrong-icon {
- fill: var(--black);
- }
- }
-
- .icon {
- fill: white;
- }
- }
-
- &.correct {
- border-color: var(--green);
- background-color: white;
-
- label {
- display: none;
- }
-
- .correct-icon {
- fill: var(--green);
- display: block;
- }
- }
-
- &.wrong {
- border-color: var(--danger-dark);
- background-color: white;
-
- label {
- display: none;
- }
-
- .wrong-icon {
- fill: var(--danger-dark);
- display: block;
- }
- }
- }
- }
-
- ngx-siema-slide {
- display: block;
- padding-bottom: 60px;
-
- .question {
- line-height: 1.5;
- color: white;
- font-size: 13px;
- background-color: var(--ash-black);
- padding: 0 5% 15px 5%;
- }
-
- .timer-holder {
- background-color: var(--black);
- height: 70px;
- display: flex;
- align-items: flex-end;
- justify-content: center;
- overflow: hidden;
- position: relative;
-
- &::before {
- content: '';
- width: 200vw;
- height: 100vw;
- border-radius: 50%;
- position: absolute;
- bottom: 25px;
- background-color: var(--ash-black);
- }
-
- .timer {
- width: 60px;
- height: 60px;
- border-radius: 50%;
- background-color: white;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 12px;
- font-weight: 600;
- position: relative;
- color: var(--ash-black);
-
- svg {
- position: absolute;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- transform: rotate(-90deg);
-
- #progress {
- stroke: var(--green);
- }
- }
- }
- }
- }
-
-
- .option-list {
- width: 90%;
- margin: 20px auto;
- list-style: none;
-
- li {
- display: flex;
- width: 100%;
- border: 1px solid var(--light-grey);
- color: white;
- border-radius: 15px;
- align-items: center;
- min-height: 50px;
- margin: 20px auto;
- justify-content: space-between;
- padding: 0 15px;
-
- label {
- font-size: 14px;
- }
-
- .icon-holder {
- width: 23px;
- height: 23px;
- border: 1px solid var(--light-grey);
- border-radius: 50%;
- overflow: hidden;
- display: flex;
- align-items: center;
- justify-content: center;
-
- .icon {
- width: 100%;
- height: 100%;
- fill: white;
- display: none;
- }
- }
-
- &.correct, &.show-correct {
- box-shadow: 0px 0px 5px var(--green);
- border-color: var(--green);
-
- label {
- color: var(--green);
- }
-
- .icon-holder {
- border-color: var(--green);
- background-color: white;
-
- .correct-icon {
- fill: var(--green);
- display: block;
- }
- }
- }
-
- &.wrong {
- box-shadow: 0px 0px 5px var(--danger-dark);
- border-color: var(--danger-dark);
-
- label {
- color: var(--danger-dark);
- }
-
- .icon-holder {
- border-color: var(--danger-dark);
- background-color: white;
-
- .wrong-icon {
- fill: var(--danger-dark);
- display: block;
- }
- }
- }
- }
- }
-
- .action-buttons {
- display: flex;
- width: 100%;
- position: fixed;
- align-items: stretch;
- bottom: 0;
- z-index: 1;
- background-color: var(--ash-black);
- padding: 10px;
- border-top-left-radius: 7px;
- border-top-right-radius: 7px;
- overflow: hidden;
-
- button {
- width: 48%;
- display: block;
- border-radius: 7px;
- border: 0px;
- height: 40px;
- background-color: transparent;
- text-transform: uppercase;
- letter-spacing: 1px;
- font-weight: 500;
- font-size: 14px;
-
- &.next-button {
- background-color: var(--teal);
- color: white;
- margin-left: auto;
-
- &.skip {
- background-color: var(--dark-grey);
- }
- }
-
- &.prev-button {
- border: 2px solid var(--teal);
- color: var(--teal);
- }
- }
- }
-
-
- .upfold {
- overflow: hidden;
- padding: 0px 5% 20px;
- height: 50vh;
- display: flex;
- align-items: flex-end;
- justify-content: center;
- background-color: var(--ash-black);
-
- .upfold-container {
- width: 100%;
- }
-
- figure {
- display: block;
- width: 100%;
-
- img {
- width: 150px;
- height: 150px;
- display: block;
- margin-left: auto;
- }
- }
-
- header {
- color: white;
- margin-top: -60px;
-
- img {
- display: block;
- width: 50px;
- height: 50px;
- margin: 0 0 10px;
- }
- }
-
- h3 {
- font-size: 22px;
- font-weight: 500;
- margin: 5px auto;
- }
-
- h2 {
- font-size: 30px;
- font-weight: 500;
- margin: 5px auto;
- }
-
- p {
- font-size: 16px;
- color: var(--light-grey);
- }
- }
-
- .quiz-details-holder {
- background-color: var(--ash-black);
- height: calc(50vh - 60px);
- }
-
- .quiz-details {
- height: 100%;
- width: 100%;
- padding: 25px 5% 80px 5%;
- background-color: white;
- border-top-right-radius: 30px;
- border-top-left-radius: 30px;
- position: relative;
-
- header {
- margin-bottom: 10px;
- p {
- font-size: 14px;
- margin: 0;
- color: var(--dark-grey);
- font-weight: 400;
- }
-
- h3 {
- font-size: 22px;
- font-weight: 500;
- margin: 5px auto;
- color: var(--teal-green);
- line-height: 1.1;
- }
- }
-
- .people-count {
- font-size: 14px;
- color: var(--danger-dark);
- }
-
- .play-button {
- display: block;
- position: absolute;
- bottom: 10px;
- left: 5%;
- width: 90%;
- border-radius: 30px;
- height: 45px;
- color: white;
- background: linear-gradient(180deg, var(--teal), var(--teal-green));
- border: 0px;
- font-size: 14px;
- letter-spacing: 1px;
- font-weight: 500;
- margin: 15px auto;
- }
- }
-
- .quiz-list-slideup {
- width: 100%;
- background-color: white;
- overflow: hidden;
- border-top-left-radius: 30px;
- border-top-right-radius: 30px;
- position: fixed;
- z-index: 1;
- bottom: 0;
- left: 0;
- transform: translateY(100vh);
- transition: transform 0.5s;
-
- &.active {
- transform: translateY(0vh);
- }
-
- &::before {
- content: '';
- position: absolute;
- width: 60px;
- height: 4px;
- border-radius: 30px;
- background-color: var(--light-grey);
- left: calc(50% - 30px);
- top: 20px;
- }
-
- header {
- color: var(--dark-grey);
- font-size: 16px;
- font-weight: 700;
- margin: 40px auto 10px;
- padding: 0 5%;
- display: flex;
- align-items: center;
- justify-content: space-between;
-
- button {
- border: 0px;
- background-color: var(--light-grey);
- border-radius: 5px;
- width: 30px;
- height: 30px;
-
- .icon {
- width: 10px;
- height: 10px;
- fill: white;
- }
- }
- }
-
- ul {
- list-style: none;
- max-height: 60vh;
- overflow: auto;
- padding-bottom: 40px;
- }
-
- li {
- display: flex;
- width: 90%;
- align-items: center;
- justify-content: space-between;
- margin: 0px auto;
- padding: 10px 0;
- position: relative;
- overflow: visible;
-
- .icon {
- z-index: 1;
- position: relative;
- width: 20px;
- height: 20px;
- fill: var(--light-grey);
- background-color: white;
- border-radius: 50%;
- display: none;
- }
-
- &.correct {
- .icon.correct-icon {
- fill: var(--green);
- display: block;
- }
-
- &::before {
- border-color: var(--green);
- }
- }
-
- &.wrong {
- .icon.wrong-icon {
- fill: var(--danger);
- display: block;
- }
-
- &::before {
- border-color: var(--danger);
- }
- }
-
- &.none {
- .icon.progress-icon {
- fill: var(--light-grey);
- display: block;
- }
-
- &::before {
- border-color: var(--light-grey);
- }
- }
-
- &.current {
- .icon.progress-icon {
- fill: var(--teal);
- animation: ripple 1.5s infinite;
- display: block;
- }
-
- &::before {
- border-color: var(--teal);
- }
- }
-
- &:last-child::before {
- display: none;
- }
-
- @keyframes ripple {
- 50% {
- box-shadow: 0px 0px 1px 10px transparent;
- }
- 0% {
- box-shadow: 0px 0px 1px 0px var(--teal);
- }
- }
-
- &::before {
- content: '';
- position: absolute;
- left: 8px;
- top: 50%;
- height: 100%;
- width: 1px;
- border-right: 1px dashed var(--light-grey);
- }
-
- .content-holder {
- width: calc(100% - 40px);
- display: flex;
- padding: 15px 15px;
- align-items: center;
- box-shadow: 1px 1px 5px var(--light-grey);
- border-radius: 7px;
- margin-left: auto;
- overflow: hidden;
-
- .content {
- flex-grow: 1;
- max-width: 100%;
- }
-
- .status {
- font-size: 14px;
- text-align: right;
- margin-left: auto;
- }
- }
-
- label {
- display: block;
- font-size: 14px;
- color: var(--dark-grey);
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- max-width: 100%;
- }
-
- p {
- font-size: 12px;
- color: var(--light-grey);
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- }
- }
-
- .end-upfold {
- background-image: url('https://mini.webtrigon.com/static-v1.1.0/home/images/png/pattern.png');
- background-size: cover;
- background-position: center;
- background-color: var(--ash-black);
- height: 50vh;
- display: flex;
- align-items: center;
- justify-content: center;
- }
-
- .end-upfold-container {
- width: 100%;
-
- .subject {
- color: var(--teal-green);
- letter-spacing: 1px;
- width: 90%;
- overflow: hidden;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- text-align: center;
- padding: 10px 20px;
- border-radius: 40px;
- position: relative;
- z-index: 0;
- margin: 0 auto 20px;
- font-size: 14px;
- font-weight: 400;
-
- &::before {
- content: '';
- position: absolute;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- background-color: var(--black);
- opacity: 0.6;
- }
-
- span {
- z-index: 1;
- position: relative;
- }
- }
-
- .rank-holder {
- width: 130px;
- height: 130px;
- margin: 25px auto 20px;
- border-radius: 50%;
- position: relative;
- display: flex;
- align-items: center;
- justify-content: center;
-
- &::before {
- content: '';
- position: absolute;
- left: 10%;
- top: 10%;
- width: 80%;
- height: 80%;
- background-color: var(--dark-grey);
- opacity: 0.5;
- z-index: 1;
- border-radius: 50%;
- }
-
- &::after {
- content: '';
- position: absolute;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- background-color: var(--black);
- opacity: 0.7;
- z-index: 0;
- border-radius: 50%;
- }
-
- label, span {
- z-index: 2;
- }
-
- label {
- color: white;
- position: absolute;
- top: -5px;
- left: calc(50% - 50px);
- width: 100px;
- height: 30px;
- display: flex;
- align-items: center;
- justify-content: center;
- border-radius: 30px;
- font-size: 14px;
- text-align: center;
- background-color: var(--teal-green);
- }
-
- span {
- font-weight: 500;
- color: white;
- font-size: 60px;
- }
- }
-
- p {
- font-size: 16px;
- color: white;
- margin-bottom: 20px;
- text-align: center;
- }
-
-
- .calculated-progress {
- height: 15px;
- width: 70%;
- margin: 0 auto;
- border-radius: 30px;
- overflow: hidden;
- position: relative;
- display: flex;
- align-items: stretch;
- justify-content: flex-start;
- background-color: white;
-
- .correct {
- background-color: var(--green);
- }
-
- .wrong {
- background-color: var(--danger-dark);
- }
-
- .none {
- background-color: rgba(orange, 0.8);
- }
- }
- }
-
- .answers-report-container {
- background-color: var(--ash-black);
- height: 50vh;
- }
-
- .answers-report {
- background-color: white;
- border-top-right-radius: 30px;
- border-top-left-radius: 30px;
- height: 100%;
- padding: 10px 0 20px;
- position: relative;
-
- ul {
- list-style: none;
- width: 100%;
- padding: 0 5%;
- margin: 0 auto;
- }
-
- li {
- border: 1px solid #cecece;
- border-radius: 5px;
- margin: 15px auto;
-
- &.correct {
- .count {
- color: var(--green);
- }
- }
-
- &.wrong {
- .count {
- color: var(--danger-dark);
- }
- }
-
- &.skipped {
- .count {
- color: rgba(orange, 0.8);
- }
- }
- }
-
- .content {
- display: flex;
- width: 100%;
- height: 40px;
- align-items: center;
- padding: 0 5%;
- justify-content: space-between;
- }
-
- label {
- font-size: 14px;
- color: var(--dark-grey);
- font-weight: 500;
- }
-
- .count {
- font-weight: 600;
- font-size: 16px;
- margin-left: auto;
-
- span {
- font-size: 13px;
- }
- }
-
- .icon {
- width: 12px;
- height: 12px;
- fill: var(--light-grey);
- transform: rotate(-45deg);
- }
-
- .answer-action-buttons {
- position: absolute;
- width: 100%;
- bottom: 20px;
- left: 0;
- padding: 0 5%;
- display: flex;
- align-items: stretch;
- justify-content: space-between;
-
- button {
- width: 48%;
- border: 0px;
- background-color: var(--light-grey);
- color: white;
- font-size: 14px;
- height: 40px;
- border-radius: 5px;
-
- &:last-child {
- background-color: var(--teal-green);
- }
- }
- }
- }
|