main.css
unknown
css
3 years ago
28 kB
4
Indexable
:root { --color-orange: #ff9000; --color-black: #333333; --color-gray: #888888; --color-white: #ffffff; --container-width: 1135px; } *, *:before, *:after { box-sizing: border-box; } body { font-family: "Open Sans"; font-size: 12px; line-height: 1.5; } a { color: #467BD7; font-weight: inherit; text-decoration: none!important; } p, h1, h2, h3, h4, ul, ol { line-height: 1.75; } li + li { margin-top: 1em; } ol { list-style: none; counter-reset: list-counter; padding-left: 0; } ol > li { counter-increment: list-counter; position: relative; padding-left: 2.5em; } ol > li:before { position: absolute; top: 2px; left: 0; display: block; content: counter(list-counter); width: 1.5em; color: white; background-color: #BFBFBF; border-radius: 50%; text-align: center; line-height: 1.5; } ul { list-style: none; padding-left: 0; } ul > li { position: relative; padding-left: 20px; } ul > li:before { position: absolute; top: .5em; left: 0; display: block; content: ''; width: .5em; height: .5em; background-color: #BFBFBF; border-radius: 50%; } li > ul, li > ol { margin: 15px 0; } @media (min-width: 1024px) { body { font-size: 18px; } } /** Utility **/ .overflow-hidden { overflow: hidden; } .hidden { display: none !important; } .invisible { visibility: hidden !important; } .container { display: flex; flex-flow: column; margin: 0 auto; padding: 0 25px; width: 100%; max-width: var(--container-width); } .justify-center { justify-content: center !important; } .bg-orange { background-color: var(--color-orange) !important; } .bg-white { background-color: var(--color-white) !important; } .bg-transparent { background-color: var(--color-transparent) !important; } .text-orange { color: var(--color-orange) !important; } .text-gray { color: var(--color-gray) !important; } .text-black { color: var(--color-black) !important; } .text-white { color: var(--color-white) !important; } .text-center { text-align: center !important; } .text-right { text-align: right !important; } .mt-2 { margin-top: 2em !important; } .mt-5 { margin-top: 5em !important; } .mb-2 { margin-bottom: 2em !important; } .pt-3 { padding-top: 3em !important; } .px-2 { padding-left: 2em !important; padding-right: 2em !important; } .loading::after { position: absolute; top: 0; left: 0; display: block; content: ' '; width: 100%; height: 100%; background-color: rgba(255, 255, 255, 80%); background-image: url('../img/loading.gif'); background-repeat: no-repeat; background-position: center center; } .box + .box { margin-top: 20px; } .ratio-wrapper { position: relative; } .ratio-wrapper:after { content: ''; display: block; padding-bottom: 100%; } .ratio-wrapper.is-16by9:after { padding-bottom: calc(9 / 16 * 100%); } .ratio-wrapper.is-9by16:after { padding-bottom: calc(16 / 9 * 100%); } .ratio-content { position: absolute; width: 100%; height: 100%; top: 0; left: 0; } @media (max-width: 767px) { .mobile\:overflow-hidden { overflow: hidden; } } @media (min-width: 768px) { .box { padding: 40px 65px; border-radius: 10px; box-shadow: 0px 0px 25px rgba(0, 0, 0, 5%); } .box + .box { margin-top: 50px; } } /** Button **/ .buttons { display: flex; flex-flow: row; align-items: center; } .button { display: flex; border: none; border-radius: 10px; padding: 15px 40px; cursor: pointer; outline: none; color: inherit; } .button + .button { margin-left: 8px; } .button.is-icon { padding: 7.5px; border-radius: 50%; } .button.is-icon:after { content: ""; display: block; padding-bottom: 100%; } /** Media **/ .medias { display: flex; flex-flow: column; } .media { display: flex; flex-flow: row; align-items: center; } .media + .media { margin-top: 1em; } .media-image { display: flex; margin-right: 15px; } .media.is-align-top { align-items: flex-start; } .media-content { display: flex; flex-flow: column; } /** Steps **/ .steps { display: flex; flex-flow: column; } .step-list { position: relative; } .step { position: absolute; top: 0; display: flex; flex-flow: row; width: 100%; justify-content: space-between; } .step:not(.is-active) { visibility: hidden; } .step + .step { margin-top: 0; } .step-progress { flex: 0 0 100%; margin-top: 1.5em; } .form-checkbox_custom { margin: 1rem .25rem; } .input-inline-custom{ display: flex; align-items: center; flex-direction: row!important; margin-top: .2rem!important; } .input-inline-custom input { margin-right: .5rem; } .input-inline-custom label { font-size: 13px; font-weight: 600; } .article-bio { font-size: 13px; line-height: 1.rem; } .inner-bold { font-weight: 600; } .list-group_item { padding: .8rem 2rem!important; } .list-article_content { display: flex; flex-direction: column; margin-bottom: .2rem; font-weight: 300; font-size: .95rem; } .list-title_aricle { display: block; margin-bottom: .5rem; font-weight: 600; color: darkblue; } .list-link_article { color: #2d2e33; font-weight: 600; font-style: italic; text-decoration: underline!important; } .list-title_relart { font-size: 13px; line-height: 1.2rem; } .list-created_relart { color: #818183; } .article-social_link { font-size: 1.25rem; margin-left: .5rem; color: #666; } @media (min-width: 768px) { .steps { position: relative; margin-top: 1.5em; } .step-list { display: flex; flex-flow: row; justify-content: space-around; z-index: 10; } .step, .step:not(.is-active) { position: relative; display: flex; flex-flow: column; width: auto; margin-top: 0; color: var(--color-white); visibility: visible; } .step:before { color: var(--color-orange); background-color: var(--color-white); } .step.is-active ~ .step { color: #BFBFBF; } .step.is-active ~ .step:before { color: var(--color-white); background-color: #BFBFBF; } .step-label { width: 100%; } .step-num { display: none; } .step-progress { position: absolute; top: 10%; width: 100%; margin-top: 0; background-color: #F4F4F4; border-radius: 1.5em; } .step-progress .progress { height: 3em; border-radius: 1.5em; } } /** Progress **/ .progress { width: 100%; height: 10px; border-radius: 5px; } .progress-value { display: flex; flex-flow: row nowrap; align-items: center; width: 10%; height: 100%; background-color: var(--color-orange); border-radius: inherit; transition: width 300ms; } /** Bar **/ .bars { display: flex; flex-flow: column; } .bar { display: flex; flex-flow: row; justify-content: space-between; } .bar + .bar { margin-top: 15px; } .bar-flag { display: flex; flex: 0 0 36px; margin-right: 15px; align-items: center; } .bar-flag img { width: 100%; } .bar-label { position: relative; display: flex; flex: 1; background-color: #F1F1F1; } .bar-label label { position: absolute; top: 50%; transform: translateY(-50%); } .bar-label label.is-left { left: 15px; } .bar-label label.is-right { right: 15px; } .bar-value { display: flex; flex: 0 0 80px; align-items: center; justify-content: center; margin-left: 15px; background-color: #F1F1F1; border-radius: 5px; } .bar .progress { height: 30px; } .bar .progress-value { padding-left: 10px; background: linear-gradient(270deg, #E87900, #FFC232); overflow: visible; } /** Search **/ .search { display: flex; flex-flow: column; max-width: 840px; margin: 0 auto; } .search-input { display: flex; flex-flow: row; align-items: center; padding: 10px; border-radius: 30px; background: var(--color-white); z-index: 2; } .search-input .input { display: flex; flex: 1 0 auto; height: 40px; padding-left: 15px; padding-right: 15px; border: none; outline: none; font-size: 14px; } .search-input .button { display: flex; font-size: 20px; align-self: center; } .search-input .button-back { display: none; } .search-result { position: relative; display: none; flex: 1 0 0; background-color: var(--color-white); z-index: 2; overflow: hidden; } .search-result .medias { height: 100%; overflow: auto; } .search-result .media { padding: 16px 25px; line-height: 1.5; cursor: pointer; } .search-result .media:hover { background-color: rgba(255, 144, 0, 20%); } .search-result .media-image img { width: 38px; height: 38px; } .search-result .media-value { font-weight: 600; } .search-overlay { position: fixed; top: 0; left: 0; display: none; width: 100vw; height: 100vh; } .search-detail { position: absolute; top: 0; left: 0; width: 100%; height: 100%; padding: 0 25px; background-color: var(--color-white); } .search-detail-header { display: flex; flex-flow: row; align-items: center; padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid #DDDDDD; } .search-detail-header img { margin-right: 16px; width: 40px; height: 40px; } .search-detail-header .button-close { margin-left: auto; font-size: 20px; color: var(--color-orange); background-color: rgba(255, 144, 0, 20%); } .search-detail-header .button-close i { width: 20px; } .search-detail-content { list-style: none; padding: 0; } .search-detail-content li + li { /*margin-top: 2em;*/ margin-top: 1.1em; } .search-detail-content .fas { width: 30px; height: 24px; margin-right: 10px; color: #888888; text-align: center; font-size: 24px; } .search.is-active { position: fixed; top: 65px; left: 0; width: 100%; height: calc(100vh - 65px); padding: 0; z-index: 50; } .search.is-active .search-input { padding: 25px; border-radius: 30px 30px 0 0; } .search.is-active .button-back { display: flex; } .search.is-active .button-search { display: none; } .search.is-active .search-result { display: block; } .search.is-active .search-overlay { display: block; } @media (min-width: 768px) { .search-input { padding: 10px 25px; } .search-result .medias { height: 310px; } .search.is-active { position: relative; top: 0; height: auto; border-radius: 0; margin: 0 auto; border-radius: 0; background: transparent; } .search.is-active .search-input { padding: 10px 25px; border-radius: 30px; background: var(--color-white); } .search.is-active .search-result { position: absolute; top: 80px; width: 100%; padding: 25px 0; border-radius: 30px; background: var(--color-white); } .search.is-active .search-detail { padding-top: 25px; } .search.is-active .button-back { display: none; } .search.is-active .button-search { display: flex; } } @media (min-width: 1028px) { .search-input, .search.is-active .search-input { border-radius: 60px; } .search-input .input { font-size: 20px; height: 60px; } .search-input .button { font-size: 24px; } .search-result .medias { height: 370px; } .search.is-active .search-result { top: 100px; } } /** Navbar **/ .navbar { position: fixed; top: 0; display: flex; width: 100%; box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 5%); color: var(--color-white); z-index: 99; } .navbar.is-white, .navbar.is-open { background-color: var(--color-white); color: var(--color-black); } .navbar .logo-black { display: none; } .navbar.is-white .logo-white, .navbar.is-open .logo-white { display: none; } .navbar.is-white .logo-black, .navbar.is-open .logo-black { display: block; } .navbar .button-search { display: none; } .navbar.is-white .button-search { display: flex; } .navbar-brand { display: flex; flex-flow: row; align-items: center; padding-top: 15px; padding-bottom: 15px; } .navbar-brand .buttons { margin-left: auto; } .navbar-menu { display: none; flex-flow: column; color: inherit; border-radius: 0px 0px 15px 15px; } .navbar-menu a { color: inherit; } .navbar.is-open .navbar-menu { display: flex; } .navbar-start, .navbar-end, .navbar-item { display: flex; flex-flow: column; } .navbar-item { font-weight: 600; } .navbar-item hover, .navbar-item.is-active { color: var(--color-orange); } .navbar-item a { display: block; padding-top: 15px; padding-bottom: 15px; } .navbar-item .button { padding-left: 0; padding-right: 0; } @media (min-width: 1024px) { .navbar { flex-flow: row; background-color: rgba(255, 255, 255, 0.1); } .navbar .container { flex-flow: row; } .navbar-brand { margin-right: 25px; } .navbar-brand .buttons { display: none; } .navbar-menu, .navbar-start, .navbar-end { display: flex; flex-flow: row; align-items: center; } .navbar-menu { flex: 1 0 0; } .navbar-end { margin-left: auto; } .navbar-item { font-weight: 400; } .navbar-item hover, .navbar-item.is-active { color: inherit; } .navbar .button-login { color: var(--color-black); background: var(--color-white); border-radius: 50px; cursor: pointer; } .navbar.is-white .button-login, .navbar.is-open .button-login { color: var(--color-white); background: var(--color-orange); } .navbar-start .navbar-item a { padding: 25px; } .navbar-end .navbar-item a { padding: 10px 25px; } .navbar-start .navbar-item { border-bottom: 3px solid transparent; } .navbar-start .navbar-item:hover, .navbar-start .navbar-item.is-active { border-bottom-color: var(--color-white); font-weight: 600; } .navbar.is-white .navbar-start .navbar-item:hover, .navbar.is-white .navbar-start .navbar-item.is-active { border-bottom-color: var(--color-orange); } } /** Content - Banner **/ .banner { display: flex; flex-flow: column; height: 667px; background-image: linear-gradient(91.67deg, #FF7A00 5.9%, rgba(255, 138, 0, 0) 151.62%), url('../img/bannerdoi.jpg'); background-position: 80% top; background-size: cover; } .banner .container { position: relative; height: 100%; } .banner-search { margin-top: 93px; } .banner-headline { width: 80%; margin: 80px auto; font-size: 20px; color: var(--color-white); text-align: center; line-height: 1.5; } .banner-headline h3 { margin-top: 0; } .banner-headline p { font-size: 14px; } @media (min-width: 768px) { .banner-headline h3 { font-size: 50px; margin-top: 0; margin-bottom: 30px; } .banner-headline p { font-size: 18px; } } @media (min-width: 1024px) { .banner { height: 848px; background-position: right center; } .banner-search { margin-top: 150px; } .banner-headline { margin-left: 0; width: 554px; text-align: left; } } /** Stats **/ .stats { background-color: #FAFAFA; } .stats-summary { display: flex; flex-flow: column; align-items: center; padding: 25px 60px; margin: -128px auto 0; border-radius: 10px; background-color: var(--color-white); box-shadow: 0px 15px 50px 0px rgba(0, 0, 0, 10%); } .stats-summary .media { padding: 20px; line-height: 1.5; } .stats-summary .media + .media { border-top: 1px solid #C4C4C4; } .stats-summary .media-value { font-size: 18px; color: var(--color-orange); } @media (min-width: 768px) { .stats-summary { padding: 25px; margin-top: -115px; } .stats-summary .medias { flex-flow: row; } .stats-summary .media + .media { border-top: none; border-left: 1px solid #C4C4C4; } } .stats-institution { display: flex; flex-flow: column; margin-top: 60px; background-color: var(--color-white); } .stats-institution h2 { text-align: center; margin-top: 0; margin-bottom: 38px; } .stats-institution .media { padding: 10px; } .stats-institution .media + .media { border-top: 1px solid #C4C4C4; } .stats-institution .media-image { width: 20px; heidht: 20px; } .stats-institution .media-content { flex-flow: row; flex: 0 1 100%; justify-content: space-between; } @media (min-width: 768px) { .stats-institution { padding: 50px 80px; border-radius: 10px; box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 5%); } .stats-institution .medias { display: grid; grid-template-columns: repeat(3, 1fr); grid-gap: 20px; } .stats-institution .media { border: 1px solid #C4C4C4; border-radius: 10px; } .stats-institution .media-image { width: 40px; height: 40px; } .stats-institution .media-content { flex-flow: column-reverse; } } @media (min-width: 1024px) { .stats-institution .medias { grid-gap: 40px; } .stats-institution .media { padding: 20px 25px; } .stats-institution .media-image { width: 60px; height: 60px; } } /** Content - Benefits **/ .benefits { padding-top: 30px; padding-bottom: 40px; background: #F1F1F1; line-height: 2; } .benefits h2 { text-align: center; } .benefits p { font-size: 12px; text-align: center; } .benefits-content { display: flex; flex-flow: row; margin-top: 30px; overflow-y: auto; } .benefit { display: flex; flex-flow: column; flex: 1 0 200px; } .benefit + .benefit { margin-left: 10px; } .benefit-image { width: 100%; } .benefit-text h3 { margin: 0; font-size: 24px; } .benefit-text p { text-align: left; } @media (min-width: 1024px) { .benefits-content { justify-content: center; } .benefit { flex: 0 0 321px; } } /** Footer **/ .footer { padding-top: 32px; padding-bottom: 32px; background-color: var(--color-black); color: var(--color-white); } .footer a { color: var(--color-white); } .footer-profile { line-height: 2; } .footer-profile-content { margin-top: 2em; } .footer-profile-content .media-image { align-self: flex-start; } .footer-profile-content address { font-style: normal; } .footer-social-list { margin-top: 30px; } .footer-partner { margin-top: 40px; } .footer-list { display: flex; flex-flow: column; padding-left: 0; } .footer-list > li:before { display: none; } .footer-list.is-vertical { flex-flow: row; align-items: center; } .footer-list.is-vertical > li + li { margin-top: 0; margin-left: 1em; } .footer-links { display: flex; flex-flow: row; justify-content: space-between; margin-top: 40px; } .footer-links ul { list-style: none; margin-top: 15px; padding: 0; line-height: 2; } @media (min-width: 768px) { .footer .container { flex-flow: row wrap; justify-content: space-between; } .footer-profile { width: 100%; } .footer-partner, .footer-links { width: calc(50% - 20px); } } @media (min-width: 1024px) { .footer .container { flex-flow: row; justify-content: space-between; } .footer-partner { margin-top: 0; } .footer-partner-list { flex-flow: column-reverse !important; align-items: flex-start !important; } .footer-partner-list li { margin-bottom: 30px; } .footer-links { min-width: 350px; margin-top: 0; } } /** GUide **/ .guide { padding: 16px; border: 1px solid #DDDDDD; border-radius: 10px; } .guide + .guide { margin-top: 15px; } .guide-header { display: flex; flex-flow: row; align-items: center; justify-content: space-between; cursor: pointer; } .guide-title { display: flex; flex: 1 1 0; } .guide-buttons { display: flex; flex: 0 0 initial; } .guide-buttons .button { display: flex; justify-content: center; box-sizing: content-box; width: 1em; color: var(--color-orange); font-size: 13px; background-color: rgba(255, 144, 0, 15%); } .guide-title { color: var(--color-orange); font-size: 1.25em; } .guide-body { display: none; line-height: 1.75; } .guide .button-up { display: none; } .guide.is-open .button-up { display: flex; } .guide.is-open .button-down { display: none; } .guide.is-open .guide-body { display: block; } /** Form **/ .input, .select, .textarea { padding: 15px; border: 1px solid #DDDDDD; border-radius: 10px; } .input[readonly] { color: #888888; background-color: #F4F4F4; } .select { -webkit-appearance: none; appearance: none; background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAKCAYAAAC9vt6cAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAACdSURBVHgBlZCxDYQwDEVzeIGr090GkZJBboO7kjEYgQ2ADdgAFkiRDehSMkKwpUQC5ED4kiXH+u/LjlBKvanEQyWmAoAOa9Va/0ph8kZmqkIILs77kpDo6ePTgfd+llJ+aCusL/YLzlwBPFhra6AOgfEuhIH/1EAyXIXkYNKLWZOM6S+SkYXZACZE5ODDCXudzsnCt8JNWmNMc+XZAClxToOiSagOAAAAAElFTkSuQmCC'); background-repeat: no-repeat; background-position: right 15px top 50%, 0 0; background-size: .65em auto, 100%; cursor: pointer; } .input-group.has-addon { position: relative; } .input-group.has-addon .input { padding-right: 30px; width: 100%; } .input-addon { position: absolute; top: 25px; right: 15px; } .form fieldset { border: none; padding: 0; } .form-group { display: flex; flex-flow: column; } .form-group + .form-group { margin-top: 15px; } .form-group .input, .form-group .select, .form-group .textarea { margin-top: 15px; } .form-group .input.error, .form-group .select.error, .form-group .textarea.error { border-color: red; } .form-group label.error { display: block; color: red; margin-top: 15px; } @media (min-width: 768px) { .form fieldset { padding: 30px 40px; background-color: #FAFAFA; } } /** Form Register **/ .form-register { margin-top: 30px; } .form-register fieldset:not(.active) { display: none; } .form-register .buttons { margin-top: 15px; justify-content: space-between; } .form-register .button-back { padding-left: 0; padding-right: 0; } /** Pages **/ .page-login .box { #padding-left: 13em; #padding-right: 13em; } .alert { position: relative; padding: 0.75rem 1.25rem; margin-bottom: 1rem; border: 1px solid transparent; border-radius: 0.35rem; } .alert-heading { color: inherit; } .alert-link { font-weight: 700; } .alert-dismissible { padding-right: 4rem; } .alert-dismissible .close { position: absolute; top: 0; right: 0; padding: 0.75rem 1.25rem; color: inherit; } .alert-primary { color: #293c74; background-color: #dce3f9; border-color: #cdd8f6; } .alert-primary hr { border-top-color: #b7c7f2; } .alert-primary .alert-link { color: #1c294e; } .alert-secondary { color: #45464e; background-color: #e7e7ea; border-color: #dddde2; } .alert-secondary hr { border-top-color: #cfcfd6; } .alert-secondary .alert-link { color: #2d2e33; } .alert-success { color: #0f6848; background-color: #d2f4e8; border-color: #bff0de; } .alert-success hr { border-top-color: #aaebd3; } .alert-success .alert-link { color: #093b29; } .alert-info { color: #1c606a; background-color: #d7f1f5; border-color: #c7ebf1; } .alert-info hr { border-top-color: #b3e4ec; } .alert-info .alert-link { color: #113b42; } .alert-warning { color: #806520; background-color: #fdf3d8; border-color: #fceec9; } .alert-warning hr { border-top-color: #fbe6b1; } .alert-warning .alert-link { color: #574516; } .alert-danger { color: #78261f; background-color: #fadbd8; border-color: #f8ccc8; } .alert-danger hr { border-top-color: #f5b7b1; } .alert-danger .alert-link { color: #4f1915; } .alert-light { color: #818183; background-color: #fefefe; border-color: #fdfdfe; } .alert-light hr { border-top-color: #ececf6; } .alert-light .alert-link { color: #686869; } .alert-dark { color: #2f3037; background-color: #dedee1; border-color: #d1d1d5; } .alert-dark hr { border-top-color: #c4c4c9; } .alert-dark .alert-link { color: #18181c; } /* Customize the label (the container) */ .containercheck { display: inline; position: relative; padding-left: 25px; margin-bottom: 12px; cursor: pointer; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } /* Hide the browser's default checkbox */ .containercheck input { position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0; } /* Create a custom checkbox */ .checkmark { position: absolute; top: 0; left: 0; height: 15px; width: 15px; border: 1px solid #DDDDDD; border-radius: 3px; background-color: var(--color-white); } /* On mouse-over, add a grey background color */ .containercheck:hover input ~ .checkmark { background-color: #02cf32; } /* When the checkbox is checked, add a blue background */ .containercheck input:checked ~ .checkmark { background-color: var(--color-orange); border-radius: 3px; } /* Create the checkmark/indicator (hidden when not checked) */ .checkmark:after { content: ""; position: absolute; display: none; } /* Show the checkmark when checked */ .containercheck input:checked ~ .checkmark:after { display: block; } /* Style the checkmark/indicator */ .containercheck .checkmark:after { left: 5px; top: 3px; width: 4px; height: 6px; border: solid white; border-width: 0 2px 2px 0; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg); } @media (min-width: 768px) { .containercheck { padding-left: 30px; } .checkmark { position: absolute; height: 20px; width: 20px; } .containercheck .checkmark:after { left: 7px; top: 3px; width: 5px; height: 8px; } } @media (min-width: 1024px) { .containercheck { padding-left: 30px; } .checkmark { position: absolute; height: 20px; width: 20px; } .containercheck .checkmark:after { left: 7px; top: 3px; width: 5px; height: 10px; } } ul li { all: revert; list-style: none; } .ui-autocomplete { position: absolute; top: 100%; left: 0; z-index: 1000; display: none; float: left; min-width: 160px; max-height: 200px; padding: 5px 8px; margin: 2px 0 0; list-style: none; /*font-size: 18px;*/ text-align: left; background-color: #ffffff; border: 1px solid #cccccc; border: 1px solid rgba(0, 0, 0, 0.15); border-radius: 4px; -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); background-clip: padding-box; overflow-y: auto; overflow-x: hidden; } .ui-autocomplete > li > div { display: block; padding: 3px 20px; list-style: none; clear: both; font-weight: normal; line-height: 1.42857143; color: #333333; white-space: nowrap; } .ui-state-hover, .ui-state-active, .ui-state-focus { text-decoration: none; color: #ff9000;; background-color: #f5f5f5; cursor: pointer; } .ui-helper-hidden-accessible { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; } .modal-bodys{ height: 240px; overflow-y: auto; } .float-wa{ position:fixed; width:60px; height:60px; bottom:40px; right:40px; background-color:#25d366; /* background-color: var(--color-orange); */ color:#FFF; border-radius:50px; text-align:center; font-size:30px; box-shadow: 1px 1px 2px #999; z-index:100; } .mywa-float{ margin-top:16px; } .footernotif { position: fixed; width:100%; bottom: 0; height: auto; /*left: 0;*/ /*font-size: small;*/ /*margin:0 3em;*/ padding: 0 70px; border-radius:5px; } .footernotiftext { background-color: #FFC005; color: var(--color-black); padding:12px; }
Editor is loading...