|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329 |
- .page {
- background-color: var(--black);
- height: 100vh;
- overflow: auto;
- }
-
- .nav-header {
- background-color: var(--ash-black);
- display: flex;
- align-items: center;
- padding: 0 5%;
- height: 60px;
- position: sticky;
- position: -webkit-sticky;
- top: 0;
- z-index: 1;
- box-shadow: 0px 0px 5px var(--black);
-
- .close-button {
- border: 0px;
- background-color: transparent;
- .icon {
- width: 16px;
- height: 16px;
- fill: var(--light-grey);
- }
- }
-
- h5 {
- font-size: 16px;
- color: white;
- font-weight: 400;
- margin-left: 20px;
- letter-spacing: 1px;
-
- .icon {
- width: 15px;
- height: 15px;
- fill: white;
- margin-right: 3px;
- vertical-align: middle;
- position: relative;
- top: -1px;
- }
- }
- }
-
- .question-status {
- background-color: var(--ash-black);
- padding: 10px 0% 5px;
- display: block;
- width: 100%;
- overflow: auto;
- margin-bottom: -10px;
- position: relative;
-
- .container {
- width: 100%;
- padding: 0 5%;
- white-space: nowrap;
- display: inline-block;
- 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;
- align-items: center;
- justify-content: center;
- display: inline-block;
- margin-right: 10px;
- 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);
-
- &.wrong {
- background-color: var(--danger-dark);
- .icon {
- fill: var(--black) !important;
- }
- }
-
- &.correct {
- background-color: var(--green);
-
- .icon {
- fill: var(--black) !important;
- }
- }
- }
-
- &.correct {
- border-color: var(--green);
- background-color: white;
-
- label {
- display: none;
- }
-
- .icon {
- fill: var(--green);
- display: block;
- }
- }
-
- &.wrong {
- border-color: var(--danger-dark);
- background-color: var(--danger-dark);
-
- label {
- display: none;
- }
-
- .icon {
- fill: white;
- width: 7px;
- height: 7px;
- display: block;
- }
- }
- }
- }
-
- ngx-siema-slide {
- display: block;
-
- .question {
- line-height: 1.5;
- color: white;
- font-size: 13px;
- background-color: var(--ash-black);
- padding: 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 {
- box-shadow: 0px 0px 5px var(--green);
- border-color: var(--green);
-
- label {
- color: var(--green);
- }
-
- .icon-holder {
- border-color: var(--green);
- background-color: white;
-
- .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: var(--danger-dark);
-
- .icon {
- fill: white;
- width: 10px;
- height: 10px;
- display: block;
- }
- }
- }
- }
- }
-
- .next-button {
- width: 100px;
- height: 50px;
- border-radius: 30px;
- background-color: var(--teal-green);
- color: white;
- font-size: 14px;
- border: 0px;
- display: block;
- position: sticky;
- position: -webkit-sticky;
- bottom: 20px;
- margin: 10px auto 40px;
- box-shadow: 0px 0px 10px var(--teal-green);
- }
|