|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292 |
- .header-bar {
- background-image: url('../../assets/custom/background-2.svg');
- background-size: cover;
- background-repeat: no-repeat;
- background-position: left top;
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 15px;
- height: 75px;
- z-index: 2;
- pointer-events: none;
- opacity: 0;
- top: 0;
- left: 0;
- width: 100%;
- position: fixed;
- transition: opacity 0.5s;
- box-shadow: 0px 3px 5px var(--brand-grey);
-
- &.active {
- opacity: 1;
- pointer-events: all;
- }
-
-
- .heading-holder {
- display: flex;
- align-items: center;
- }
-
- button, a {
- background-color: white;
- color: var(--brand-blue);
- font-size: 18px;
- padding: 5px;
- border-radius: 50%;
- height: 30px;
- width: 30px;
- display: flex;
- justify-content: center;
- align-items: center;
-
- &.active {
- color: white;
- background-color: var(--brand-blue);
- }
- }
-
- h3 {
- font-size: 16px;
- color: white;
- letter-spacing: 0.5px;
- margin-left: 10px;
- font-weight: 600;
- }
-
- .stats-holder {
- font-size: 10px;
- color: white;
- display: flex;
- align-items: center;
-
- .stat {
- margin-left: 10px;
- }
- }
-
- .utilities-buttons-holder {
- position: absolute;
- right: 15px;
- bottom: -15px;
- display: flex;
- align-items: center;
- button, a {
- margin-left: 10px;
- box-shadow: 0px 3px 5px var(--brand-grey);
- }
- }
- }
-
- .upfold-holder {
- position: relative;
- height: 45vh;
- width: 100%;
- padding-top: 30px;
- margin-bottom: -25px;
-
- .icons-holder {
- position: relative;
- display: flex;
- width: 90%;
- margin: 0 auto;
- justify-content: space-between;
-
- &.navigate-button {
- position: absolute;
- left: 86%;
- bottom: 30px;
- width: auto;
-
- a {
- display: flex;
- justify-content: center;
- align-items: center;
- }
- }
-
- button, a {
- background-color: white;
- color: var(--brand-blue);
- font-size: 18px;
- padding: 5px;
- border-radius: 50%;
- height: 30px;
- width: 30px;
- display: block;
- margin-bottom: 10px;
- box-shadow: 0px 0px 5px var(--brand-grey);
-
- &.active {
- background-color: var(--brand-blue);
- color: white;
- }
- }
- }
-
- img {
- position: absolute;
- left: 0;
- top: 0;
- height: 100%;
- width: 100%;
- object-fit: cover;
- filter: brightness(80%);
- }
- }
-
- .card-holder {
- background-color: transparent;
- position: relative;
-
- .card {
- box-shadow: 0px 0px 5px var(--brand-grey);
- width: 90%;
- margin: 0 auto;
- border-radius: 10px;
- overflow: hidden;
- padding: 20px;
- background-color: white;
-
- h3 {
- color: var(--brand-dark-grey);
- font-size: 20px;
- letter-spacing: 0.5px;
- font-weight: 600;
- }
-
- .stats-holder {
- display: flex;
- justify-content: space-between;
- color: var(--brand-blue);
- font-size: 10px;
- font-weight: bold;
- margin: 15px 0;
-
- span {
- color: var(--brand-grey);
- }
- }
-
- p {
- margin: 0 auto;
- font-size: 11px;
- line-height: 1.5;
- color: var(--brand-grey);
- }
- }
- }
-
- .tabs-holder {
- display: flex;
- width: 90%;
- margin: 20px auto;
- overflow: hidden;
- border-radius: 30px;
- box-shadow: 0px 0px 5px var(--brand-grey);
- position: relative;
-
- &::before {
- content: '';
- position: absolute;
- left: 0;
- top: 0;
- height: 100%;
- width: 50%;
- background-color: var(--brand-blue);
- border-radius: 30px;
- transform: translateX(0%);
- transition: transform 0.3s;
- }
-
- &.right {
- &::before {
- transform: translateX(100%);
- }
- }
-
- button {
- position: relative;
- background-color: transparent;
- color: var(--brand-blue);
- font-size: 12px;
- letter-spacing: 0.5px;
- height: 40px;
- width: 50%;
- font-weight: 500;
- transition: color 0.3s;
-
- &.active {
- color: white;
- }
- }
- }
-
- .result-list {
- ion-item {
- display: none;
-
- &.show {
- display: block;
- }
-
- h3 .rating-holder {
- font-size: 9px;
- margin-left: auto;
- align-self: flex-start;
- display: flex;
- align-items: flex-end;
- margin-right: 10px;
-
- ion-icon {
- font-size: 12px;
- margin-right: 3px;
- }
- }
-
- .offers-holder {
- border-bottom: 0;
- border-top: 1px solid #efefef;
-
- .offer {
- ion-icon {
- color: var(--brand-grey);
- transform: scale(1.1);
- }
- }
- }
-
- .description {
- margin: 5px 0;
- .share-button {
- float: right;
- font-size: 14px;
- background-color: transparent;
- border: 0px;
- color: var(--brand-dark-grey);
- padding: 0;
- }
- }
- }
- }
-
- .advertisement-slots {
- white-space: nowrap;
- width: 100%;
- overflow-x: auto;
-
- figure {
- margin: 0;
- display: inline-block;
- width: 100px;
- height: 100px;
- margin: 0 5px;
-
- img {
- object-fit: cover;
- width: 100%;
- height: 100%;
- }
- }
- }
|