// ------------------------- // Body Styles // ------------------------- body { background-color: #F9F9F9; min-height: 100vh; } // ------------------------- // Link Styles // ------------------------- a:link { text-decoration: none; color: black; } a:visited { text-decoration: none; color: black; } a:hover { text-decoration: underline; color: black; } a:active { text-decoration: underline; color: black; } .darklink:link { color: grey; } .darklink:hover { color: grey; } .darklink:active { color: grey; } // ------------------------- // Content Styles // ------------------------- .container { width: 100%; max-width: 400px; margin: 0 auto; } .header { position: relative; background-color: $gold; // Set background image in HTML so we can use site.baseurl background-size: 170px; padding: 0 0 100px 0; text-align: center; border-radius: 0 0 20px 20px; z-index: 1; // Language selector &-wrapper { display: flex; align-items: center; justify-content: space-between; flex-direction: column; } .header-menu { &-list { padding-left: 0; list-style: none; li { display: inline-block; &.active { font-weight: 600; } &:not(:last-child) { margin: 10px; } } } } } .header-content { position: relative; z-index: 2; } .header-image { width: 150px; } .header-title { font-size: 1.5em; color: #333; margin: 20px 0; font-weight: bold; } .content { position: relative; top: -100px; padding: 20px; z-index: 2; } .card { background-color: white; padding: 20px; margin: 10px 0; border-radius: 10px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); text-align: center; font-size: 1.2em; color: #333; display: flex; flex-direction: column; align-items: center; } .card-icon { width: 60px; height: 60px; margin-bottom: 10px; object-fit: cover; } .card-icon-big { width: 60px; /* Desired width */ height: 60px; /* Desired height */ margin-bottom: 10px; object-fit: cover; } // -------------------------------- // Informational Layout Styles // -------------------------------- .top-nav { max-width: 860px; width: -webkit-fill-available; margin: 0px auto; display: flex; flex-direction: row; align-items: center; } .informational-container { flex: 1; width: 100%; max-width: 680px; margin: 0 auto; padding: 0 20px; img.hero { width: 100%; } img.app-tile { width: 66px; height: 66px; // center within container display: block; margin: auto; // float higher to overlap previous element position: relative; top: -33px; } h1 { font-size: 28px; font-weight: 700; margin-bottom: 10px; text-align: center; } p.subtitle { color: #9B9A98; font-size: 16px; font-weight: 400; margin: 0 auto 10px auto; max-width: 340px; text-align: center; } .step-label { background-color: #F4F3F2; border-radius: 6px; color: #787776; font-size: 12px; margin: 40px auto 0 auto; padding: 10px 20px; text-transform: uppercase; font-weight: 600; width: fit-content; } h2 { font-size: 18px; font-weight: 700; margin: 30px 0 15px 0; text-align: center; } p.informational-text { font-size: 14px; font-weight: 400; line-height: 21px; margin: 10px 0; } .filelist { background-color: white; border-radius: 20px; margin-top: 40px; } .btn-container { width: fit-content; margin: 30px auto; } .btn-secondary { background-color: #F4F3F2; border-radius: 26px; height: 52px; width: fit-content; padding: 0 20px; font-size: 16px; font-weight: 600; margin: 0 auto; // center text vertically display: flex; align-items: center; } } .push-footer { font-size: 12px; text-align: center; margin: 20px 0; padding: 0 10px; width: 100%; } // ---------------------------------- // Copied from butter-dir-listing.css // ---------------------------------- .breadcrumb-name { display: flex; align-items: center; height: 48px; font-size: 18px; a { display: flex; align-items: center; height: -webkit-fill-available; padding: 0 10px; } img.back { width: 18px; height: 18px; margin-left: 10px; margin-right: 10px; } } .filerow { display: flex; align-items: center; height: 44px; margin: 10px; box-sizing: border-box; font-family: "Poppins", sans-serif; } .logo-filerow { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; } .logo-filerow img { width: 32px; height: 32px; } .text-filerow { display: flex; flex-direction: column; justify-content: center; flex-grow: 1; padding: 0 10px; box-sizing: border-box; } .text-filerow .upper-text { font-size: 16px; line-height: 18px; padding: 2px; color: black; } .text-filerow .lower-text { font-size: 12px; padding: 2px; color: gray; } .dl-block { width: 30px; height: 30px; } // ------------------------- // Button Styles // ------------------------- .btn-android { margin: 15px 15px 15px 0px; height: 30px; width: auto; } // ------------------------- // Footer Styles // ------------------------- .footer-area { font-family: $footer-font-family; padding: 35px 0; } // ------------------------- // Slider Styles // ------------------------- .slick-arrow { background: $royal-blue; border-radius: 50%; color: $white; cursor: pointer; display: flex; align-items: center; justify-content: center; width: 70px; height: 70px; font-size: 34px; position: absolute; top: 50%; margin-top: -35px; transition: all .3s ease; z-index: 1; &:hover { background-color: lighten($royal-blue, 5%); } @media (max-width: 768px) { width: 50px; height: 50px; margin-top: -25px; } } .slick-prev { left: 0; } .slick-next { right: 0; }