code
stringlengths
2k
1.04M
repo_path
stringlengths
5
517
parsed_code
stringlengths
0
1.04M
quality_prob
float64
0.02
0.95
learning_prob
float64
0.02
0.93
.main-section-contaainer { background-color: rgb(214, 214, 214); } .section-title { text-align: center; padding: 1.5rem 1.5rem; display: flex; background-image: -webkit-gradient( linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), color-stop(40%, #121212) ); background-image: linear-gradient(rgba(0, 0, 0, 0.5), #121212 40%); } .browse-headers { display: flex; } .browse-headers p { color: rgb(179, 179, 179); font-size: 14px; text-transform: uppercase; font-family: 'Proxima Thin', Georgia, sans-serif; letter-spacing: 1px; margin: 0 20px; cursor: pointer; } .browse-headers p:first-child { margin: 0 20px 0 0; } .browse-headers p:hover { color: #fff; } .playlist-title-container { text-align: center; padding: 1.5rem 0; display: flex; } .playlist-image-container { width: 250px; height: 250px; } .playlist-image { height: 100%; width: 100%; object-fit: cover; box-shadow: 0 4px 60px rgba(0, 0, 0, 0.5); } .playlist-info-container { text-align: left; padding: 1.5rem 2rem; } .created-by { display: flex; align-items: center; font-size: 0.9rem; } .lighter-text { opacity: 0.7; position: relative; padding-left: 20px; } .lighter-text:before { content: ''; width: 4px; height: 4px; background: white; border-radius: 50%; position: absolute; margin-left: -10px; top: 9px; } .playlist-text { font-weight: 600; font-size: 0.75rem; letter-spacing: 0.8px; } .browse-headers .active { position: relative; } .browse-headers .active:after { content: ""; position: absolute; width: 35px; left: 50%; top: 22px; border-bottom: 2px solid #1db954; transform: translate(-50%, -50%); } .current-artist-header-container { display: flex; } .current-artist-image { width: 180px; height: 180px; border-radius: 50%; } .current-artist-info { display: flex; flex-direction: column; justify-content: center; padding-left: 20px; } .current-artist-info p { text-transform: uppercase; font-family: 'Proxima Thin', Georgia, sans-serif; font-size: 13px; } .artist-button { margin-top: 20px; margin-left: 40px; }
src/components/MainHeader/MainHeader.css
.main-section-contaainer { background-color: rgb(214, 214, 214); } .section-title { text-align: center; padding: 1.5rem 1.5rem; display: flex; background-image: -webkit-gradient( linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), color-stop(40%, #121212) ); background-image: linear-gradient(rgba(0, 0, 0, 0.5), #121212 40%); } .browse-headers { display: flex; } .browse-headers p { color: rgb(179, 179, 179); font-size: 14px; text-transform: uppercase; font-family: 'Proxima Thin', Georgia, sans-serif; letter-spacing: 1px; margin: 0 20px; cursor: pointer; } .browse-headers p:first-child { margin: 0 20px 0 0; } .browse-headers p:hover { color: #fff; } .playlist-title-container { text-align: center; padding: 1.5rem 0; display: flex; } .playlist-image-container { width: 250px; height: 250px; } .playlist-image { height: 100%; width: 100%; object-fit: cover; box-shadow: 0 4px 60px rgba(0, 0, 0, 0.5); } .playlist-info-container { text-align: left; padding: 1.5rem 2rem; } .created-by { display: flex; align-items: center; font-size: 0.9rem; } .lighter-text { opacity: 0.7; position: relative; padding-left: 20px; } .lighter-text:before { content: ''; width: 4px; height: 4px; background: white; border-radius: 50%; position: absolute; margin-left: -10px; top: 9px; } .playlist-text { font-weight: 600; font-size: 0.75rem; letter-spacing: 0.8px; } .browse-headers .active { position: relative; } .browse-headers .active:after { content: ""; position: absolute; width: 35px; left: 50%; top: 22px; border-bottom: 2px solid #1db954; transform: translate(-50%, -50%); } .current-artist-header-container { display: flex; } .current-artist-image { width: 180px; height: 180px; border-radius: 50%; } .current-artist-info { display: flex; flex-direction: column; justify-content: center; padding-left: 20px; } .current-artist-info p { text-transform: uppercase; font-family: 'Proxima Thin', Georgia, sans-serif; font-size: 13px; } .artist-button { margin-top: 20px; margin-left: 40px; }
0.344223
0.075278
html { /* Prevent text size change on orientation change. */ -webkit-text-size-adjust: 100%; } body { color: #fff; background-color: #000; text-rendering: optimizeLegibility; margin: 0; } .wrapper { margin: 0; padding: 0; } .ellipsis { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } /* masthead */ .masthead { position: absolute; top: 0; bottom: 90%; left: 0; right: 0; } .masthead h1, .masthead .status { position: absolute; top: 12px; bottom: 0; font-size: 2rem; text-transform: uppercase; transform: translate(0, 25%); } .masthead h1 { margin: 0; padding: 0 0 0 2rem; } .masthead .status { right: 0; margin: 0; padding: 0 2rem 0 0; } .masthead .status:after { content: ' '; display: inline-block; vertical-align: middle; width: 2rem; height: 2rem; margin-left: 1rem; background-color: red; border-radius: 10rem; opacity: 0; /* default state */ } [data-state='is-triggering'] .masthead .status:after { -webkit-animation: flash 0.5s infinite ease-in-out alternate; animation: flash 0.5s infinite; } @-webkit-keyframes flash { 0% { opacity: 0.0; } 100% { opacity: 1.0; } } @keyframes flash { 0% { opacity: 0.0; } 100% { opacity: 1.0; } } /* Fade out */ [data-state='is-triggering'] .fadeable { opacity: 0; } .fadeable { -webkit-transition: opacity 1s ease-out; transition: opacity 1s ease-out; } /* photos */ .photos { position: absolute; top: 0; bottom: 0; left: 0; right: 0; margin: 0; padding: 0; z-index: -100; } .photos .primary img { display: block; /* Set rules to fill background */ min-height: 10vh; min-width: 10vw; /* Set up proportionate scaling */ width: 100%; height: auto; } .photos .secondary { position: absolute; top: 10%; right: 0; width: 50vw; padding: 2rem; text-align: right; } .photos .secondary img { margin-bottom: 1rem; height: 40vh; border: 1px solid rgba(0, 0, 0, 0.4); } /* Metadata */ .metadata { position: absolute; top: 0; bottom: 0; left: 0; right: 33%; padding: 2em 10% 2em 2em; background-color: rgba(0, 0, 0, 0.0); background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0)); background-image: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0)); } .metadata dt, .metadata dd { margin: 0; padding: 0; } .metadata dt { margin-top: 1em; text-transform: uppercase; } .metadata dd { font-size: 2em; } /* Layout metadata blocks */ .md { /*border: 1px solid green;*/ } .md-0 { display: block; width: 100%; } .md-1, .md-2 { float: left; width: 48%; font-size: 1em; } .md-1 { padding-right: 16px; } /* Sizes */ .md-1 dd, .md-2 dd { font-size: 1.7em; }
collector/api/public/css/screen.css
html { /* Prevent text size change on orientation change. */ -webkit-text-size-adjust: 100%; } body { color: #fff; background-color: #000; text-rendering: optimizeLegibility; margin: 0; } .wrapper { margin: 0; padding: 0; } .ellipsis { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } /* masthead */ .masthead { position: absolute; top: 0; bottom: 90%; left: 0; right: 0; } .masthead h1, .masthead .status { position: absolute; top: 12px; bottom: 0; font-size: 2rem; text-transform: uppercase; transform: translate(0, 25%); } .masthead h1 { margin: 0; padding: 0 0 0 2rem; } .masthead .status { right: 0; margin: 0; padding: 0 2rem 0 0; } .masthead .status:after { content: ' '; display: inline-block; vertical-align: middle; width: 2rem; height: 2rem; margin-left: 1rem; background-color: red; border-radius: 10rem; opacity: 0; /* default state */ } [data-state='is-triggering'] .masthead .status:after { -webkit-animation: flash 0.5s infinite ease-in-out alternate; animation: flash 0.5s infinite; } @-webkit-keyframes flash { 0% { opacity: 0.0; } 100% { opacity: 1.0; } } @keyframes flash { 0% { opacity: 0.0; } 100% { opacity: 1.0; } } /* Fade out */ [data-state='is-triggering'] .fadeable { opacity: 0; } .fadeable { -webkit-transition: opacity 1s ease-out; transition: opacity 1s ease-out; } /* photos */ .photos { position: absolute; top: 0; bottom: 0; left: 0; right: 0; margin: 0; padding: 0; z-index: -100; } .photos .primary img { display: block; /* Set rules to fill background */ min-height: 10vh; min-width: 10vw; /* Set up proportionate scaling */ width: 100%; height: auto; } .photos .secondary { position: absolute; top: 10%; right: 0; width: 50vw; padding: 2rem; text-align: right; } .photos .secondary img { margin-bottom: 1rem; height: 40vh; border: 1px solid rgba(0, 0, 0, 0.4); } /* Metadata */ .metadata { position: absolute; top: 0; bottom: 0; left: 0; right: 33%; padding: 2em 10% 2em 2em; background-color: rgba(0, 0, 0, 0.0); background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0)); background-image: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0)); } .metadata dt, .metadata dd { margin: 0; padding: 0; } .metadata dt { margin-top: 1em; text-transform: uppercase; } .metadata dd { font-size: 2em; } /* Layout metadata blocks */ .md { /*border: 1px solid green;*/ } .md-0 { display: block; width: 100%; } .md-1, .md-2 { float: left; width: 48%; font-size: 1em; } .md-1 { padding-right: 16px; } /* Sizes */ .md-1 dd, .md-2 dd { font-size: 1.7em; }
0.46223
0.086787
*{ background-color: #e2d5b7; } #base { display: block; margin-top: 5rem; margin-left: auto; margin-right: auto; background-color:#dc0a2d; width: 18rem; height: 30rem; border-radius: 0.5rem; border: 0.2rem solid black; box-shadow: inset 5px 0px 0px rgba(255, 255, 255, 0.3); } #tampa: { transform: rotateY(160deg); } .camera { margin-top: 1rem; margin-left: 1rem; background: #dedede; width: 4rem; height: 4rem; border-radius: 50%; border: 0.15rem solid black; box-shadow: 5px 2px 0px rgba(0, 0, 0, 0.3); } /* Lente */ .camera:before { content:""; position: absolute; margin-top: 0.35rem; margin-left: 0.35rem; background: #28aafd; width: 3rem; height: 3rem; border-radius: 50%; border: 0.15rem solid black; box-shadow: inset -10px -9px 0px rgba(0, 0, 0, 0.3); } /* Reflexo */ .camera:after { content:""; position: absolute; background-color: #a1dafe; margin-top: 0.9rem; margin-left: 0.9rem; width: 0.7rem; height: 0.7rem; border-radius: 50%; } #bolinha1 { margin-top: -3.65rem; margin-left: 6.5rem; background: #dc0a2d; width: 0.8rem; height: 0.8rem; border-radius: 50%; border: 0.15rem solid black; box-shadow: inset -3px -2px 0px rgba(0, 0, 0, 0.3), 2px 1px 0px rgba(0, 0, 0, 0.3); } /* Reflexo */ #bolinha1:after { content:""; position: absolute; background-color: white; margin-top: 0.1rem; margin-left: 0.05rem; width: 0.3rem; height: 0.3rem; border-radius: 50%; } #bolinha2 { margin-top: -1.1rem; margin-left: 8.5rem; background: #ffe315; width: 0.8rem; height: 0.8rem; border-radius: 50%; border: 0.15rem solid black; box-shadow: inset -3px -2px 0px rgba(0, 0, 0, 0.3), 2px 1px 0px rgba(0, 0, 0, 0.3); } /* Reflexo */ #bolinha2:after { content:""; position: absolute; background-color: white; margin-top: 0.1rem; margin-left: 0.05rem; width: 0.3rem; height: 0.3rem; border-radius: 50%; } #bolinha3 { margin-top: -1.1rem; margin-left: 10.5rem; background: #4eac5c; width: 0.8rem; height: 0.8rem; border-radius: 50%; border: 0.15rem solid black; box-shadow: inset -3px -2px 0px rgba(0, 0, 0, 0.3), 2px 1px 0px rgba(0, 0, 0, 0.3); } /* Reflexo */ #bolinha3:after { content:""; position: absolute; background-color: white; margin-top: 0.1rem; margin-left: 0.05rem; width: 0.3rem; height: 0.3rem; border-radius: 50%; } #seta { margin-top: -15.5rem; margin-left: 0.3rem; background-color: transparent; height: 0; outline: none; border-top: 40px solid transparent; border-left: 30px solid #ffe315; border-bottom: 40px solid transparent; cursor: pointer; animation-name: movimentoseta; animation-duration: 0.5s; animation-iteration-count: infinite; } #retangulo { margin-top: 120px; margin-left: 90px; background: #dc0a2d; width: 7rem; height: 0.5rem; border-radius:5rem; border: 0.12rem solid black; box-shadow: inset -3px -2px 0px rgba(0, 0, 0, 0.3), -2px -1px 0px rgba(255, 255, 255, 0.3); } .divisor { margin-top: 0.5rem; margin-left: -0.1rem; background-color: transparent; } #dobra { margin-top: -7.8rem; margin-left: 95%; background: transparent; width: 0.7rem; height: 24.8rem; border-bottom-right-radius: 0.5rem; border: 0.12rem solid black; box-shadow: inset -5px -1px 0px rgba(0, 0, 0, 0.3), inset 2px 0px 0px rgba(255, 255, 255, 0.3), -2px -1px 0px rgba(0, 0, 0, 0.3); } /* Detalhe dobra 1 */ #dobra:before { content: ""; position: absolute; margin-top: 3rem; margin-left: -0.11rem; width: 0.7rem; height: 1rem; background: transparent; border: 0.12rem solid black; } /* Detalhe dobra 2 */ #dobra:after { content: ""; position: absolute; margin-top: 19rem; margin-left: -0.11rem; width: 0.7rem; height: 1rem; background: transparent; border: 0.12rem solid black; } /* Sombra */ #base:after { content: ""; position: absolute; margin-top: 45px; margin-left: -0.11rem; width: 18rem; height: 1rem; border-radius: 50%; background: rgba(0, 0, 0, 0.3); } /* Animação */ @keyframes movimentoseta { from {margin-left:0.3rem;} to {margin-left:0.8rem;} }
pokedex.css
*{ background-color: #e2d5b7; } #base { display: block; margin-top: 5rem; margin-left: auto; margin-right: auto; background-color:#dc0a2d; width: 18rem; height: 30rem; border-radius: 0.5rem; border: 0.2rem solid black; box-shadow: inset 5px 0px 0px rgba(255, 255, 255, 0.3); } #tampa: { transform: rotateY(160deg); } .camera { margin-top: 1rem; margin-left: 1rem; background: #dedede; width: 4rem; height: 4rem; border-radius: 50%; border: 0.15rem solid black; box-shadow: 5px 2px 0px rgba(0, 0, 0, 0.3); } /* Lente */ .camera:before { content:""; position: absolute; margin-top: 0.35rem; margin-left: 0.35rem; background: #28aafd; width: 3rem; height: 3rem; border-radius: 50%; border: 0.15rem solid black; box-shadow: inset -10px -9px 0px rgba(0, 0, 0, 0.3); } /* Reflexo */ .camera:after { content:""; position: absolute; background-color: #a1dafe; margin-top: 0.9rem; margin-left: 0.9rem; width: 0.7rem; height: 0.7rem; border-radius: 50%; } #bolinha1 { margin-top: -3.65rem; margin-left: 6.5rem; background: #dc0a2d; width: 0.8rem; height: 0.8rem; border-radius: 50%; border: 0.15rem solid black; box-shadow: inset -3px -2px 0px rgba(0, 0, 0, 0.3), 2px 1px 0px rgba(0, 0, 0, 0.3); } /* Reflexo */ #bolinha1:after { content:""; position: absolute; background-color: white; margin-top: 0.1rem; margin-left: 0.05rem; width: 0.3rem; height: 0.3rem; border-radius: 50%; } #bolinha2 { margin-top: -1.1rem; margin-left: 8.5rem; background: #ffe315; width: 0.8rem; height: 0.8rem; border-radius: 50%; border: 0.15rem solid black; box-shadow: inset -3px -2px 0px rgba(0, 0, 0, 0.3), 2px 1px 0px rgba(0, 0, 0, 0.3); } /* Reflexo */ #bolinha2:after { content:""; position: absolute; background-color: white; margin-top: 0.1rem; margin-left: 0.05rem; width: 0.3rem; height: 0.3rem; border-radius: 50%; } #bolinha3 { margin-top: -1.1rem; margin-left: 10.5rem; background: #4eac5c; width: 0.8rem; height: 0.8rem; border-radius: 50%; border: 0.15rem solid black; box-shadow: inset -3px -2px 0px rgba(0, 0, 0, 0.3), 2px 1px 0px rgba(0, 0, 0, 0.3); } /* Reflexo */ #bolinha3:after { content:""; position: absolute; background-color: white; margin-top: 0.1rem; margin-left: 0.05rem; width: 0.3rem; height: 0.3rem; border-radius: 50%; } #seta { margin-top: -15.5rem; margin-left: 0.3rem; background-color: transparent; height: 0; outline: none; border-top: 40px solid transparent; border-left: 30px solid #ffe315; border-bottom: 40px solid transparent; cursor: pointer; animation-name: movimentoseta; animation-duration: 0.5s; animation-iteration-count: infinite; } #retangulo { margin-top: 120px; margin-left: 90px; background: #dc0a2d; width: 7rem; height: 0.5rem; border-radius:5rem; border: 0.12rem solid black; box-shadow: inset -3px -2px 0px rgba(0, 0, 0, 0.3), -2px -1px 0px rgba(255, 255, 255, 0.3); } .divisor { margin-top: 0.5rem; margin-left: -0.1rem; background-color: transparent; } #dobra { margin-top: -7.8rem; margin-left: 95%; background: transparent; width: 0.7rem; height: 24.8rem; border-bottom-right-radius: 0.5rem; border: 0.12rem solid black; box-shadow: inset -5px -1px 0px rgba(0, 0, 0, 0.3), inset 2px 0px 0px rgba(255, 255, 255, 0.3), -2px -1px 0px rgba(0, 0, 0, 0.3); } /* Detalhe dobra 1 */ #dobra:before { content: ""; position: absolute; margin-top: 3rem; margin-left: -0.11rem; width: 0.7rem; height: 1rem; background: transparent; border: 0.12rem solid black; } /* Detalhe dobra 2 */ #dobra:after { content: ""; position: absolute; margin-top: 19rem; margin-left: -0.11rem; width: 0.7rem; height: 1rem; background: transparent; border: 0.12rem solid black; } /* Sombra */ #base:after { content: ""; position: absolute; margin-top: 45px; margin-left: -0.11rem; width: 18rem; height: 1rem; border-radius: 50%; background: rgba(0, 0, 0, 0.3); } /* Animação */ @keyframes movimentoseta { from {margin-left:0.3rem;} to {margin-left:0.8rem;} }
0.427516
0.081813
body { color: #333; } a { text-decoration: none; color: #1b98f8; } /* * -- HELPER STYLES -- * Over-riding some of the .pure-button styles to make my buttons look unique */ .primary-button, .secondary-button { -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; border-radius: 20px; } .primary-button { color: #fff; background: #1b98f8; margin: 1em 0; } .secondary-button { background: #fff; border: 1px solid #ddd; color: #666; padding: 0.5em 2em; font-size: 80%; } /* * -- LAYOUT STYLES -- * This layout consists of three main elements, `#nav` (navigation bar), `.list` (logger list), and `#main` (logger content). All 3 elements are within `#layout` */ #layout, #nav, .list, #main { margin: 0; padding: 0; } /* Make the navigation 100% width on phones */ #nav { width: 100%; height: 40px; position: relative; background: rgb(37, 42, 58); text-align: center; } /* Show the "Menu" button on phones */ #nav .nav-menu-button { display: block; top: 0.5em; right: 0.5em; position: absolute; } /* When "Menu" is clicked, the navbar should be 80% height */ #nav.active { height: 80%; } /* Don't show the navigation items... */ .nav-inner { display: none; } /* ...until the "Menu" button is clicked */ #nav.active .nav-inner { display: block; padding: 2em 0; } /* * -- NAV BAR STYLES -- * Styling the default .pure-menu to look a little more unique. */ #nav .pure-menu { background: transparent; border: none; text-align: left; } #nav .pure-menu-link:hover, #nav .pure-menu-link:focus { background: rgb(55, 60, 90); } #nav .pure-menu-link { color: #fff; margin-left: 0.5em; } #nav .pure-menu-heading { border-bottom: none; font-size:110%; color: rgb(75, 113, 151); } /* * -- logger STYLES -- * Styles relevant to the logger messages, labels, counts, and more. */ .menu-count { color: rgb(75, 113, 151); } .menu-label-personal, .menu-label-work, .menu-label-travel { width: 15px; height: 15px; display: inline-block; margin-right: 0.5em; border-radius: 3px; } .menu-label-personal { background: #ffc94c; } .menu-label-work { background: #41ccb4; } .menu-label-travel { background: #40c365; } /* logger Item Styles */ .menu-item { padding: 0.9em 1em; border-bottom: 1px solid #ddd; border-left: 6px solid transparent; } .menu-avatar { border-radius: 3px; margin-right: 0.5em; } .menu-name, .menu-subject { margin: 0; } .menu-name { text-transform: uppercase; color: #999; } .menu-desc { font-size: 80%; word-break: break-word; margin: 0.4em 0; } .menu-item-selected { background: #eee; } .menu-item-unread { border-left: 6px solid #1b98f8; } /* logger Content Styles */ .logger-content-header, .logger-content-body, .logger-content-footer { padding: 1em 2em; } .logger-content-header { border-bottom: 1px solid #ddd; } .logger-content-title { margin: 0.5em 0 0; } .logger-content-subtitle { font-size: 1em; margin: 0; font-weight: normal; } .logger-content-subtitle span { color: #999; } .logger-content-controls { margin-top: 2em; text-align: right; } .logger-content-controls .secondary-button { margin-bottom: 0.3em; } .logger-avatar { width: 40px; height: 40px; } /* * -- TABLET (AND UP) MEDIA QUERIES -- * On tablets and other medium-sized devices, we want to customize some * of the mobile styles. */ @media (min-width: 40em) { /* Move the layout over so we can fit the nav + list in on the left */ #layout { padding-left:500px; /* "left col (nav + list)" width */ position: relative; } /* These are position:fixed; elements that will be in the left 500px of the screen */ #nav, .list { position: fixed; top: 0; bottom: 0; overflow: auto; } #nav { margin-left:-500px; /* "left col (nav + list)" width */ width:150px; height: 100%; } /* Show the menu items on the larger screen */ .nav-inner { display: block; padding: 2em 0; } /* Hide the "Menu" button on larger screens */ #nav .nav-menu-button { display: none; } .list { margin-left: -350px; width: 100%; height: 33%; border-bottom: 1px solid #ddd; } #main { position: fixed; top: 33%; right: 0; bottom: 0; left: 150px; overflow: auto; } } /* /* * -- DESKTOP (AND UP) MEDIA QUERIES -- * On desktops and other large-sized devices, we want to customize some * of the mobile styles. */ @media (min-width: 60em) { /* This will take up the entire height, and be a little thinner */ .list { margin-left: -350px; width:350px; height: 100%; border-right: 1px solid #ddd; } /* This will now take up it's own column, so don't need position: fixed; */ #main { position: static; margin: 0; padding: 0; } } #editor { height: calc(100vh - 210px) } input[type=color], input[type=date], input[type=datetime-local], input[type=datetime], input[type=email], input[type=month], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=time], input[type=url], input[type=week], select, textarea { border: 1px solid #ccc; border-radius: 4px; box-shadow: inset 0 1px 3px #ddd; box-sizing: border-box; display: inline-block; padding: 0.5em 0.6em; vertical-align: middle; } .button-success, .button-error, .button-warning, .button-secondary { color: white; border-radius: 4px; text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2); } .button-success { background: rgb(28, 184, 65); /* this is a green */ } .button-error { background: rgb(202, 60, 60); /* this is a maroon */ } .button-warning { background: rgb(223, 117, 20); /* this is an orange */ } .button-secondary { background: rgb(66, 184, 221); /* this is a light blue */ } .button-xsmall { font-size: 70%; } .button-small { font-size: 85%; } .button-large { font-size: 110%; } .button-xlarge { font-size: 125%; } .change-state { position: absolute; height: 120px; right: 0; display: flex; align-items: center; } .output-close-button { position: absolute; height: 50px; right: 0; display: flex; align-items: center; } .modal-dialog { min-width: 50% !important; max-width: 75% !important; } .modal-body { max-height: calc(100vh - 200px); overflow: scroll; } #new_output_modal .modal-dialog { max-width: 35% !important; min-width: 35% !important; } .field-key { background: #f7f8c7; font-weight: 500; border-radius: 3px; border: 1px solid #acabab; } .field-span-hover { background: #fe8282; color: #eee; /* font-weight: 500; */ border-radius: 3px; border: 1px solid #acabab; } .field-span-hover > .field-key { background: #fcc25b; color: #000; } .pure-menu-active { background: rgb(55, 60, 90); } .alert { top: 80px !important } #removeModal .modal-dialog { max-width: 350px !important; min-width: 350px !important; } .logger-content-body .btn-close { opacity: 1 !important }
src/main/resources/static/css/main.css
body { color: #333; } a { text-decoration: none; color: #1b98f8; } /* * -- HELPER STYLES -- * Over-riding some of the .pure-button styles to make my buttons look unique */ .primary-button, .secondary-button { -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; border-radius: 20px; } .primary-button { color: #fff; background: #1b98f8; margin: 1em 0; } .secondary-button { background: #fff; border: 1px solid #ddd; color: #666; padding: 0.5em 2em; font-size: 80%; } /* * -- LAYOUT STYLES -- * This layout consists of three main elements, `#nav` (navigation bar), `.list` (logger list), and `#main` (logger content). All 3 elements are within `#layout` */ #layout, #nav, .list, #main { margin: 0; padding: 0; } /* Make the navigation 100% width on phones */ #nav { width: 100%; height: 40px; position: relative; background: rgb(37, 42, 58); text-align: center; } /* Show the "Menu" button on phones */ #nav .nav-menu-button { display: block; top: 0.5em; right: 0.5em; position: absolute; } /* When "Menu" is clicked, the navbar should be 80% height */ #nav.active { height: 80%; } /* Don't show the navigation items... */ .nav-inner { display: none; } /* ...until the "Menu" button is clicked */ #nav.active .nav-inner { display: block; padding: 2em 0; } /* * -- NAV BAR STYLES -- * Styling the default .pure-menu to look a little more unique. */ #nav .pure-menu { background: transparent; border: none; text-align: left; } #nav .pure-menu-link:hover, #nav .pure-menu-link:focus { background: rgb(55, 60, 90); } #nav .pure-menu-link { color: #fff; margin-left: 0.5em; } #nav .pure-menu-heading { border-bottom: none; font-size:110%; color: rgb(75, 113, 151); } /* * -- logger STYLES -- * Styles relevant to the logger messages, labels, counts, and more. */ .menu-count { color: rgb(75, 113, 151); } .menu-label-personal, .menu-label-work, .menu-label-travel { width: 15px; height: 15px; display: inline-block; margin-right: 0.5em; border-radius: 3px; } .menu-label-personal { background: #ffc94c; } .menu-label-work { background: #41ccb4; } .menu-label-travel { background: #40c365; } /* logger Item Styles */ .menu-item { padding: 0.9em 1em; border-bottom: 1px solid #ddd; border-left: 6px solid transparent; } .menu-avatar { border-radius: 3px; margin-right: 0.5em; } .menu-name, .menu-subject { margin: 0; } .menu-name { text-transform: uppercase; color: #999; } .menu-desc { font-size: 80%; word-break: break-word; margin: 0.4em 0; } .menu-item-selected { background: #eee; } .menu-item-unread { border-left: 6px solid #1b98f8; } /* logger Content Styles */ .logger-content-header, .logger-content-body, .logger-content-footer { padding: 1em 2em; } .logger-content-header { border-bottom: 1px solid #ddd; } .logger-content-title { margin: 0.5em 0 0; } .logger-content-subtitle { font-size: 1em; margin: 0; font-weight: normal; } .logger-content-subtitle span { color: #999; } .logger-content-controls { margin-top: 2em; text-align: right; } .logger-content-controls .secondary-button { margin-bottom: 0.3em; } .logger-avatar { width: 40px; height: 40px; } /* * -- TABLET (AND UP) MEDIA QUERIES -- * On tablets and other medium-sized devices, we want to customize some * of the mobile styles. */ @media (min-width: 40em) { /* Move the layout over so we can fit the nav + list in on the left */ #layout { padding-left:500px; /* "left col (nav + list)" width */ position: relative; } /* These are position:fixed; elements that will be in the left 500px of the screen */ #nav, .list { position: fixed; top: 0; bottom: 0; overflow: auto; } #nav { margin-left:-500px; /* "left col (nav + list)" width */ width:150px; height: 100%; } /* Show the menu items on the larger screen */ .nav-inner { display: block; padding: 2em 0; } /* Hide the "Menu" button on larger screens */ #nav .nav-menu-button { display: none; } .list { margin-left: -350px; width: 100%; height: 33%; border-bottom: 1px solid #ddd; } #main { position: fixed; top: 33%; right: 0; bottom: 0; left: 150px; overflow: auto; } } /* /* * -- DESKTOP (AND UP) MEDIA QUERIES -- * On desktops and other large-sized devices, we want to customize some * of the mobile styles. */ @media (min-width: 60em) { /* This will take up the entire height, and be a little thinner */ .list { margin-left: -350px; width:350px; height: 100%; border-right: 1px solid #ddd; } /* This will now take up it's own column, so don't need position: fixed; */ #main { position: static; margin: 0; padding: 0; } } #editor { height: calc(100vh - 210px) } input[type=color], input[type=date], input[type=datetime-local], input[type=datetime], input[type=email], input[type=month], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=time], input[type=url], input[type=week], select, textarea { border: 1px solid #ccc; border-radius: 4px; box-shadow: inset 0 1px 3px #ddd; box-sizing: border-box; display: inline-block; padding: 0.5em 0.6em; vertical-align: middle; } .button-success, .button-error, .button-warning, .button-secondary { color: white; border-radius: 4px; text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2); } .button-success { background: rgb(28, 184, 65); /* this is a green */ } .button-error { background: rgb(202, 60, 60); /* this is a maroon */ } .button-warning { background: rgb(223, 117, 20); /* this is an orange */ } .button-secondary { background: rgb(66, 184, 221); /* this is a light blue */ } .button-xsmall { font-size: 70%; } .button-small { font-size: 85%; } .button-large { font-size: 110%; } .button-xlarge { font-size: 125%; } .change-state { position: absolute; height: 120px; right: 0; display: flex; align-items: center; } .output-close-button { position: absolute; height: 50px; right: 0; display: flex; align-items: center; } .modal-dialog { min-width: 50% !important; max-width: 75% !important; } .modal-body { max-height: calc(100vh - 200px); overflow: scroll; } #new_output_modal .modal-dialog { max-width: 35% !important; min-width: 35% !important; } .field-key { background: #f7f8c7; font-weight: 500; border-radius: 3px; border: 1px solid #acabab; } .field-span-hover { background: #fe8282; color: #eee; /* font-weight: 500; */ border-radius: 3px; border: 1px solid #acabab; } .field-span-hover > .field-key { background: #fcc25b; color: #000; } .pure-menu-active { background: rgb(55, 60, 90); } .alert { top: 80px !important } #removeModal .modal-dialog { max-width: 350px !important; min-width: 350px !important; } .logger-content-body .btn-close { opacity: 1 !important }
0.439026
0.094971
body { font-size: 12px; } #content { width: 100%; padding: 10px 20px; min-height: 100vh; transition: all 0.3s; position: absolute; top: 0; right: 0; } .form-control { font-size: 12px; } button { font-size: 12px !important; } .add { float: right; margin-top: -3px; } ul ul a { background: #fcfbfb; border-top: 1px solid #fd6e13; color: #252525; } .bg-warning { background-color: #ff8507 !important; } .bg-primary { background-color: #1f7ee4 !important; } .dataTables_wrapper .dataTables_filter { text-align: right; } .dataTables_info { padding-top: 0.85em; white-space: nowrap; text-align: center; } div.dataTables_wrapper div.dataTables_paginate ul.pagination { margin: 10px 0; white-space: nowrap; justify-content: center; } .see-detail { background: #113c73; margin: -20px -5px; padding: 34px 0px; transition: 1s; } .see-detail:hover { background: #f37441; transition: 1s; } .dt-buttons { float: left; } .btn-group .btn+.btn, .btn-group .btn+.btn-group, .btn-group .btn-group+.btn, .btn-group .btn-group+.btn-group, .btn-group-vertical .btn+.btn, .btn-group-vertical .btn+.btn-group, .btn-group-vertical .btn-group+.btn, .btn-group-vertical .btn-group+.btn-group { margin-left: 2px; } .allin-head { position: fixed; top: 0; left: 0; width: 150%; height: 94px; margin:-20px; background: rgb(110,131,231); background: linear-gradient(90deg, rgb(143, 160, 243) 0%, rgb(93, 133, 236) 100%); border-radius :0; z-index: -999; box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); opacity: 0.8; } .navbar { padding: 10px; } .sticky-top { top:10px; } .card-sticky { position: -webkit-sticky; position: sticky; top: 15%; } @media screen and (max-width: 767px) { div.dataTables_wrapper div.dataTables_paginate ul.pagination { margin: 10px 0; white-space: nowrap; justify-content: center; } .dt-buttons { justify-content: center; } .add { margin-right: 0px; margin-left: 0px; display: flex; float: none; justify-content: center; margin-bottom: 5px; } .allin-head { top:0; height: 93px; background: rgb(110,131,231); background: linear-gradient(90deg, rgba(110,131,231,1) 0%, rgba(27,84,223,1) 100%); border-radius :0; } .margin-card { margin:-9px -5px -4px -5px; } }
assets/css/styles.css
body { font-size: 12px; } #content { width: 100%; padding: 10px 20px; min-height: 100vh; transition: all 0.3s; position: absolute; top: 0; right: 0; } .form-control { font-size: 12px; } button { font-size: 12px !important; } .add { float: right; margin-top: -3px; } ul ul a { background: #fcfbfb; border-top: 1px solid #fd6e13; color: #252525; } .bg-warning { background-color: #ff8507 !important; } .bg-primary { background-color: #1f7ee4 !important; } .dataTables_wrapper .dataTables_filter { text-align: right; } .dataTables_info { padding-top: 0.85em; white-space: nowrap; text-align: center; } div.dataTables_wrapper div.dataTables_paginate ul.pagination { margin: 10px 0; white-space: nowrap; justify-content: center; } .see-detail { background: #113c73; margin: -20px -5px; padding: 34px 0px; transition: 1s; } .see-detail:hover { background: #f37441; transition: 1s; } .dt-buttons { float: left; } .btn-group .btn+.btn, .btn-group .btn+.btn-group, .btn-group .btn-group+.btn, .btn-group .btn-group+.btn-group, .btn-group-vertical .btn+.btn, .btn-group-vertical .btn+.btn-group, .btn-group-vertical .btn-group+.btn, .btn-group-vertical .btn-group+.btn-group { margin-left: 2px; } .allin-head { position: fixed; top: 0; left: 0; width: 150%; height: 94px; margin:-20px; background: rgb(110,131,231); background: linear-gradient(90deg, rgb(143, 160, 243) 0%, rgb(93, 133, 236) 100%); border-radius :0; z-index: -999; box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); opacity: 0.8; } .navbar { padding: 10px; } .sticky-top { top:10px; } .card-sticky { position: -webkit-sticky; position: sticky; top: 15%; } @media screen and (max-width: 767px) { div.dataTables_wrapper div.dataTables_paginate ul.pagination { margin: 10px 0; white-space: nowrap; justify-content: center; } .dt-buttons { justify-content: center; } .add { margin-right: 0px; margin-left: 0px; display: flex; float: none; justify-content: center; margin-bottom: 5px; } .allin-head { top:0; height: 93px; background: rgb(110,131,231); background: linear-gradient(90deg, rgba(110,131,231,1) 0%, rgba(27,84,223,1) 100%); border-radius :0; } .margin-card { margin:-9px -5px -4px -5px; } }
0.469763
0.087019
@import url('http://fonts.googleapis.com/css?family=Pacifico'); @import url('http://fonts.googleapis.com/css?family=Great+Vibes'); *:focus { outline: none; } .landing-container { top: 0; left: 0; position: fixed; display: flex; } .landing-image { width: 100%; } .landing-header { text-align: right; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; width: 95%; z-index: 1; position: absolute; } .landing-header-img { margin-left: 2%; } .landing-text { align-self: center; margin: 0 auto; text-align: center; color: white; font-size: 1.5em; width: 100%; z-index: 1; position: absolute; } .landing-text button { border: 2px solid white; border-radius: 10%; font-size: 20px; height: 40px; width: 120px; background: rgba(240, 248, 255, 0); color: white; margin: 5px; } .landing-text button:hover { background: white; color: black; } body { font-family: sans-serif; background-color: #004578; margin-left: 90px; } a { text-decoration: none; } label { display: block; } nav a { display: inline-block; margin: 1em; } .travel-container { display: flex; justify-content: space-around; } .travel-container-info { margin-left: 25px; display: flex; justify-content: space-around; height: 500px; } .sidebar { display: flex; flex-direction: column; width: 88px; height: 100%; margin-right: 50px; position: fixed; top: 0; left: 0; bottom: 80; background-color: #007ba7; align-items: center; box-shadow: 5px 0px 19px -7px rgba(0, 0, 0, 0.75); } .sidebar-minimal { display: flex; flex-direction: column; justify-content: flex-start; width: 88px; height: 100%; margin-right: 50px; position: fixed; top: 0; left: 0; bottom: 80; background-color: #007ba7; align-items: center; box-shadow: 5px 0px 19px -7px rgba(0, 0, 0, 0.75); } .sidebar-item { padding: 15px 24px; } .sidebar-item-middle { transition: 0.5s ease; opacity: 0; position: absolute; transform: translate(-50%, -50%); text-align: center; } .sidebar-item img { opacity: 1; display: block; width: 40px; transition: 0.5s ease; backface-visibility: hidden; } .sidebar-item:hover { background-color: #53aad9; border-top-right-radius: 8px; border-bottom-right-radius: 8px; } .sidebar-item:hover img { opacity: 0.3; } .sidebar-item .sidebar-hover-text, .sidebar-item .sidebar-hover-text-large { margin-left: 40px; margin-bottom: 40px; } .sidebar-hover-text { font-family: 'Istok Web', sans-serif; font-weight: bolder; color: white; font-size: 1.3em; } .sidebar-hover-text-large { font-family: 'Istok Web', sans-serif; font-weight: bolder; color: white; font-size: 70%; } .sidebar-item:hover .sidebar-item-middle { opacity: 1; } .side-top { margin-top: 50px; } .side-bottom { margin-bottom: 250px; } .dashboard-content { display: flex; justify-content: space-evenly; } .all-trips-container { display: flex; flex-direction: column; align-items: center; } .all-trips { display: flex; flex-wrap: wrap; justify-content: space-around; margin-top: 40px; } .all-trips-trip { display: flex; align-items: center; text-align: center; border: 1px solid #01365e; flex-direction: column; margin: 10px 25px 10px 25px; background-color: white; border-radius: 3px; transition: all ease-in-out 300ms; box-shadow: 0px 17px 10px -10px rgba(0, 0, 0, 0.4); cursor: pointer; min-width: 400px; height: 250px; padding: 4px 4px 0 4px; } .all-trips-trip:hover { box-shadow: 0px 37px 20px -15px rgba(0, 0, 0, 0.2); transform: translate(0px, -10px); } .all-trips-trip h2 { font-family: 'Istok Web', sans-serif; margin-top: 0; margin-bottom: 0; } .all-trips-trip-image { position: relative; width: 400px; height: 230px; object-fit: cover; } .all-trips-trip-name { font-family: 'Oswald', sans-serif; font-size: 1.5em; color: white; padding: 3px; border: 5px solid white; margin-top: 10px; width: 145px; height: 35px; line-height: 35px; z-index: 10; position: absolute; } .all-trips-info { width: 340px; height: 45px; margin-top: -30px; z-index: 100; text-align: center; border-radius: 15px; background-color: white; box-shadow: 0px 0px 7px 0px rgba(5, 13, 168, 1); display: flex; justify-content: space-evenly; } .all-trips-trip-when { color: #c60057; font-size: 70%; } .divider { width: 0px; height: 30px; margin-top: 10px; } .test { width: 360px; height: 201px; } .all-trips-trip-more { width: 90px; height: 50px; background-color: #c60057; border-radius: 50px; color: white; margin-top: 15px; box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 1); font-size: 70%; } .add-trip { width: 200px; height: 40px; margin-top: 20px; cursor: pointer; background-color: #007ba7; color: white; font-family: 'Istok Web', sans-serif; font-size: 1em; border: 1px solid #007ba7; border-radius: 20px; font-weight: bolder; box-shadow: 0px 0px 16px -4px rgba(0, 0, 0, 1); } .add-trip:hover { background-color: #53aad9; color: white; border: 1px solid #53aad9; } .trip-form, .accommo-form { text-align: center; width: 700px; height: 470px; background-color: white; box-shadow: -7px 7px 6px -2px rgba(0, 0, 0, 0.75); /* background-image: url('/images/map.png'); */ } .trip-form-name, .accommo-form-inputs { color: white; font-weight: bolder; display: flex; justify-content: center; } .trip-form-label-input { display: flex; margin: 50px 0 70px; } .trip-form-title, .accommo-form-title { width: 700px; height: 40px; background-color: #53aad9; display: flex; justify-content: space-between; margin-bottom: 10px; } .accommo-form-title { width: 1000px; } .trip-form-title-content, .accommo-form-title-content { color: white; font-family: 'Istok Web', sans-serif; line-height: 40px; font-size: 1.4em; margin: 0 10px; } .trip-form-name-label, .accommo-form-input-label { width: 130px; height: 30px; line-height: 30px; font-family: 'Istok Web', sans-serif; background-color: #c60057; border-top-left-radius: 3px; border-bottom-left-radius: 3px; font-size: 1.1em; } .trip-form-name-input, .accommo-form-text-input, .accommo-form-text-input-loc { border: 1px solid #c60057; width: 130px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; font-family: 'Istok Web', sans-serif; color: #c60057; padding-left: 10px; font-size: 1.1em; } .trip-form-name-input:focus { outline: none; } .date-reset-button { height: 20px; width: 50px; background-color: #c60057; color: white; font-family: 'Istok Web', sans-serif; font-size: 85%; border: 1px solid #c60057; border-radius: 3px; cursor: pointer; font-weight: bold; } .trip-form-container, .accommo-form-container { display: flex; justify-content: center; margin-top: 70px; } .trip-form-add, .accommo-form-add { width: 180px; height: 45px; border: 2px solid #c60057; display: flex; justify-content: space-evenly; margin: 0 auto; border-radius: 15px; align-items: center; cursor: pointer; } .trip-form-add-plus, .accommo-form-add-plus { color: white; background-color: #c60057; border: 2px solid #c60057; border-radius: 50px; width: 35px; height: 35px; font-size: 3em; line-height: 40px; } .trip-form-add-text, .accommo-form-add-text { color: #c60057; font-weight: bold; } .travel-form { margin-top: 35px; width: 400px; height: 300px; background-color: white; box-shadow: -7px 7px 6px -2px rgba(0, 0, 0, 0.75); } .travel-form-label { background-color: #c60057; color: white; padding: 5px; border-top-left-radius: 3px; border-bottom-left-radius: 3px; } .travel-form-label-input { height: 100%; } .accommo-form { height: 500px; width: 1000px; } .accommo-form-input-label { width: 150px; font-size: 0.8em; } .accommo-form-add { width: 280px; } .auth-background { width: 700px; height: 400px; margin: auto 0; background-image: url('/images/loginBack.jpg'); background-repeat: no-repeat; background-size: cover; } .auth-form-container { height: 400px; background: linear-gradient(to right, white, transparent 80%); } .auth-container { width: 900px; height: 400px; display: flex; background-color: white; margin: 40px auto 0; box-shadow: 0px 5px 13px -4px rgba(0, 0, 0, 0.75); } .auth-form { width: 300px; display: flex; flex-direction: column; justify-content: center; align-items: center; } .auth-form-label, .auth-form-label-pass { width: 38px; height: 30px; line-height: 30px; font-family: 'Istok Web', sans-serif; background-color: #c60057; border-top-left-radius: 3px; border-bottom-left-radius: 3px; font-size: 1.1em; color: white; padding-left: 2px; } .auth-form-inputs { display: flex; } .auth-form-inputs-top { display: flex; margin-top: 10px; } .auth-directions { font-family: 'Istok Web', sans-serif; } .auth-form-text, .auth-form-text-pass { border: 1px solid #c60057; width: 132px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; font-family: 'Istok Web', sans-serif; color: #c60057; padding-left: 5px; font-size: 0.8em; } .auth-form-label-pass { width: 65px; } .auth-form-text-pass { width: 105px; } .enter-button-container { display: flex; justify-content: center; } .enter-button { width: 115px; height: 35px; background-color: #c60057; color: white; font-family: 'Istok Web', sans-serif; border: 1px solid #c60057; font-size: 1.3em; border-radius: 2px; cursor: pointer; box-shadow: 0px 0px 22px -4px rgba(0, 0, 0, 0.75); } .auth-oauth { display: flex; flex-direction: column; align-items: center; padding: 7px; box-shadow: 0px 5px 13px -4px rgba(0, 0, 0, 0.75); border-radius: 3px; } .oauth-text { color: #c60057; } .auth-form-title { width: 270px; height: 40px; background-image: linear-gradient(to right, #53aad9, white); display: flex; justify-content: flex-start; margin-bottom: 10px; position: fixed; top: 40px; } .auth-form-title-content { color: white; font-family: 'Istok Web', sans-serif; line-height: 40px; font-size: 1.4em; margin: 0 10px; } .accom-container { width: 1000px; background-color: white; margin: 40px auto 0; text-align: center; font-family: 'Istok Web', sans-serif; box-shadow: -7px 7px 6px -2px rgba(0, 0, 0, 0.75); border-radius: 3px; } .accom-card-container { display: flex; flex-wrap: wrap; justify-content: space-evenly; } .accom-card { display: flex; width: 400px; height: 250px; box-shadow: -4px 5px 7px -2px rgba(0, 0, 0, 0.75); border: 1px solid lightgray; margin: 15px; } .accom-card-color { width: 180px; background-image: linear-gradient(#004578, #53aad9); display: flex; flex-direction: column; justify-content: space-evenly; text-align: center; align-items: center; } .accom-card-color h4 { color: white; } .accom-card-info { width: 220px; display: flex; flex-direction: column; align-items: center; } .accom-card-info-title { color: #c60057; font-size: 1.2em; font-weight: bolder; margin-top: 4px; } .accom-header { color: white; background-color: #53aad9; width: 1000px; height: 40px; display: flex; justify-content: space-between; font-size: 1.3em; line-height: 40px; border-top-left-radius: 3px; border-top-right-radius: 3px; } .accommo-form-submit, .trip-form-submit { width: 130px; height: 40px; background-color: #c60057; border: 1px solid #c60057; justify-content: space-evenly; margin: 0 auto; border-radius: 3px; align-items: center; cursor: pointer; box-shadow: -3px 3px 6px -2px rgba(0, 0, 0, 0.75); } .accommo-form-submit-text, .trip-form-submit-text { color: white; font-size: 1.4em; font-weight: bolder; } .RangeExample { height: 340px; } .accom-card-delete { display: flex; justify-content: flex-end; width: 220px; } .accom-card-delete button { background-color: rgb(208, 4, 4); color: white; border: none; font-weight: bolder; font-size: 125%; align-self: flex-end; margin-top: 60px; border-top: 1px solid darkgray; border-left: 1px solid darkgray; cursor: pointer; } .location-search-input { width: 330px; height: 25px; border: 1px solid #c60057; font-family: 'Istok Web', sans-serif; color: #c60057; font-size: 0.9em; border-top-right-radius: 3px; border-bottom-right-radius: 3px; } .accommo-form-search-container { display: flex; justify-content: center; } .accommo-form-search-label { width: 70px; height: 29px; line-height: 29px; font-family: 'Istok Web', sans-serif; background-color: #c60057; border-top-left-radius: 3px; border-bottom-left-radius: 3px; font-size: 0.8em; color: white; font-weight: bolder; } .autocomplete-dropdown-container { width: 400px; font-size: 75%; } .accommo-form-inputs-top { /* margin-top: 85px; */ color: white; font-weight: bolder; display: flex; justify-content: center; } .accommo-form-sections { display: flex; } .accommo-form-sections-search { width: 450px; height: 440px; border-right: 1px solid lightgray; display: flex; flex-direction: column; justify-content: space-evenly; } .accommo-form-sections-date { width: 550px; } .accommo-form-text-input-loc, .accommo-form-text-input { width: 250px; font-size: 0.8em; } .accommo-form-sections-date { margin-top: 20px; } .google-power { align-self: flex-start; margin-bottom: -10px; } .calendar { width: 1000px; background-color: white; margin-top: 40px; display: flex; flex-direction: column; margin-left: 80px; box-shadow: -5px 6px 5px -2px rgba(0, 0, 0, 0.75); border-radius: 4px; background: linear-gradient(70deg, white 40%, #53aad9 40%); } .calendar-card { display: flex; margin: 10px 4px; } .calendar-card-date { width: 170px; height: 170px; margin: 15px; border: 1px solid #007ba7; border-radius: 16px; display: flex; flex-direction: column; box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.75); } .calendar-card-date-month { flex: 1; background-color: #007ba7; border: 1px solid #007ba7; border-top-left-radius: 15px; border-top-right-radius: 15px; text-align: center; font-family: 'Istok Web', sans-serif; color: white; font-size: 2.2em; font-weight: bolder; line-height: 55px; border-bottom: 1px solid #004f78; } .calendar-card-date-day { flex: 2; text-align: center; } .calendar-card-date-day-num { font-family: 'Istok Web', sans-serif; color: red; font-size: 4em; } .calendar-card-date-day-word { margin-top: -11px; } .calendar-card-title { width: 200px; height: 200px; text-align: center; color: white; border-radius: 3px; margin: 0 3px; } .activity-card-single-activity { background: linear-gradient(to right, white, transparent 90%); border-radius: 2px; color: #043b4e; margin: 2px; line-height: 25px; font-size: 80%; opacity: 0.9; font-weight: bolder; } .activity-card-single-activity-info-container, .accom-card-single-accom-info-container, .trans-card-single-trans-info-container { display: flex; } .activity-card-single-activity-info { margin-left: 5px; } .accom-card-single-accom, .trans-card-single-trans { background: linear-gradient(to right, white, transparent 90%); border-radius: 2px; color: #043b4e; margin: 2px; line-height: 25px; font-size: 100%; opacity: 0.9; font-weight: bolder; } .accom-card-single-accom-name, .trans-card-single-trans-info { font-size: 80%; margin-left: 5px; } .single-trip-info { display: flex; flex-direction: column; } .single-trip-header { align-self: center; display: flex; flex-direction: column; align-items: center; } .single-trip-header-name { font: 'Istok Web'; color: white; text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.1), 7px 7px 0px rgba(0, 0, 0, 0.05); font-size: 50px; } .single-trip-header-dates { height: 45px; z-index: 100; text-align: center; margin-bottom: 50px; } .single-trip-header-dates span { font: 400 25px/1.5 'Pacifico', Helvetica, sans-serif; color: #e7ecee; text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.1), 7px 7px 0px rgba(0, 0, 0, 0.05); } .single-trip-right { display: flex; /* flex-direction: column; */ } .single-trip-right button { width: 200px; height: 40px; margin-top: 1px; cursor: pointer; font-family: 'Istok Web', sans-serif; font-size: 1em; border-radius: 2px; font-weight: bolder; box-shadow: 0px 0px 16px -4px rgba(0, 0, 0, 1); } .single-trip-header-buttons-invite { background-color: #007ba7; color: white; margin-left: 10px; } .single-trip-header-buttons-remove { background-color: #aa0f40; border-color: #aa0f40; color: white; margin-top: -10px; } .single-trip-header-buttons-invite:hover { background-color: #ad20ff; color: white; } .single-trip-header-buttons-remove:hover { background-color: #860c33; color: white; border-color: #860c33; } .single-trip-info-top { align-self: center; margin-top: 15px; } .single-trip-info-bottom { width: 1000px; display: flex; justify-content: space-evenly; margin-top: 10px; } .accommodation-container, .participants-container { text-align: center; width: 400px; margin-top: 20px; background-color: white; font-family: 'Istok Web', sans-serif; box-shadow: -7px 7px 6px -2px rgba(0, 0, 0, 0.75); border-radius: 3px; height: 250px; } .accommodation-container-list { text-align: center; margin: 3px; } .participants-container-bottom { display: flex; justify-content: space-evenly; margin-top: 20px; } .participants-container-bottom-single { display: flex; flex-direction: column; flex-wrap: wrap; z-index: 15; } .participants-container-bottom-single h1 { font-family: 'Istok Web', sans-serif; color: white; } .accommodation-container-header, .participants-container-header { color: white; background-color: #53aad9; height: 40px; display: flex; justify-content: space-between; font-size: 1.3em; line-height: 40px; border-top-left-radius: 3px; border-top-right-radius: 3px; } .accommodation-container-header span, .participants-container-header span { margin-left: 8px; font-family: 'Istok Web', sans-serif; } .sidebar-signout { font-size: 10px; font-weight: bold; font-family: 'Istok Web', sans-serif; color: white; text-decoration: none; } .dashboard-no-trips { width: 500px; height: 350px; display: flex; flex-direction: column; align-items: center; margin-top: 50px; font-family: 'Istok Web', sans-serif; color: #007ba7; justify-content: space-between; background-image: url('/images/noTrips.jpg'); background-size: cover; border: 15px solid white; border-radius: 4px; box-shadow: -5px 7px 5px 0px rgba(0, 0, 0, 0.75); } .dashboard-no-trips .add-trip { margin-bottom: 30px; } .calendar-card-container { height: 204px; background-color: #ad20ff; display: flex; border-radius: 2px; box-shadow: -2px 3px 3px 0px rgba(0, 0, 0, 0.75); background-image: url('/images/map.png'); background-size: cover; background-repeat: no-repeat; } .calendar-card-container-content { width: 260px; height: 200px; text-align: center; } .calendar-card-item-title { font-size: 1em; font-family: 'Istok Web', sans-serif; color: white; margin: 5px; } .background-map-image { position: absolute; width: 400px; overflow: hidden; } .no-calendar-container { display: flex; flex-direction: column; justify-content: center; margin-top: 100px; align-items: center; font-family: 'Istok Web'; color: #ff0f83; text-align: center; width: 50%; margin: 60px auto; height: 200px; background-color: white; box-shadow: -2px 3px 3px 0px rgba(0, 0, 0, 0.75); border-radius: 3px; } .no-calendar-link, .no-calendar-link:visited { text-decoration: none; color: #004f78; } .trip-form-name-label { width: 200px; height: 50px; line-height: 50px; font-size: 1.3em; } .trip-form-name-input { width: 200px; font-size: 1.3em; } .trip-form-buttons-container { display: flex; justify-content: space-around; } .trip-form-submit-two { width: 130px; height: 40px; background-color: #c60057; border: 1px solid #c60057; justify-content: space-evenly; border-radius: 3px; align-items: center; cursor: pointer; box-shadow: -3px 3px 6px -2px rgba(0, 0, 0, 0.75); } .trip-submit-three-buttons { display: flex; align-items: center; justify-content: space-evenly; margin-top: 60px; } .stage-three-info { font-family: 'Istok Web'; background-color: #ad20ff; width: 50%; margin: 10px auto 0; opacity: 0.8; border-radius: 3px; padding: 8px; } .stage-three-info-title { color: white; margin: 8px; } .stage-three-info h2, .stage-three-info h3 { color: white; } .stage-three-info-container { display: flex; justify-content: center; } .DayPicker-Months { background-color: #004578; border-radius: 3px; opacity: 0.9; z-index: -10; } .DayPicker-Caption div { color: white; z-index: 5000; } .DayPicker-NavButton { z-index: 400; } .header-header { height: 50px; width: 680px; line-height: 50px; background: linear-gradient(to right, #ad20ff, #004578); display: flex; line-height: 50px; margin-top: -6px; } .header-header div { line-height: 50px; margin: 0 0 0 9px; font-family: 'Istok Web'; color: white; text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.1), 7px 7px 0px rgba(0, 0, 0, 0.05); font-size: 25px; } button:disabled { border: 1px solid #999999; background-color: #cccccc; color: #666666; } .travel-form-button { color: white; font-size: 1.4em; font-weight: bolder; background-color: #c60057; border-radius: 10px; margin-left: 10px; } .participants-pic-container { opacity: 0.3; width: 400px; position: absolute; } .participants-pic { object-fit: cover; width: 400px; height: 210px; z-index: -1; margin-top: 40px; } .modal-form { display: inline-block; width: 200px; height: 300px; margin-right: 50px; } .single-trip-bottom-container { width: 1000px; } .participants-container-single-trip { display: flex; align-items: center; } .accommodation-container-list span { color: #c60057; font-family: 'Istok Web'; font-size: 1.3em; } .activities-container { text-align: center; width: 400px; margin-top: 20px; background-color: white; font-family: 'Istok Web', sans-serif; box-shadow: -7px 7px 6px -2px rgba(0, 0, 0, 0.75); border-radius: 3px; height: 250px; } .activities-container-header { color: white; background-color: #53aad9; height: 40px; display: flex; justify-content: space-between; font-size: 1.3em; line-height: 40px; border-top-left-radius: 3px; border-top-right-radius: 3px; } .activities-container-header span { margin-left: 8px; font-family: 'Istok Web', sans-serif; } .activities-container-list { text-align: center; margin: 3px; } .activities-container-list span { color: #c60057; font-family: 'Istok Web'; font-size: 1.3em; } .activity-form-add { width: 180px; height: 45px; border: 2px solid #c60057; display: flex; justify-content: space-evenly; margin: 0 auto; border-radius: 15px; align-items: center; cursor: pointer; width: 280px; } .activity-form-add-plus { color: white; background-color: #c60057; border: 2px solid #c60057; border-radius: 50px; width: 35px; height: 35px; font-size: 3em; line-height: 40px; } .activity-form-add-text { color: #c60057; font-weight: bold; } .activities-map-container { margin-top: 50px; background: white; border-radius: 5px; } .map-container { width: 100%; height: 460px; border-radius: 5px; } .map-footer { display: flex; justify-content: space-between; align-items: center; margin: 10px; margin-top: 40px; font-family: 'Istok Web', sans-serif; } .map-footer button { height: 30px; width: 80px; border: #c60057; border-radius: 3px; background: #c60057; color: white; font-size: 18px; font-family: 'Istok Web', sans-serif; } .activity-modal { z-index: 100; margin-top: -180px; left: 400px; display: flex; justify-content: center; top: 300px; position: absolute; border: 1px solid rgb(185, 185, 185); border-radius: 15px; width: 350px; background: white; text-align: center; height: 450px; } .activity-modal-content { margin: 0 auto; } .modal-form { margin: 0 auto; } .modal-form input { border: 1px solid #c60057; height: 25px; margin-bottom: 10px; width: 230px; } .modal-form button { margin-bottom: 10px; background: #c60057; color: white; font-size: 20px; border: none; border-radius: 3px; width: 85px; height: 60px; } .activity-list { text-align: right; width: 300px; margin: 0px auto; background: white; border-radius: 5px; margin-top: 50px; } .activity-list-header { color: white; background: #53aad9; border-radius: 3px 3px 0px 0px; height: 30px; font-size: 1.3em; margin: 0; font-family: 'Istok Web', sans-serif; } .activity-list-item { margin: 3px; color: white; height: 35px; line-height: 35px; display: flex; justify-content: flex-end; width: 296px; margin-right: 1px; } .activity-list-item-name { margin-right: 3px; font-size: 80%; border-radius: 3px; background-color: #ad20ff; width: 260px; text-align: center; } .activity-list button { color: white; height: 100%; border: none; background: red; text-align: center; width: 30px; cursor: pointer; }
public/style.css
@import url('http://fonts.googleapis.com/css?family=Pacifico'); @import url('http://fonts.googleapis.com/css?family=Great+Vibes'); *:focus { outline: none; } .landing-container { top: 0; left: 0; position: fixed; display: flex; } .landing-image { width: 100%; } .landing-header { text-align: right; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; width: 95%; z-index: 1; position: absolute; } .landing-header-img { margin-left: 2%; } .landing-text { align-self: center; margin: 0 auto; text-align: center; color: white; font-size: 1.5em; width: 100%; z-index: 1; position: absolute; } .landing-text button { border: 2px solid white; border-radius: 10%; font-size: 20px; height: 40px; width: 120px; background: rgba(240, 248, 255, 0); color: white; margin: 5px; } .landing-text button:hover { background: white; color: black; } body { font-family: sans-serif; background-color: #004578; margin-left: 90px; } a { text-decoration: none; } label { display: block; } nav a { display: inline-block; margin: 1em; } .travel-container { display: flex; justify-content: space-around; } .travel-container-info { margin-left: 25px; display: flex; justify-content: space-around; height: 500px; } .sidebar { display: flex; flex-direction: column; width: 88px; height: 100%; margin-right: 50px; position: fixed; top: 0; left: 0; bottom: 80; background-color: #007ba7; align-items: center; box-shadow: 5px 0px 19px -7px rgba(0, 0, 0, 0.75); } .sidebar-minimal { display: flex; flex-direction: column; justify-content: flex-start; width: 88px; height: 100%; margin-right: 50px; position: fixed; top: 0; left: 0; bottom: 80; background-color: #007ba7; align-items: center; box-shadow: 5px 0px 19px -7px rgba(0, 0, 0, 0.75); } .sidebar-item { padding: 15px 24px; } .sidebar-item-middle { transition: 0.5s ease; opacity: 0; position: absolute; transform: translate(-50%, -50%); text-align: center; } .sidebar-item img { opacity: 1; display: block; width: 40px; transition: 0.5s ease; backface-visibility: hidden; } .sidebar-item:hover { background-color: #53aad9; border-top-right-radius: 8px; border-bottom-right-radius: 8px; } .sidebar-item:hover img { opacity: 0.3; } .sidebar-item .sidebar-hover-text, .sidebar-item .sidebar-hover-text-large { margin-left: 40px; margin-bottom: 40px; } .sidebar-hover-text { font-family: 'Istok Web', sans-serif; font-weight: bolder; color: white; font-size: 1.3em; } .sidebar-hover-text-large { font-family: 'Istok Web', sans-serif; font-weight: bolder; color: white; font-size: 70%; } .sidebar-item:hover .sidebar-item-middle { opacity: 1; } .side-top { margin-top: 50px; } .side-bottom { margin-bottom: 250px; } .dashboard-content { display: flex; justify-content: space-evenly; } .all-trips-container { display: flex; flex-direction: column; align-items: center; } .all-trips { display: flex; flex-wrap: wrap; justify-content: space-around; margin-top: 40px; } .all-trips-trip { display: flex; align-items: center; text-align: center; border: 1px solid #01365e; flex-direction: column; margin: 10px 25px 10px 25px; background-color: white; border-radius: 3px; transition: all ease-in-out 300ms; box-shadow: 0px 17px 10px -10px rgba(0, 0, 0, 0.4); cursor: pointer; min-width: 400px; height: 250px; padding: 4px 4px 0 4px; } .all-trips-trip:hover { box-shadow: 0px 37px 20px -15px rgba(0, 0, 0, 0.2); transform: translate(0px, -10px); } .all-trips-trip h2 { font-family: 'Istok Web', sans-serif; margin-top: 0; margin-bottom: 0; } .all-trips-trip-image { position: relative; width: 400px; height: 230px; object-fit: cover; } .all-trips-trip-name { font-family: 'Oswald', sans-serif; font-size: 1.5em; color: white; padding: 3px; border: 5px solid white; margin-top: 10px; width: 145px; height: 35px; line-height: 35px; z-index: 10; position: absolute; } .all-trips-info { width: 340px; height: 45px; margin-top: -30px; z-index: 100; text-align: center; border-radius: 15px; background-color: white; box-shadow: 0px 0px 7px 0px rgba(5, 13, 168, 1); display: flex; justify-content: space-evenly; } .all-trips-trip-when { color: #c60057; font-size: 70%; } .divider { width: 0px; height: 30px; margin-top: 10px; } .test { width: 360px; height: 201px; } .all-trips-trip-more { width: 90px; height: 50px; background-color: #c60057; border-radius: 50px; color: white; margin-top: 15px; box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 1); font-size: 70%; } .add-trip { width: 200px; height: 40px; margin-top: 20px; cursor: pointer; background-color: #007ba7; color: white; font-family: 'Istok Web', sans-serif; font-size: 1em; border: 1px solid #007ba7; border-radius: 20px; font-weight: bolder; box-shadow: 0px 0px 16px -4px rgba(0, 0, 0, 1); } .add-trip:hover { background-color: #53aad9; color: white; border: 1px solid #53aad9; } .trip-form, .accommo-form { text-align: center; width: 700px; height: 470px; background-color: white; box-shadow: -7px 7px 6px -2px rgba(0, 0, 0, 0.75); /* background-image: url('/images/map.png'); */ } .trip-form-name, .accommo-form-inputs { color: white; font-weight: bolder; display: flex; justify-content: center; } .trip-form-label-input { display: flex; margin: 50px 0 70px; } .trip-form-title, .accommo-form-title { width: 700px; height: 40px; background-color: #53aad9; display: flex; justify-content: space-between; margin-bottom: 10px; } .accommo-form-title { width: 1000px; } .trip-form-title-content, .accommo-form-title-content { color: white; font-family: 'Istok Web', sans-serif; line-height: 40px; font-size: 1.4em; margin: 0 10px; } .trip-form-name-label, .accommo-form-input-label { width: 130px; height: 30px; line-height: 30px; font-family: 'Istok Web', sans-serif; background-color: #c60057; border-top-left-radius: 3px; border-bottom-left-radius: 3px; font-size: 1.1em; } .trip-form-name-input, .accommo-form-text-input, .accommo-form-text-input-loc { border: 1px solid #c60057; width: 130px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; font-family: 'Istok Web', sans-serif; color: #c60057; padding-left: 10px; font-size: 1.1em; } .trip-form-name-input:focus { outline: none; } .date-reset-button { height: 20px; width: 50px; background-color: #c60057; color: white; font-family: 'Istok Web', sans-serif; font-size: 85%; border: 1px solid #c60057; border-radius: 3px; cursor: pointer; font-weight: bold; } .trip-form-container, .accommo-form-container { display: flex; justify-content: center; margin-top: 70px; } .trip-form-add, .accommo-form-add { width: 180px; height: 45px; border: 2px solid #c60057; display: flex; justify-content: space-evenly; margin: 0 auto; border-radius: 15px; align-items: center; cursor: pointer; } .trip-form-add-plus, .accommo-form-add-plus { color: white; background-color: #c60057; border: 2px solid #c60057; border-radius: 50px; width: 35px; height: 35px; font-size: 3em; line-height: 40px; } .trip-form-add-text, .accommo-form-add-text { color: #c60057; font-weight: bold; } .travel-form { margin-top: 35px; width: 400px; height: 300px; background-color: white; box-shadow: -7px 7px 6px -2px rgba(0, 0, 0, 0.75); } .travel-form-label { background-color: #c60057; color: white; padding: 5px; border-top-left-radius: 3px; border-bottom-left-radius: 3px; } .travel-form-label-input { height: 100%; } .accommo-form { height: 500px; width: 1000px; } .accommo-form-input-label { width: 150px; font-size: 0.8em; } .accommo-form-add { width: 280px; } .auth-background { width: 700px; height: 400px; margin: auto 0; background-image: url('/images/loginBack.jpg'); background-repeat: no-repeat; background-size: cover; } .auth-form-container { height: 400px; background: linear-gradient(to right, white, transparent 80%); } .auth-container { width: 900px; height: 400px; display: flex; background-color: white; margin: 40px auto 0; box-shadow: 0px 5px 13px -4px rgba(0, 0, 0, 0.75); } .auth-form { width: 300px; display: flex; flex-direction: column; justify-content: center; align-items: center; } .auth-form-label, .auth-form-label-pass { width: 38px; height: 30px; line-height: 30px; font-family: 'Istok Web', sans-serif; background-color: #c60057; border-top-left-radius: 3px; border-bottom-left-radius: 3px; font-size: 1.1em; color: white; padding-left: 2px; } .auth-form-inputs { display: flex; } .auth-form-inputs-top { display: flex; margin-top: 10px; } .auth-directions { font-family: 'Istok Web', sans-serif; } .auth-form-text, .auth-form-text-pass { border: 1px solid #c60057; width: 132px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; font-family: 'Istok Web', sans-serif; color: #c60057; padding-left: 5px; font-size: 0.8em; } .auth-form-label-pass { width: 65px; } .auth-form-text-pass { width: 105px; } .enter-button-container { display: flex; justify-content: center; } .enter-button { width: 115px; height: 35px; background-color: #c60057; color: white; font-family: 'Istok Web', sans-serif; border: 1px solid #c60057; font-size: 1.3em; border-radius: 2px; cursor: pointer; box-shadow: 0px 0px 22px -4px rgba(0, 0, 0, 0.75); } .auth-oauth { display: flex; flex-direction: column; align-items: center; padding: 7px; box-shadow: 0px 5px 13px -4px rgba(0, 0, 0, 0.75); border-radius: 3px; } .oauth-text { color: #c60057; } .auth-form-title { width: 270px; height: 40px; background-image: linear-gradient(to right, #53aad9, white); display: flex; justify-content: flex-start; margin-bottom: 10px; position: fixed; top: 40px; } .auth-form-title-content { color: white; font-family: 'Istok Web', sans-serif; line-height: 40px; font-size: 1.4em; margin: 0 10px; } .accom-container { width: 1000px; background-color: white; margin: 40px auto 0; text-align: center; font-family: 'Istok Web', sans-serif; box-shadow: -7px 7px 6px -2px rgba(0, 0, 0, 0.75); border-radius: 3px; } .accom-card-container { display: flex; flex-wrap: wrap; justify-content: space-evenly; } .accom-card { display: flex; width: 400px; height: 250px; box-shadow: -4px 5px 7px -2px rgba(0, 0, 0, 0.75); border: 1px solid lightgray; margin: 15px; } .accom-card-color { width: 180px; background-image: linear-gradient(#004578, #53aad9); display: flex; flex-direction: column; justify-content: space-evenly; text-align: center; align-items: center; } .accom-card-color h4 { color: white; } .accom-card-info { width: 220px; display: flex; flex-direction: column; align-items: center; } .accom-card-info-title { color: #c60057; font-size: 1.2em; font-weight: bolder; margin-top: 4px; } .accom-header { color: white; background-color: #53aad9; width: 1000px; height: 40px; display: flex; justify-content: space-between; font-size: 1.3em; line-height: 40px; border-top-left-radius: 3px; border-top-right-radius: 3px; } .accommo-form-submit, .trip-form-submit { width: 130px; height: 40px; background-color: #c60057; border: 1px solid #c60057; justify-content: space-evenly; margin: 0 auto; border-radius: 3px; align-items: center; cursor: pointer; box-shadow: -3px 3px 6px -2px rgba(0, 0, 0, 0.75); } .accommo-form-submit-text, .trip-form-submit-text { color: white; font-size: 1.4em; font-weight: bolder; } .RangeExample { height: 340px; } .accom-card-delete { display: flex; justify-content: flex-end; width: 220px; } .accom-card-delete button { background-color: rgb(208, 4, 4); color: white; border: none; font-weight: bolder; font-size: 125%; align-self: flex-end; margin-top: 60px; border-top: 1px solid darkgray; border-left: 1px solid darkgray; cursor: pointer; } .location-search-input { width: 330px; height: 25px; border: 1px solid #c60057; font-family: 'Istok Web', sans-serif; color: #c60057; font-size: 0.9em; border-top-right-radius: 3px; border-bottom-right-radius: 3px; } .accommo-form-search-container { display: flex; justify-content: center; } .accommo-form-search-label { width: 70px; height: 29px; line-height: 29px; font-family: 'Istok Web', sans-serif; background-color: #c60057; border-top-left-radius: 3px; border-bottom-left-radius: 3px; font-size: 0.8em; color: white; font-weight: bolder; } .autocomplete-dropdown-container { width: 400px; font-size: 75%; } .accommo-form-inputs-top { /* margin-top: 85px; */ color: white; font-weight: bolder; display: flex; justify-content: center; } .accommo-form-sections { display: flex; } .accommo-form-sections-search { width: 450px; height: 440px; border-right: 1px solid lightgray; display: flex; flex-direction: column; justify-content: space-evenly; } .accommo-form-sections-date { width: 550px; } .accommo-form-text-input-loc, .accommo-form-text-input { width: 250px; font-size: 0.8em; } .accommo-form-sections-date { margin-top: 20px; } .google-power { align-self: flex-start; margin-bottom: -10px; } .calendar { width: 1000px; background-color: white; margin-top: 40px; display: flex; flex-direction: column; margin-left: 80px; box-shadow: -5px 6px 5px -2px rgba(0, 0, 0, 0.75); border-radius: 4px; background: linear-gradient(70deg, white 40%, #53aad9 40%); } .calendar-card { display: flex; margin: 10px 4px; } .calendar-card-date { width: 170px; height: 170px; margin: 15px; border: 1px solid #007ba7; border-radius: 16px; display: flex; flex-direction: column; box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.75); } .calendar-card-date-month { flex: 1; background-color: #007ba7; border: 1px solid #007ba7; border-top-left-radius: 15px; border-top-right-radius: 15px; text-align: center; font-family: 'Istok Web', sans-serif; color: white; font-size: 2.2em; font-weight: bolder; line-height: 55px; border-bottom: 1px solid #004f78; } .calendar-card-date-day { flex: 2; text-align: center; } .calendar-card-date-day-num { font-family: 'Istok Web', sans-serif; color: red; font-size: 4em; } .calendar-card-date-day-word { margin-top: -11px; } .calendar-card-title { width: 200px; height: 200px; text-align: center; color: white; border-radius: 3px; margin: 0 3px; } .activity-card-single-activity { background: linear-gradient(to right, white, transparent 90%); border-radius: 2px; color: #043b4e; margin: 2px; line-height: 25px; font-size: 80%; opacity: 0.9; font-weight: bolder; } .activity-card-single-activity-info-container, .accom-card-single-accom-info-container, .trans-card-single-trans-info-container { display: flex; } .activity-card-single-activity-info { margin-left: 5px; } .accom-card-single-accom, .trans-card-single-trans { background: linear-gradient(to right, white, transparent 90%); border-radius: 2px; color: #043b4e; margin: 2px; line-height: 25px; font-size: 100%; opacity: 0.9; font-weight: bolder; } .accom-card-single-accom-name, .trans-card-single-trans-info { font-size: 80%; margin-left: 5px; } .single-trip-info { display: flex; flex-direction: column; } .single-trip-header { align-self: center; display: flex; flex-direction: column; align-items: center; } .single-trip-header-name { font: 'Istok Web'; color: white; text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.1), 7px 7px 0px rgba(0, 0, 0, 0.05); font-size: 50px; } .single-trip-header-dates { height: 45px; z-index: 100; text-align: center; margin-bottom: 50px; } .single-trip-header-dates span { font: 400 25px/1.5 'Pacifico', Helvetica, sans-serif; color: #e7ecee; text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.1), 7px 7px 0px rgba(0, 0, 0, 0.05); } .single-trip-right { display: flex; /* flex-direction: column; */ } .single-trip-right button { width: 200px; height: 40px; margin-top: 1px; cursor: pointer; font-family: 'Istok Web', sans-serif; font-size: 1em; border-radius: 2px; font-weight: bolder; box-shadow: 0px 0px 16px -4px rgba(0, 0, 0, 1); } .single-trip-header-buttons-invite { background-color: #007ba7; color: white; margin-left: 10px; } .single-trip-header-buttons-remove { background-color: #aa0f40; border-color: #aa0f40; color: white; margin-top: -10px; } .single-trip-header-buttons-invite:hover { background-color: #ad20ff; color: white; } .single-trip-header-buttons-remove:hover { background-color: #860c33; color: white; border-color: #860c33; } .single-trip-info-top { align-self: center; margin-top: 15px; } .single-trip-info-bottom { width: 1000px; display: flex; justify-content: space-evenly; margin-top: 10px; } .accommodation-container, .participants-container { text-align: center; width: 400px; margin-top: 20px; background-color: white; font-family: 'Istok Web', sans-serif; box-shadow: -7px 7px 6px -2px rgba(0, 0, 0, 0.75); border-radius: 3px; height: 250px; } .accommodation-container-list { text-align: center; margin: 3px; } .participants-container-bottom { display: flex; justify-content: space-evenly; margin-top: 20px; } .participants-container-bottom-single { display: flex; flex-direction: column; flex-wrap: wrap; z-index: 15; } .participants-container-bottom-single h1 { font-family: 'Istok Web', sans-serif; color: white; } .accommodation-container-header, .participants-container-header { color: white; background-color: #53aad9; height: 40px; display: flex; justify-content: space-between; font-size: 1.3em; line-height: 40px; border-top-left-radius: 3px; border-top-right-radius: 3px; } .accommodation-container-header span, .participants-container-header span { margin-left: 8px; font-family: 'Istok Web', sans-serif; } .sidebar-signout { font-size: 10px; font-weight: bold; font-family: 'Istok Web', sans-serif; color: white; text-decoration: none; } .dashboard-no-trips { width: 500px; height: 350px; display: flex; flex-direction: column; align-items: center; margin-top: 50px; font-family: 'Istok Web', sans-serif; color: #007ba7; justify-content: space-between; background-image: url('/images/noTrips.jpg'); background-size: cover; border: 15px solid white; border-radius: 4px; box-shadow: -5px 7px 5px 0px rgba(0, 0, 0, 0.75); } .dashboard-no-trips .add-trip { margin-bottom: 30px; } .calendar-card-container { height: 204px; background-color: #ad20ff; display: flex; border-radius: 2px; box-shadow: -2px 3px 3px 0px rgba(0, 0, 0, 0.75); background-image: url('/images/map.png'); background-size: cover; background-repeat: no-repeat; } .calendar-card-container-content { width: 260px; height: 200px; text-align: center; } .calendar-card-item-title { font-size: 1em; font-family: 'Istok Web', sans-serif; color: white; margin: 5px; } .background-map-image { position: absolute; width: 400px; overflow: hidden; } .no-calendar-container { display: flex; flex-direction: column; justify-content: center; margin-top: 100px; align-items: center; font-family: 'Istok Web'; color: #ff0f83; text-align: center; width: 50%; margin: 60px auto; height: 200px; background-color: white; box-shadow: -2px 3px 3px 0px rgba(0, 0, 0, 0.75); border-radius: 3px; } .no-calendar-link, .no-calendar-link:visited { text-decoration: none; color: #004f78; } .trip-form-name-label { width: 200px; height: 50px; line-height: 50px; font-size: 1.3em; } .trip-form-name-input { width: 200px; font-size: 1.3em; } .trip-form-buttons-container { display: flex; justify-content: space-around; } .trip-form-submit-two { width: 130px; height: 40px; background-color: #c60057; border: 1px solid #c60057; justify-content: space-evenly; border-radius: 3px; align-items: center; cursor: pointer; box-shadow: -3px 3px 6px -2px rgba(0, 0, 0, 0.75); } .trip-submit-three-buttons { display: flex; align-items: center; justify-content: space-evenly; margin-top: 60px; } .stage-three-info { font-family: 'Istok Web'; background-color: #ad20ff; width: 50%; margin: 10px auto 0; opacity: 0.8; border-radius: 3px; padding: 8px; } .stage-three-info-title { color: white; margin: 8px; } .stage-three-info h2, .stage-three-info h3 { color: white; } .stage-three-info-container { display: flex; justify-content: center; } .DayPicker-Months { background-color: #004578; border-radius: 3px; opacity: 0.9; z-index: -10; } .DayPicker-Caption div { color: white; z-index: 5000; } .DayPicker-NavButton { z-index: 400; } .header-header { height: 50px; width: 680px; line-height: 50px; background: linear-gradient(to right, #ad20ff, #004578); display: flex; line-height: 50px; margin-top: -6px; } .header-header div { line-height: 50px; margin: 0 0 0 9px; font-family: 'Istok Web'; color: white; text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.1), 7px 7px 0px rgba(0, 0, 0, 0.05); font-size: 25px; } button:disabled { border: 1px solid #999999; background-color: #cccccc; color: #666666; } .travel-form-button { color: white; font-size: 1.4em; font-weight: bolder; background-color: #c60057; border-radius: 10px; margin-left: 10px; } .participants-pic-container { opacity: 0.3; width: 400px; position: absolute; } .participants-pic { object-fit: cover; width: 400px; height: 210px; z-index: -1; margin-top: 40px; } .modal-form { display: inline-block; width: 200px; height: 300px; margin-right: 50px; } .single-trip-bottom-container { width: 1000px; } .participants-container-single-trip { display: flex; align-items: center; } .accommodation-container-list span { color: #c60057; font-family: 'Istok Web'; font-size: 1.3em; } .activities-container { text-align: center; width: 400px; margin-top: 20px; background-color: white; font-family: 'Istok Web', sans-serif; box-shadow: -7px 7px 6px -2px rgba(0, 0, 0, 0.75); border-radius: 3px; height: 250px; } .activities-container-header { color: white; background-color: #53aad9; height: 40px; display: flex; justify-content: space-between; font-size: 1.3em; line-height: 40px; border-top-left-radius: 3px; border-top-right-radius: 3px; } .activities-container-header span { margin-left: 8px; font-family: 'Istok Web', sans-serif; } .activities-container-list { text-align: center; margin: 3px; } .activities-container-list span { color: #c60057; font-family: 'Istok Web'; font-size: 1.3em; } .activity-form-add { width: 180px; height: 45px; border: 2px solid #c60057; display: flex; justify-content: space-evenly; margin: 0 auto; border-radius: 15px; align-items: center; cursor: pointer; width: 280px; } .activity-form-add-plus { color: white; background-color: #c60057; border: 2px solid #c60057; border-radius: 50px; width: 35px; height: 35px; font-size: 3em; line-height: 40px; } .activity-form-add-text { color: #c60057; font-weight: bold; } .activities-map-container { margin-top: 50px; background: white; border-radius: 5px; } .map-container { width: 100%; height: 460px; border-radius: 5px; } .map-footer { display: flex; justify-content: space-between; align-items: center; margin: 10px; margin-top: 40px; font-family: 'Istok Web', sans-serif; } .map-footer button { height: 30px; width: 80px; border: #c60057; border-radius: 3px; background: #c60057; color: white; font-size: 18px; font-family: 'Istok Web', sans-serif; } .activity-modal { z-index: 100; margin-top: -180px; left: 400px; display: flex; justify-content: center; top: 300px; position: absolute; border: 1px solid rgb(185, 185, 185); border-radius: 15px; width: 350px; background: white; text-align: center; height: 450px; } .activity-modal-content { margin: 0 auto; } .modal-form { margin: 0 auto; } .modal-form input { border: 1px solid #c60057; height: 25px; margin-bottom: 10px; width: 230px; } .modal-form button { margin-bottom: 10px; background: #c60057; color: white; font-size: 20px; border: none; border-radius: 3px; width: 85px; height: 60px; } .activity-list { text-align: right; width: 300px; margin: 0px auto; background: white; border-radius: 5px; margin-top: 50px; } .activity-list-header { color: white; background: #53aad9; border-radius: 3px 3px 0px 0px; height: 30px; font-size: 1.3em; margin: 0; font-family: 'Istok Web', sans-serif; } .activity-list-item { margin: 3px; color: white; height: 35px; line-height: 35px; display: flex; justify-content: flex-end; width: 296px; margin-right: 1px; } .activity-list-item-name { margin-right: 3px; font-size: 80%; border-radius: 3px; background-color: #ad20ff; width: 260px; text-align: center; } .activity-list button { color: white; height: 100%; border: none; background: red; text-align: center; width: 30px; cursor: pointer; }
0.446253
0.059156
.ui-igtree { list-style: none; overflow: auto; padding-bottom: 0.2em; -moz-user-select: none; -ms-user-select: none; -webkit-user-select: none; user-select: none; } .ui-igtree ul { list-style: none; padding-left: 0; margin-left: 0; } .ui-igtree .ui-igtree-root { padding-left: 0; margin-left: 0; } .ui-igtree-root { padding-left: 0; margin-left: 0; } .ui-igtree li { position:relative; line-height:1.9em; padding-top:0.1em; padding-bottom:0.1em; } .ui-igtree-collection { white-space: nowrap; } .ui-igtree-expander { position: absolute; left:0.8em; top:0.8em; margin-top: -8px; margin-left: -8px; width:16px; height:16px; } .ui-igtree a { padding:1px 3px; /* Bug:#620 regression from #226155 12.8.2016 // <NAME> // */ text-decoration: none; } .ui-igtree a.ui-state-hover, .ui-igtree a.ui-state-active, .ui-igtree a.ui-state-focus { padding:0 2px;/*compensating for the 1px borders of these other states*/ text-decoration: none; } .ui-igtree li a:focus, .ui-igtree li a:active { outline:0 none; } .ui-igtree-parentnode { padding-left: 1.9em; } .ui-igtree .ui-igtree-parentnode>ul { margin-top:0.1em; margin-bottom:0.1em; } .ui-igtree img { padding-right:0.2em; vertical-align: baseline; } .ui-igtree .ui-igcheckbox-normal { position:relative; height: 1.6em; width: 1.6em; vertical-align:top; margin-top:1px; margin-right:0.4em; font-size:0.8em; } .ui-igtree .ui-igcheckbox-small { height:13px; width:13px; position:relative; vertical-align: baseline; } .ui-state-hidden { display: none; visibility: hidden; } .ui-igtree-node-contents { } .ui-igtree-node-haschildren { margin-left: -1.9em; } .ui-igtree-node-nochildren { margin-left: 1.9em; } .ui-igtree-checkbox { display: block; width: 15px; height: 15px; margin-top: 6px; line-height: 15px; overflow: hidden; background-repeat: no-repeat; cursor:pointer; } .ui-igtree .ui-igcheckbox-normal-on { position:relative; top:50%; left:50%; margin-top:-8px; margin-left:-8px; } .ui-igtree .ui-igcheckbox-normal-off { width:1.6em; height:1.6em; } /*////////////////////////////////// Drag and Drop CSS ////////////////////////////////////////////////*/ .ui-igtree-dropindicator { clear:left; float:left; overflow:visible; white-space:nowrap; /* K.D. September 3rd, 2012 Bug #118026 The drag markup is positioned underneath the cursor for nodes without children. */ margin-left:35px; } .ui-igtree-dropindicator .ui-icon { position:relative; float:left; margin-top:-8px; margin-right: 0.3em; top:0.9em; } .ui-igtree-dropindicator p { line-height: 1.8em; margin: 0; padding: 0 0.7em; } .ui-igtree-insertline.ui-state-default { height: 0; border-width:1px 0 0; background: transparent none; margin:-1px 0 0; width: 50%; position:relative; bottom:-0.1em; } /* Touch friendly */ .touch .ui-igtree, .touchevents .ui-igtree, .pointerevents .ui-igtree { font-size: 1.3em; }
src/css/structure/modules/infragistics.ui.tree.css
.ui-igtree { list-style: none; overflow: auto; padding-bottom: 0.2em; -moz-user-select: none; -ms-user-select: none; -webkit-user-select: none; user-select: none; } .ui-igtree ul { list-style: none; padding-left: 0; margin-left: 0; } .ui-igtree .ui-igtree-root { padding-left: 0; margin-left: 0; } .ui-igtree-root { padding-left: 0; margin-left: 0; } .ui-igtree li { position:relative; line-height:1.9em; padding-top:0.1em; padding-bottom:0.1em; } .ui-igtree-collection { white-space: nowrap; } .ui-igtree-expander { position: absolute; left:0.8em; top:0.8em; margin-top: -8px; margin-left: -8px; width:16px; height:16px; } .ui-igtree a { padding:1px 3px; /* Bug:#620 regression from #226155 12.8.2016 // <NAME> // */ text-decoration: none; } .ui-igtree a.ui-state-hover, .ui-igtree a.ui-state-active, .ui-igtree a.ui-state-focus { padding:0 2px;/*compensating for the 1px borders of these other states*/ text-decoration: none; } .ui-igtree li a:focus, .ui-igtree li a:active { outline:0 none; } .ui-igtree-parentnode { padding-left: 1.9em; } .ui-igtree .ui-igtree-parentnode>ul { margin-top:0.1em; margin-bottom:0.1em; } .ui-igtree img { padding-right:0.2em; vertical-align: baseline; } .ui-igtree .ui-igcheckbox-normal { position:relative; height: 1.6em; width: 1.6em; vertical-align:top; margin-top:1px; margin-right:0.4em; font-size:0.8em; } .ui-igtree .ui-igcheckbox-small { height:13px; width:13px; position:relative; vertical-align: baseline; } .ui-state-hidden { display: none; visibility: hidden; } .ui-igtree-node-contents { } .ui-igtree-node-haschildren { margin-left: -1.9em; } .ui-igtree-node-nochildren { margin-left: 1.9em; } .ui-igtree-checkbox { display: block; width: 15px; height: 15px; margin-top: 6px; line-height: 15px; overflow: hidden; background-repeat: no-repeat; cursor:pointer; } .ui-igtree .ui-igcheckbox-normal-on { position:relative; top:50%; left:50%; margin-top:-8px; margin-left:-8px; } .ui-igtree .ui-igcheckbox-normal-off { width:1.6em; height:1.6em; } /*////////////////////////////////// Drag and Drop CSS ////////////////////////////////////////////////*/ .ui-igtree-dropindicator { clear:left; float:left; overflow:visible; white-space:nowrap; /* K.D. September 3rd, 2012 Bug #118026 The drag markup is positioned underneath the cursor for nodes without children. */ margin-left:35px; } .ui-igtree-dropindicator .ui-icon { position:relative; float:left; margin-top:-8px; margin-right: 0.3em; top:0.9em; } .ui-igtree-dropindicator p { line-height: 1.8em; margin: 0; padding: 0 0.7em; } .ui-igtree-insertline.ui-state-default { height: 0; border-width:1px 0 0; background: transparent none; margin:-1px 0 0; width: 50%; position:relative; bottom:-0.1em; } /* Touch friendly */ .touch .ui-igtree, .touchevents .ui-igtree, .pointerevents .ui-igtree { font-size: 1.3em; }
0.319758
0.054024
a.tpl_action { font-variant : small_caps; padding : 10px 1px 10px 24px; } /* -------------- top row --------------- */ div.dokuwiki div.imagerow { background-image: url(images/Leiste_Startseite.jpg); background-repeat: repeat-x; background-position: top left ; background-color: __tus_wiki_background__; height: 150px; overflow: hidden; margin-top: 10px; margin-bottom: 10px; } div.dokuwiki div.imagerow_halle { background-image: url(images/Leiste_Halle.jpg); background-repeat: repeat-x; background-position: top left ; background-color: __tus_wiki_background__; height: 150px; overflow: hidden; margin-top: 10px; margin-bottom: 10px; } div.dokuwiki div.imagerow_beach { background-image: url(images/Leiste_Beach.jpg); background-repeat: repeat-x; background-position: top left ; background-color: __tus_wiki_background__; height: 150px; overflow: hidden; margin-top: 10px; margin-bottom: 10px; } div.dokuwiki .header { background-image: url(images/tus_header_background.png); background-repeat: repeat-x; height: 86px; overflow: hidden; } // used for pagename in the top left of the page. Unused in rg template div.dokuwiki .title { float: left; text-align: left; } div.dokuwiki .title a:link, div.dokuwiki .title a:visited, div.dokuwiki .title a:hover, div.dokuwiki .title a:active { color: white; text-decoration:none; } div.dokuwiki div.header div.logo { float: right; background-image: url(images/tus_header_logo.png); background-repeat: no-repeat; background-position: top left ; height: 86px; width: 86px; margin-right: 20px; overflow: hidden; } div.dokuwiki a#dokuwiki__top { float : left; margin-top : 28px; margin-left : 20px; font-family : helvetica; font-size : 24px; font-weight: bolder; color: white; } div.dokuwiki .logo a:link, div.dokuwiki .logo a:visited, div.dokuwiki .logo a:hover, div.dokuwiki .logo a:active { color: __rg_logo_color__; text-decoration:none; font-variant:small-caps; letter-spacing:2pt; } div.dokuwiki div.sideandpage { margin-top: 10px; } /* the document */ div.dokuwiki div.page { text-align: justify; padding-right: 15px; padding-left: 15px; padding-bottom: 30px; padding-top : 5px; margin-left : 20px; } /* the sidebar */ div.dokuwiki div.sidebar { background-color: __rg_sidebar__ ; padding-top: 0px; padding-bottom: 5px; overflow: hidden; font-size : 80% ; } /* the search box */ div.dokuwiki div.searchbarandshadows { margin-top: 4px ; } div.dokuwiki div.searchbar { background-color: __rg_search__ ; border-style : solid; border-width: 1px 1px 1px 1px; border-color: __rg_search_border__ ; padding-top: 4px; padding-bottom: 4px; text-align : left ; font-size : 80% ; } div.dokuwiki div.userbar { background-color: __rg_userbar__ ; font-size: 80% ; background-image: url(images/sidebar_background.png); background-repeat: no-repeat; padding-bottom : 15px; padding-top: 4px; } div.dokuwiki div.userbarheading { border-bottom: 1px solid __tus_text_color__; color: __tus_text_color__; width: 100%; margin-bottom: 7px; font-size: 10px; padding-top: 0.5em; font-weight: bold; } div.dokuwiki div#sidebarActionTableId, div.dokuwiki div#pageActionTableId, div.dokuwiki div#wikiActionTableId, div.dokuwiki div#userActionTableId, div.dokuwiki div#submitActionTableId { margin-left : 30px; padding-top : 4px; } div.dokuwiki div#wikiActionTableId { margin-top : 10px; } div.dokuwiki div.userbarstrip { margin-left : 20px; margin-right : 35px; border-style : solid; border-width: 0px 0px 1px 0px; border-color: __rg_userbar_border__ ; padding-top: 15px; color : __rg_userbar_color__; font-variant:small-caps; font-weight: bolder; font-size: 100% ; cursor: pointer; } div.dokuwiki div.userbarstrip:hover { /* background-color: __rg_sidebar__ ; */ } /* the left column ( sidebar, search box, action box) */ div.dokuwiki div.sideleft { width: 220px; overflow: hidden; } div.dokuwiki div.mainright { } div.dokuwiki div.mainfull { width: 90; float: center; } /* hack needed to avoid some unwanted extra space between boxes and their shadows */ div.dokuwiki div.searchbarandshadows table, div.dokuwiki div.userbarandshadows table, div.dokuwiki div.sidebar table { margin : 0; padding: 0; } /* --------------- status bar ---------------- */ div.dokuwiki .bar { background-color: __rg_status_background__; background-image: url(images/tus_footer_background.png); background-repeat: repeat-x; color: __tus_footer_color__; text-align: center; margin-top: 10px; padding-top: 10px; width: 100%; font-size : 80%; clear: both; overflow: hidden; height: 50px; } div.dokuwiki .bar-left { float: left; } div.dokuwiki .bar-right { float: right; text-align: right; } div.dokuwiki #bar__bottom { margin-bottom:3px; } /* ------------- File Metadata ----------------------- */ div.dokuwiki div.meta { clear: both; margin-top: 1em; color: __text_alt__; font-size: 70%; } div.dokuwiki div.meta div.user { float: left; margin-left : 20px; } div.dokuwiki div.meta div.doc { text-align: right; }
tus_rueppurr_reloaded/layout.css
a.tpl_action { font-variant : small_caps; padding : 10px 1px 10px 24px; } /* -------------- top row --------------- */ div.dokuwiki div.imagerow { background-image: url(images/Leiste_Startseite.jpg); background-repeat: repeat-x; background-position: top left ; background-color: __tus_wiki_background__; height: 150px; overflow: hidden; margin-top: 10px; margin-bottom: 10px; } div.dokuwiki div.imagerow_halle { background-image: url(images/Leiste_Halle.jpg); background-repeat: repeat-x; background-position: top left ; background-color: __tus_wiki_background__; height: 150px; overflow: hidden; margin-top: 10px; margin-bottom: 10px; } div.dokuwiki div.imagerow_beach { background-image: url(images/Leiste_Beach.jpg); background-repeat: repeat-x; background-position: top left ; background-color: __tus_wiki_background__; height: 150px; overflow: hidden; margin-top: 10px; margin-bottom: 10px; } div.dokuwiki .header { background-image: url(images/tus_header_background.png); background-repeat: repeat-x; height: 86px; overflow: hidden; } // used for pagename in the top left of the page. Unused in rg template div.dokuwiki .title { float: left; text-align: left; } div.dokuwiki .title a:link, div.dokuwiki .title a:visited, div.dokuwiki .title a:hover, div.dokuwiki .title a:active { color: white; text-decoration:none; } div.dokuwiki div.header div.logo { float: right; background-image: url(images/tus_header_logo.png); background-repeat: no-repeat; background-position: top left ; height: 86px; width: 86px; margin-right: 20px; overflow: hidden; } div.dokuwiki a#dokuwiki__top { float : left; margin-top : 28px; margin-left : 20px; font-family : helvetica; font-size : 24px; font-weight: bolder; color: white; } div.dokuwiki .logo a:link, div.dokuwiki .logo a:visited, div.dokuwiki .logo a:hover, div.dokuwiki .logo a:active { color: __rg_logo_color__; text-decoration:none; font-variant:small-caps; letter-spacing:2pt; } div.dokuwiki div.sideandpage { margin-top: 10px; } /* the document */ div.dokuwiki div.page { text-align: justify; padding-right: 15px; padding-left: 15px; padding-bottom: 30px; padding-top : 5px; margin-left : 20px; } /* the sidebar */ div.dokuwiki div.sidebar { background-color: __rg_sidebar__ ; padding-top: 0px; padding-bottom: 5px; overflow: hidden; font-size : 80% ; } /* the search box */ div.dokuwiki div.searchbarandshadows { margin-top: 4px ; } div.dokuwiki div.searchbar { background-color: __rg_search__ ; border-style : solid; border-width: 1px 1px 1px 1px; border-color: __rg_search_border__ ; padding-top: 4px; padding-bottom: 4px; text-align : left ; font-size : 80% ; } div.dokuwiki div.userbar { background-color: __rg_userbar__ ; font-size: 80% ; background-image: url(images/sidebar_background.png); background-repeat: no-repeat; padding-bottom : 15px; padding-top: 4px; } div.dokuwiki div.userbarheading { border-bottom: 1px solid __tus_text_color__; color: __tus_text_color__; width: 100%; margin-bottom: 7px; font-size: 10px; padding-top: 0.5em; font-weight: bold; } div.dokuwiki div#sidebarActionTableId, div.dokuwiki div#pageActionTableId, div.dokuwiki div#wikiActionTableId, div.dokuwiki div#userActionTableId, div.dokuwiki div#submitActionTableId { margin-left : 30px; padding-top : 4px; } div.dokuwiki div#wikiActionTableId { margin-top : 10px; } div.dokuwiki div.userbarstrip { margin-left : 20px; margin-right : 35px; border-style : solid; border-width: 0px 0px 1px 0px; border-color: __rg_userbar_border__ ; padding-top: 15px; color : __rg_userbar_color__; font-variant:small-caps; font-weight: bolder; font-size: 100% ; cursor: pointer; } div.dokuwiki div.userbarstrip:hover { /* background-color: __rg_sidebar__ ; */ } /* the left column ( sidebar, search box, action box) */ div.dokuwiki div.sideleft { width: 220px; overflow: hidden; } div.dokuwiki div.mainright { } div.dokuwiki div.mainfull { width: 90; float: center; } /* hack needed to avoid some unwanted extra space between boxes and their shadows */ div.dokuwiki div.searchbarandshadows table, div.dokuwiki div.userbarandshadows table, div.dokuwiki div.sidebar table { margin : 0; padding: 0; } /* --------------- status bar ---------------- */ div.dokuwiki .bar { background-color: __rg_status_background__; background-image: url(images/tus_footer_background.png); background-repeat: repeat-x; color: __tus_footer_color__; text-align: center; margin-top: 10px; padding-top: 10px; width: 100%; font-size : 80%; clear: both; overflow: hidden; height: 50px; } div.dokuwiki .bar-left { float: left; } div.dokuwiki .bar-right { float: right; text-align: right; } div.dokuwiki #bar__bottom { margin-bottom:3px; } /* ------------- File Metadata ----------------------- */ div.dokuwiki div.meta { clear: both; margin-top: 1em; color: __text_alt__; font-size: 70%; } div.dokuwiki div.meta div.user { float: left; margin-left : 20px; } div.dokuwiki div.meta div.doc { text-align: right; }
0.420719
0.238794
@import url(https://fonts.googleapis.com/css?family=Roboto:400,300,100,900); * { font-family: 'Roboto', sans-serif; } .thumbnail img { width: 100%; } .ratings { padding-right: 10px; padding-left: 10px; color: #d17581; } .thumbnail { padding: 0; } .thumbnail .caption-full { padding: 9px; color: #333; } footer { margin: 50px 0; } .affix { width: 292.500px; } @media (min-width: 1200px) { .affix { top: 72px; width: 292.500px; } } .navbar-custom { background-color: #449d44; border-color: #449d44; } .navbar-custom a { color: #fff !important; } #sidebar_affix .nav > li > a { color: #9d9d9d; } #sidebar_affix .nav-pills > li.active > a, #sidebar_affix .nav-pills > li.active > a:hover, #sidebar_affix .nav-pills > li.active > a:focus, #sidebar_affix .nav-pills > li.active > ul > li.active > a, #sidebar_affix .nav-pills > li.active > ul > li.active > a:hover, #sidebar_affix .nav-pills > li.active > ul > li.active > a:focus { color: #449d44; background-color: transparent; font-weight: 600; border-radius: 0px 0px 0px 0px; -moz-border-radius: 0px 0px 0px 0px; -webkit-border-radius: 0px 0px 0px 0px; border-left: 2px #449d44 solid; } #sidebar_affix .nav > li > a:hover, #sidebar_affix .nav > li > a:focus { color: #449d44; text-decoration: none; border-radius: 0px 0px 0px 0px; -moz-border-radius: 0px 0px 0px 0px; -webkit-border-radius: 0px 0px 0px 0px; background-color: #eeeeee; border-left: 1px #449d44 solid; background-color: transparent; } #sidebar_affix.affix-top .affix { position: relative !important; top: 0 !important; } .header-image { display: block; width: 100%; text-align: center; background-color: #449d44; /* background: url('../../img/bg_head.png') no-repeat center center scroll; */ -webkit-background-size: cover; -moz-background-size: cover; background-size: cover; -o-background-size: cover; margin-bottom: 50px } .headline { padding: 120px 0; } .headline h1 { font-size: 100px; color: #fff; } .headline h2 { font-size: 77px; background: #fff; background: rgba(255,255,255,0.9); } .tutorial-content h1{ padding-bottom: 10px; margin-top: 0; border-bottom: 1px solid #d7d7d7; font-size: 3.3em; font-weight: 800; } .tutorial-content p, .tutorial-content ol { font-size: 1.3em; font-weight: 300; } .tutorial-content .img-cntr { margin-bottom: 50px; margin-left: auto; margin-right: auto; } .nav.nav-pills > li ul.nav-sub { display: none; } .nav.nav-pills > li.active ul.nav-sub { display: block; } ul.nav.nav-sub > li > a { padding: 0 15px 0 35px; font-size: 13px; } span.code-sample { font-family: "Courier New", Courier, monospace; font-weight: 800; } span.command-line { font-family: "Courier New", Courier, monospace; font-weight: 600; padding: 0 5px; background-color: #dff0d8; } div.black-area { border: 2px solid #ddd; background-color: #333; color: #fff; padding: 20px; font-size: .8em; line-height: 14px; } div.black-area .command-green { color: #63E463; font-family: "Courier New", Courier, monospace; font-weight: 800; }
assets/css/custom.css
@import url(https://fonts.googleapis.com/css?family=Roboto:400,300,100,900); * { font-family: 'Roboto', sans-serif; } .thumbnail img { width: 100%; } .ratings { padding-right: 10px; padding-left: 10px; color: #d17581; } .thumbnail { padding: 0; } .thumbnail .caption-full { padding: 9px; color: #333; } footer { margin: 50px 0; } .affix { width: 292.500px; } @media (min-width: 1200px) { .affix { top: 72px; width: 292.500px; } } .navbar-custom { background-color: #449d44; border-color: #449d44; } .navbar-custom a { color: #fff !important; } #sidebar_affix .nav > li > a { color: #9d9d9d; } #sidebar_affix .nav-pills > li.active > a, #sidebar_affix .nav-pills > li.active > a:hover, #sidebar_affix .nav-pills > li.active > a:focus, #sidebar_affix .nav-pills > li.active > ul > li.active > a, #sidebar_affix .nav-pills > li.active > ul > li.active > a:hover, #sidebar_affix .nav-pills > li.active > ul > li.active > a:focus { color: #449d44; background-color: transparent; font-weight: 600; border-radius: 0px 0px 0px 0px; -moz-border-radius: 0px 0px 0px 0px; -webkit-border-radius: 0px 0px 0px 0px; border-left: 2px #449d44 solid; } #sidebar_affix .nav > li > a:hover, #sidebar_affix .nav > li > a:focus { color: #449d44; text-decoration: none; border-radius: 0px 0px 0px 0px; -moz-border-radius: 0px 0px 0px 0px; -webkit-border-radius: 0px 0px 0px 0px; background-color: #eeeeee; border-left: 1px #449d44 solid; background-color: transparent; } #sidebar_affix.affix-top .affix { position: relative !important; top: 0 !important; } .header-image { display: block; width: 100%; text-align: center; background-color: #449d44; /* background: url('../../img/bg_head.png') no-repeat center center scroll; */ -webkit-background-size: cover; -moz-background-size: cover; background-size: cover; -o-background-size: cover; margin-bottom: 50px } .headline { padding: 120px 0; } .headline h1 { font-size: 100px; color: #fff; } .headline h2 { font-size: 77px; background: #fff; background: rgba(255,255,255,0.9); } .tutorial-content h1{ padding-bottom: 10px; margin-top: 0; border-bottom: 1px solid #d7d7d7; font-size: 3.3em; font-weight: 800; } .tutorial-content p, .tutorial-content ol { font-size: 1.3em; font-weight: 300; } .tutorial-content .img-cntr { margin-bottom: 50px; margin-left: auto; margin-right: auto; } .nav.nav-pills > li ul.nav-sub { display: none; } .nav.nav-pills > li.active ul.nav-sub { display: block; } ul.nav.nav-sub > li > a { padding: 0 15px 0 35px; font-size: 13px; } span.code-sample { font-family: "Courier New", Courier, monospace; font-weight: 800; } span.command-line { font-family: "Courier New", Courier, monospace; font-weight: 600; padding: 0 5px; background-color: #dff0d8; } div.black-area { border: 2px solid #ddd; background-color: #333; color: #fff; padding: 20px; font-size: .8em; line-height: 14px; } div.black-area .command-green { color: #63E463; font-family: "Courier New", Courier, monospace; font-weight: 800; }
0.309024
0.119331
@import url("https://fonts.googleapis.com/css?family=Tajawal:200,300,400,500,700&display=swap&subset=arabic"); body { background-color: #353535; } .back { background-color: #f3971b; color: #292929; font-weight: bold; } .clearfix { clear: both; } hr { margin-top: 10; margin-bottom: 40px; border-top: 2px solid #292929; } .navbar-inverse .navbar-nav > li > a { color: #fff; } .navbar-inverse .navbar-nav > li > a:hover { color: #f3971b; } .navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus { color: #f3971b; background: transparent; } .navbar { border-radius: 0; background-color: #292929; } .navbar-inverse { border-color: #292929; } .navbar .navbar-brand { font-family: Tajawal; font-weight: bold; color: #f3971b; } .navbar-right .dropdown-menu { left: auto; right: 0; } .dropdown-menu { background-color: #292929; } .dropdown-menu > li > a { color: #fff; padding: 6px 20px; transition: padding 0.5s ease; } .dropdown-menu > li > a:hover { background-color: #f3971b; color: #fff; padding-right: 25px; } .dropdown-menu .divider { background-color: #f3971b; } .heading-bg { padding: 30px 0 20px; } /* اضافة جهة جديدة */ .add-org form input, .add-org form select { height: 44px; background-color: #292929; border: none; color: #dfdfdf; } .add-org form .input-group-addon { background-color: #292929; border: none; border-left: 1px solid rgba(2, 2, 2, 0.2); color: #dfdfdf; } .add-org form .btns { margin: 20px auto; text-align: center; } .add-org form .btns button { padding: 10px 30px; } .add-org table thead { color: #dfdfdf; } .add-org table .input-group { margin-bottom: 20px; } .add-org .table-striped > tbody > tr:nth-of-type(odd) { background-color: #292929; color: #fff; } .add-org .table-striped > tbody > tr:nth-of-type(even) { background-color: #353535; color: #fff; } .add-org .table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td { border: none; color: #dfdfdf; } /* تعديل على الجهة */ .edit-org form .form-group { width: 800px; margin-left: auto; margin-right: auto; } .edit-org form input, .edit-org form select { height: 44px; background-color: #292929; border: none; color: #dfdfdf; } .edit-org form .input-group-addon { background-color: #292929; border: none; border-left: 1px solid rgba(2, 2, 2, 0.2); color: #dfdfdf; } .edit-org form button { padding: 10px 50px; margin-top: 30px; } /* عرض الجهة */ .show-org p { color: #dfdfdf; } .show-org p span { font-size: 18px; font-weight: normal; } .show-org table thead { color: #dfdfdf; } .show-org table .input-group { margin-bottom: 20px; } .show-org .table-striped > tbody > tr:nth-of-type(odd) { background-color: #292929; color: #fff; } .show-org .table-striped > tbody > tr:nth-of-type(even) { background-color: #353535; color: #fff; } .show-org .table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td { border: none; color: #dfdfdf; } .show-org h3 { color: #f3971b; font-weight: bold; } .show-org .data { background-color: #292929; margin-top: 80px; margin-bottom: 40px; } /* اضافة كتاب صادر */ .add-export form input, .add-export form select { height: 44px; background-color: #292929; border: none; color: #dfdfdf; } .add-export form .input-group-addon { background-color: #292929; border: none; border-left: 1px solid rgba(2, 2, 2, 0.2); color: #dfdfdf; } .add-export form button { padding: 10px 30px; margin-top: 20px; } /* تعديل على الكتاب الصادر */ .edit-export form input, .edit-export form select { height: 44px; background-color: #292929; border: none; color: #dfdfdf; } .edit-export form .input-group-addon { background-color: #292929; border: none; border-left: 1px solid rgba(2, 2, 2, 0.2); color: #dfdfdf; } .edit-export form button { padding: 10px 50px; margin-top: 30px; } .validate-message { margin-right: 36px; margin-bottom: 2px; display: inline-block; }
public/css/style.css
@import url("https://fonts.googleapis.com/css?family=Tajawal:200,300,400,500,700&display=swap&subset=arabic"); body { background-color: #353535; } .back { background-color: #f3971b; color: #292929; font-weight: bold; } .clearfix { clear: both; } hr { margin-top: 10; margin-bottom: 40px; border-top: 2px solid #292929; } .navbar-inverse .navbar-nav > li > a { color: #fff; } .navbar-inverse .navbar-nav > li > a:hover { color: #f3971b; } .navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus { color: #f3971b; background: transparent; } .navbar { border-radius: 0; background-color: #292929; } .navbar-inverse { border-color: #292929; } .navbar .navbar-brand { font-family: Tajawal; font-weight: bold; color: #f3971b; } .navbar-right .dropdown-menu { left: auto; right: 0; } .dropdown-menu { background-color: #292929; } .dropdown-menu > li > a { color: #fff; padding: 6px 20px; transition: padding 0.5s ease; } .dropdown-menu > li > a:hover { background-color: #f3971b; color: #fff; padding-right: 25px; } .dropdown-menu .divider { background-color: #f3971b; } .heading-bg { padding: 30px 0 20px; } /* اضافة جهة جديدة */ .add-org form input, .add-org form select { height: 44px; background-color: #292929; border: none; color: #dfdfdf; } .add-org form .input-group-addon { background-color: #292929; border: none; border-left: 1px solid rgba(2, 2, 2, 0.2); color: #dfdfdf; } .add-org form .btns { margin: 20px auto; text-align: center; } .add-org form .btns button { padding: 10px 30px; } .add-org table thead { color: #dfdfdf; } .add-org table .input-group { margin-bottom: 20px; } .add-org .table-striped > tbody > tr:nth-of-type(odd) { background-color: #292929; color: #fff; } .add-org .table-striped > tbody > tr:nth-of-type(even) { background-color: #353535; color: #fff; } .add-org .table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td { border: none; color: #dfdfdf; } /* تعديل على الجهة */ .edit-org form .form-group { width: 800px; margin-left: auto; margin-right: auto; } .edit-org form input, .edit-org form select { height: 44px; background-color: #292929; border: none; color: #dfdfdf; } .edit-org form .input-group-addon { background-color: #292929; border: none; border-left: 1px solid rgba(2, 2, 2, 0.2); color: #dfdfdf; } .edit-org form button { padding: 10px 50px; margin-top: 30px; } /* عرض الجهة */ .show-org p { color: #dfdfdf; } .show-org p span { font-size: 18px; font-weight: normal; } .show-org table thead { color: #dfdfdf; } .show-org table .input-group { margin-bottom: 20px; } .show-org .table-striped > tbody > tr:nth-of-type(odd) { background-color: #292929; color: #fff; } .show-org .table-striped > tbody > tr:nth-of-type(even) { background-color: #353535; color: #fff; } .show-org .table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td { border: none; color: #dfdfdf; } .show-org h3 { color: #f3971b; font-weight: bold; } .show-org .data { background-color: #292929; margin-top: 80px; margin-bottom: 40px; } /* اضافة كتاب صادر */ .add-export form input, .add-export form select { height: 44px; background-color: #292929; border: none; color: #dfdfdf; } .add-export form .input-group-addon { background-color: #292929; border: none; border-left: 1px solid rgba(2, 2, 2, 0.2); color: #dfdfdf; } .add-export form button { padding: 10px 30px; margin-top: 20px; } /* تعديل على الكتاب الصادر */ .edit-export form input, .edit-export form select { height: 44px; background-color: #292929; border: none; color: #dfdfdf; } .edit-export form .input-group-addon { background-color: #292929; border: none; border-left: 1px solid rgba(2, 2, 2, 0.2); color: #dfdfdf; } .edit-export form button { padding: 10px 50px; margin-top: 30px; } .validate-message { margin-right: 36px; margin-bottom: 2px; display: inline-block; }
0.397821
0.115262
.rr_root_container { display: none; margin-top: 30px; } .rr_form { max-width: 500px; background: #F7F7F7; padding: 25px 15px 20px 10px; font: 12px Georgia, "Times New Roman", Times, serif; color: #888; text-shadow: 1px 1px 1px #FFF; border: 1px solid #E4E4E4; } .rr_form input.rr_input_error { border: 1px solid #DA0000; } .rr_form input { border: 1px solid #DADADA; } .rr_form h1 { font-size: 19px; padding: 0px 0px 10px 40px; display: block; border-bottom: 1px solid #E4E4E4; margin: -10px -18px 30px -10px; color: #888; } .rr_form h1>span { display: block; font-size: 11px; text-decoration: none; } .rr_form h1>span>i { color: #63b8e4; } .rr_form .section { display: block; margin: 0px; } .rr_form .section>span { float: left; width: 30%; text-align: right; padding-right: 10px; margin-top: 10px; color: #888; } .rr_form input[type="text"], .rr_form input[type="password"], .rr_form input[type="email"], .rr_form input[type="select"] { color: #888; height: 30px; margin-bottom: 16px; margin-right: 6px; margin-top: 2px; outline: 0 none; padding: 3px 3px 3px 5px; width: 62%; font-size: 12px; line-height: 15px; box-shadow: inset 0px 1px 4px #ECECEC; -moz-box-shadow: inset 0px 1px 4px #ECECEC; -webkit-box-shadow: inset 0px 1px 4px #ECECEC; webkit-transition: all .4s ease-in-out; -moz-transition: all .4s ease-in-out; transition: all .4s ease-in-out; } .required { } .rr_button { background: #4B758B; border: none; padding: 5px 17px 5px 17px; color: #FFF; box-shadow: 1px 1px 5px #B6B6B6; border-radius: 3px; text-shadow: 1px 1px 1px #0D3950; cursor: pointer; webkit-transition: all .2s ease-in-out; -moz-transition: all .2s ease-in-out; transition: all .2s ease-in-out; } .rr_button:hover { background: #3F6275; } .rr_button.disabled,.rr_button:hover.disabled { background: #DDDDDD; cursor: default; } .rr_error { color: #DF0000; } #rr_msg { margin: 20px 15px 0px 15px; }
master/restricted-register-plugin-master/restricted-register-plugin-master/src/main/resources/com/infullmobile/jenkins/plugin/restrictedregister/css/form.css
.rr_root_container { display: none; margin-top: 30px; } .rr_form { max-width: 500px; background: #F7F7F7; padding: 25px 15px 20px 10px; font: 12px Georgia, "Times New Roman", Times, serif; color: #888; text-shadow: 1px 1px 1px #FFF; border: 1px solid #E4E4E4; } .rr_form input.rr_input_error { border: 1px solid #DA0000; } .rr_form input { border: 1px solid #DADADA; } .rr_form h1 { font-size: 19px; padding: 0px 0px 10px 40px; display: block; border-bottom: 1px solid #E4E4E4; margin: -10px -18px 30px -10px; color: #888; } .rr_form h1>span { display: block; font-size: 11px; text-decoration: none; } .rr_form h1>span>i { color: #63b8e4; } .rr_form .section { display: block; margin: 0px; } .rr_form .section>span { float: left; width: 30%; text-align: right; padding-right: 10px; margin-top: 10px; color: #888; } .rr_form input[type="text"], .rr_form input[type="password"], .rr_form input[type="email"], .rr_form input[type="select"] { color: #888; height: 30px; margin-bottom: 16px; margin-right: 6px; margin-top: 2px; outline: 0 none; padding: 3px 3px 3px 5px; width: 62%; font-size: 12px; line-height: 15px; box-shadow: inset 0px 1px 4px #ECECEC; -moz-box-shadow: inset 0px 1px 4px #ECECEC; -webkit-box-shadow: inset 0px 1px 4px #ECECEC; webkit-transition: all .4s ease-in-out; -moz-transition: all .4s ease-in-out; transition: all .4s ease-in-out; } .required { } .rr_button { background: #4B758B; border: none; padding: 5px 17px 5px 17px; color: #FFF; box-shadow: 1px 1px 5px #B6B6B6; border-radius: 3px; text-shadow: 1px 1px 1px #0D3950; cursor: pointer; webkit-transition: all .2s ease-in-out; -moz-transition: all .2s ease-in-out; transition: all .2s ease-in-out; } .rr_button:hover { background: #3F6275; } .rr_button.disabled,.rr_button:hover.disabled { background: #DDDDDD; cursor: default; } .rr_error { color: #DF0000; } #rr_msg { margin: 20px 15px 0px 15px; }
0.284974
0.089813
* { margin: 0; padding: 0; box-sizing: border-box; } img { max-width: 100%; height: auto; } html, body { font: 14px Lato, sans-serif; min-height: 100vh; min-width: 100%; background-color: #669999; } /*---------------------------------------*/ /*--------- Styling Hintergrund -------*/ /*---------------------------------------*/ #bgImg { /* Set rules to fill background */ min-height: 100%; min-width: 1024px; /* Set up proportionate scaling */ width: 100%; height: auto; /* Set up positioning */ position: fixed; top: 0; left: 0; z-index: -5; } @media screen and (max-width: 1024px) { /* Specific to this particular image */ #bgImg { left: 50%; margin-left: -512px; /* 50% */ } } /*---------------------------------------*/ /*--------- Header --------------------*/ /*---------------------------------------*/ #header { background-color: #324f51; height: 3.5rem; text-align: center; padding: 10px 0 15px 0; } #header h1 { color: white; } /*---------------------------------------*/ /*--------- Styling Chatfenster -------*/ /*---------------------------------------*/ #wrapper { max-width: 650px; background-color: #BBC6C6; max-height: 100vh; margin: auto; z-index: 1; position: relative; border-radius: 0 0 15px 15px; } #chatwindow { min-height: 40vh; max-height: 70vh; overflow: auto; } .speech { padding: 0.6rem; border-radius: 12px; font-size: 1.2rem; line-height: 1.3; } .speech.left { background-color: white; float: left; max-width: 60%; margin-right: 30%; margin: 0.2rem 0 0.2rem 5px; display: block; } .speech.right { background-color: rgb(214, 245, 198); float: right; max-width: 60%; margin-left: 30%; margin: 0.2rem 5px 0.2rem 0; display: block; text-align: left; } /*---------------------------------------*/ /*--------- Texteingabe-Feld -- -------*/ /*---------------------------------------*/ #textInput { width: 100%; font-size: 1.2rem; background-color: #324f51; padding: 1rem 0px 1.2rem 0; border-radius: 0 0 15px 15px; } #inputField { width: 80%; line-height: 1.3rem; padding: 5px; background-color: white; float: left; margin-left: 4%; display: block; border-radius: 5px; } /*wählt das Attribut*/ [contenteditable] { outline: 0px solid transparent; } #sendBtn { width: 9%; min-height: 2rem; margin-left: 1%; float: left; border-radius: 5px; cursor: pointer; } /*---------------------------------------*/ /*--------- Styling-Zusatzbuttons -------*/ /*---------------------------------------*/ #botUmstellen { margin: auto; max-width: 70%; padding: 4px; margin-top: 3rem; font-size: 1.5rem; color: white; text-align: center; } #btnWrap { max-width: 100%; min-height: 5rem; margin: auto; text-align: center; display: table; } #botUmstellen .btnGespr { background-color: #66cc66; font-size: 1.4rem; max-width: 35%; min-height: 5rem; float: left; margin: 0.8rem 0.5rem 0 0.5rem; padding: 1rem; border-radius: 5px; cursor: pointer; text-shadow: -1px -1px 1px rgba(255, 255, 255, .1), 1px 1px 1px rgba(0, 0, 0, .5), 2px 0px 10px rgba(112, 112, 112, 0); } /*---------------------------------------*/ /*--------- freie Klassen -------*/ /*---------------------------------------*/ .clearfixAfter:after { clear: both; } .clearfix { clear: both; display: table; } /*---------------------------------------*/ /*--------- Media Query ~~~<3 -------*/ /*---------------------------------------*/ @media only screen and (max-width: 600px) { #inputField { width: 95%; float: none; margin: auto; } #sendBtn { width: 25%; display: block; float: none; margin: auto; margin-top: 0.5rem; } #btnWrap { display: block; } #botUmstellen { margin: auto; max-width: 90%; padding: 4px; margin-top: 0.5rem; font-size: 1.7rem; color: white; text-align: center; } #botUmstellen .btnGespr { max-width: 70%; min-height: 2rem; margin: 0.5rem auto 0 auto; padding: 0.5rem; border-radius: 5px; float: none; display: block; } } /*Ende Media-Query, nicht Löschen Kathi
style_chatter.css
* { margin: 0; padding: 0; box-sizing: border-box; } img { max-width: 100%; height: auto; } html, body { font: 14px Lato, sans-serif; min-height: 100vh; min-width: 100%; background-color: #669999; } /*---------------------------------------*/ /*--------- Styling Hintergrund -------*/ /*---------------------------------------*/ #bgImg { /* Set rules to fill background */ min-height: 100%; min-width: 1024px; /* Set up proportionate scaling */ width: 100%; height: auto; /* Set up positioning */ position: fixed; top: 0; left: 0; z-index: -5; } @media screen and (max-width: 1024px) { /* Specific to this particular image */ #bgImg { left: 50%; margin-left: -512px; /* 50% */ } } /*---------------------------------------*/ /*--------- Header --------------------*/ /*---------------------------------------*/ #header { background-color: #324f51; height: 3.5rem; text-align: center; padding: 10px 0 15px 0; } #header h1 { color: white; } /*---------------------------------------*/ /*--------- Styling Chatfenster -------*/ /*---------------------------------------*/ #wrapper { max-width: 650px; background-color: #BBC6C6; max-height: 100vh; margin: auto; z-index: 1; position: relative; border-radius: 0 0 15px 15px; } #chatwindow { min-height: 40vh; max-height: 70vh; overflow: auto; } .speech { padding: 0.6rem; border-radius: 12px; font-size: 1.2rem; line-height: 1.3; } .speech.left { background-color: white; float: left; max-width: 60%; margin-right: 30%; margin: 0.2rem 0 0.2rem 5px; display: block; } .speech.right { background-color: rgb(214, 245, 198); float: right; max-width: 60%; margin-left: 30%; margin: 0.2rem 5px 0.2rem 0; display: block; text-align: left; } /*---------------------------------------*/ /*--------- Texteingabe-Feld -- -------*/ /*---------------------------------------*/ #textInput { width: 100%; font-size: 1.2rem; background-color: #324f51; padding: 1rem 0px 1.2rem 0; border-radius: 0 0 15px 15px; } #inputField { width: 80%; line-height: 1.3rem; padding: 5px; background-color: white; float: left; margin-left: 4%; display: block; border-radius: 5px; } /*wählt das Attribut*/ [contenteditable] { outline: 0px solid transparent; } #sendBtn { width: 9%; min-height: 2rem; margin-left: 1%; float: left; border-radius: 5px; cursor: pointer; } /*---------------------------------------*/ /*--------- Styling-Zusatzbuttons -------*/ /*---------------------------------------*/ #botUmstellen { margin: auto; max-width: 70%; padding: 4px; margin-top: 3rem; font-size: 1.5rem; color: white; text-align: center; } #btnWrap { max-width: 100%; min-height: 5rem; margin: auto; text-align: center; display: table; } #botUmstellen .btnGespr { background-color: #66cc66; font-size: 1.4rem; max-width: 35%; min-height: 5rem; float: left; margin: 0.8rem 0.5rem 0 0.5rem; padding: 1rem; border-radius: 5px; cursor: pointer; text-shadow: -1px -1px 1px rgba(255, 255, 255, .1), 1px 1px 1px rgba(0, 0, 0, .5), 2px 0px 10px rgba(112, 112, 112, 0); } /*---------------------------------------*/ /*--------- freie Klassen -------*/ /*---------------------------------------*/ .clearfixAfter:after { clear: both; } .clearfix { clear: both; display: table; } /*---------------------------------------*/ /*--------- Media Query ~~~<3 -------*/ /*---------------------------------------*/ @media only screen and (max-width: 600px) { #inputField { width: 95%; float: none; margin: auto; } #sendBtn { width: 25%; display: block; float: none; margin: auto; margin-top: 0.5rem; } #btnWrap { display: block; } #botUmstellen { margin: auto; max-width: 90%; padding: 4px; margin-top: 0.5rem; font-size: 1.7rem; color: white; text-align: center; } #botUmstellen .btnGespr { max-width: 70%; min-height: 2rem; margin: 0.5rem auto 0 auto; padding: 0.5rem; border-radius: 5px; float: none; display: block; } } /*Ende Media-Query, nicht Löschen Kathi
0.26322
0.041676
* { box-sizing: inherit; } html { box-sizing: border-box; } ol, ul { list-style: none; } img { display: block; max-width: 100%; height: auto; } a { text-decoration: none; } /* montserrat-regular - latin */ @font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 400; src: local('Montserrat Regular'), local('Montserrat-Regular'), url('../fonts/montserrat-v15-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('../fonts/montserrat-v15-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } /* montserrat-700 - latin */ @font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 700; src: local('Montserrat Bold'), local('Montserrat-Bold'), url('../fonts/montserrat-v15-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('../fonts/montserrat-v15-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } /* roboto-300 - latin */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 300; src: local('Roboto Light'), local('Roboto-Light'), url('../fonts/roboto-v20-latin-300.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('../fonts/roboto-v20-latin-300.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } /* roboto-regular - latin */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 400; src: local('Roboto'), local('Roboto-Regular'), url('../fonts/roboto-v20-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('../fonts/roboto-v20-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } .container { min-width: 300px; padding: 20px 10px 0; margin: 0 auto; height: auto; } button { border: none; background: none; } .nav-button { display: block; text-align: center; padding-bottom: 118px; cursor: pointer; } .nav-logo { display: block; font-family: 'Montserrat'; font-weight: 700; text-transform: uppercase; color: #ffffff; font-size: 20px; text-align: center; } .header { /* position: relative; */ background-repeat: no-repeat; background-size: cover; background-color: #000000; background-image: url("../img/background-header-mobile.png"); height: auto; } /* .header::after { content: ""; position: absolute; width: 100%; height: 100%; top: 0; left: 0; background-color: rgba(26, 25, 21, .1); } */ .nav-button-text { font-size: 14px; color: #ffffff; font-family: 'Montserrat'; font-weight: 700; padding: 8px 17px; border: 2px solid rgba(255, 255, 255, .0); border-radius: 20px; } .nav-log-in:hover, .nav-sign-up:hover { transition: 200ms; border: 2px solid #ffffff; } .header-text { text-align: center; } .header-h1 { font-family: 'Montserrat'; color: #ffffff; font-size: 30px; font-weight: bold; text-transform: uppercase; padding: 47px 0 17px; margin: 0; } .header-h1-br { display: block; } .header-description { font-family: 'Roboto'; font-weight: 300; font-size: 18px; color: #ffffff; margin: 0 20px; } .header-text { padding-bottom: 18px; } .header-button-find { font-size: 14px; font-family: 'Montserrat'; font-weight: 700; color: #ffffff; border-radius: 20px; background-color: rgb(255, 78, 80); padding: 13px 50px; display: block; margin: 0 auto; cursor: pointer; } .button-padding { padding-bottom: 111px; } .partners { background-color: #ffffff; padding-top: 72px; min-width: 300px; margin: 0; display: block; } .partners-heading { font-family: 'Montserrat'; font-weight: 700; font-size: 22px; color: #333333; text-align: center; padding-bottom: 18px; margin: 0; } .partners-name { font-family: 'Montserrat'; font-weight: 700; font-size: 14px; color: #333333; text-align: center; } .partners-description { font-family: 'Roboto'; font-weight: 300; color: #666666; font-size: 14px; text-align: center; } .partners-list { margin: 0; padding-left: 0; } .partners-list-item { width: 200px; } .partners-list-item:not(:last-child) { padding-bottom: 27px; } .partners-list { display: flex; flex-direction: column; align-items: center; } .partners-img { margin: 0 auto; display: block; } .partners-img-after { position: relative; } .partners-img-after::after { content: ""; width: 37px; height: 37px; background-color: rgb(255, 78, 80); background-color: rgb(255, 78, 80); border: 4px solid #ffffff; position: absolute; border-radius: 50%; left: 63%; bottom: -3px; /* background-image: url("/img/partners-01-after.png"); */ background-repeat: no-repeat; background-position: center; } .partners-img-01::after { background-image: url("../img/partners-01-after.png"); } .partners-img-02::after { background-image: url("../img/partners-02-after.png"); background-color: rgb(255, 165, 7); } .partners-img-03::after { background-image: url("../img/partners-03-after.png"); background-color: rgb(28, 215, 173); } .partners-img-04::after { background-image: url("../img/partners-04-after.png"); background-color: rgb(78, 115, 219); } .partners-see-more { font-family: 'Montserrat'; font-weight: 700; color: #ff4e50; font-size: 14px; border: 2px solid #ff4e50; border-radius: 20px; padding: 11px 73px; margin: 0 auto; cursor: pointer; display: block; } .partners-see-more-wrapper { padding: 17px 0 58px; } @media (min-width:768px) { .header { background-image: url("../img/background-header-tablet.png"); min-height: 700px; } .header>.container { min-height: 700px; } .nav { display: flex; flex-direction: row-reverse; justify-content: space-between; padding-left: 40px; padding-right: 40px; align-items: baseline; padding-top: 20px; } .header-h1 { font-size: 52px; } .header-description { font-size: 24px; } .header-text { padding-bottom: 40px; } .partners-list { flex-wrap: wrap; flex-direction: row; justify-content: center; align-items: self-start; } .partners-list-item { width: 350px; } .partners-description { padding-left: 50px; padding-right: 50px; } .partners-list-item:not(:nth-last-child(-n + 2)) { padding-bottom: 50px; } } @media (min-width:960px) { .header { background-image: url("../img/background-header-desktop.png"); } .partners-list-item:not(:nth-last-child(-n + 2)) { padding-bottom: 0; } .partners-list-item { width: 200px; } .partners-description { padding-left: 10px; padding-right: 10px; } .partners-list { justify-content: space-between; } .container-desktop { width: 940px; margin: 0 auto; } }
css/style.css
* { box-sizing: inherit; } html { box-sizing: border-box; } ol, ul { list-style: none; } img { display: block; max-width: 100%; height: auto; } a { text-decoration: none; } /* montserrat-regular - latin */ @font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 400; src: local('Montserrat Regular'), local('Montserrat-Regular'), url('../fonts/montserrat-v15-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('../fonts/montserrat-v15-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } /* montserrat-700 - latin */ @font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 700; src: local('Montserrat Bold'), local('Montserrat-Bold'), url('../fonts/montserrat-v15-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('../fonts/montserrat-v15-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } /* roboto-300 - latin */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 300; src: local('Roboto Light'), local('Roboto-Light'), url('../fonts/roboto-v20-latin-300.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('../fonts/roboto-v20-latin-300.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } /* roboto-regular - latin */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 400; src: local('Roboto'), local('Roboto-Regular'), url('../fonts/roboto-v20-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('../fonts/roboto-v20-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } .container { min-width: 300px; padding: 20px 10px 0; margin: 0 auto; height: auto; } button { border: none; background: none; } .nav-button { display: block; text-align: center; padding-bottom: 118px; cursor: pointer; } .nav-logo { display: block; font-family: 'Montserrat'; font-weight: 700; text-transform: uppercase; color: #ffffff; font-size: 20px; text-align: center; } .header { /* position: relative; */ background-repeat: no-repeat; background-size: cover; background-color: #000000; background-image: url("../img/background-header-mobile.png"); height: auto; } /* .header::after { content: ""; position: absolute; width: 100%; height: 100%; top: 0; left: 0; background-color: rgba(26, 25, 21, .1); } */ .nav-button-text { font-size: 14px; color: #ffffff; font-family: 'Montserrat'; font-weight: 700; padding: 8px 17px; border: 2px solid rgba(255, 255, 255, .0); border-radius: 20px; } .nav-log-in:hover, .nav-sign-up:hover { transition: 200ms; border: 2px solid #ffffff; } .header-text { text-align: center; } .header-h1 { font-family: 'Montserrat'; color: #ffffff; font-size: 30px; font-weight: bold; text-transform: uppercase; padding: 47px 0 17px; margin: 0; } .header-h1-br { display: block; } .header-description { font-family: 'Roboto'; font-weight: 300; font-size: 18px; color: #ffffff; margin: 0 20px; } .header-text { padding-bottom: 18px; } .header-button-find { font-size: 14px; font-family: 'Montserrat'; font-weight: 700; color: #ffffff; border-radius: 20px; background-color: rgb(255, 78, 80); padding: 13px 50px; display: block; margin: 0 auto; cursor: pointer; } .button-padding { padding-bottom: 111px; } .partners { background-color: #ffffff; padding-top: 72px; min-width: 300px; margin: 0; display: block; } .partners-heading { font-family: 'Montserrat'; font-weight: 700; font-size: 22px; color: #333333; text-align: center; padding-bottom: 18px; margin: 0; } .partners-name { font-family: 'Montserrat'; font-weight: 700; font-size: 14px; color: #333333; text-align: center; } .partners-description { font-family: 'Roboto'; font-weight: 300; color: #666666; font-size: 14px; text-align: center; } .partners-list { margin: 0; padding-left: 0; } .partners-list-item { width: 200px; } .partners-list-item:not(:last-child) { padding-bottom: 27px; } .partners-list { display: flex; flex-direction: column; align-items: center; } .partners-img { margin: 0 auto; display: block; } .partners-img-after { position: relative; } .partners-img-after::after { content: ""; width: 37px; height: 37px; background-color: rgb(255, 78, 80); background-color: rgb(255, 78, 80); border: 4px solid #ffffff; position: absolute; border-radius: 50%; left: 63%; bottom: -3px; /* background-image: url("/img/partners-01-after.png"); */ background-repeat: no-repeat; background-position: center; } .partners-img-01::after { background-image: url("../img/partners-01-after.png"); } .partners-img-02::after { background-image: url("../img/partners-02-after.png"); background-color: rgb(255, 165, 7); } .partners-img-03::after { background-image: url("../img/partners-03-after.png"); background-color: rgb(28, 215, 173); } .partners-img-04::after { background-image: url("../img/partners-04-after.png"); background-color: rgb(78, 115, 219); } .partners-see-more { font-family: 'Montserrat'; font-weight: 700; color: #ff4e50; font-size: 14px; border: 2px solid #ff4e50; border-radius: 20px; padding: 11px 73px; margin: 0 auto; cursor: pointer; display: block; } .partners-see-more-wrapper { padding: 17px 0 58px; } @media (min-width:768px) { .header { background-image: url("../img/background-header-tablet.png"); min-height: 700px; } .header>.container { min-height: 700px; } .nav { display: flex; flex-direction: row-reverse; justify-content: space-between; padding-left: 40px; padding-right: 40px; align-items: baseline; padding-top: 20px; } .header-h1 { font-size: 52px; } .header-description { font-size: 24px; } .header-text { padding-bottom: 40px; } .partners-list { flex-wrap: wrap; flex-direction: row; justify-content: center; align-items: self-start; } .partners-list-item { width: 350px; } .partners-description { padding-left: 50px; padding-right: 50px; } .partners-list-item:not(:nth-last-child(-n + 2)) { padding-bottom: 50px; } } @media (min-width:960px) { .header { background-image: url("../img/background-header-desktop.png"); } .partners-list-item:not(:nth-last-child(-n + 2)) { padding-bottom: 0; } .partners-list-item { width: 200px; } .partners-description { padding-left: 10px; padding-right: 10px; } .partners-list { justify-content: space-between; } .container-desktop { width: 940px; margin: 0 auto; } }
0.395601
0.071916
@media screen and (min-width: 375px) and (max-width: 1199px) { /********* PAGE: PORTFOLIO *********/ body { font-family: sans-serif; } html { font-size: 10px; } .profile-photo { display: inline-block; max-width: 60%; margin: 15px 20% 15px 20%; border-radius: 100%; } #secondary h3 { font-size: 2rem; } h3.general { font-size: 2.5rem; } i.fa-phone { } a.number { font-size: 4rem; } /* li.twitter { font-size: 3rem; height: 20px; width: 20px; } */ a.twitter { margin-left: 4px; } p.general-class { font-size: 2rem; } p.section-paragraph { font-size:2rem; margin-left: 10px; } .profile-photo { margin-right: 10px; } h3.about { font-size: 3rem; } h1 { font-size: 3rem; } h2 { font-size: 1.5rem; } ul.nav li { font-size: 1.8rem; font-weight: 200; } li.fa { height: 50px; width: 50px; } #gallery li { width: 95%; margin-top: 10px; background-color: #f5f5f5; color:#bdc3c7; height: 50%; margin-bottom: 40px; } /********* PAGE: ABOUT *********/ h3.about { text-align: center; } h3.about p { text-align: justify; line-height: 1.5em; } .profile-photo { margin-top: 50px; } /********* PAGE: CONTACT *********/ #primary { margin-bottom: 50px; } .number { font-size: 25px; } .twitter { font-size: 2rem; } ul.nav { margin-right: 12px; } .bold { font-size: 26px; } .social-icon { height: 40px; width: 40px; } } @media screen and (min-width: 1200px) { #gallery li { float: left; width: 45%; margin: 2.5%; background-color: #f5f5f5; color:#bdc3c7; } .profile-photo { display: block; max-width: 150px; margin: 0 auto 30px; border-radius: 100%; float: left; } h3.about p { float: left; } #primary { float: left; } #secondary { float: left; } nav li { float: right; margin-right: 5px; } nav { background: none; } #logo { text-align: left; margin-left: 5px; padding-left: 5px; margin-top: 5px; } ul.nav { display: flex; justify-content: flex-end; } ul.contact-info { font-size: 2rem; } #primary { font-size: 2rem; } #secondary h3 { font-size: 2rem; } p.section-paragraph { font-size:2rem; margin-left: 10px; } .profile-photo { margin-right: 10px; } h3.about { font-size: 3rem; } .social-icon { width: 30px; height: 30px; margin: 0 5px; } }
2020/HTML-CSS/MINI_P/chibuzor osinachi/css/responsive.css
@media screen and (min-width: 375px) and (max-width: 1199px) { /********* PAGE: PORTFOLIO *********/ body { font-family: sans-serif; } html { font-size: 10px; } .profile-photo { display: inline-block; max-width: 60%; margin: 15px 20% 15px 20%; border-radius: 100%; } #secondary h3 { font-size: 2rem; } h3.general { font-size: 2.5rem; } i.fa-phone { } a.number { font-size: 4rem; } /* li.twitter { font-size: 3rem; height: 20px; width: 20px; } */ a.twitter { margin-left: 4px; } p.general-class { font-size: 2rem; } p.section-paragraph { font-size:2rem; margin-left: 10px; } .profile-photo { margin-right: 10px; } h3.about { font-size: 3rem; } h1 { font-size: 3rem; } h2 { font-size: 1.5rem; } ul.nav li { font-size: 1.8rem; font-weight: 200; } li.fa { height: 50px; width: 50px; } #gallery li { width: 95%; margin-top: 10px; background-color: #f5f5f5; color:#bdc3c7; height: 50%; margin-bottom: 40px; } /********* PAGE: ABOUT *********/ h3.about { text-align: center; } h3.about p { text-align: justify; line-height: 1.5em; } .profile-photo { margin-top: 50px; } /********* PAGE: CONTACT *********/ #primary { margin-bottom: 50px; } .number { font-size: 25px; } .twitter { font-size: 2rem; } ul.nav { margin-right: 12px; } .bold { font-size: 26px; } .social-icon { height: 40px; width: 40px; } } @media screen and (min-width: 1200px) { #gallery li { float: left; width: 45%; margin: 2.5%; background-color: #f5f5f5; color:#bdc3c7; } .profile-photo { display: block; max-width: 150px; margin: 0 auto 30px; border-radius: 100%; float: left; } h3.about p { float: left; } #primary { float: left; } #secondary { float: left; } nav li { float: right; margin-right: 5px; } nav { background: none; } #logo { text-align: left; margin-left: 5px; padding-left: 5px; margin-top: 5px; } ul.nav { display: flex; justify-content: flex-end; } ul.contact-info { font-size: 2rem; } #primary { font-size: 2rem; } #secondary h3 { font-size: 2rem; } p.section-paragraph { font-size:2rem; margin-left: 10px; } .profile-photo { margin-right: 10px; } h3.about { font-size: 3rem; } .social-icon { width: 30px; height: 30px; margin: 0 5px; } }
0.441914
0.159675
@media only screen and (max-width: 475px){ .download{ width:45%; display:flex; flex-direction:row; display:inline; } #insta{ height:60%; } } h1{ color:green; } .form-text, .asteriskField{ display:none; } .reg{ background-color:#f9f9f9; } .alert{ margin:0; padding:0; } .alert ul li { list-style-type: none; padding:0; margin:0; font-size:12px; } .navbar{ background-color:white; } .instalogo{ display: flex; flex-direction: row; justify-content: flex-start; width: 30%; } .instalogo a{ font-size: 25px; padding-left: 10px; } .vl{ border-left: 1.5px solid #111; height: 30px; margin-left: 20px; } .contact_icons{ display: flex; justify-content: flex-end; width: 30%; padding-left: 100px; } .contact_icons a{ padding-left: 30px; font-size: 25px; font-weight: lighter; } .modal-body a{ text-decoration:none; color:black; text-align:center; } .hearticon{ color:black; font-size:30px; margin-left:-10px; margin-right:-10px; } .viewall a{ text-decoration:none; color:grey; } .disc{ background-position: -458px -250px; width: 24px; height: 24px; } .like{ background-position: -458px -328px; height: 24px; width: 24px; margin-left: 30px; } .pers{ background-position: -157px -357px; height: 24px; width: 24px; margin-left: 30px; } .logo{ background-position: -98px -203px; height: 35px; width: 176px; } .mainicon{ background-position: -401px -388px; height: 30px; width: 30px; margin-right: 146px; } .main{ margin-top:5%; } body{ background-color:#f9f9f9; } .account-img { height: 165px; width: 165px; } .user-img { height: 55px; width: 55px; margin-top:25px; } .inname{ font-size:14px; } .user-details{ margin-left:-30px; } .userinfo{ margin-top:24px; } .username{ font-size:30px; } #cog{ font-size:24px; } .card-body{ margin:0px; padding:0px; } .user{ color:black; } .user a:hover{ text-decoration:none; } .col-form-label{ font-size:14; } #overlay{ display: none; color: black; width: 100%; height: 100%; background-color:rgba(37, 36, 36, 0.456); position:absolute; top: 0px; left: 0px; text-align: center; padding-top: 30%; } .card:hover #overlay{ display: block; }
static/css/styles.css
@media only screen and (max-width: 475px){ .download{ width:45%; display:flex; flex-direction:row; display:inline; } #insta{ height:60%; } } h1{ color:green; } .form-text, .asteriskField{ display:none; } .reg{ background-color:#f9f9f9; } .alert{ margin:0; padding:0; } .alert ul li { list-style-type: none; padding:0; margin:0; font-size:12px; } .navbar{ background-color:white; } .instalogo{ display: flex; flex-direction: row; justify-content: flex-start; width: 30%; } .instalogo a{ font-size: 25px; padding-left: 10px; } .vl{ border-left: 1.5px solid #111; height: 30px; margin-left: 20px; } .contact_icons{ display: flex; justify-content: flex-end; width: 30%; padding-left: 100px; } .contact_icons a{ padding-left: 30px; font-size: 25px; font-weight: lighter; } .modal-body a{ text-decoration:none; color:black; text-align:center; } .hearticon{ color:black; font-size:30px; margin-left:-10px; margin-right:-10px; } .viewall a{ text-decoration:none; color:grey; } .disc{ background-position: -458px -250px; width: 24px; height: 24px; } .like{ background-position: -458px -328px; height: 24px; width: 24px; margin-left: 30px; } .pers{ background-position: -157px -357px; height: 24px; width: 24px; margin-left: 30px; } .logo{ background-position: -98px -203px; height: 35px; width: 176px; } .mainicon{ background-position: -401px -388px; height: 30px; width: 30px; margin-right: 146px; } .main{ margin-top:5%; } body{ background-color:#f9f9f9; } .account-img { height: 165px; width: 165px; } .user-img { height: 55px; width: 55px; margin-top:25px; } .inname{ font-size:14px; } .user-details{ margin-left:-30px; } .userinfo{ margin-top:24px; } .username{ font-size:30px; } #cog{ font-size:24px; } .card-body{ margin:0px; padding:0px; } .user{ color:black; } .user a:hover{ text-decoration:none; } .col-form-label{ font-size:14; } #overlay{ display: none; color: black; width: 100%; height: 100%; background-color:rgba(37, 36, 36, 0.456); position:absolute; top: 0px; left: 0px; text-align: center; padding-top: 30%; } .card:hover #overlay{ display: block; }
0.239972
0.064036
*, *:after, *:before { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } body { margin: 0px; } /* grid */ .grid { width: 100%; } .upage-content > .grid { max-width: none; margin-left: auto; margin-right: auto; } /* gutter around whole design */ /* .upage-content > .grid-pad { padding: @gutter @gutter 0px @gutter; } */ /* column */ .urow:not(.cright) > .col { float: left; } .urow.cright > .col { float: right; } .col { position: relative; min-height: 1px; } .content-area { position: relative; } /* row */ .urow { clear: both; position: relative; } form.urow { margin-bottom: 0px; } .widget { position: relative; } /* for widgets and the like <div class="table-thing widget"> <div class="narrow-control w85"> my width is set </div> <div class="wide-control"> my width is 100%, minus the set width of the narrow-control</div> </div> .w85 { width:85px; } */ .vertical-col > *, .vertical-col > .table-thing, .vertical-col > .afScrollPanel > .table-thing, .wrapping-col > .no_wrap.table-thing, .wrapping-col > .afScrollPanel > .no_wrap.table-thing { width: 100%; } #afui .vertical-col > .afScrollPanel > .widget, #afui .vertical-col > .widget, .vertical-col > .widget, .camera > .widget { width: calc(100% - 10px); margin-left: 5px; } .col > .vertical-col > .widget { width: 100%; margin-left: 0; } .table-thing { display: table; } .wide-control { display: table-cell; width: 100%; } .narrow-control { display: table-cell; } /* wrapping column */ .wrapping-col.right > *, .wrapping-col.right > .afScrollPanel > * { float: right; } /* margin: 0 5px; move margin to another class */ .wrapping-col.left > *, .wrapping-col.left > .afScrollPanel > * { float: left; } /* center and right alignment */ .vertical-col.center { text-align: center; } .vertical-col.right { text-align: right; } .vertical-col.right > *, .col > .vertical-col.right > .widget, .vertical-col.right > .afScrollPanel > * { margin-left: auto; } .vertical-col.center > *, .col > .vertical-col.center > .widget, .vertical-col.center > .afScrollPanel > * { margin-left: auto; margin-right: auto; } .wrapping-col:not(.horiz-area) > .no_wrap, .wrapping-col:not(.horiz-area) > .afScrollPanel > .no_wrap { float: none; clear: both; /* margin: 8px 0px; */ } .center-h-v-col > .widget { position: absolute !important; left: 50%; top: 50%; transform: translate(-50%, -50%); -webkit-transform: translate(-50%, -50%); margin-top: 0 !important; } /* shim */ .uib_shim { clear: both; float: none !important; width: 100%; position: relative; height: 0px; line-height: 0px; font-size: 0px; display: block; } /* content-box fix for box-sizing */ .content-box, .content-box:before, .content-box:after { -webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box; } /* page */ .hidden:not(.afPopup) { display: none; } .upage-content, .upage-outer { position: relative; } html, body { height: 100%; } body:not(#afui) .upage, body:not(#afui) .upage-content { height: 100%; } body:not(#afui) .upage-outer { height: auto; } /* position relative works fine. but fixed can be elected as well */ /* .upage-content, .upage-outer { position: fixed; height:100%; } */ .upage { overflow-x: hidden; } .upage-content { z-index: 1; } #afui .upage { padding: 0; } /* sidebars and crossbars */ .uib_sidebar { position: fixed; height: 100%; top: 0px; } .uib_crossbar { position: fixed; width: 100%; left: 0px; } .leftbar, .rightbar { z-index: 2; } .reveal.leftbar { left: 0px; z-index: 0; } .reveal.rightbar { right: 0px; z-index: 0; } .leftbar.oh, .rightbar.oh { z-index: 3; } .reveal { z-index: 0; visibility: hidden; } .topbar { z-index: 3; } .topbar.reveal { top: 0px; z-index: 0; } .botbar { z-index: 3; position: fixed; } .botbar.oh, .topbar.oh { z-index: 4; } .sidebar-content { height: 100%; overflow-y: auto; position: relative; margin: 0; } .sidebar-thumb { position: relative; margin: 0; /* background-image:url('images/gripper.png'); */ } .template { display: none !important; } .uib-absolute { position: absolute !important; } .content-block-inner { box-sizing: content-box; } .navbar-inner .widget-container { display: inline-flex; } .searchbar { width: 100% !important; margin: 0 !important; } #afui .panel { padding: 0px; } #afui .pages { height: 100%; } #afui .upage-outer { height: 100%; } body#afui.v2 { overflow-y: auto !important; } body#afui .panel > .widget > input[type="radio"] + label, body#afui .panel > .widget > input[type="checkbox"] + label { padding-top: 14px; } #afui .table-thing input[type="radio"] + label, #afui .table-thing input[type="checkbox"] + label { padding-top: 6px !important; } input.toggle + label:after { width: 32px; } body#afui .splt { width: 200px; } .figure-align { display: table; margin: 0px auto; } .figure-align img { width: 100%; } .image-cell { display: table-cell; vertical-align: middle; } @media all { .scale-image img { width: 140px; } } @media all { .wrapping-col > .d-margins, .wrapping-col > .afScrollPanel > .d-margins { margin-left: 6px; margin-right: 6px; } .wrapping-col > .d-margins, .wrapping-col > .afScrollPanel > .d-margins { margin-left: 6px; margin-right: 6px; } .d-margins { margin-top: 25px; } } @media all { .Alinhamento { text-align: center; } } @media all { .Texto { font-size: 25px; font-weight: bold; color: #000000; } } .align-widget { margin: 5px 0 !important; } .full-width-widget { width: 100%; } .inline-widget { display: inline-block; } label { width: auto; float: none; } label + *:not(div.inline-widget) { width: 100% !important; margin-bottom: 0 !important; } label:empty { display: none; } .label-inline { vertical-align: middle; } .label-top-left, .label-top-right { display: block; padding: 0; margin: 0; } .label-top-left + *, .label-top-right + * { display: block; } .label-top-left { text-align: left; } .label-top-right { text-align: right; } .tail-c { display: table-cell; width: 15px; } .button-icon-top { display: block; margin: auto; } .button-icon-bottom { display: block; margin: auto; } .button-icon-left { float: left; } .button-icon-right { float: right; } @media all { .Fundo { background-color: #f19d1f; background-position: center center; background-repeat: no-repeat; background-attachment: fixed; } } @media all { } /* .customizado > .narrow-control - affects control label .customizado > .wide-control - affects input */ @media all { .style-60 { height: 60px !important; width: 60px !important; border-radius: 100% !important; text-align: center; } } @media all { .wrapping-col > .padrao, .wrapping-col > .afScrollPanel > .padrao { margin-left: 6px; margin-right: 6px; } .wrapping-col > .padrao, .wrapping-col > .afScrollPanel > .padrao { margin-left: 6px; margin-right: 6px; } .padrao { margin-bottom: 15px; } } @media all { .style-68 > label { text-align: center; } } @media all { .texto { font-size: 12px; color: #000000; text-align: left; } } @media all { .criar { color: #000000; } } @media all { .wrapping-col > .botao, .wrapping-col > .afScrollPanel > .botao { margin-left: 6px; margin-right: 6px; } .wrapping-col > .botao, .wrapping-col > .afScrollPanel > .botao { margin-left: 6px; margin-right: 6px; } .botao { margin-top: 30px; margin-bottom: 10px; } } .uib-card { position: relative; margin: 0px; box-sizing: border-box; } .card-header, .card-left, .card-footer, .card-right { position: absolute; box-sizing: border-box; padding: 0px; margin: 0px; } .card-header { top: 0px; left: 0px; right: 0px; width: auto; } .card-footer { bottom: 0px; left: 0px; right: 0px; width: auto; } .card-left { top: 0px; left: 0px; bottom: 0px; } .card-right { top: 0px; right: 0px; bottom: 0px; } .uib-card section .widget-divider:only-of-type { position: absolute; left: 0px; top: 0px; right: 0px; bottom: 0px; height: auto !important; width: auto !important; } .uib-card .widget-divider:only-of-type div { height: 100%; } .card_col > .widget { display: inline-block; column-break-inside: avoid; } @media all { .card-columns-7 { column-count: 2; -webkit-column-count: 2; -moz-column-count: 2; column-gap: 10px; -webkit-column-gap: 10px; -moz-column-gap: 10px; column-fill: balance; -webkit-column-fill: balance; -moz-column-fill: balance; } } @media all { .section-dimension-8 .card-header { height: 40px; } .section-dimension-8 .card-footer { height: 40px; } .section-dimension-8 .card-left { width: 50px; } .section-dimension-8 .card-right { width: 50px; } .section-dimension-8 { min-height: 100px; } .section-dimension-8 { min-width: 100%; } div.section-dimension-8.header-on-left .card-left { top: 40px; } div.section-dimension-8.header-on-left .card-header { left: 0px; } div.section-dimension-8.left-on-header .card-left { top: 0px; } div.section-dimension-8.left-on-header .card-header { left: 50px; } div.section-dimension-8.header-on-right .card-right { top: 40px; } div.section-dimension-8.header-on-right .card-header { right: 0px; } div.section-dimension-8.right-on-header .card-right { top: 0px; } div.section-dimension-8.right-on-header .card-header { right: 50px; } div.section-dimension-8.footer-on-left .card-left { bottom: 40px; } div.section-dimension-8.footer-on-left .card-footer { left: 0px; } div.section-dimension-8.left-on-footer .card-left { bottom: 0px; } div.section-dimension-8.left-on-footer .card-footer { left: 50px; } div.section-dimension-8.footer-on-right .card-right { bottom: 40px; } div.section-dimension-8.footer-on-right .card-footer { right: 0px; } div.section-dimension-8.right-on-footer .card-right { bottom: 0px; } div.section-dimension-8.right-on-footer .card-footer { right: 50px; } .section-dimension-8.cpad-1 { padding: 40px 0px 0px 0px; } .section-dimension-8.cpad-1 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-8.cpad-8 { padding: 0px 50px 0px 0px; } .section-dimension-8.cpad-8 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-8.cpad-9 { padding: 40px 50px 0px 0px; } .section-dimension-8.cpad-9 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-8.cpad-4 { padding: 0px 0px 40px 0px; } .section-dimension-8.cpad-4 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-8.cpad-5 { padding: 40px 0px 40px 0px; } .section-dimension-8.cpad-5 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-8.cpad-12 { padding: 0px 50px 40px 0px; } .section-dimension-8.cpad-12 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-8.cpad-13 { padding: 40px 50px 40px 0px; } .section-dimension-8.cpad-13 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-8.cpad-2 { padding: 0px 0px 0px 50px; } .section-dimension-8.cpad-2 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-8.cpad-3 { padding: 40px 0px 0px 50px; } .section-dimension-8.cpad-3 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-8.cpad-10 { padding: 0px 50px 0px 50px; } .section-dimension-8.cpad-10 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-8.cpad-11 { padding: 40px 50px 0px 50px; } .section-dimension-8.cpad-11 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-8.cpad-6 { padding: 0px 0px 40px 50px; } .section-dimension-8.cpad-6 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-8.cpad-7 { padding: 40px 0px 40px 50px; } .section-dimension-8.cpad-7 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-8.cpad-14 { padding: 0px 50px 40px 50px; } .section-dimension-8.cpad-14 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-8.cpad-15 { padding: 40px 50px 40px 50px; } .section-dimension-8.cpad-15 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-8.cpad-0 { padding: 0px 0px 0px 0px; } .section-dimension-8.cpad-0 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } } @media all { .section-dimension-9 .card-header { height: 40px; } .section-dimension-9 .card-footer { height: 40px; } .section-dimension-9 .card-left { width: 50px; } .section-dimension-9 .card-right { width: 50px; } .section-dimension-9 { min-height: 100px; } .section-dimension-9 { min-width: 100%; } div.section-dimension-9.header-on-left .card-left { top: 40px; } div.section-dimension-9.header-on-left .card-header { left: 0px; } div.section-dimension-9.left-on-header .card-left { top: 0px; } div.section-dimension-9.left-on-header .card-header { left: 50px; } div.section-dimension-9.header-on-right .card-right { top: 40px; } div.section-dimension-9.header-on-right .card-header { right: 0px; } div.section-dimension-9.right-on-header .card-right { top: 0px; } div.section-dimension-9.right-on-header .card-header { right: 50px; } div.section-dimension-9.footer-on-left .card-left { bottom: 40px; } div.section-dimension-9.footer-on-left .card-footer { left: 0px; } div.section-dimension-9.left-on-footer .card-left { bottom: 0px; } div.section-dimension-9.left-on-footer .card-footer { left: 50px; } div.section-dimension-9.footer-on-right .card-right { bottom: 40px; } div.section-dimension-9.footer-on-right .card-footer { right: 0px; } div.section-dimension-9.right-on-footer .card-right { bottom: 0px; } div.section-dimension-9.right-on-footer .card-footer { right: 50px; } .section-dimension-9.cpad-1 { padding: 40px 0px 0px 0px; } .section-dimension-9.cpad-1 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-9.cpad-8 { padding: 0px 50px 0px 0px; } .section-dimension-9.cpad-8 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-9.cpad-9 { padding: 40px 50px 0px 0px; } .section-dimension-9.cpad-9 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-9.cpad-4 { padding: 0px 0px 40px 0px; } .section-dimension-9.cpad-4 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-9.cpad-5 { padding: 40px 0px 40px 0px; } .section-dimension-9.cpad-5 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-9.cpad-12 { padding: 0px 50px 40px 0px; } .section-dimension-9.cpad-12 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-9.cpad-13 { padding: 40px 50px 40px 0px; } .section-dimension-9.cpad-13 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-9.cpad-2 { padding: 0px 0px 0px 50px; } .section-dimension-9.cpad-2 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-9.cpad-3 { padding: 40px 0px 0px 50px; } .section-dimension-9.cpad-3 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-9.cpad-10 { padding: 0px 50px 0px 50px; } .section-dimension-9.cpad-10 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-9.cpad-11 { padding: 40px 50px 0px 50px; } .section-dimension-9.cpad-11 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-9.cpad-6 { padding: 0px 0px 40px 50px; } .section-dimension-9.cpad-6 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-9.cpad-7 { padding: 40px 0px 40px 50px; } .section-dimension-9.cpad-7 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-9.cpad-14 { padding: 0px 50px 40px 50px; } .section-dimension-9.cpad-14 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-9.cpad-15 { padding: 40px 50px 40px 50px; } .section-dimension-9.cpad-15 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-9.cpad-0 { padding: 0px 0px 0px 0px; } .section-dimension-9.cpad-0 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } } @media all { .section-dimension-10 .card-header { height: 40px; } .section-dimension-10 .card-footer { height: 40px; } .section-dimension-10 .card-left { width: 50px; } .section-dimension-10 .card-right { width: 50px; } .section-dimension-10 { min-height: 100px; } .section-dimension-10 { min-width: 100%; } div.section-dimension-10.header-on-left .card-left { top: 40px; } div.section-dimension-10.header-on-left .card-header { left: 0px; } div.section-dimension-10.left-on-header .card-left { top: 0px; } div.section-dimension-10.left-on-header .card-header { left: 50px; } div.section-dimension-10.header-on-right .card-right { top: 40px; } div.section-dimension-10.header-on-right .card-header { right: 0px; } div.section-dimension-10.right-on-header .card-right { top: 0px; } div.section-dimension-10.right-on-header .card-header { right: 50px; } div.section-dimension-10.footer-on-left .card-left { bottom: 40px; } div.section-dimension-10.footer-on-left .card-footer { left: 0px; } div.section-dimension-10.left-on-footer .card-left { bottom: 0px; } div.section-dimension-10.left-on-footer .card-footer { left: 50px; } div.section-dimension-10.footer-on-right .card-right { bottom: 40px; } div.section-dimension-10.footer-on-right .card-footer { right: 0px; } div.section-dimension-10.right-on-footer .card-right { bottom: 0px; } div.section-dimension-10.right-on-footer .card-footer { right: 50px; } .section-dimension-10.cpad-1 { padding: 40px 0px 0px 0px; } .section-dimension-10.cpad-1 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-10.cpad-8 { padding: 0px 50px 0px 0px; } .section-dimension-10.cpad-8 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-10.cpad-9 { padding: 40px 50px 0px 0px; } .section-dimension-10.cpad-9 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-10.cpad-4 { padding: 0px 0px 40px 0px; } .section-dimension-10.cpad-4 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-10.cpad-5 { padding: 40px 0px 40px 0px; } .section-dimension-10.cpad-5 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-10.cpad-12 { padding: 0px 50px 40px 0px; } .section-dimension-10.cpad-12 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-10.cpad-13 { padding: 40px 50px 40px 0px; } .section-dimension-10.cpad-13 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-10.cpad-2 { padding: 0px 0px 0px 50px; } .section-dimension-10.cpad-2 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-10.cpad-3 { padding: 40px 0px 0px 50px; } .section-dimension-10.cpad-3 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-10.cpad-10 { padding: 0px 50px 0px 50px; } .section-dimension-10.cpad-10 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-10.cpad-11 { padding: 40px 50px 0px 50px; } .section-dimension-10.cpad-11 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-10.cpad-6 { padding: 0px 0px 40px 50px; } .section-dimension-10.cpad-6 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-10.cpad-7 { padding: 40px 0px 40px 50px; } .section-dimension-10.cpad-7 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-10.cpad-14 { padding: 0px 50px 40px 50px; } .section-dimension-10.cpad-14 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-10.cpad-15 { padding: 40px 50px 40px 50px; } .section-dimension-10.cpad-15 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-10.cpad-0 { padding: 0px 0px 0px 0px; } .section-dimension-10.cpad-0 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } } @media all { .section-dimension-11 .card-header { height: 40px; } .section-dimension-11 .card-footer { height: 40px; } .section-dimension-11 .card-left { width: 50px; } .section-dimension-11 .card-right { width: 50px; } .section-dimension-11 { min-height: 100px; } .section-dimension-11 { min-width: 100%; } div.section-dimension-11.header-on-left .card-left { top: 40px; } div.section-dimension-11.header-on-left .card-header { left: 0px; } div.section-dimension-11.left-on-header .card-left { top: 0px; } div.section-dimension-11.left-on-header .card-header { left: 50px; } div.section-dimension-11.header-on-right .card-right { top: 40px; } div.section-dimension-11.header-on-right .card-header { right: 0px; } div.section-dimension-11.right-on-header .card-right { top: 0px; } div.section-dimension-11.right-on-header .card-header { right: 50px; } div.section-dimension-11.footer-on-left .card-left { bottom: 40px; } div.section-dimension-11.footer-on-left .card-footer { left: 0px; } div.section-dimension-11.left-on-footer .card-left { bottom: 0px; } div.section-dimension-11.left-on-footer .card-footer { left: 50px; } div.section-dimension-11.footer-on-right .card-right { bottom: 40px; } div.section-dimension-11.footer-on-right .card-footer { right: 0px; } div.section-dimension-11.right-on-footer .card-right { bottom: 0px; } div.section-dimension-11.right-on-footer .card-footer { right: 50px; } .section-dimension-11.cpad-1 { padding: 40px 0px 0px 0px; } .section-dimension-11.cpad-1 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-11.cpad-8 { padding: 0px 50px 0px 0px; } .section-dimension-11.cpad-8 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-11.cpad-9 { padding: 40px 50px 0px 0px; } .section-dimension-11.cpad-9 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-11.cpad-4 { padding: 0px 0px 40px 0px; } .section-dimension-11.cpad-4 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-11.cpad-5 { padding: 40px 0px 40px 0px; } .section-dimension-11.cpad-5 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-11.cpad-12 { padding: 0px 50px 40px 0px; } .section-dimension-11.cpad-12 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-11.cpad-13 { padding: 40px 50px 40px 0px; } .section-dimension-11.cpad-13 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-11.cpad-2 { padding: 0px 0px 0px 50px; } .section-dimension-11.cpad-2 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-11.cpad-3 { padding: 40px 0px 0px 50px; } .section-dimension-11.cpad-3 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-11.cpad-10 { padding: 0px 50px 0px 50px; } .section-dimension-11.cpad-10 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-11.cpad-11 { padding: 40px 50px 0px 50px; } .section-dimension-11.cpad-11 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-11.cpad-6 { padding: 0px 0px 40px 50px; } .section-dimension-11.cpad-6 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-11.cpad-7 { padding: 40px 0px 40px 50px; } .section-dimension-11.cpad-7 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-11.cpad-14 { padding: 0px 50px 40px 50px; } .section-dimension-11.cpad-14 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-11.cpad-15 { padding: 40px 50px 40px 50px; } .section-dimension-11.cpad-15 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-11.cpad-0 { padding: 0px 0px 0px 0px; } .section-dimension-11.cpad-0 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } } .uib-header-fixed { position: fixed !important; top: 0; } .uib-footer-fixed { position: fixed !important; bottom: 0; } .uib-header, .uib-footer { width: 100%; min-height: 48px; z-index: 2; position: relative; display: -webkit-box; -webkit-box-align: center; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; -o-align-items: center; align-items: center; } .uib-header .d-margins, .uib-footer .d-margins { margin: 0; } .uib-header > .horiz-area, .uib-footer > .horiz-area { -webkit-box-flex: 1; -webkit-flex-grow: 1; -moz-flex-grow: 1; -ms-flex-grow: 1; -o-flex-grow: 1; flex-grow: 1; pointer-events: none; z-index: 1; display: -webkit-box; -webkit-box-align: center; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; -o-align-items: center; align-items: center; } .uib-header > .horiz-area > *, .uib-footer > .horiz-area > * { pointer-events: auto; height: 100%; } .uib-header > .horiz-area.right, .uib-footer > .horiz-area.right { -webkit-flex-direction: row-reverse; -moz-flex-direction: row-reverse; -ms-flex-direction: row-reverse; -o-flex-direction: row-reverse; flex-direction: row-reverse; -webkit-box-direction: reverse; -webkit-box-pack: end; } .uib-header > h2, .uib-footer > h2 { font-size: 18px; line-height: 18px; font-weight: bold; font-family: sans-serif; color: #DDD; position: absolute; left: 0px; width: 100%; margin: 0; padding: 0; top: 50%; margin-top: -0.5em; text-align: center; } .uib-header > .single-centered, .uib-footer > .single-centered { position: absolute; width: 100%; text-align: center; top: 50%; transform: translate(0, -50%); -webkit-transform: translate(0, -50%); } .uib-header > .single-centered > *, .uib-footer > .single-centered > * { margin-left: auto !important; margin-right: auto !important; } @media all { .header-bg { background-color: #f19d1f; background-position: center center; background-repeat: no-repeat; background-attachment: scroll; } } .left-receptacle { float: left; } .right-receptacle { float: right; } [data-uib="media/text"] p:first-of-type { margin-top: 0px; } .ellipsis { overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; } @media all { .texto2 p { font-size: 18px; font-weight: bold; text-align: center; } } @media all { .texto3 p { font-size: 12px; text-align: center; } } @media all { .fundo2 { background-color: rgba(243, 157, 29, 0.3); background-position: center center; background-repeat: no-repeat; background-attachment: fixed; } } @media all { .tamanho, .table-thing.tamanho { width: 100px; } .tamanho, .table-thing.tamanho { width: 100px; } .tamanho > .narrow-control { text-align: left; } } @media all { .tamanho2, .table-thing.tamanho2 { width: 160px; } .tamanho2, .table-thing.tamanho2 { width: 160px; } .tamanho2 > .narrow-control { text-align: left; } } @media all { .grid-pad { padding-top: 10px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; } } @media all and (min-width: 0px) { .row-height-1 > .col > .content-area { min-height: 100px; } } .sbs-container { display: -webkit-flex; display: -moz-flex; display: -ms-flexbox; display: -o-flex; display: flex; flex-direction: row; } .leftContent, .rightContent { display: inline; width: 50%; } .uib-bs-flex:not(.btn-group-vertical) { display: -webkit-box; -webkit-box-align: center; display: -webkit-flex; display: -moz-flex; display: -ms-flexbox; display: -o-flex; display: flex; -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; -o-align-items: center; align-items: center; } .uib-bs-flex:not(.btn-group-vertical) > .widget { -webkit-box-flex: 1; -webkit-flex: 1 auto; -moz-flex: 1 auto; -ms-flex: 1 auto; -o-flex: 1 auto; flex: 1 auto; } .btn-group .d-margins { margin: 0; } @media all { .footer-bg { background-color: #f19d1f; background-position: center center; background-repeat: no-repeat; background-attachment: scroll; } } .radio-padding-left { padding-left: 20px; } @media all { .default-sprite-button div.uib-sprite { background-image: url(../images/Exclaim.png); background-size: cover; background-repeat: no-repeat; } } @media all { .hover-sprite-button:hover div.uib-sprite { background-image: url(../images/Arrow.png); background-size: cover; background-repeat: no-repeat; } } @media all { .sprite-sizing { height: 135px !important; width: 135px !important; -webkit-flex: 0 0 auto !important; -moz-flex: 0 0 auto !important; -ms-flex: 0 0 auto !important; -o-flex: 0 0 auto !important; flex: 0 0 auto !important; } } @media all { .active-sprite-button:active div.uib-sprite { background-image: url(../images/Untitled.png); background-size: cover; background-repeat: no-repeat; } } @media all { .default-graphic-button { border-radius: 5px; border-width: 1px; border-style: solid; border-color: grey; background-color: #3b5998; } } @media all { .hover-graphic-button:hover { border-radius: 5px; background-color: #6d84b4; } } @media all { .active-graphic-button:active { border-radius: 5px; background-color: #afbdd4; } } @media all { .default-graphic-sizing { width: 96% !important; -webkit-flex: 0 0 auto !important; -moz-flex: 0 0 auto !important; -ms-flex: 0 0 auto !important; -o-flex: 0 0 auto !important; flex: 0 0 auto !important; padding: 5px 5px 5px 5px; } } @media all { .default-graphic-text { font-size: 18px; font-weight: 500; color: #ffffff; text-align: center; } } @media all { .default-image-sizing > img { width: 35px; } } @media all { .maps-size { height: 250px; } } @media all and (min-width: 222px) { .row-height-2 > .col > .content-area { min-height: 100px; } } @media all and (min-width: 222px) { .row-height-3 > .col > .content-area { min-height: 100px; } } .uib-grid { display: -webkit-flex; display: -moz-flex; display: -ms-flexbox; display: -o-flex; display: flex; -webkit-flex-direction: column; -moz-flex-direction: column; -ms-flex-direction: column; -o-flex-direction: column; flex-direction: column; } .uib-grid > .uib-grid-row { display: -webkit-flex; display: -moz-flex; display: -ms-flexbox; display: -o-flex; display: flex; -webkit-flex: 1; -moz-flex: 1; -ms-flex: 1; -o-flex: 1; flex: 1; } .uib-grid > .uib-grid-row > .uib-grid-cell { -webkit-flex: 1; -moz-flex: 1; -ms-flex: 1; -o-flex: 1; flex: 1; display: -webkit-flex; display: -moz-flex; display: -ms-flexbox; display: -o-flex; display: flex; } .uib-grid > .uib-grid-row > .uib-grid-cell > * { -webkit-flex: 1; -moz-flex: 1; -ms-flex: 1; -o-flex: 1; flex: 1; margin: 0 !important; height: auto !important; } .uib-grid > .uib-grid-row > .uib-grid-cell > .button, .uib-grid > .uib-grid-row > .uib-grid-cell > [data-role="button"] { padding: 0 !important; display: -webkit-flex !important; display: -moz-flex !important; display: -ms-flexbox !important; display: -o-flex !important; display: flex !important; -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; -o-align-items: center; align-items: center; -webkit-justify-content: center; -moz-justify-content: center; -ms-justify-content: center; -o-justify-content: center; justify-content: center; } .uib-grid > .uib-grid-row > .uib-grid-cell > .table-thing { display: -webkit-flex; display: -moz-flex; display: -ms-flexbox; display: -o-flex; display: flex; } .uib-grid > .uib-grid-row > .uib-grid-cell > .table-thing > label.narrow-control { display: none; } .uib-grid > .uib-grid-row > .uib-grid-cell > .table-thing > label.narrow-control + .wide-control { -webkit-flex: 1; -moz-flex: 1; -ms-flex: 1; -o-flex: 1; flex: 1; height: auto !important; } .uib-grid > .uib-grid-row:first-child > .uib-grid-cell > *, .uib-grid > .uib-grid-row:first-child > .uib-grid-cell .wide-control { border-bottom-left-radius: 0 !important; border-bottom-right-radius: 0 !important; } .uib-grid > .uib-grid-row:first-child > .uib-grid-cell:not(:first-child) > *, .uib-grid > .uib-grid-row:first-child > .uib-grid-cell:not(:first-child) .wide-control { border-top-left-radius: 0 !important; } .uib-grid > .uib-grid-row:first-child > .uib-grid-cell:not(:last-child) > *, .uib-grid > .uib-grid-row:first-child > .uib-grid-cell:not(:last-child) .wide-control { border-top-right-radius: 0 !important; } .uib-grid > .uib-grid-row:not(:first-child):not(:last-child) > .uib-grid-cell > *, .uib-grid > .uib-grid-row:not(:first-child):not(:last-child) > .uib-grid-cell .wide-control { border-radius: 0 !important; } .uib-grid > .uib-grid-row:last-child > .uib-grid-cell > *, .uib-grid > .uib-grid-row:last-child > .uib-grid-cell .wide-control { border-top-left-radius: 0 !important; border-top-right-radius: 0 !important; } .uib-grid > .uib-grid-row:last-child > .uib-grid-cell:not(:first-child) > *, .uib-grid > .uib-grid-row:last-child > .uib-grid-cell:not(:first-child) .wide-control { border-bottom-left-radius: 0 !important; } .uib-grid > .uib-grid-row:last-child > .uib-grid-cell:not(:last-child) > *, .uib-grid > .uib-grid-row:last-child > .uib-grid-cell:not(:last-child) .wide-control { border-bottom-right-radius: 0 !important; } @media all { .grid-text, .grid-text * { font-size: 14px !important; } .grid-text, .grid-text * { font-size: 14px !important; } } @media all { .grid-height { height: 30px; } } @media all { .tamanhobt { -webkit-flex: 0 0 auto !important; -moz-flex: 0 0 auto !important; -ms-flex: 0 0 auto !important; -o-flex: 0 0 auto !important; flex: 0 0 auto !important; width: 50px; } } @media all { .tamanhoinp, .table-thing.tamanhoinp { width: 310px; } .tamanhoinp, .table-thing.tamanhoinp { width: 310px; } .tamanhoinp > .narrow-control { text-align: left; } } .allow-badge > .badge.glyphicon { display: inline-block; } .list-group .d-margins { margin: 0; } @media all { .section-dimension-45 .card-header { height: 40px; } .section-dimension-45 .card-footer { height: 40px; } .section-dimension-45 .card-left { width: 50px; } .section-dimension-45 .card-right { width: 50px; } .section-dimension-45 { min-height: 100px; } div.section-dimension-45.header-on-left .card-left { top: 40px; } div.section-dimension-45.header-on-left .card-header { left: 0px; } div.section-dimension-45.left-on-header .card-left { top: 0px; } div.section-dimension-45.left-on-header .card-header { left: 50px; } div.section-dimension-45.header-on-right .card-right { top: 40px; } div.section-dimension-45.header-on-right .card-header { right: 0px; } div.section-dimension-45.right-on-header .card-right { top: 0px; } div.section-dimension-45.right-on-header .card-header { right: 50px; } div.section-dimension-45.footer-on-left .card-left { bottom: 40px; } div.section-dimension-45.footer-on-left .card-footer { left: 0px; } div.section-dimension-45.left-on-footer .card-left { bottom: 0px; } div.section-dimension-45.left-on-footer .card-footer { left: 50px; } div.section-dimension-45.footer-on-right .card-right { bottom: 40px; } div.section-dimension-45.footer-on-right .card-footer { right: 0px; } div.section-dimension-45.right-on-footer .card-right { bottom: 0px; } div.section-dimension-45.right-on-footer .card-footer { right: 50px; } .section-dimension-45.cpad-1 { padding: 40px 0px 0px 0px; } .section-dimension-45.cpad-1 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-45.cpad-8 { padding: 0px 50px 0px 0px; } .section-dimension-45.cpad-8 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-45.cpad-9 { padding: 40px 50px 0px 0px; } .section-dimension-45.cpad-9 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-45.cpad-4 { padding: 0px 0px 40px 0px; } .section-dimension-45.cpad-4 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-45.cpad-5 { padding: 40px 0px 40px 0px; } .section-dimension-45.cpad-5 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-45.cpad-12 { padding: 0px 50px 40px 0px; } .section-dimension-45.cpad-12 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-45.cpad-13 { padding: 40px 50px 40px 0px; } .section-dimension-45.cpad-13 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-45.cpad-2 { padding: 0px 0px 0px 50px; } .section-dimension-45.cpad-2 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-45.cpad-3 { padding: 40px 0px 0px 50px; } .section-dimension-45.cpad-3 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-45.cpad-10 { padding: 0px 50px 0px 50px; } .section-dimension-45.cpad-10 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-45.cpad-11 { padding: 40px 50px 0px 50px; } .section-dimension-45.cpad-11 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-45.cpad-6 { padding: 0px 0px 40px 50px; } .section-dimension-45.cpad-6 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-45.cpad-7 { padding: 40px 0px 40px 50px; } .section-dimension-45.cpad-7 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-45.cpad-14 { padding: 0px 50px 40px 50px; } .section-dimension-45.cpad-14 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-45.cpad-15 { padding: 40px 50px 40px 50px; } .section-dimension-45.cpad-15 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-45.cpad-0 { padding: 0px 0px 0px 0px; } .section-dimension-45.cpad-0 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } } @media all { .imgperfil img { width: 100px; } } @media all { .section-dimension-49 .card-header { height: 40px; } .section-dimension-49 .card-footer { height: 40px; } .section-dimension-49 .card-left { width: 50px; } .section-dimension-49 .card-right { width: 50px; } .section-dimension-49 { min-height: 100px; } div.section-dimension-49.header-on-left .card-left { top: 40px; } div.section-dimension-49.header-on-left .card-header { left: 0px; } div.section-dimension-49.left-on-header .card-left { top: 0px; } div.section-dimension-49.left-on-header .card-header { left: 50px; } div.section-dimension-49.header-on-right .card-right { top: 40px; } div.section-dimension-49.header-on-right .card-header { right: 0px; } div.section-dimension-49.right-on-header .card-right { top: 0px; } div.section-dimension-49.right-on-header .card-header { right: 50px; } div.section-dimension-49.footer-on-left .card-left { bottom: 40px; } div.section-dimension-49.footer-on-left .card-footer { left: 0px; } div.section-dimension-49.left-on-footer .card-left { bottom: 0px; } div.section-dimension-49.left-on-footer .card-footer { left: 50px; } div.section-dimension-49.footer-on-right .card-right { bottom: 40px; } div.section-dimension-49.footer-on-right .card-footer { right: 0px; } div.section-dimension-49.right-on-footer .card-right { bottom: 0px; } div.section-dimension-49.right-on-footer .card-footer { right: 50px; } .section-dimension-49.cpad-1 { padding: 40px 0px 0px 0px; } .section-dimension-49.cpad-1 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-49.cpad-8 { padding: 0px 50px 0px 0px; } .section-dimension-49.cpad-8 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-49.cpad-9 { padding: 40px 50px 0px 0px; } .section-dimension-49.cpad-9 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-49.cpad-4 { padding: 0px 0px 40px 0px; } .section-dimension-49.cpad-4 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-49.cpad-5 { padding: 40px 0px 40px 0px; } .section-dimension-49.cpad-5 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-49.cpad-12 { padding: 0px 50px 40px 0px; } .section-dimension-49.cpad-12 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-49.cpad-13 { padding: 40px 50px 40px 0px; } .section-dimension-49.cpad-13 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-49.cpad-2 { padding: 0px 0px 0px 50px; } .section-dimension-49.cpad-2 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-49.cpad-3 { padding: 40px 0px 0px 50px; } .section-dimension-49.cpad-3 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-49.cpad-10 { padding: 0px 50px 0px 50px; } .section-dimension-49.cpad-10 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-49.cpad-11 { padding: 40px 50px 0px 50px; } .section-dimension-49.cpad-11 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-49.cpad-6 { padding: 0px 0px 40px 50px; } .section-dimension-49.cpad-6 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-49.cpad-7 { padding: 40px 0px 40px 50px; } .section-dimension-49.cpad-7 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-49.cpad-14 { padding: 0px 50px 40px 50px; } .section-dimension-49.cpad-14 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-49.cpad-15 { padding: 40px 50px 40px 50px; } .section-dimension-49.cpad-15 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-49.cpad-0 { padding: 0px 0px 0px 0px; } .section-dimension-49.cpad-0 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } } @media all { .alinhamentoesq { text-align: right; } } @media all { .wrapping-col > .botaopesq, .wrapping-col > .afScrollPanel > .botaopesq { margin-left: 6px; margin-right: 6px; } .wrapping-col > .botaopesq, .wrapping-col > .afScrollPanel > .botaopesq { margin-left: 6px; margin-right: 6px; } .vertical-col > .botaopesq, .vertical-col > .afScrollPanel > .botaopesq { margin-left: 50px; } .vertical-col > .botaopesq, .vertical-col > .afScrollPanel > .botaopesq { margin-left: 50px; } } @media all { .sidebyside > .leftContent { width: 80%; text-align: left; } .sidebyside > .rightContent { width: 20%; text-align: -webkit-right; } } @media all { .section-dimension-64 .card-header { height: 40px; } .section-dimension-64 .card-footer { height: 40px; } .section-dimension-64 .card-left { width: 70px; } .section-dimension-64 .card-right { width: 50px; } .section-dimension-64 { min-height: 100px; } div.section-dimension-64.header-on-left .card-left { top: 40px; } div.section-dimension-64.header-on-left .card-header { left: 0px; } div.section-dimension-64.left-on-header .card-left { top: 0px; } div.section-dimension-64.left-on-header .card-header { left: 70px; } div.section-dimension-64.header-on-right .card-right { top: 40px; } div.section-dimension-64.header-on-right .card-header { right: 0px; } div.section-dimension-64.right-on-header .card-right { top: 0px; } div.section-dimension-64.right-on-header .card-header { right: 50px; } div.section-dimension-64.footer-on-left .card-left { bottom: 40px; } div.section-dimension-64.footer-on-left .card-footer { left: 0px; } div.section-dimension-64.left-on-footer .card-left { bottom: 0px; } div.section-dimension-64.left-on-footer .card-footer { left: 70px; } div.section-dimension-64.footer-on-right .card-right { bottom: 40px; } div.section-dimension-64.footer-on-right .card-footer { right: 0px; } div.section-dimension-64.right-on-footer .card-right { bottom: 0px; } div.section-dimension-64.right-on-footer .card-footer { right: 50px; } .section-dimension-64.cpad-1 { padding: 40px 0px 0px 0px; } .section-dimension-64.cpad-1 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-64.cpad-8 { padding: 0px 50px 0px 0px; } .section-dimension-64.cpad-8 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-64.cpad-9 { padding: 40px 50px 0px 0px; } .section-dimension-64.cpad-9 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-64.cpad-4 { padding: 0px 0px 40px 0px; } .section-dimension-64.cpad-4 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-64.cpad-5 { padding: 40px 0px 40px 0px; } .section-dimension-64.cpad-5 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-64.cpad-12 { padding: 0px 50px 40px 0px; } .section-dimension-64.cpad-12 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-64.cpad-13 { padding: 40px 50px 40px 0px; } .section-dimension-64.cpad-13 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-64.cpad-2 { padding: 0px 0px 0px 70px; } .section-dimension-64.cpad-2 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 70px; height: auto !important; width: auto !important; } .section-dimension-64.cpad-3 { padding: 40px 0px 0px 70px; } .section-dimension-64.cpad-3 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 70px; height: auto !important; width: auto !important; } .section-dimension-64.cpad-10 { padding: 0px 50px 0px 70px; } .section-dimension-64.cpad-10 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 70px; height: auto !important; width: auto !important; } .section-dimension-64.cpad-11 { padding: 40px 50px 0px 70px; } .section-dimension-64.cpad-11 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 70px; height: auto !important; width: auto !important; } .section-dimension-64.cpad-6 { padding: 0px 0px 40px 70px; } .section-dimension-64.cpad-6 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 70px; height: auto !important; width: auto !important; } .section-dimension-64.cpad-7 { padding: 40px 0px 40px 70px; } .section-dimension-64.cpad-7 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 70px; height: auto !important; width: auto !important; } .section-dimension-64.cpad-14 { padding: 0px 50px 40px 70px; } .section-dimension-64.cpad-14 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 70px; height: auto !important; width: auto !important; } .section-dimension-64.cpad-15 { padding: 40px 50px 40px 70px; } .section-dimension-64.cpad-15 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 70px; height: auto !important; width: auto !important; } .section-dimension-64.cpad-0 { padding: 0px 0px 0px 0px; } .section-dimension-64.cpad-0 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } } @media all { .section-dimension-68 .card-header { height: 40px; } .section-dimension-68 .card-footer { height: 40px; } .section-dimension-68 .card-left { width: 70px; } .section-dimension-68 .card-right { width: 50px; } .section-dimension-68 { min-height: 100px; } div.section-dimension-68.header-on-left .card-left { top: 40px; } div.section-dimension-68.header-on-left .card-header { left: 0px; } div.section-dimension-68.left-on-header .card-left { top: 0px; } div.section-dimension-68.left-on-header .card-header { left: 70px; } div.section-dimension-68.header-on-right .card-right { top: 40px; } div.section-dimension-68.header-on-right .card-header { right: 0px; } div.section-dimension-68.right-on-header .card-right { top: 0px; } div.section-dimension-68.right-on-header .card-header { right: 50px; } div.section-dimension-68.footer-on-left .card-left { bottom: 40px; } div.section-dimension-68.footer-on-left .card-footer { left: 0px; } div.section-dimension-68.left-on-footer .card-left { bottom: 0px; } div.section-dimension-68.left-on-footer .card-footer { left: 70px; } div.section-dimension-68.footer-on-right .card-right { bottom: 40px; } div.section-dimension-68.footer-on-right .card-footer { right: 0px; } div.section-dimension-68.right-on-footer .card-right { bottom: 0px; } div.section-dimension-68.right-on-footer .card-footer { right: 50px; } .section-dimension-68.cpad-1 { padding: 40px 0px 0px 0px; } .section-dimension-68.cpad-1 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-68.cpad-8 { padding: 0px 50px 0px 0px; } .section-dimension-68.cpad-8 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-68.cpad-9 { padding: 40px 50px 0px 0px; } .section-dimension-68.cpad-9 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-68.cpad-4 { padding: 0px 0px 40px 0px; } .section-dimension-68.cpad-4 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-68.cpad-5 { padding: 40px 0px 40px 0px; } .section-dimension-68.cpad-5 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-68.cpad-12 { padding: 0px 50px 40px 0px; } .section-dimension-68.cpad-12 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-68.cpad-13 { padding: 40px 50px 40px 0px; } .section-dimension-68.cpad-13 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-68.cpad-2 { padding: 0px 0px 0px 70px; } .section-dimension-68.cpad-2 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 70px; height: auto !important; width: auto !important; } .section-dimension-68.cpad-3 { padding: 40px 0px 0px 70px; } .section-dimension-68.cpad-3 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 70px; height: auto !important; width: auto !important; } .section-dimension-68.cpad-10 { padding: 0px 50px 0px 70px; } .section-dimension-68.cpad-10 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 70px; height: auto !important; width: auto !important; } .section-dimension-68.cpad-11 { padding: 40px 50px 0px 70px; } .section-dimension-68.cpad-11 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 70px; height: auto !important; width: auto !important; } .section-dimension-68.cpad-6 { padding: 0px 0px 40px 70px; } .section-dimension-68.cpad-6 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 70px; height: auto !important; width: auto !important; } .section-dimension-68.cpad-7 { padding: 40px 0px 40px 70px; } .section-dimension-68.cpad-7 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 70px; height: auto !important; width: auto !important; } .section-dimension-68.cpad-14 { padding: 0px 50px 40px 70px; } .section-dimension-68.cpad-14 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 70px; height: auto !important; width: auto !important; } .section-dimension-68.cpad-15 { padding: 40px 50px 40px 70px; } .section-dimension-68.cpad-15 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 70px; height: auto !important; width: auto !important; } .section-dimension-68.cpad-0 { padding: 0px 0px 0px 0px; } .section-dimension-68.cpad-0 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } } @media all { .card_dimensions .card-header { height: 40px; } .card_dimensions .card-footer { height: 40px; } .card_dimensions .card-left { width: 70px; } .card_dimensions .card-right { width: 50px; } .card_dimensions { min-height: 100px; } div.card_dimensions.header-on-left .card-left { top: 40px; } div.card_dimensions.header-on-left .card-header { left: 0px; } div.card_dimensions.left-on-header .card-left { top: 0px; } div.card_dimensions.left-on-header .card-header { left: 70px; } div.card_dimensions.header-on-right .card-right { top: 40px; } div.card_dimensions.header-on-right .card-header { right: 0px; } div.card_dimensions.right-on-header .card-right { top: 0px; } div.card_dimensions.right-on-header .card-header { right: 50px; } div.card_dimensions.footer-on-left .card-left { bottom: 40px; } div.card_dimensions.footer-on-left .card-footer { left: 0px; } div.card_dimensions.left-on-footer .card-left { bottom: 0px; } div.card_dimensions.left-on-footer .card-footer { left: 70px; } div.card_dimensions.footer-on-right .card-right { bottom: 40px; } div.card_dimensions.footer-on-right .card-footer { right: 0px; } div.card_dimensions.right-on-footer .card-right { bottom: 0px; } div.card_dimensions.right-on-footer .card-footer { right: 50px; } .card_dimensions.cpad-1 { padding: 40px 0px 0px 0px; } .card_dimensions.cpad-1 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .card_dimensions.cpad-8 { padding: 0px 50px 0px 0px; } .card_dimensions.cpad-8 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .card_dimensions.cpad-9 { padding: 40px 50px 0px 0px; } .card_dimensions.cpad-9 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .card_dimensions.cpad-4 { padding: 0px 0px 40px 0px; } .card_dimensions.cpad-4 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .card_dimensions.cpad-5 { padding: 40px 0px 40px 0px; } .card_dimensions.cpad-5 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .card_dimensions.cpad-12 { padding: 0px 50px 40px 0px; } .card_dimensions.cpad-12 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .card_dimensions.cpad-13 { padding: 40px 50px 40px 0px; } .card_dimensions.cpad-13 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .card_dimensions.cpad-2 { padding: 0px 0px 0px 70px; } .card_dimensions.cpad-2 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 70px; height: auto !important; width: auto !important; } .card_dimensions.cpad-3 { padding: 40px 0px 0px 70px; } .card_dimensions.cpad-3 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 70px; height: auto !important; width: auto !important; } .card_dimensions.cpad-10 { padding: 0px 50px 0px 70px; } .card_dimensions.cpad-10 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 70px; height: auto !important; width: auto !important; } .card_dimensions.cpad-11 { padding: 40px 50px 0px 70px; } .card_dimensions.cpad-11 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 70px; height: auto !important; width: auto !important; } .card_dimensions.cpad-6 { padding: 0px 0px 40px 70px; } .card_dimensions.cpad-6 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 70px; height: auto !important; width: auto !important; } .card_dimensions.cpad-7 { padding: 40px 0px 40px 70px; } .card_dimensions.cpad-7 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 70px; height: auto !important; width: auto !important; } .card_dimensions.cpad-14 { padding: 0px 50px 40px 70px; } .card_dimensions.cpad-14 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 70px; height: auto !important; width: auto !important; } .card_dimensions.cpad-15 { padding: 40px 50px 40px 70px; } .card_dimensions.cpad-15 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 70px; height: auto !important; width: auto !important; } .card_dimensions.cpad-0 { padding: 0px 0px 0px 0px; } .card_dimensions.cpad-0 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } } @media all { .style-83 { -webkit-flex: 0 0 auto !important; -moz-flex: 0 0 auto !important; -ms-flex: 0 0 auto !important; -o-flex: 0 0 auto !important; flex: 0 0 auto !important; width: 100%; } } @media all { .maps_size { height: 250px; } } .uib_row_1:not(.cright) > .col { padding-right: 20px; } .uib_row_1.cright > .col { padding-left: 20px; } @media all { .col-0_12-12 { width: auto; float: none !important; } .urow:not(.cright) > .col-0_12-12 { padding-right: 0px !important; } .urow.cright > .col-0_12-12 { padding-left: 0px !important; } } .vertical-col > .label { display: block; } @media all { .wrapping-col > .espacao, .wrapping-col > .afScrollPanel > .espacao { margin-left: 6px; margin-right: 6px; } .wrapping-col > .espacao, .wrapping-col > .afScrollPanel > .espacao { margin-left: 6px; margin-right: 6px; } .espacao { margin-top: 40%; } } @media all { .nome_local p { font-size: 20px; font-weight: bold; color: #ffffff; } } @media all { .wrapping-col > .titulo, .wrapping-col > .afScrollPanel > .titulo { margin-left: 6px; margin-right: 6px; } .wrapping-col > .titulo, .wrapping-col > .afScrollPanel > .titulo { margin-left: 6px; margin-right: 6px; } .titulo { margin-top: 12px; } } @media all { .texto4 p { font-size: 15px; text-align: center; } } .card_grid { display: flex; flex-direction: row; flex-wrap: wrap; align-content: stretch; } .card_grid > .widget { flex-grow: 1; } @media all { .flex-basis-117 > .widget { flex-basis: calc(100% / 1); } } @media all { .section-dimension-120 .card-header { height: 40px; } .section-dimension-120 .card-footer { height: 40px; } .section-dimension-120 .card-left { width: 50px; } .section-dimension-120 .card-right { width: 50px; } .section-dimension-120 { min-height: 100px; } div.section-dimension-120.header-on-left .card-left { top: 40px; } div.section-dimension-120.header-on-left .card-header { left: 0px; } div.section-dimension-120.left-on-header .card-left { top: 0px; } div.section-dimension-120.left-on-header .card-header { left: 50px; } div.section-dimension-120.header-on-right .card-right { top: 40px; } div.section-dimension-120.header-on-right .card-header { right: 0px; } div.section-dimension-120.right-on-header .card-right { top: 0px; } div.section-dimension-120.right-on-header .card-header { right: 50px; } div.section-dimension-120.footer-on-left .card-left { bottom: 40px; } div.section-dimension-120.footer-on-left .card-footer { left: 0px; } div.section-dimension-120.left-on-footer .card-left { bottom: 0px; } div.section-dimension-120.left-on-footer .card-footer { left: 50px; } div.section-dimension-120.footer-on-right .card-right { bottom: 40px; } div.section-dimension-120.footer-on-right .card-footer { right: 0px; } div.section-dimension-120.right-on-footer .card-right { bottom: 0px; } div.section-dimension-120.right-on-footer .card-footer { right: 50px; } .section-dimension-120.cpad-1 { padding: 40px 0px 0px 0px; } .section-dimension-120.cpad-1 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-120.cpad-8 { padding: 0px 50px 0px 0px; } .section-dimension-120.cpad-8 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-120.cpad-9 { padding: 40px 50px 0px 0px; } .section-dimension-120.cpad-9 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-120.cpad-4 { padding: 0px 0px 40px 0px; } .section-dimension-120.cpad-4 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-120.cpad-5 { padding: 40px 0px 40px 0px; } .section-dimension-120.cpad-5 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-120.cpad-12 { padding: 0px 50px 40px 0px; } .section-dimension-120.cpad-12 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-120.cpad-13 { padding: 40px 50px 40px 0px; } .section-dimension-120.cpad-13 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-120.cpad-2 { padding: 0px 0px 0px 50px; } .section-dimension-120.cpad-2 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-120.cpad-3 { padding: 40px 0px 0px 50px; } .section-dimension-120.cpad-3 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-120.cpad-10 { padding: 0px 50px 0px 50px; } .section-dimension-120.cpad-10 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-120.cpad-11 { padding: 40px 50px 0px 50px; } .section-dimension-120.cpad-11 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-120.cpad-6 { padding: 0px 0px 40px 50px; } .section-dimension-120.cpad-6 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-120.cpad-7 { padding: 40px 0px 40px 50px; } .section-dimension-120.cpad-7 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-120.cpad-14 { padding: 0px 50px 40px 50px; } .section-dimension-120.cpad-14 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-120.cpad-15 { padding: 40px 50px 40px 50px; } .section-dimension-120.cpad-15 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-120.cpad-0 { padding: 0px 0px 0px 0px; } .section-dimension-120.cpad-0 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } } @media all { .section-dimension-119 .card-header { height: 40px; } .section-dimension-119 .card-footer { height: 40px; } .section-dimension-119 .card-left { width: 50px; } .section-dimension-119 .card-right { width: 50px; } .section-dimension-119 { min-height: 100px; } div.section-dimension-119.header-on-left .card-left { top: 40px; } div.section-dimension-119.header-on-left .card-header { left: 0px; } div.section-dimension-119.left-on-header .card-left { top: 0px; } div.section-dimension-119.left-on-header .card-header { left: 50px; } div.section-dimension-119.header-on-right .card-right { top: 40px; } div.section-dimension-119.header-on-right .card-header { right: 0px; } div.section-dimension-119.right-on-header .card-right { top: 0px; } div.section-dimension-119.right-on-header .card-header { right: 50px; } div.section-dimension-119.footer-on-left .card-left { bottom: 40px; } div.section-dimension-119.footer-on-left .card-footer { left: 0px; } div.section-dimension-119.left-on-footer .card-left { bottom: 0px; } div.section-dimension-119.left-on-footer .card-footer { left: 50px; } div.section-dimension-119.footer-on-right .card-right { bottom: 40px; } div.section-dimension-119.footer-on-right .card-footer { right: 0px; } div.section-dimension-119.right-on-footer .card-right { bottom: 0px; } div.section-dimension-119.right-on-footer .card-footer { right: 50px; } .section-dimension-119.cpad-1 { padding: 40px 0px 0px 0px; } .section-dimension-119.cpad-1 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-119.cpad-8 { padding: 0px 50px 0px 0px; } .section-dimension-119.cpad-8 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-119.cpad-9 { padding: 40px 50px 0px 0px; } .section-dimension-119.cpad-9 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-119.cpad-4 { padding: 0px 0px 40px 0px; } .section-dimension-119.cpad-4 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-119.cpad-5 { padding: 40px 0px 40px 0px; } .section-dimension-119.cpad-5 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-119.cpad-12 { padding: 0px 50px 40px 0px; } .section-dimension-119.cpad-12 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-119.cpad-13 { padding: 40px 50px 40px 0px; } .section-dimension-119.cpad-13 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-119.cpad-2 { padding: 0px 0px 0px 50px; } .section-dimension-119.cpad-2 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-119.cpad-3 { padding: 40px 0px 0px 50px; } .section-dimension-119.cpad-3 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-119.cpad-10 { padding: 0px 50px 0px 50px; } .section-dimension-119.cpad-10 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-119.cpad-11 { padding: 40px 50px 0px 50px; } .section-dimension-119.cpad-11 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-119.cpad-6 { padding: 0px 0px 40px 50px; } .section-dimension-119.cpad-6 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-119.cpad-7 { padding: 40px 0px 40px 50px; } .section-dimension-119.cpad-7 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-119.cpad-14 { padding: 0px 50px 40px 50px; } .section-dimension-119.cpad-14 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-119.cpad-15 { padding: 40px 50px 40px 50px; } .section-dimension-119.cpad-15 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-119.cpad-0 { padding: 0px 0px 0px 0px; } .section-dimension-119.cpad-0 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } } @media all { .section-dimension-118 .card-header { height: 40px; } .section-dimension-118 .card-footer { height: 40px; } .section-dimension-118 .card-left { width: 50px; } .section-dimension-118 .card-right { width: 50px; } .section-dimension-118 { min-height: 100px; } div.section-dimension-118.header-on-left .card-left { top: 40px; } div.section-dimension-118.header-on-left .card-header { left: 0px; } div.section-dimension-118.left-on-header .card-left { top: 0px; } div.section-dimension-118.left-on-header .card-header { left: 50px; } div.section-dimension-118.header-on-right .card-right { top: 40px; } div.section-dimension-118.header-on-right .card-header { right: 0px; } div.section-dimension-118.right-on-header .card-right { top: 0px; } div.section-dimension-118.right-on-header .card-header { right: 50px; } div.section-dimension-118.footer-on-left .card-left { bottom: 40px; } div.section-dimension-118.footer-on-left .card-footer { left: 0px; } div.section-dimension-118.left-on-footer .card-left { bottom: 0px; } div.section-dimension-118.left-on-footer .card-footer { left: 50px; } div.section-dimension-118.footer-on-right .card-right { bottom: 40px; } div.section-dimension-118.footer-on-right .card-footer { right: 0px; } div.section-dimension-118.right-on-footer .card-right { bottom: 0px; } div.section-dimension-118.right-on-footer .card-footer { right: 50px; } .section-dimension-118.cpad-1 { padding: 40px 0px 0px 0px; } .section-dimension-118.cpad-1 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-118.cpad-8 { padding: 0px 50px 0px 0px; } .section-dimension-118.cpad-8 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-118.cpad-9 { padding: 40px 50px 0px 0px; } .section-dimension-118.cpad-9 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-118.cpad-4 { padding: 0px 0px 40px 0px; } .section-dimension-118.cpad-4 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-118.cpad-5 { padding: 40px 0px 40px 0px; } .section-dimension-118.cpad-5 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-118.cpad-12 { padding: 0px 50px 40px 0px; } .section-dimension-118.cpad-12 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-118.cpad-13 { padding: 40px 50px 40px 0px; } .section-dimension-118.cpad-13 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-118.cpad-2 { padding: 0px 0px 0px 50px; } .section-dimension-118.cpad-2 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-118.cpad-3 { padding: 40px 0px 0px 50px; } .section-dimension-118.cpad-3 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-118.cpad-10 { padding: 0px 50px 0px 50px; } .section-dimension-118.cpad-10 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-118.cpad-11 { padding: 40px 50px 0px 50px; } .section-dimension-118.cpad-11 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-118.cpad-6 { padding: 0px 0px 40px 50px; } .section-dimension-118.cpad-6 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-118.cpad-7 { padding: 40px 0px 40px 50px; } .section-dimension-118.cpad-7 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-118.cpad-14 { padding: 0px 50px 40px 50px; } .section-dimension-118.cpad-14 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-118.cpad-15 { padding: 40px 50px 40px 50px; } .section-dimension-118.cpad-15 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-118.cpad-0 { padding: 0px 0px 0px 0px; } .section-dimension-118.cpad-0 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } } @media all { .section-dimension-121 .card-header { height: 40px; } .section-dimension-121 .card-footer { height: 40px; } .section-dimension-121 .card-left { width: 50px; } .section-dimension-121 .card-right { width: 50px; } .section-dimension-121 { min-height: 100px; } div.section-dimension-121.header-on-left .card-left { top: 40px; } div.section-dimension-121.header-on-left .card-header { left: 0px; } div.section-dimension-121.left-on-header .card-left { top: 0px; } div.section-dimension-121.left-on-header .card-header { left: 50px; } div.section-dimension-121.header-on-right .card-right { top: 40px; } div.section-dimension-121.header-on-right .card-header { right: 0px; } div.section-dimension-121.right-on-header .card-right { top: 0px; } div.section-dimension-121.right-on-header .card-header { right: 50px; } div.section-dimension-121.footer-on-left .card-left { bottom: 40px; } div.section-dimension-121.footer-on-left .card-footer { left: 0px; } div.section-dimension-121.left-on-footer .card-left { bottom: 0px; } div.section-dimension-121.left-on-footer .card-footer { left: 50px; } div.section-dimension-121.footer-on-right .card-right { bottom: 40px; } div.section-dimension-121.footer-on-right .card-footer { right: 0px; } div.section-dimension-121.right-on-footer .card-right { bottom: 0px; } div.section-dimension-121.right-on-footer .card-footer { right: 50px; } .section-dimension-121.cpad-1 { padding: 40px 0px 0px 0px; } .section-dimension-121.cpad-1 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-121.cpad-8 { padding: 0px 50px 0px 0px; } .section-dimension-121.cpad-8 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-121.cpad-9 { padding: 40px 50px 0px 0px; } .section-dimension-121.cpad-9 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-121.cpad-4 { padding: 0px 0px 40px 0px; } .section-dimension-121.cpad-4 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-121.cpad-5 { padding: 40px 0px 40px 0px; } .section-dimension-121.cpad-5 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-121.cpad-12 { padding: 0px 50px 40px 0px; } .section-dimension-121.cpad-12 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-121.cpad-13 { padding: 40px 50px 40px 0px; } .section-dimension-121.cpad-13 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-121.cpad-2 { padding: 0px 0px 0px 50px; } .section-dimension-121.cpad-2 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-121.cpad-3 { padding: 40px 0px 0px 50px; } .section-dimension-121.cpad-3 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-121.cpad-10 { padding: 0px 50px 0px 50px; } .section-dimension-121.cpad-10 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-121.cpad-11 { padding: 40px 50px 0px 50px; } .section-dimension-121.cpad-11 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-121.cpad-6 { padding: 0px 0px 40px 50px; } .section-dimension-121.cpad-6 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-121.cpad-7 { padding: 40px 0px 40px 50px; } .section-dimension-121.cpad-7 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-121.cpad-14 { padding: 0px 50px 40px 50px; } .section-dimension-121.cpad-14 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-121.cpad-15 { padding: 40px 50px 40px 50px; } .section-dimension-121.cpad-15 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-121.cpad-0 { padding: 0px 0px 0px 0px; } .section-dimension-121.cpad-0 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } } @media all { .section-dimension-124 .card-header { height: 40px; } .section-dimension-124 .card-footer { height: 40px; } .section-dimension-124 .card-left { width: 50px; } .section-dimension-124 .card-right { width: 50px; } .section-dimension-124 { min-height: 80px; } div.section-dimension-124.header-on-left .card-left { top: 40px; } div.section-dimension-124.header-on-left .card-header { left: 0px; } div.section-dimension-124.left-on-header .card-left { top: 0px; } div.section-dimension-124.left-on-header .card-header { left: 50px; } div.section-dimension-124.header-on-right .card-right { top: 40px; } div.section-dimension-124.header-on-right .card-header { right: 0px; } div.section-dimension-124.right-on-header .card-right { top: 0px; } div.section-dimension-124.right-on-header .card-header { right: 50px; } div.section-dimension-124.footer-on-left .card-left { bottom: 40px; } div.section-dimension-124.footer-on-left .card-footer { left: 0px; } div.section-dimension-124.left-on-footer .card-left { bottom: 0px; } div.section-dimension-124.left-on-footer .card-footer { left: 50px; } div.section-dimension-124.footer-on-right .card-right { bottom: 40px; } div.section-dimension-124.footer-on-right .card-footer { right: 0px; } div.section-dimension-124.right-on-footer .card-right { bottom: 0px; } div.section-dimension-124.right-on-footer .card-footer { right: 50px; } .section-dimension-124.cpad-1 { padding: 40px 0px 0px 0px; } .section-dimension-124.cpad-1 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-124.cpad-8 { padding: 0px 50px 0px 0px; } .section-dimension-124.cpad-8 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-124.cpad-9 { padding: 40px 50px 0px 0px; } .section-dimension-124.cpad-9 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-124.cpad-4 { padding: 0px 0px 40px 0px; } .section-dimension-124.cpad-4 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-124.cpad-5 { padding: 40px 0px 40px 0px; } .section-dimension-124.cpad-5 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-124.cpad-12 { padding: 0px 50px 40px 0px; } .section-dimension-124.cpad-12 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-124.cpad-13 { padding: 40px 50px 40px 0px; } .section-dimension-124.cpad-13 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-124.cpad-2 { padding: 0px 0px 0px 50px; } .section-dimension-124.cpad-2 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-124.cpad-3 { padding: 40px 0px 0px 50px; } .section-dimension-124.cpad-3 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-124.cpad-10 { padding: 0px 50px 0px 50px; } .section-dimension-124.cpad-10 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-124.cpad-11 { padding: 40px 50px 0px 50px; } .section-dimension-124.cpad-11 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-124.cpad-6 { padding: 0px 0px 40px 50px; } .section-dimension-124.cpad-6 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-124.cpad-7 { padding: 40px 0px 40px 50px; } .section-dimension-124.cpad-7 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-124.cpad-14 { padding: 0px 50px 40px 50px; } .section-dimension-124.cpad-14 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-124.cpad-15 { padding: 40px 50px 40px 50px; } .section-dimension-124.cpad-15 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-124.cpad-0 { padding: 0px 0px 0px 0px; } .section-dimension-124.cpad-0 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } } @media all { .flex-basis-123 > .widget { flex-basis: calc(100% / 1); } } @media all { .section-dimension-125 .card-header { height: 40px; } .section-dimension-125 .card-footer { height: 40px; } .section-dimension-125 .card-left { width: 50px; } .section-dimension-125 .card-right { width: 50px; } .section-dimension-125 { min-height: 100px; } div.section-dimension-125.header-on-left .card-left { top: 40px; } div.section-dimension-125.header-on-left .card-header { left: 0px; } div.section-dimension-125.left-on-header .card-left { top: 0px; } div.section-dimension-125.left-on-header .card-header { left: 50px; } div.section-dimension-125.header-on-right .card-right { top: 40px; } div.section-dimension-125.header-on-right .card-header { right: 0px; } div.section-dimension-125.right-on-header .card-right { top: 0px; } div.section-dimension-125.right-on-header .card-header { right: 50px; } div.section-dimension-125.footer-on-left .card-left { bottom: 40px; } div.section-dimension-125.footer-on-left .card-footer { left: 0px; } div.section-dimension-125.left-on-footer .card-left { bottom: 0px; } div.section-dimension-125.left-on-footer .card-footer { left: 50px; } div.section-dimension-125.footer-on-right .card-right { bottom: 40px; } div.section-dimension-125.footer-on-right .card-footer { right: 0px; } div.section-dimension-125.right-on-footer .card-right { bottom: 0px; } div.section-dimension-125.right-on-footer .card-footer { right: 50px; } .section-dimension-125.cpad-1 { padding: 40px 0px 0px 0px; } .section-dimension-125.cpad-1 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-125.cpad-8 { padding: 0px 50px 0px 0px; } .section-dimension-125.cpad-8 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-125.cpad-9 { padding: 40px 50px 0px 0px; } .section-dimension-125.cpad-9 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-125.cpad-4 { padding: 0px 0px 40px 0px; } .section-dimension-125.cpad-4 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-125.cpad-5 { padding: 40px 0px 40px 0px; } .section-dimension-125.cpad-5 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-125.cpad-12 { padding: 0px 50px 40px 0px; } .section-dimension-125.cpad-12 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-125.cpad-13 { padding: 40px 50px 40px 0px; } .section-dimension-125.cpad-13 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-125.cpad-2 { padding: 0px 0px 0px 50px; } .section-dimension-125.cpad-2 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-125.cpad-3 { padding: 40px 0px 0px 50px; } .section-dimension-125.cpad-3 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-125.cpad-10 { padding: 0px 50px 0px 50px; } .section-dimension-125.cpad-10 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-125.cpad-11 { padding: 40px 50px 0px 50px; } .section-dimension-125.cpad-11 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-125.cpad-6 { padding: 0px 0px 40px 50px; } .section-dimension-125.cpad-6 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-125.cpad-7 { padding: 40px 0px 40px 50px; } .section-dimension-125.cpad-7 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-125.cpad-14 { padding: 0px 50px 40px 50px; } .section-dimension-125.cpad-14 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-125.cpad-15 { padding: 40px 50px 40px 50px; } .section-dimension-125.cpad-15 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-125.cpad-0 { padding: 0px 0px 0px 0px; } .section-dimension-125.cpad-0 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } } @media all { .section-dimension-126 .card-header { height: 40px; } .section-dimension-126 .card-footer { height: 40px; } .section-dimension-126 .card-left { width: 50px; } .section-dimension-126 .card-right { width: 50px; } .section-dimension-126 { min-height: 100px; } div.section-dimension-126.header-on-left .card-left { top: 40px; } div.section-dimension-126.header-on-left .card-header { left: 0px; } div.section-dimension-126.left-on-header .card-left { top: 0px; } div.section-dimension-126.left-on-header .card-header { left: 50px; } div.section-dimension-126.header-on-right .card-right { top: 40px; } div.section-dimension-126.header-on-right .card-header { right: 0px; } div.section-dimension-126.right-on-header .card-right { top: 0px; } div.section-dimension-126.right-on-header .card-header { right: 50px; } div.section-dimension-126.footer-on-left .card-left { bottom: 40px; } div.section-dimension-126.footer-on-left .card-footer { left: 0px; } div.section-dimension-126.left-on-footer .card-left { bottom: 0px; } div.section-dimension-126.left-on-footer .card-footer { left: 50px; } div.section-dimension-126.footer-on-right .card-right { bottom: 40px; } div.section-dimension-126.footer-on-right .card-footer { right: 0px; } div.section-dimension-126.right-on-footer .card-right { bottom: 0px; } div.section-dimension-126.right-on-footer .card-footer { right: 50px; } .section-dimension-126.cpad-1 { padding: 40px 0px 0px 0px; } .section-dimension-126.cpad-1 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-126.cpad-8 { padding: 0px 50px 0px 0px; } .section-dimension-126.cpad-8 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-126.cpad-9 { padding: 40px 50px 0px 0px; } .section-dimension-126.cpad-9 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-126.cpad-4 { padding: 0px 0px 40px 0px; } .section-dimension-126.cpad-4 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-126.cpad-5 { padding: 40px 0px 40px 0px; } .section-dimension-126.cpad-5 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-126.cpad-12 { padding: 0px 50px 40px 0px; } .section-dimension-126.cpad-12 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-126.cpad-13 { padding: 40px 50px 40px 0px; } .section-dimension-126.cpad-13 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-126.cpad-2 { padding: 0px 0px 0px 50px; } .section-dimension-126.cpad-2 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-126.cpad-3 { padding: 40px 0px 0px 50px; } .section-dimension-126.cpad-3 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-126.cpad-10 { padding: 0px 50px 0px 50px; } .section-dimension-126.cpad-10 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-126.cpad-11 { padding: 40px 50px 0px 50px; } .section-dimension-126.cpad-11 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-126.cpad-6 { padding: 0px 0px 40px 50px; } .section-dimension-126.cpad-6 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-126.cpad-7 { padding: 40px 0px 40px 50px; } .section-dimension-126.cpad-7 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-126.cpad-14 { padding: 0px 50px 40px 50px; } .section-dimension-126.cpad-14 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-126.cpad-15 { padding: 40px 50px 40px 50px; } .section-dimension-126.cpad-15 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-126.cpad-0 { padding: 0px 0px 0px 0px; } .section-dimension-126.cpad-0 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } } @media all { .section-dimension-127 .card-header { height: 40px; } .section-dimension-127 .card-footer { height: 40px; } .section-dimension-127 .card-left { width: 50px; } .section-dimension-127 .card-right { width: 50px; } .section-dimension-127 { min-height: 100px; } div.section-dimension-127.header-on-left .card-left { top: 40px; } div.section-dimension-127.header-on-left .card-header { left: 0px; } div.section-dimension-127.left-on-header .card-left { top: 0px; } div.section-dimension-127.left-on-header .card-header { left: 50px; } div.section-dimension-127.header-on-right .card-right { top: 40px; } div.section-dimension-127.header-on-right .card-header { right: 0px; } div.section-dimension-127.right-on-header .card-right { top: 0px; } div.section-dimension-127.right-on-header .card-header { right: 50px; } div.section-dimension-127.footer-on-left .card-left { bottom: 40px; } div.section-dimension-127.footer-on-left .card-footer { left: 0px; } div.section-dimension-127.left-on-footer .card-left { bottom: 0px; } div.section-dimension-127.left-on-footer .card-footer { left: 50px; } div.section-dimension-127.footer-on-right .card-right { bottom: 40px; } div.section-dimension-127.footer-on-right .card-footer { right: 0px; } div.section-dimension-127.right-on-footer .card-right { bottom: 0px; } div.section-dimension-127.right-on-footer .card-footer { right: 50px; } .section-dimension-127.cpad-1 { padding: 40px 0px 0px 0px; } .section-dimension-127.cpad-1 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-127.cpad-8 { padding: 0px 50px 0px 0px; } .section-dimension-127.cpad-8 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-127.cpad-9 { padding: 40px 50px 0px 0px; } .section-dimension-127.cpad-9 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-127.cpad-4 { padding: 0px 0px 40px 0px; } .section-dimension-127.cpad-4 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-127.cpad-5 { padding: 40px 0px 40px 0px; } .section-dimension-127.cpad-5 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-127.cpad-12 { padding: 0px 50px 40px 0px; } .section-dimension-127.cpad-12 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-127.cpad-13 { padding: 40px 50px 40px 0px; } .section-dimension-127.cpad-13 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-127.cpad-2 { padding: 0px 0px 0px 50px; } .section-dimension-127.cpad-2 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-127.cpad-3 { padding: 40px 0px 0px 50px; } .section-dimension-127.cpad-3 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-127.cpad-10 { padding: 0px 50px 0px 50px; } .section-dimension-127.cpad-10 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-127.cpad-11 { padding: 40px 50px 0px 50px; } .section-dimension-127.cpad-11 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-127.cpad-6 { padding: 0px 0px 40px 50px; } .section-dimension-127.cpad-6 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-127.cpad-7 { padding: 40px 0px 40px 50px; } .section-dimension-127.cpad-7 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-127.cpad-14 { padding: 0px 50px 40px 50px; } .section-dimension-127.cpad-14 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-127.cpad-15 { padding: 40px 50px 40px 50px; } .section-dimension-127.cpad-15 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-127.cpad-0 { padding: 0px 0px 0px 0px; } .section-dimension-127.cpad-0 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } } @media all { .sombra { box-shadow: 1px 1px 1px 1px #000000; } } @media all { .tamanholabel { width: 500px; } } .checkbox-padding-left { padding-left: 20px; } @media all and (min-width: 222px) { .row-height-4 > .col > .content-area { min-height: 100px; } } @media all { .texto_interesse p { font-size: 14px; text-align: center; } } @media all { }
www/css/index_main.less.css
*, *:after, *:before { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } body { margin: 0px; } /* grid */ .grid { width: 100%; } .upage-content > .grid { max-width: none; margin-left: auto; margin-right: auto; } /* gutter around whole design */ /* .upage-content > .grid-pad { padding: @gutter @gutter 0px @gutter; } */ /* column */ .urow:not(.cright) > .col { float: left; } .urow.cright > .col { float: right; } .col { position: relative; min-height: 1px; } .content-area { position: relative; } /* row */ .urow { clear: both; position: relative; } form.urow { margin-bottom: 0px; } .widget { position: relative; } /* for widgets and the like <div class="table-thing widget"> <div class="narrow-control w85"> my width is set </div> <div class="wide-control"> my width is 100%, minus the set width of the narrow-control</div> </div> .w85 { width:85px; } */ .vertical-col > *, .vertical-col > .table-thing, .vertical-col > .afScrollPanel > .table-thing, .wrapping-col > .no_wrap.table-thing, .wrapping-col > .afScrollPanel > .no_wrap.table-thing { width: 100%; } #afui .vertical-col > .afScrollPanel > .widget, #afui .vertical-col > .widget, .vertical-col > .widget, .camera > .widget { width: calc(100% - 10px); margin-left: 5px; } .col > .vertical-col > .widget { width: 100%; margin-left: 0; } .table-thing { display: table; } .wide-control { display: table-cell; width: 100%; } .narrow-control { display: table-cell; } /* wrapping column */ .wrapping-col.right > *, .wrapping-col.right > .afScrollPanel > * { float: right; } /* margin: 0 5px; move margin to another class */ .wrapping-col.left > *, .wrapping-col.left > .afScrollPanel > * { float: left; } /* center and right alignment */ .vertical-col.center { text-align: center; } .vertical-col.right { text-align: right; } .vertical-col.right > *, .col > .vertical-col.right > .widget, .vertical-col.right > .afScrollPanel > * { margin-left: auto; } .vertical-col.center > *, .col > .vertical-col.center > .widget, .vertical-col.center > .afScrollPanel > * { margin-left: auto; margin-right: auto; } .wrapping-col:not(.horiz-area) > .no_wrap, .wrapping-col:not(.horiz-area) > .afScrollPanel > .no_wrap { float: none; clear: both; /* margin: 8px 0px; */ } .center-h-v-col > .widget { position: absolute !important; left: 50%; top: 50%; transform: translate(-50%, -50%); -webkit-transform: translate(-50%, -50%); margin-top: 0 !important; } /* shim */ .uib_shim { clear: both; float: none !important; width: 100%; position: relative; height: 0px; line-height: 0px; font-size: 0px; display: block; } /* content-box fix for box-sizing */ .content-box, .content-box:before, .content-box:after { -webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box; } /* page */ .hidden:not(.afPopup) { display: none; } .upage-content, .upage-outer { position: relative; } html, body { height: 100%; } body:not(#afui) .upage, body:not(#afui) .upage-content { height: 100%; } body:not(#afui) .upage-outer { height: auto; } /* position relative works fine. but fixed can be elected as well */ /* .upage-content, .upage-outer { position: fixed; height:100%; } */ .upage { overflow-x: hidden; } .upage-content { z-index: 1; } #afui .upage { padding: 0; } /* sidebars and crossbars */ .uib_sidebar { position: fixed; height: 100%; top: 0px; } .uib_crossbar { position: fixed; width: 100%; left: 0px; } .leftbar, .rightbar { z-index: 2; } .reveal.leftbar { left: 0px; z-index: 0; } .reveal.rightbar { right: 0px; z-index: 0; } .leftbar.oh, .rightbar.oh { z-index: 3; } .reveal { z-index: 0; visibility: hidden; } .topbar { z-index: 3; } .topbar.reveal { top: 0px; z-index: 0; } .botbar { z-index: 3; position: fixed; } .botbar.oh, .topbar.oh { z-index: 4; } .sidebar-content { height: 100%; overflow-y: auto; position: relative; margin: 0; } .sidebar-thumb { position: relative; margin: 0; /* background-image:url('images/gripper.png'); */ } .template { display: none !important; } .uib-absolute { position: absolute !important; } .content-block-inner { box-sizing: content-box; } .navbar-inner .widget-container { display: inline-flex; } .searchbar { width: 100% !important; margin: 0 !important; } #afui .panel { padding: 0px; } #afui .pages { height: 100%; } #afui .upage-outer { height: 100%; } body#afui.v2 { overflow-y: auto !important; } body#afui .panel > .widget > input[type="radio"] + label, body#afui .panel > .widget > input[type="checkbox"] + label { padding-top: 14px; } #afui .table-thing input[type="radio"] + label, #afui .table-thing input[type="checkbox"] + label { padding-top: 6px !important; } input.toggle + label:after { width: 32px; } body#afui .splt { width: 200px; } .figure-align { display: table; margin: 0px auto; } .figure-align img { width: 100%; } .image-cell { display: table-cell; vertical-align: middle; } @media all { .scale-image img { width: 140px; } } @media all { .wrapping-col > .d-margins, .wrapping-col > .afScrollPanel > .d-margins { margin-left: 6px; margin-right: 6px; } .wrapping-col > .d-margins, .wrapping-col > .afScrollPanel > .d-margins { margin-left: 6px; margin-right: 6px; } .d-margins { margin-top: 25px; } } @media all { .Alinhamento { text-align: center; } } @media all { .Texto { font-size: 25px; font-weight: bold; color: #000000; } } .align-widget { margin: 5px 0 !important; } .full-width-widget { width: 100%; } .inline-widget { display: inline-block; } label { width: auto; float: none; } label + *:not(div.inline-widget) { width: 100% !important; margin-bottom: 0 !important; } label:empty { display: none; } .label-inline { vertical-align: middle; } .label-top-left, .label-top-right { display: block; padding: 0; margin: 0; } .label-top-left + *, .label-top-right + * { display: block; } .label-top-left { text-align: left; } .label-top-right { text-align: right; } .tail-c { display: table-cell; width: 15px; } .button-icon-top { display: block; margin: auto; } .button-icon-bottom { display: block; margin: auto; } .button-icon-left { float: left; } .button-icon-right { float: right; } @media all { .Fundo { background-color: #f19d1f; background-position: center center; background-repeat: no-repeat; background-attachment: fixed; } } @media all { } /* .customizado > .narrow-control - affects control label .customizado > .wide-control - affects input */ @media all { .style-60 { height: 60px !important; width: 60px !important; border-radius: 100% !important; text-align: center; } } @media all { .wrapping-col > .padrao, .wrapping-col > .afScrollPanel > .padrao { margin-left: 6px; margin-right: 6px; } .wrapping-col > .padrao, .wrapping-col > .afScrollPanel > .padrao { margin-left: 6px; margin-right: 6px; } .padrao { margin-bottom: 15px; } } @media all { .style-68 > label { text-align: center; } } @media all { .texto { font-size: 12px; color: #000000; text-align: left; } } @media all { .criar { color: #000000; } } @media all { .wrapping-col > .botao, .wrapping-col > .afScrollPanel > .botao { margin-left: 6px; margin-right: 6px; } .wrapping-col > .botao, .wrapping-col > .afScrollPanel > .botao { margin-left: 6px; margin-right: 6px; } .botao { margin-top: 30px; margin-bottom: 10px; } } .uib-card { position: relative; margin: 0px; box-sizing: border-box; } .card-header, .card-left, .card-footer, .card-right { position: absolute; box-sizing: border-box; padding: 0px; margin: 0px; } .card-header { top: 0px; left: 0px; right: 0px; width: auto; } .card-footer { bottom: 0px; left: 0px; right: 0px; width: auto; } .card-left { top: 0px; left: 0px; bottom: 0px; } .card-right { top: 0px; right: 0px; bottom: 0px; } .uib-card section .widget-divider:only-of-type { position: absolute; left: 0px; top: 0px; right: 0px; bottom: 0px; height: auto !important; width: auto !important; } .uib-card .widget-divider:only-of-type div { height: 100%; } .card_col > .widget { display: inline-block; column-break-inside: avoid; } @media all { .card-columns-7 { column-count: 2; -webkit-column-count: 2; -moz-column-count: 2; column-gap: 10px; -webkit-column-gap: 10px; -moz-column-gap: 10px; column-fill: balance; -webkit-column-fill: balance; -moz-column-fill: balance; } } @media all { .section-dimension-8 .card-header { height: 40px; } .section-dimension-8 .card-footer { height: 40px; } .section-dimension-8 .card-left { width: 50px; } .section-dimension-8 .card-right { width: 50px; } .section-dimension-8 { min-height: 100px; } .section-dimension-8 { min-width: 100%; } div.section-dimension-8.header-on-left .card-left { top: 40px; } div.section-dimension-8.header-on-left .card-header { left: 0px; } div.section-dimension-8.left-on-header .card-left { top: 0px; } div.section-dimension-8.left-on-header .card-header { left: 50px; } div.section-dimension-8.header-on-right .card-right { top: 40px; } div.section-dimension-8.header-on-right .card-header { right: 0px; } div.section-dimension-8.right-on-header .card-right { top: 0px; } div.section-dimension-8.right-on-header .card-header { right: 50px; } div.section-dimension-8.footer-on-left .card-left { bottom: 40px; } div.section-dimension-8.footer-on-left .card-footer { left: 0px; } div.section-dimension-8.left-on-footer .card-left { bottom: 0px; } div.section-dimension-8.left-on-footer .card-footer { left: 50px; } div.section-dimension-8.footer-on-right .card-right { bottom: 40px; } div.section-dimension-8.footer-on-right .card-footer { right: 0px; } div.section-dimension-8.right-on-footer .card-right { bottom: 0px; } div.section-dimension-8.right-on-footer .card-footer { right: 50px; } .section-dimension-8.cpad-1 { padding: 40px 0px 0px 0px; } .section-dimension-8.cpad-1 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-8.cpad-8 { padding: 0px 50px 0px 0px; } .section-dimension-8.cpad-8 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-8.cpad-9 { padding: 40px 50px 0px 0px; } .section-dimension-8.cpad-9 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-8.cpad-4 { padding: 0px 0px 40px 0px; } .section-dimension-8.cpad-4 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-8.cpad-5 { padding: 40px 0px 40px 0px; } .section-dimension-8.cpad-5 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-8.cpad-12 { padding: 0px 50px 40px 0px; } .section-dimension-8.cpad-12 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-8.cpad-13 { padding: 40px 50px 40px 0px; } .section-dimension-8.cpad-13 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-8.cpad-2 { padding: 0px 0px 0px 50px; } .section-dimension-8.cpad-2 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-8.cpad-3 { padding: 40px 0px 0px 50px; } .section-dimension-8.cpad-3 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-8.cpad-10 { padding: 0px 50px 0px 50px; } .section-dimension-8.cpad-10 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-8.cpad-11 { padding: 40px 50px 0px 50px; } .section-dimension-8.cpad-11 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-8.cpad-6 { padding: 0px 0px 40px 50px; } .section-dimension-8.cpad-6 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-8.cpad-7 { padding: 40px 0px 40px 50px; } .section-dimension-8.cpad-7 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-8.cpad-14 { padding: 0px 50px 40px 50px; } .section-dimension-8.cpad-14 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-8.cpad-15 { padding: 40px 50px 40px 50px; } .section-dimension-8.cpad-15 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-8.cpad-0 { padding: 0px 0px 0px 0px; } .section-dimension-8.cpad-0 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } } @media all { .section-dimension-9 .card-header { height: 40px; } .section-dimension-9 .card-footer { height: 40px; } .section-dimension-9 .card-left { width: 50px; } .section-dimension-9 .card-right { width: 50px; } .section-dimension-9 { min-height: 100px; } .section-dimension-9 { min-width: 100%; } div.section-dimension-9.header-on-left .card-left { top: 40px; } div.section-dimension-9.header-on-left .card-header { left: 0px; } div.section-dimension-9.left-on-header .card-left { top: 0px; } div.section-dimension-9.left-on-header .card-header { left: 50px; } div.section-dimension-9.header-on-right .card-right { top: 40px; } div.section-dimension-9.header-on-right .card-header { right: 0px; } div.section-dimension-9.right-on-header .card-right { top: 0px; } div.section-dimension-9.right-on-header .card-header { right: 50px; } div.section-dimension-9.footer-on-left .card-left { bottom: 40px; } div.section-dimension-9.footer-on-left .card-footer { left: 0px; } div.section-dimension-9.left-on-footer .card-left { bottom: 0px; } div.section-dimension-9.left-on-footer .card-footer { left: 50px; } div.section-dimension-9.footer-on-right .card-right { bottom: 40px; } div.section-dimension-9.footer-on-right .card-footer { right: 0px; } div.section-dimension-9.right-on-footer .card-right { bottom: 0px; } div.section-dimension-9.right-on-footer .card-footer { right: 50px; } .section-dimension-9.cpad-1 { padding: 40px 0px 0px 0px; } .section-dimension-9.cpad-1 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-9.cpad-8 { padding: 0px 50px 0px 0px; } .section-dimension-9.cpad-8 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-9.cpad-9 { padding: 40px 50px 0px 0px; } .section-dimension-9.cpad-9 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-9.cpad-4 { padding: 0px 0px 40px 0px; } .section-dimension-9.cpad-4 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-9.cpad-5 { padding: 40px 0px 40px 0px; } .section-dimension-9.cpad-5 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-9.cpad-12 { padding: 0px 50px 40px 0px; } .section-dimension-9.cpad-12 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-9.cpad-13 { padding: 40px 50px 40px 0px; } .section-dimension-9.cpad-13 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-9.cpad-2 { padding: 0px 0px 0px 50px; } .section-dimension-9.cpad-2 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-9.cpad-3 { padding: 40px 0px 0px 50px; } .section-dimension-9.cpad-3 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-9.cpad-10 { padding: 0px 50px 0px 50px; } .section-dimension-9.cpad-10 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-9.cpad-11 { padding: 40px 50px 0px 50px; } .section-dimension-9.cpad-11 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-9.cpad-6 { padding: 0px 0px 40px 50px; } .section-dimension-9.cpad-6 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-9.cpad-7 { padding: 40px 0px 40px 50px; } .section-dimension-9.cpad-7 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-9.cpad-14 { padding: 0px 50px 40px 50px; } .section-dimension-9.cpad-14 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-9.cpad-15 { padding: 40px 50px 40px 50px; } .section-dimension-9.cpad-15 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-9.cpad-0 { padding: 0px 0px 0px 0px; } .section-dimension-9.cpad-0 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } } @media all { .section-dimension-10 .card-header { height: 40px; } .section-dimension-10 .card-footer { height: 40px; } .section-dimension-10 .card-left { width: 50px; } .section-dimension-10 .card-right { width: 50px; } .section-dimension-10 { min-height: 100px; } .section-dimension-10 { min-width: 100%; } div.section-dimension-10.header-on-left .card-left { top: 40px; } div.section-dimension-10.header-on-left .card-header { left: 0px; } div.section-dimension-10.left-on-header .card-left { top: 0px; } div.section-dimension-10.left-on-header .card-header { left: 50px; } div.section-dimension-10.header-on-right .card-right { top: 40px; } div.section-dimension-10.header-on-right .card-header { right: 0px; } div.section-dimension-10.right-on-header .card-right { top: 0px; } div.section-dimension-10.right-on-header .card-header { right: 50px; } div.section-dimension-10.footer-on-left .card-left { bottom: 40px; } div.section-dimension-10.footer-on-left .card-footer { left: 0px; } div.section-dimension-10.left-on-footer .card-left { bottom: 0px; } div.section-dimension-10.left-on-footer .card-footer { left: 50px; } div.section-dimension-10.footer-on-right .card-right { bottom: 40px; } div.section-dimension-10.footer-on-right .card-footer { right: 0px; } div.section-dimension-10.right-on-footer .card-right { bottom: 0px; } div.section-dimension-10.right-on-footer .card-footer { right: 50px; } .section-dimension-10.cpad-1 { padding: 40px 0px 0px 0px; } .section-dimension-10.cpad-1 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-10.cpad-8 { padding: 0px 50px 0px 0px; } .section-dimension-10.cpad-8 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-10.cpad-9 { padding: 40px 50px 0px 0px; } .section-dimension-10.cpad-9 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-10.cpad-4 { padding: 0px 0px 40px 0px; } .section-dimension-10.cpad-4 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-10.cpad-5 { padding: 40px 0px 40px 0px; } .section-dimension-10.cpad-5 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-10.cpad-12 { padding: 0px 50px 40px 0px; } .section-dimension-10.cpad-12 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-10.cpad-13 { padding: 40px 50px 40px 0px; } .section-dimension-10.cpad-13 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-10.cpad-2 { padding: 0px 0px 0px 50px; } .section-dimension-10.cpad-2 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-10.cpad-3 { padding: 40px 0px 0px 50px; } .section-dimension-10.cpad-3 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-10.cpad-10 { padding: 0px 50px 0px 50px; } .section-dimension-10.cpad-10 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-10.cpad-11 { padding: 40px 50px 0px 50px; } .section-dimension-10.cpad-11 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-10.cpad-6 { padding: 0px 0px 40px 50px; } .section-dimension-10.cpad-6 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-10.cpad-7 { padding: 40px 0px 40px 50px; } .section-dimension-10.cpad-7 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-10.cpad-14 { padding: 0px 50px 40px 50px; } .section-dimension-10.cpad-14 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-10.cpad-15 { padding: 40px 50px 40px 50px; } .section-dimension-10.cpad-15 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-10.cpad-0 { padding: 0px 0px 0px 0px; } .section-dimension-10.cpad-0 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } } @media all { .section-dimension-11 .card-header { height: 40px; } .section-dimension-11 .card-footer { height: 40px; } .section-dimension-11 .card-left { width: 50px; } .section-dimension-11 .card-right { width: 50px; } .section-dimension-11 { min-height: 100px; } .section-dimension-11 { min-width: 100%; } div.section-dimension-11.header-on-left .card-left { top: 40px; } div.section-dimension-11.header-on-left .card-header { left: 0px; } div.section-dimension-11.left-on-header .card-left { top: 0px; } div.section-dimension-11.left-on-header .card-header { left: 50px; } div.section-dimension-11.header-on-right .card-right { top: 40px; } div.section-dimension-11.header-on-right .card-header { right: 0px; } div.section-dimension-11.right-on-header .card-right { top: 0px; } div.section-dimension-11.right-on-header .card-header { right: 50px; } div.section-dimension-11.footer-on-left .card-left { bottom: 40px; } div.section-dimension-11.footer-on-left .card-footer { left: 0px; } div.section-dimension-11.left-on-footer .card-left { bottom: 0px; } div.section-dimension-11.left-on-footer .card-footer { left: 50px; } div.section-dimension-11.footer-on-right .card-right { bottom: 40px; } div.section-dimension-11.footer-on-right .card-footer { right: 0px; } div.section-dimension-11.right-on-footer .card-right { bottom: 0px; } div.section-dimension-11.right-on-footer .card-footer { right: 50px; } .section-dimension-11.cpad-1 { padding: 40px 0px 0px 0px; } .section-dimension-11.cpad-1 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-11.cpad-8 { padding: 0px 50px 0px 0px; } .section-dimension-11.cpad-8 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-11.cpad-9 { padding: 40px 50px 0px 0px; } .section-dimension-11.cpad-9 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-11.cpad-4 { padding: 0px 0px 40px 0px; } .section-dimension-11.cpad-4 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-11.cpad-5 { padding: 40px 0px 40px 0px; } .section-dimension-11.cpad-5 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-11.cpad-12 { padding: 0px 50px 40px 0px; } .section-dimension-11.cpad-12 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-11.cpad-13 { padding: 40px 50px 40px 0px; } .section-dimension-11.cpad-13 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-11.cpad-2 { padding: 0px 0px 0px 50px; } .section-dimension-11.cpad-2 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-11.cpad-3 { padding: 40px 0px 0px 50px; } .section-dimension-11.cpad-3 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-11.cpad-10 { padding: 0px 50px 0px 50px; } .section-dimension-11.cpad-10 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-11.cpad-11 { padding: 40px 50px 0px 50px; } .section-dimension-11.cpad-11 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-11.cpad-6 { padding: 0px 0px 40px 50px; } .section-dimension-11.cpad-6 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-11.cpad-7 { padding: 40px 0px 40px 50px; } .section-dimension-11.cpad-7 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-11.cpad-14 { padding: 0px 50px 40px 50px; } .section-dimension-11.cpad-14 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-11.cpad-15 { padding: 40px 50px 40px 50px; } .section-dimension-11.cpad-15 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-11.cpad-0 { padding: 0px 0px 0px 0px; } .section-dimension-11.cpad-0 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } } .uib-header-fixed { position: fixed !important; top: 0; } .uib-footer-fixed { position: fixed !important; bottom: 0; } .uib-header, .uib-footer { width: 100%; min-height: 48px; z-index: 2; position: relative; display: -webkit-box; -webkit-box-align: center; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; -o-align-items: center; align-items: center; } .uib-header .d-margins, .uib-footer .d-margins { margin: 0; } .uib-header > .horiz-area, .uib-footer > .horiz-area { -webkit-box-flex: 1; -webkit-flex-grow: 1; -moz-flex-grow: 1; -ms-flex-grow: 1; -o-flex-grow: 1; flex-grow: 1; pointer-events: none; z-index: 1; display: -webkit-box; -webkit-box-align: center; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; -o-align-items: center; align-items: center; } .uib-header > .horiz-area > *, .uib-footer > .horiz-area > * { pointer-events: auto; height: 100%; } .uib-header > .horiz-area.right, .uib-footer > .horiz-area.right { -webkit-flex-direction: row-reverse; -moz-flex-direction: row-reverse; -ms-flex-direction: row-reverse; -o-flex-direction: row-reverse; flex-direction: row-reverse; -webkit-box-direction: reverse; -webkit-box-pack: end; } .uib-header > h2, .uib-footer > h2 { font-size: 18px; line-height: 18px; font-weight: bold; font-family: sans-serif; color: #DDD; position: absolute; left: 0px; width: 100%; margin: 0; padding: 0; top: 50%; margin-top: -0.5em; text-align: center; } .uib-header > .single-centered, .uib-footer > .single-centered { position: absolute; width: 100%; text-align: center; top: 50%; transform: translate(0, -50%); -webkit-transform: translate(0, -50%); } .uib-header > .single-centered > *, .uib-footer > .single-centered > * { margin-left: auto !important; margin-right: auto !important; } @media all { .header-bg { background-color: #f19d1f; background-position: center center; background-repeat: no-repeat; background-attachment: scroll; } } .left-receptacle { float: left; } .right-receptacle { float: right; } [data-uib="media/text"] p:first-of-type { margin-top: 0px; } .ellipsis { overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; } @media all { .texto2 p { font-size: 18px; font-weight: bold; text-align: center; } } @media all { .texto3 p { font-size: 12px; text-align: center; } } @media all { .fundo2 { background-color: rgba(243, 157, 29, 0.3); background-position: center center; background-repeat: no-repeat; background-attachment: fixed; } } @media all { .tamanho, .table-thing.tamanho { width: 100px; } .tamanho, .table-thing.tamanho { width: 100px; } .tamanho > .narrow-control { text-align: left; } } @media all { .tamanho2, .table-thing.tamanho2 { width: 160px; } .tamanho2, .table-thing.tamanho2 { width: 160px; } .tamanho2 > .narrow-control { text-align: left; } } @media all { .grid-pad { padding-top: 10px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; } } @media all and (min-width: 0px) { .row-height-1 > .col > .content-area { min-height: 100px; } } .sbs-container { display: -webkit-flex; display: -moz-flex; display: -ms-flexbox; display: -o-flex; display: flex; flex-direction: row; } .leftContent, .rightContent { display: inline; width: 50%; } .uib-bs-flex:not(.btn-group-vertical) { display: -webkit-box; -webkit-box-align: center; display: -webkit-flex; display: -moz-flex; display: -ms-flexbox; display: -o-flex; display: flex; -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; -o-align-items: center; align-items: center; } .uib-bs-flex:not(.btn-group-vertical) > .widget { -webkit-box-flex: 1; -webkit-flex: 1 auto; -moz-flex: 1 auto; -ms-flex: 1 auto; -o-flex: 1 auto; flex: 1 auto; } .btn-group .d-margins { margin: 0; } @media all { .footer-bg { background-color: #f19d1f; background-position: center center; background-repeat: no-repeat; background-attachment: scroll; } } .radio-padding-left { padding-left: 20px; } @media all { .default-sprite-button div.uib-sprite { background-image: url(../images/Exclaim.png); background-size: cover; background-repeat: no-repeat; } } @media all { .hover-sprite-button:hover div.uib-sprite { background-image: url(../images/Arrow.png); background-size: cover; background-repeat: no-repeat; } } @media all { .sprite-sizing { height: 135px !important; width: 135px !important; -webkit-flex: 0 0 auto !important; -moz-flex: 0 0 auto !important; -ms-flex: 0 0 auto !important; -o-flex: 0 0 auto !important; flex: 0 0 auto !important; } } @media all { .active-sprite-button:active div.uib-sprite { background-image: url(../images/Untitled.png); background-size: cover; background-repeat: no-repeat; } } @media all { .default-graphic-button { border-radius: 5px; border-width: 1px; border-style: solid; border-color: grey; background-color: #3b5998; } } @media all { .hover-graphic-button:hover { border-radius: 5px; background-color: #6d84b4; } } @media all { .active-graphic-button:active { border-radius: 5px; background-color: #afbdd4; } } @media all { .default-graphic-sizing { width: 96% !important; -webkit-flex: 0 0 auto !important; -moz-flex: 0 0 auto !important; -ms-flex: 0 0 auto !important; -o-flex: 0 0 auto !important; flex: 0 0 auto !important; padding: 5px 5px 5px 5px; } } @media all { .default-graphic-text { font-size: 18px; font-weight: 500; color: #ffffff; text-align: center; } } @media all { .default-image-sizing > img { width: 35px; } } @media all { .maps-size { height: 250px; } } @media all and (min-width: 222px) { .row-height-2 > .col > .content-area { min-height: 100px; } } @media all and (min-width: 222px) { .row-height-3 > .col > .content-area { min-height: 100px; } } .uib-grid { display: -webkit-flex; display: -moz-flex; display: -ms-flexbox; display: -o-flex; display: flex; -webkit-flex-direction: column; -moz-flex-direction: column; -ms-flex-direction: column; -o-flex-direction: column; flex-direction: column; } .uib-grid > .uib-grid-row { display: -webkit-flex; display: -moz-flex; display: -ms-flexbox; display: -o-flex; display: flex; -webkit-flex: 1; -moz-flex: 1; -ms-flex: 1; -o-flex: 1; flex: 1; } .uib-grid > .uib-grid-row > .uib-grid-cell { -webkit-flex: 1; -moz-flex: 1; -ms-flex: 1; -o-flex: 1; flex: 1; display: -webkit-flex; display: -moz-flex; display: -ms-flexbox; display: -o-flex; display: flex; } .uib-grid > .uib-grid-row > .uib-grid-cell > * { -webkit-flex: 1; -moz-flex: 1; -ms-flex: 1; -o-flex: 1; flex: 1; margin: 0 !important; height: auto !important; } .uib-grid > .uib-grid-row > .uib-grid-cell > .button, .uib-grid > .uib-grid-row > .uib-grid-cell > [data-role="button"] { padding: 0 !important; display: -webkit-flex !important; display: -moz-flex !important; display: -ms-flexbox !important; display: -o-flex !important; display: flex !important; -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; -o-align-items: center; align-items: center; -webkit-justify-content: center; -moz-justify-content: center; -ms-justify-content: center; -o-justify-content: center; justify-content: center; } .uib-grid > .uib-grid-row > .uib-grid-cell > .table-thing { display: -webkit-flex; display: -moz-flex; display: -ms-flexbox; display: -o-flex; display: flex; } .uib-grid > .uib-grid-row > .uib-grid-cell > .table-thing > label.narrow-control { display: none; } .uib-grid > .uib-grid-row > .uib-grid-cell > .table-thing > label.narrow-control + .wide-control { -webkit-flex: 1; -moz-flex: 1; -ms-flex: 1; -o-flex: 1; flex: 1; height: auto !important; } .uib-grid > .uib-grid-row:first-child > .uib-grid-cell > *, .uib-grid > .uib-grid-row:first-child > .uib-grid-cell .wide-control { border-bottom-left-radius: 0 !important; border-bottom-right-radius: 0 !important; } .uib-grid > .uib-grid-row:first-child > .uib-grid-cell:not(:first-child) > *, .uib-grid > .uib-grid-row:first-child > .uib-grid-cell:not(:first-child) .wide-control { border-top-left-radius: 0 !important; } .uib-grid > .uib-grid-row:first-child > .uib-grid-cell:not(:last-child) > *, .uib-grid > .uib-grid-row:first-child > .uib-grid-cell:not(:last-child) .wide-control { border-top-right-radius: 0 !important; } .uib-grid > .uib-grid-row:not(:first-child):not(:last-child) > .uib-grid-cell > *, .uib-grid > .uib-grid-row:not(:first-child):not(:last-child) > .uib-grid-cell .wide-control { border-radius: 0 !important; } .uib-grid > .uib-grid-row:last-child > .uib-grid-cell > *, .uib-grid > .uib-grid-row:last-child > .uib-grid-cell .wide-control { border-top-left-radius: 0 !important; border-top-right-radius: 0 !important; } .uib-grid > .uib-grid-row:last-child > .uib-grid-cell:not(:first-child) > *, .uib-grid > .uib-grid-row:last-child > .uib-grid-cell:not(:first-child) .wide-control { border-bottom-left-radius: 0 !important; } .uib-grid > .uib-grid-row:last-child > .uib-grid-cell:not(:last-child) > *, .uib-grid > .uib-grid-row:last-child > .uib-grid-cell:not(:last-child) .wide-control { border-bottom-right-radius: 0 !important; } @media all { .grid-text, .grid-text * { font-size: 14px !important; } .grid-text, .grid-text * { font-size: 14px !important; } } @media all { .grid-height { height: 30px; } } @media all { .tamanhobt { -webkit-flex: 0 0 auto !important; -moz-flex: 0 0 auto !important; -ms-flex: 0 0 auto !important; -o-flex: 0 0 auto !important; flex: 0 0 auto !important; width: 50px; } } @media all { .tamanhoinp, .table-thing.tamanhoinp { width: 310px; } .tamanhoinp, .table-thing.tamanhoinp { width: 310px; } .tamanhoinp > .narrow-control { text-align: left; } } .allow-badge > .badge.glyphicon { display: inline-block; } .list-group .d-margins { margin: 0; } @media all { .section-dimension-45 .card-header { height: 40px; } .section-dimension-45 .card-footer { height: 40px; } .section-dimension-45 .card-left { width: 50px; } .section-dimension-45 .card-right { width: 50px; } .section-dimension-45 { min-height: 100px; } div.section-dimension-45.header-on-left .card-left { top: 40px; } div.section-dimension-45.header-on-left .card-header { left: 0px; } div.section-dimension-45.left-on-header .card-left { top: 0px; } div.section-dimension-45.left-on-header .card-header { left: 50px; } div.section-dimension-45.header-on-right .card-right { top: 40px; } div.section-dimension-45.header-on-right .card-header { right: 0px; } div.section-dimension-45.right-on-header .card-right { top: 0px; } div.section-dimension-45.right-on-header .card-header { right: 50px; } div.section-dimension-45.footer-on-left .card-left { bottom: 40px; } div.section-dimension-45.footer-on-left .card-footer { left: 0px; } div.section-dimension-45.left-on-footer .card-left { bottom: 0px; } div.section-dimension-45.left-on-footer .card-footer { left: 50px; } div.section-dimension-45.footer-on-right .card-right { bottom: 40px; } div.section-dimension-45.footer-on-right .card-footer { right: 0px; } div.section-dimension-45.right-on-footer .card-right { bottom: 0px; } div.section-dimension-45.right-on-footer .card-footer { right: 50px; } .section-dimension-45.cpad-1 { padding: 40px 0px 0px 0px; } .section-dimension-45.cpad-1 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-45.cpad-8 { padding: 0px 50px 0px 0px; } .section-dimension-45.cpad-8 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-45.cpad-9 { padding: 40px 50px 0px 0px; } .section-dimension-45.cpad-9 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-45.cpad-4 { padding: 0px 0px 40px 0px; } .section-dimension-45.cpad-4 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-45.cpad-5 { padding: 40px 0px 40px 0px; } .section-dimension-45.cpad-5 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-45.cpad-12 { padding: 0px 50px 40px 0px; } .section-dimension-45.cpad-12 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-45.cpad-13 { padding: 40px 50px 40px 0px; } .section-dimension-45.cpad-13 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-45.cpad-2 { padding: 0px 0px 0px 50px; } .section-dimension-45.cpad-2 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-45.cpad-3 { padding: 40px 0px 0px 50px; } .section-dimension-45.cpad-3 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-45.cpad-10 { padding: 0px 50px 0px 50px; } .section-dimension-45.cpad-10 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-45.cpad-11 { padding: 40px 50px 0px 50px; } .section-dimension-45.cpad-11 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-45.cpad-6 { padding: 0px 0px 40px 50px; } .section-dimension-45.cpad-6 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-45.cpad-7 { padding: 40px 0px 40px 50px; } .section-dimension-45.cpad-7 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-45.cpad-14 { padding: 0px 50px 40px 50px; } .section-dimension-45.cpad-14 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-45.cpad-15 { padding: 40px 50px 40px 50px; } .section-dimension-45.cpad-15 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-45.cpad-0 { padding: 0px 0px 0px 0px; } .section-dimension-45.cpad-0 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } } @media all { .imgperfil img { width: 100px; } } @media all { .section-dimension-49 .card-header { height: 40px; } .section-dimension-49 .card-footer { height: 40px; } .section-dimension-49 .card-left { width: 50px; } .section-dimension-49 .card-right { width: 50px; } .section-dimension-49 { min-height: 100px; } div.section-dimension-49.header-on-left .card-left { top: 40px; } div.section-dimension-49.header-on-left .card-header { left: 0px; } div.section-dimension-49.left-on-header .card-left { top: 0px; } div.section-dimension-49.left-on-header .card-header { left: 50px; } div.section-dimension-49.header-on-right .card-right { top: 40px; } div.section-dimension-49.header-on-right .card-header { right: 0px; } div.section-dimension-49.right-on-header .card-right { top: 0px; } div.section-dimension-49.right-on-header .card-header { right: 50px; } div.section-dimension-49.footer-on-left .card-left { bottom: 40px; } div.section-dimension-49.footer-on-left .card-footer { left: 0px; } div.section-dimension-49.left-on-footer .card-left { bottom: 0px; } div.section-dimension-49.left-on-footer .card-footer { left: 50px; } div.section-dimension-49.footer-on-right .card-right { bottom: 40px; } div.section-dimension-49.footer-on-right .card-footer { right: 0px; } div.section-dimension-49.right-on-footer .card-right { bottom: 0px; } div.section-dimension-49.right-on-footer .card-footer { right: 50px; } .section-dimension-49.cpad-1 { padding: 40px 0px 0px 0px; } .section-dimension-49.cpad-1 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-49.cpad-8 { padding: 0px 50px 0px 0px; } .section-dimension-49.cpad-8 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-49.cpad-9 { padding: 40px 50px 0px 0px; } .section-dimension-49.cpad-9 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-49.cpad-4 { padding: 0px 0px 40px 0px; } .section-dimension-49.cpad-4 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-49.cpad-5 { padding: 40px 0px 40px 0px; } .section-dimension-49.cpad-5 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-49.cpad-12 { padding: 0px 50px 40px 0px; } .section-dimension-49.cpad-12 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-49.cpad-13 { padding: 40px 50px 40px 0px; } .section-dimension-49.cpad-13 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-49.cpad-2 { padding: 0px 0px 0px 50px; } .section-dimension-49.cpad-2 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-49.cpad-3 { padding: 40px 0px 0px 50px; } .section-dimension-49.cpad-3 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-49.cpad-10 { padding: 0px 50px 0px 50px; } .section-dimension-49.cpad-10 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-49.cpad-11 { padding: 40px 50px 0px 50px; } .section-dimension-49.cpad-11 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-49.cpad-6 { padding: 0px 0px 40px 50px; } .section-dimension-49.cpad-6 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-49.cpad-7 { padding: 40px 0px 40px 50px; } .section-dimension-49.cpad-7 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-49.cpad-14 { padding: 0px 50px 40px 50px; } .section-dimension-49.cpad-14 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-49.cpad-15 { padding: 40px 50px 40px 50px; } .section-dimension-49.cpad-15 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-49.cpad-0 { padding: 0px 0px 0px 0px; } .section-dimension-49.cpad-0 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } } @media all { .alinhamentoesq { text-align: right; } } @media all { .wrapping-col > .botaopesq, .wrapping-col > .afScrollPanel > .botaopesq { margin-left: 6px; margin-right: 6px; } .wrapping-col > .botaopesq, .wrapping-col > .afScrollPanel > .botaopesq { margin-left: 6px; margin-right: 6px; } .vertical-col > .botaopesq, .vertical-col > .afScrollPanel > .botaopesq { margin-left: 50px; } .vertical-col > .botaopesq, .vertical-col > .afScrollPanel > .botaopesq { margin-left: 50px; } } @media all { .sidebyside > .leftContent { width: 80%; text-align: left; } .sidebyside > .rightContent { width: 20%; text-align: -webkit-right; } } @media all { .section-dimension-64 .card-header { height: 40px; } .section-dimension-64 .card-footer { height: 40px; } .section-dimension-64 .card-left { width: 70px; } .section-dimension-64 .card-right { width: 50px; } .section-dimension-64 { min-height: 100px; } div.section-dimension-64.header-on-left .card-left { top: 40px; } div.section-dimension-64.header-on-left .card-header { left: 0px; } div.section-dimension-64.left-on-header .card-left { top: 0px; } div.section-dimension-64.left-on-header .card-header { left: 70px; } div.section-dimension-64.header-on-right .card-right { top: 40px; } div.section-dimension-64.header-on-right .card-header { right: 0px; } div.section-dimension-64.right-on-header .card-right { top: 0px; } div.section-dimension-64.right-on-header .card-header { right: 50px; } div.section-dimension-64.footer-on-left .card-left { bottom: 40px; } div.section-dimension-64.footer-on-left .card-footer { left: 0px; } div.section-dimension-64.left-on-footer .card-left { bottom: 0px; } div.section-dimension-64.left-on-footer .card-footer { left: 70px; } div.section-dimension-64.footer-on-right .card-right { bottom: 40px; } div.section-dimension-64.footer-on-right .card-footer { right: 0px; } div.section-dimension-64.right-on-footer .card-right { bottom: 0px; } div.section-dimension-64.right-on-footer .card-footer { right: 50px; } .section-dimension-64.cpad-1 { padding: 40px 0px 0px 0px; } .section-dimension-64.cpad-1 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-64.cpad-8 { padding: 0px 50px 0px 0px; } .section-dimension-64.cpad-8 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-64.cpad-9 { padding: 40px 50px 0px 0px; } .section-dimension-64.cpad-9 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-64.cpad-4 { padding: 0px 0px 40px 0px; } .section-dimension-64.cpad-4 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-64.cpad-5 { padding: 40px 0px 40px 0px; } .section-dimension-64.cpad-5 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-64.cpad-12 { padding: 0px 50px 40px 0px; } .section-dimension-64.cpad-12 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-64.cpad-13 { padding: 40px 50px 40px 0px; } .section-dimension-64.cpad-13 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-64.cpad-2 { padding: 0px 0px 0px 70px; } .section-dimension-64.cpad-2 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 70px; height: auto !important; width: auto !important; } .section-dimension-64.cpad-3 { padding: 40px 0px 0px 70px; } .section-dimension-64.cpad-3 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 70px; height: auto !important; width: auto !important; } .section-dimension-64.cpad-10 { padding: 0px 50px 0px 70px; } .section-dimension-64.cpad-10 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 70px; height: auto !important; width: auto !important; } .section-dimension-64.cpad-11 { padding: 40px 50px 0px 70px; } .section-dimension-64.cpad-11 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 70px; height: auto !important; width: auto !important; } .section-dimension-64.cpad-6 { padding: 0px 0px 40px 70px; } .section-dimension-64.cpad-6 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 70px; height: auto !important; width: auto !important; } .section-dimension-64.cpad-7 { padding: 40px 0px 40px 70px; } .section-dimension-64.cpad-7 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 70px; height: auto !important; width: auto !important; } .section-dimension-64.cpad-14 { padding: 0px 50px 40px 70px; } .section-dimension-64.cpad-14 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 70px; height: auto !important; width: auto !important; } .section-dimension-64.cpad-15 { padding: 40px 50px 40px 70px; } .section-dimension-64.cpad-15 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 70px; height: auto !important; width: auto !important; } .section-dimension-64.cpad-0 { padding: 0px 0px 0px 0px; } .section-dimension-64.cpad-0 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } } @media all { .section-dimension-68 .card-header { height: 40px; } .section-dimension-68 .card-footer { height: 40px; } .section-dimension-68 .card-left { width: 70px; } .section-dimension-68 .card-right { width: 50px; } .section-dimension-68 { min-height: 100px; } div.section-dimension-68.header-on-left .card-left { top: 40px; } div.section-dimension-68.header-on-left .card-header { left: 0px; } div.section-dimension-68.left-on-header .card-left { top: 0px; } div.section-dimension-68.left-on-header .card-header { left: 70px; } div.section-dimension-68.header-on-right .card-right { top: 40px; } div.section-dimension-68.header-on-right .card-header { right: 0px; } div.section-dimension-68.right-on-header .card-right { top: 0px; } div.section-dimension-68.right-on-header .card-header { right: 50px; } div.section-dimension-68.footer-on-left .card-left { bottom: 40px; } div.section-dimension-68.footer-on-left .card-footer { left: 0px; } div.section-dimension-68.left-on-footer .card-left { bottom: 0px; } div.section-dimension-68.left-on-footer .card-footer { left: 70px; } div.section-dimension-68.footer-on-right .card-right { bottom: 40px; } div.section-dimension-68.footer-on-right .card-footer { right: 0px; } div.section-dimension-68.right-on-footer .card-right { bottom: 0px; } div.section-dimension-68.right-on-footer .card-footer { right: 50px; } .section-dimension-68.cpad-1 { padding: 40px 0px 0px 0px; } .section-dimension-68.cpad-1 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-68.cpad-8 { padding: 0px 50px 0px 0px; } .section-dimension-68.cpad-8 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-68.cpad-9 { padding: 40px 50px 0px 0px; } .section-dimension-68.cpad-9 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-68.cpad-4 { padding: 0px 0px 40px 0px; } .section-dimension-68.cpad-4 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-68.cpad-5 { padding: 40px 0px 40px 0px; } .section-dimension-68.cpad-5 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-68.cpad-12 { padding: 0px 50px 40px 0px; } .section-dimension-68.cpad-12 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-68.cpad-13 { padding: 40px 50px 40px 0px; } .section-dimension-68.cpad-13 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-68.cpad-2 { padding: 0px 0px 0px 70px; } .section-dimension-68.cpad-2 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 70px; height: auto !important; width: auto !important; } .section-dimension-68.cpad-3 { padding: 40px 0px 0px 70px; } .section-dimension-68.cpad-3 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 70px; height: auto !important; width: auto !important; } .section-dimension-68.cpad-10 { padding: 0px 50px 0px 70px; } .section-dimension-68.cpad-10 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 70px; height: auto !important; width: auto !important; } .section-dimension-68.cpad-11 { padding: 40px 50px 0px 70px; } .section-dimension-68.cpad-11 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 70px; height: auto !important; width: auto !important; } .section-dimension-68.cpad-6 { padding: 0px 0px 40px 70px; } .section-dimension-68.cpad-6 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 70px; height: auto !important; width: auto !important; } .section-dimension-68.cpad-7 { padding: 40px 0px 40px 70px; } .section-dimension-68.cpad-7 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 70px; height: auto !important; width: auto !important; } .section-dimension-68.cpad-14 { padding: 0px 50px 40px 70px; } .section-dimension-68.cpad-14 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 70px; height: auto !important; width: auto !important; } .section-dimension-68.cpad-15 { padding: 40px 50px 40px 70px; } .section-dimension-68.cpad-15 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 70px; height: auto !important; width: auto !important; } .section-dimension-68.cpad-0 { padding: 0px 0px 0px 0px; } .section-dimension-68.cpad-0 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } } @media all { .card_dimensions .card-header { height: 40px; } .card_dimensions .card-footer { height: 40px; } .card_dimensions .card-left { width: 70px; } .card_dimensions .card-right { width: 50px; } .card_dimensions { min-height: 100px; } div.card_dimensions.header-on-left .card-left { top: 40px; } div.card_dimensions.header-on-left .card-header { left: 0px; } div.card_dimensions.left-on-header .card-left { top: 0px; } div.card_dimensions.left-on-header .card-header { left: 70px; } div.card_dimensions.header-on-right .card-right { top: 40px; } div.card_dimensions.header-on-right .card-header { right: 0px; } div.card_dimensions.right-on-header .card-right { top: 0px; } div.card_dimensions.right-on-header .card-header { right: 50px; } div.card_dimensions.footer-on-left .card-left { bottom: 40px; } div.card_dimensions.footer-on-left .card-footer { left: 0px; } div.card_dimensions.left-on-footer .card-left { bottom: 0px; } div.card_dimensions.left-on-footer .card-footer { left: 70px; } div.card_dimensions.footer-on-right .card-right { bottom: 40px; } div.card_dimensions.footer-on-right .card-footer { right: 0px; } div.card_dimensions.right-on-footer .card-right { bottom: 0px; } div.card_dimensions.right-on-footer .card-footer { right: 50px; } .card_dimensions.cpad-1 { padding: 40px 0px 0px 0px; } .card_dimensions.cpad-1 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .card_dimensions.cpad-8 { padding: 0px 50px 0px 0px; } .card_dimensions.cpad-8 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .card_dimensions.cpad-9 { padding: 40px 50px 0px 0px; } .card_dimensions.cpad-9 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .card_dimensions.cpad-4 { padding: 0px 0px 40px 0px; } .card_dimensions.cpad-4 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .card_dimensions.cpad-5 { padding: 40px 0px 40px 0px; } .card_dimensions.cpad-5 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .card_dimensions.cpad-12 { padding: 0px 50px 40px 0px; } .card_dimensions.cpad-12 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .card_dimensions.cpad-13 { padding: 40px 50px 40px 0px; } .card_dimensions.cpad-13 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .card_dimensions.cpad-2 { padding: 0px 0px 0px 70px; } .card_dimensions.cpad-2 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 70px; height: auto !important; width: auto !important; } .card_dimensions.cpad-3 { padding: 40px 0px 0px 70px; } .card_dimensions.cpad-3 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 70px; height: auto !important; width: auto !important; } .card_dimensions.cpad-10 { padding: 0px 50px 0px 70px; } .card_dimensions.cpad-10 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 70px; height: auto !important; width: auto !important; } .card_dimensions.cpad-11 { padding: 40px 50px 0px 70px; } .card_dimensions.cpad-11 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 70px; height: auto !important; width: auto !important; } .card_dimensions.cpad-6 { padding: 0px 0px 40px 70px; } .card_dimensions.cpad-6 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 70px; height: auto !important; width: auto !important; } .card_dimensions.cpad-7 { padding: 40px 0px 40px 70px; } .card_dimensions.cpad-7 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 70px; height: auto !important; width: auto !important; } .card_dimensions.cpad-14 { padding: 0px 50px 40px 70px; } .card_dimensions.cpad-14 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 70px; height: auto !important; width: auto !important; } .card_dimensions.cpad-15 { padding: 40px 50px 40px 70px; } .card_dimensions.cpad-15 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 70px; height: auto !important; width: auto !important; } .card_dimensions.cpad-0 { padding: 0px 0px 0px 0px; } .card_dimensions.cpad-0 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } } @media all { .style-83 { -webkit-flex: 0 0 auto !important; -moz-flex: 0 0 auto !important; -ms-flex: 0 0 auto !important; -o-flex: 0 0 auto !important; flex: 0 0 auto !important; width: 100%; } } @media all { .maps_size { height: 250px; } } .uib_row_1:not(.cright) > .col { padding-right: 20px; } .uib_row_1.cright > .col { padding-left: 20px; } @media all { .col-0_12-12 { width: auto; float: none !important; } .urow:not(.cright) > .col-0_12-12 { padding-right: 0px !important; } .urow.cright > .col-0_12-12 { padding-left: 0px !important; } } .vertical-col > .label { display: block; } @media all { .wrapping-col > .espacao, .wrapping-col > .afScrollPanel > .espacao { margin-left: 6px; margin-right: 6px; } .wrapping-col > .espacao, .wrapping-col > .afScrollPanel > .espacao { margin-left: 6px; margin-right: 6px; } .espacao { margin-top: 40%; } } @media all { .nome_local p { font-size: 20px; font-weight: bold; color: #ffffff; } } @media all { .wrapping-col > .titulo, .wrapping-col > .afScrollPanel > .titulo { margin-left: 6px; margin-right: 6px; } .wrapping-col > .titulo, .wrapping-col > .afScrollPanel > .titulo { margin-left: 6px; margin-right: 6px; } .titulo { margin-top: 12px; } } @media all { .texto4 p { font-size: 15px; text-align: center; } } .card_grid { display: flex; flex-direction: row; flex-wrap: wrap; align-content: stretch; } .card_grid > .widget { flex-grow: 1; } @media all { .flex-basis-117 > .widget { flex-basis: calc(100% / 1); } } @media all { .section-dimension-120 .card-header { height: 40px; } .section-dimension-120 .card-footer { height: 40px; } .section-dimension-120 .card-left { width: 50px; } .section-dimension-120 .card-right { width: 50px; } .section-dimension-120 { min-height: 100px; } div.section-dimension-120.header-on-left .card-left { top: 40px; } div.section-dimension-120.header-on-left .card-header { left: 0px; } div.section-dimension-120.left-on-header .card-left { top: 0px; } div.section-dimension-120.left-on-header .card-header { left: 50px; } div.section-dimension-120.header-on-right .card-right { top: 40px; } div.section-dimension-120.header-on-right .card-header { right: 0px; } div.section-dimension-120.right-on-header .card-right { top: 0px; } div.section-dimension-120.right-on-header .card-header { right: 50px; } div.section-dimension-120.footer-on-left .card-left { bottom: 40px; } div.section-dimension-120.footer-on-left .card-footer { left: 0px; } div.section-dimension-120.left-on-footer .card-left { bottom: 0px; } div.section-dimension-120.left-on-footer .card-footer { left: 50px; } div.section-dimension-120.footer-on-right .card-right { bottom: 40px; } div.section-dimension-120.footer-on-right .card-footer { right: 0px; } div.section-dimension-120.right-on-footer .card-right { bottom: 0px; } div.section-dimension-120.right-on-footer .card-footer { right: 50px; } .section-dimension-120.cpad-1 { padding: 40px 0px 0px 0px; } .section-dimension-120.cpad-1 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-120.cpad-8 { padding: 0px 50px 0px 0px; } .section-dimension-120.cpad-8 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-120.cpad-9 { padding: 40px 50px 0px 0px; } .section-dimension-120.cpad-9 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-120.cpad-4 { padding: 0px 0px 40px 0px; } .section-dimension-120.cpad-4 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-120.cpad-5 { padding: 40px 0px 40px 0px; } .section-dimension-120.cpad-5 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-120.cpad-12 { padding: 0px 50px 40px 0px; } .section-dimension-120.cpad-12 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-120.cpad-13 { padding: 40px 50px 40px 0px; } .section-dimension-120.cpad-13 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-120.cpad-2 { padding: 0px 0px 0px 50px; } .section-dimension-120.cpad-2 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-120.cpad-3 { padding: 40px 0px 0px 50px; } .section-dimension-120.cpad-3 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-120.cpad-10 { padding: 0px 50px 0px 50px; } .section-dimension-120.cpad-10 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-120.cpad-11 { padding: 40px 50px 0px 50px; } .section-dimension-120.cpad-11 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-120.cpad-6 { padding: 0px 0px 40px 50px; } .section-dimension-120.cpad-6 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-120.cpad-7 { padding: 40px 0px 40px 50px; } .section-dimension-120.cpad-7 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-120.cpad-14 { padding: 0px 50px 40px 50px; } .section-dimension-120.cpad-14 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-120.cpad-15 { padding: 40px 50px 40px 50px; } .section-dimension-120.cpad-15 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-120.cpad-0 { padding: 0px 0px 0px 0px; } .section-dimension-120.cpad-0 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } } @media all { .section-dimension-119 .card-header { height: 40px; } .section-dimension-119 .card-footer { height: 40px; } .section-dimension-119 .card-left { width: 50px; } .section-dimension-119 .card-right { width: 50px; } .section-dimension-119 { min-height: 100px; } div.section-dimension-119.header-on-left .card-left { top: 40px; } div.section-dimension-119.header-on-left .card-header { left: 0px; } div.section-dimension-119.left-on-header .card-left { top: 0px; } div.section-dimension-119.left-on-header .card-header { left: 50px; } div.section-dimension-119.header-on-right .card-right { top: 40px; } div.section-dimension-119.header-on-right .card-header { right: 0px; } div.section-dimension-119.right-on-header .card-right { top: 0px; } div.section-dimension-119.right-on-header .card-header { right: 50px; } div.section-dimension-119.footer-on-left .card-left { bottom: 40px; } div.section-dimension-119.footer-on-left .card-footer { left: 0px; } div.section-dimension-119.left-on-footer .card-left { bottom: 0px; } div.section-dimension-119.left-on-footer .card-footer { left: 50px; } div.section-dimension-119.footer-on-right .card-right { bottom: 40px; } div.section-dimension-119.footer-on-right .card-footer { right: 0px; } div.section-dimension-119.right-on-footer .card-right { bottom: 0px; } div.section-dimension-119.right-on-footer .card-footer { right: 50px; } .section-dimension-119.cpad-1 { padding: 40px 0px 0px 0px; } .section-dimension-119.cpad-1 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-119.cpad-8 { padding: 0px 50px 0px 0px; } .section-dimension-119.cpad-8 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-119.cpad-9 { padding: 40px 50px 0px 0px; } .section-dimension-119.cpad-9 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-119.cpad-4 { padding: 0px 0px 40px 0px; } .section-dimension-119.cpad-4 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-119.cpad-5 { padding: 40px 0px 40px 0px; } .section-dimension-119.cpad-5 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-119.cpad-12 { padding: 0px 50px 40px 0px; } .section-dimension-119.cpad-12 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-119.cpad-13 { padding: 40px 50px 40px 0px; } .section-dimension-119.cpad-13 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-119.cpad-2 { padding: 0px 0px 0px 50px; } .section-dimension-119.cpad-2 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-119.cpad-3 { padding: 40px 0px 0px 50px; } .section-dimension-119.cpad-3 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-119.cpad-10 { padding: 0px 50px 0px 50px; } .section-dimension-119.cpad-10 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-119.cpad-11 { padding: 40px 50px 0px 50px; } .section-dimension-119.cpad-11 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-119.cpad-6 { padding: 0px 0px 40px 50px; } .section-dimension-119.cpad-6 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-119.cpad-7 { padding: 40px 0px 40px 50px; } .section-dimension-119.cpad-7 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-119.cpad-14 { padding: 0px 50px 40px 50px; } .section-dimension-119.cpad-14 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-119.cpad-15 { padding: 40px 50px 40px 50px; } .section-dimension-119.cpad-15 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-119.cpad-0 { padding: 0px 0px 0px 0px; } .section-dimension-119.cpad-0 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } } @media all { .section-dimension-118 .card-header { height: 40px; } .section-dimension-118 .card-footer { height: 40px; } .section-dimension-118 .card-left { width: 50px; } .section-dimension-118 .card-right { width: 50px; } .section-dimension-118 { min-height: 100px; } div.section-dimension-118.header-on-left .card-left { top: 40px; } div.section-dimension-118.header-on-left .card-header { left: 0px; } div.section-dimension-118.left-on-header .card-left { top: 0px; } div.section-dimension-118.left-on-header .card-header { left: 50px; } div.section-dimension-118.header-on-right .card-right { top: 40px; } div.section-dimension-118.header-on-right .card-header { right: 0px; } div.section-dimension-118.right-on-header .card-right { top: 0px; } div.section-dimension-118.right-on-header .card-header { right: 50px; } div.section-dimension-118.footer-on-left .card-left { bottom: 40px; } div.section-dimension-118.footer-on-left .card-footer { left: 0px; } div.section-dimension-118.left-on-footer .card-left { bottom: 0px; } div.section-dimension-118.left-on-footer .card-footer { left: 50px; } div.section-dimension-118.footer-on-right .card-right { bottom: 40px; } div.section-dimension-118.footer-on-right .card-footer { right: 0px; } div.section-dimension-118.right-on-footer .card-right { bottom: 0px; } div.section-dimension-118.right-on-footer .card-footer { right: 50px; } .section-dimension-118.cpad-1 { padding: 40px 0px 0px 0px; } .section-dimension-118.cpad-1 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-118.cpad-8 { padding: 0px 50px 0px 0px; } .section-dimension-118.cpad-8 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-118.cpad-9 { padding: 40px 50px 0px 0px; } .section-dimension-118.cpad-9 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-118.cpad-4 { padding: 0px 0px 40px 0px; } .section-dimension-118.cpad-4 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-118.cpad-5 { padding: 40px 0px 40px 0px; } .section-dimension-118.cpad-5 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-118.cpad-12 { padding: 0px 50px 40px 0px; } .section-dimension-118.cpad-12 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-118.cpad-13 { padding: 40px 50px 40px 0px; } .section-dimension-118.cpad-13 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-118.cpad-2 { padding: 0px 0px 0px 50px; } .section-dimension-118.cpad-2 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-118.cpad-3 { padding: 40px 0px 0px 50px; } .section-dimension-118.cpad-3 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-118.cpad-10 { padding: 0px 50px 0px 50px; } .section-dimension-118.cpad-10 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-118.cpad-11 { padding: 40px 50px 0px 50px; } .section-dimension-118.cpad-11 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-118.cpad-6 { padding: 0px 0px 40px 50px; } .section-dimension-118.cpad-6 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-118.cpad-7 { padding: 40px 0px 40px 50px; } .section-dimension-118.cpad-7 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-118.cpad-14 { padding: 0px 50px 40px 50px; } .section-dimension-118.cpad-14 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-118.cpad-15 { padding: 40px 50px 40px 50px; } .section-dimension-118.cpad-15 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-118.cpad-0 { padding: 0px 0px 0px 0px; } .section-dimension-118.cpad-0 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } } @media all { .section-dimension-121 .card-header { height: 40px; } .section-dimension-121 .card-footer { height: 40px; } .section-dimension-121 .card-left { width: 50px; } .section-dimension-121 .card-right { width: 50px; } .section-dimension-121 { min-height: 100px; } div.section-dimension-121.header-on-left .card-left { top: 40px; } div.section-dimension-121.header-on-left .card-header { left: 0px; } div.section-dimension-121.left-on-header .card-left { top: 0px; } div.section-dimension-121.left-on-header .card-header { left: 50px; } div.section-dimension-121.header-on-right .card-right { top: 40px; } div.section-dimension-121.header-on-right .card-header { right: 0px; } div.section-dimension-121.right-on-header .card-right { top: 0px; } div.section-dimension-121.right-on-header .card-header { right: 50px; } div.section-dimension-121.footer-on-left .card-left { bottom: 40px; } div.section-dimension-121.footer-on-left .card-footer { left: 0px; } div.section-dimension-121.left-on-footer .card-left { bottom: 0px; } div.section-dimension-121.left-on-footer .card-footer { left: 50px; } div.section-dimension-121.footer-on-right .card-right { bottom: 40px; } div.section-dimension-121.footer-on-right .card-footer { right: 0px; } div.section-dimension-121.right-on-footer .card-right { bottom: 0px; } div.section-dimension-121.right-on-footer .card-footer { right: 50px; } .section-dimension-121.cpad-1 { padding: 40px 0px 0px 0px; } .section-dimension-121.cpad-1 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-121.cpad-8 { padding: 0px 50px 0px 0px; } .section-dimension-121.cpad-8 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-121.cpad-9 { padding: 40px 50px 0px 0px; } .section-dimension-121.cpad-9 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-121.cpad-4 { padding: 0px 0px 40px 0px; } .section-dimension-121.cpad-4 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-121.cpad-5 { padding: 40px 0px 40px 0px; } .section-dimension-121.cpad-5 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-121.cpad-12 { padding: 0px 50px 40px 0px; } .section-dimension-121.cpad-12 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-121.cpad-13 { padding: 40px 50px 40px 0px; } .section-dimension-121.cpad-13 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-121.cpad-2 { padding: 0px 0px 0px 50px; } .section-dimension-121.cpad-2 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-121.cpad-3 { padding: 40px 0px 0px 50px; } .section-dimension-121.cpad-3 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-121.cpad-10 { padding: 0px 50px 0px 50px; } .section-dimension-121.cpad-10 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-121.cpad-11 { padding: 40px 50px 0px 50px; } .section-dimension-121.cpad-11 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-121.cpad-6 { padding: 0px 0px 40px 50px; } .section-dimension-121.cpad-6 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-121.cpad-7 { padding: 40px 0px 40px 50px; } .section-dimension-121.cpad-7 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-121.cpad-14 { padding: 0px 50px 40px 50px; } .section-dimension-121.cpad-14 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-121.cpad-15 { padding: 40px 50px 40px 50px; } .section-dimension-121.cpad-15 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-121.cpad-0 { padding: 0px 0px 0px 0px; } .section-dimension-121.cpad-0 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } } @media all { .section-dimension-124 .card-header { height: 40px; } .section-dimension-124 .card-footer { height: 40px; } .section-dimension-124 .card-left { width: 50px; } .section-dimension-124 .card-right { width: 50px; } .section-dimension-124 { min-height: 80px; } div.section-dimension-124.header-on-left .card-left { top: 40px; } div.section-dimension-124.header-on-left .card-header { left: 0px; } div.section-dimension-124.left-on-header .card-left { top: 0px; } div.section-dimension-124.left-on-header .card-header { left: 50px; } div.section-dimension-124.header-on-right .card-right { top: 40px; } div.section-dimension-124.header-on-right .card-header { right: 0px; } div.section-dimension-124.right-on-header .card-right { top: 0px; } div.section-dimension-124.right-on-header .card-header { right: 50px; } div.section-dimension-124.footer-on-left .card-left { bottom: 40px; } div.section-dimension-124.footer-on-left .card-footer { left: 0px; } div.section-dimension-124.left-on-footer .card-left { bottom: 0px; } div.section-dimension-124.left-on-footer .card-footer { left: 50px; } div.section-dimension-124.footer-on-right .card-right { bottom: 40px; } div.section-dimension-124.footer-on-right .card-footer { right: 0px; } div.section-dimension-124.right-on-footer .card-right { bottom: 0px; } div.section-dimension-124.right-on-footer .card-footer { right: 50px; } .section-dimension-124.cpad-1 { padding: 40px 0px 0px 0px; } .section-dimension-124.cpad-1 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-124.cpad-8 { padding: 0px 50px 0px 0px; } .section-dimension-124.cpad-8 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-124.cpad-9 { padding: 40px 50px 0px 0px; } .section-dimension-124.cpad-9 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-124.cpad-4 { padding: 0px 0px 40px 0px; } .section-dimension-124.cpad-4 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-124.cpad-5 { padding: 40px 0px 40px 0px; } .section-dimension-124.cpad-5 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-124.cpad-12 { padding: 0px 50px 40px 0px; } .section-dimension-124.cpad-12 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-124.cpad-13 { padding: 40px 50px 40px 0px; } .section-dimension-124.cpad-13 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-124.cpad-2 { padding: 0px 0px 0px 50px; } .section-dimension-124.cpad-2 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-124.cpad-3 { padding: 40px 0px 0px 50px; } .section-dimension-124.cpad-3 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-124.cpad-10 { padding: 0px 50px 0px 50px; } .section-dimension-124.cpad-10 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-124.cpad-11 { padding: 40px 50px 0px 50px; } .section-dimension-124.cpad-11 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-124.cpad-6 { padding: 0px 0px 40px 50px; } .section-dimension-124.cpad-6 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-124.cpad-7 { padding: 40px 0px 40px 50px; } .section-dimension-124.cpad-7 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-124.cpad-14 { padding: 0px 50px 40px 50px; } .section-dimension-124.cpad-14 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-124.cpad-15 { padding: 40px 50px 40px 50px; } .section-dimension-124.cpad-15 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-124.cpad-0 { padding: 0px 0px 0px 0px; } .section-dimension-124.cpad-0 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } } @media all { .flex-basis-123 > .widget { flex-basis: calc(100% / 1); } } @media all { .section-dimension-125 .card-header { height: 40px; } .section-dimension-125 .card-footer { height: 40px; } .section-dimension-125 .card-left { width: 50px; } .section-dimension-125 .card-right { width: 50px; } .section-dimension-125 { min-height: 100px; } div.section-dimension-125.header-on-left .card-left { top: 40px; } div.section-dimension-125.header-on-left .card-header { left: 0px; } div.section-dimension-125.left-on-header .card-left { top: 0px; } div.section-dimension-125.left-on-header .card-header { left: 50px; } div.section-dimension-125.header-on-right .card-right { top: 40px; } div.section-dimension-125.header-on-right .card-header { right: 0px; } div.section-dimension-125.right-on-header .card-right { top: 0px; } div.section-dimension-125.right-on-header .card-header { right: 50px; } div.section-dimension-125.footer-on-left .card-left { bottom: 40px; } div.section-dimension-125.footer-on-left .card-footer { left: 0px; } div.section-dimension-125.left-on-footer .card-left { bottom: 0px; } div.section-dimension-125.left-on-footer .card-footer { left: 50px; } div.section-dimension-125.footer-on-right .card-right { bottom: 40px; } div.section-dimension-125.footer-on-right .card-footer { right: 0px; } div.section-dimension-125.right-on-footer .card-right { bottom: 0px; } div.section-dimension-125.right-on-footer .card-footer { right: 50px; } .section-dimension-125.cpad-1 { padding: 40px 0px 0px 0px; } .section-dimension-125.cpad-1 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-125.cpad-8 { padding: 0px 50px 0px 0px; } .section-dimension-125.cpad-8 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-125.cpad-9 { padding: 40px 50px 0px 0px; } .section-dimension-125.cpad-9 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-125.cpad-4 { padding: 0px 0px 40px 0px; } .section-dimension-125.cpad-4 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-125.cpad-5 { padding: 40px 0px 40px 0px; } .section-dimension-125.cpad-5 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-125.cpad-12 { padding: 0px 50px 40px 0px; } .section-dimension-125.cpad-12 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-125.cpad-13 { padding: 40px 50px 40px 0px; } .section-dimension-125.cpad-13 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-125.cpad-2 { padding: 0px 0px 0px 50px; } .section-dimension-125.cpad-2 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-125.cpad-3 { padding: 40px 0px 0px 50px; } .section-dimension-125.cpad-3 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-125.cpad-10 { padding: 0px 50px 0px 50px; } .section-dimension-125.cpad-10 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-125.cpad-11 { padding: 40px 50px 0px 50px; } .section-dimension-125.cpad-11 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-125.cpad-6 { padding: 0px 0px 40px 50px; } .section-dimension-125.cpad-6 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-125.cpad-7 { padding: 40px 0px 40px 50px; } .section-dimension-125.cpad-7 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-125.cpad-14 { padding: 0px 50px 40px 50px; } .section-dimension-125.cpad-14 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-125.cpad-15 { padding: 40px 50px 40px 50px; } .section-dimension-125.cpad-15 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-125.cpad-0 { padding: 0px 0px 0px 0px; } .section-dimension-125.cpad-0 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } } @media all { .section-dimension-126 .card-header { height: 40px; } .section-dimension-126 .card-footer { height: 40px; } .section-dimension-126 .card-left { width: 50px; } .section-dimension-126 .card-right { width: 50px; } .section-dimension-126 { min-height: 100px; } div.section-dimension-126.header-on-left .card-left { top: 40px; } div.section-dimension-126.header-on-left .card-header { left: 0px; } div.section-dimension-126.left-on-header .card-left { top: 0px; } div.section-dimension-126.left-on-header .card-header { left: 50px; } div.section-dimension-126.header-on-right .card-right { top: 40px; } div.section-dimension-126.header-on-right .card-header { right: 0px; } div.section-dimension-126.right-on-header .card-right { top: 0px; } div.section-dimension-126.right-on-header .card-header { right: 50px; } div.section-dimension-126.footer-on-left .card-left { bottom: 40px; } div.section-dimension-126.footer-on-left .card-footer { left: 0px; } div.section-dimension-126.left-on-footer .card-left { bottom: 0px; } div.section-dimension-126.left-on-footer .card-footer { left: 50px; } div.section-dimension-126.footer-on-right .card-right { bottom: 40px; } div.section-dimension-126.footer-on-right .card-footer { right: 0px; } div.section-dimension-126.right-on-footer .card-right { bottom: 0px; } div.section-dimension-126.right-on-footer .card-footer { right: 50px; } .section-dimension-126.cpad-1 { padding: 40px 0px 0px 0px; } .section-dimension-126.cpad-1 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-126.cpad-8 { padding: 0px 50px 0px 0px; } .section-dimension-126.cpad-8 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-126.cpad-9 { padding: 40px 50px 0px 0px; } .section-dimension-126.cpad-9 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-126.cpad-4 { padding: 0px 0px 40px 0px; } .section-dimension-126.cpad-4 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-126.cpad-5 { padding: 40px 0px 40px 0px; } .section-dimension-126.cpad-5 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-126.cpad-12 { padding: 0px 50px 40px 0px; } .section-dimension-126.cpad-12 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-126.cpad-13 { padding: 40px 50px 40px 0px; } .section-dimension-126.cpad-13 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-126.cpad-2 { padding: 0px 0px 0px 50px; } .section-dimension-126.cpad-2 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-126.cpad-3 { padding: 40px 0px 0px 50px; } .section-dimension-126.cpad-3 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-126.cpad-10 { padding: 0px 50px 0px 50px; } .section-dimension-126.cpad-10 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-126.cpad-11 { padding: 40px 50px 0px 50px; } .section-dimension-126.cpad-11 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-126.cpad-6 { padding: 0px 0px 40px 50px; } .section-dimension-126.cpad-6 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-126.cpad-7 { padding: 40px 0px 40px 50px; } .section-dimension-126.cpad-7 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-126.cpad-14 { padding: 0px 50px 40px 50px; } .section-dimension-126.cpad-14 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-126.cpad-15 { padding: 40px 50px 40px 50px; } .section-dimension-126.cpad-15 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-126.cpad-0 { padding: 0px 0px 0px 0px; } .section-dimension-126.cpad-0 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } } @media all { .section-dimension-127 .card-header { height: 40px; } .section-dimension-127 .card-footer { height: 40px; } .section-dimension-127 .card-left { width: 50px; } .section-dimension-127 .card-right { width: 50px; } .section-dimension-127 { min-height: 100px; } div.section-dimension-127.header-on-left .card-left { top: 40px; } div.section-dimension-127.header-on-left .card-header { left: 0px; } div.section-dimension-127.left-on-header .card-left { top: 0px; } div.section-dimension-127.left-on-header .card-header { left: 50px; } div.section-dimension-127.header-on-right .card-right { top: 40px; } div.section-dimension-127.header-on-right .card-header { right: 0px; } div.section-dimension-127.right-on-header .card-right { top: 0px; } div.section-dimension-127.right-on-header .card-header { right: 50px; } div.section-dimension-127.footer-on-left .card-left { bottom: 40px; } div.section-dimension-127.footer-on-left .card-footer { left: 0px; } div.section-dimension-127.left-on-footer .card-left { bottom: 0px; } div.section-dimension-127.left-on-footer .card-footer { left: 50px; } div.section-dimension-127.footer-on-right .card-right { bottom: 40px; } div.section-dimension-127.footer-on-right .card-footer { right: 0px; } div.section-dimension-127.right-on-footer .card-right { bottom: 0px; } div.section-dimension-127.right-on-footer .card-footer { right: 50px; } .section-dimension-127.cpad-1 { padding: 40px 0px 0px 0px; } .section-dimension-127.cpad-1 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-127.cpad-8 { padding: 0px 50px 0px 0px; } .section-dimension-127.cpad-8 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-127.cpad-9 { padding: 40px 50px 0px 0px; } .section-dimension-127.cpad-9 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-127.cpad-4 { padding: 0px 0px 40px 0px; } .section-dimension-127.cpad-4 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-127.cpad-5 { padding: 40px 0px 40px 0px; } .section-dimension-127.cpad-5 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-127.cpad-12 { padding: 0px 50px 40px 0px; } .section-dimension-127.cpad-12 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-127.cpad-13 { padding: 40px 50px 40px 0px; } .section-dimension-127.cpad-13 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 0px; height: auto !important; width: auto !important; } .section-dimension-127.cpad-2 { padding: 0px 0px 0px 50px; } .section-dimension-127.cpad-2 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-127.cpad-3 { padding: 40px 0px 0px 50px; } .section-dimension-127.cpad-3 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-127.cpad-10 { padding: 0px 50px 0px 50px; } .section-dimension-127.cpad-10 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-127.cpad-11 { padding: 40px 50px 0px 50px; } .section-dimension-127.cpad-11 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 0px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-127.cpad-6 { padding: 0px 0px 40px 50px; } .section-dimension-127.cpad-6 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-127.cpad-7 { padding: 40px 0px 40px 50px; } .section-dimension-127.cpad-7 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 0px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-127.cpad-14 { padding: 0px 50px 40px 50px; } .section-dimension-127.cpad-14 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 50px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-127.cpad-15 { padding: 40px 50px 40px 50px; } .section-dimension-127.cpad-15 > .widget-divider:only-of-type { position: absolute; top: 40px; right: 50px; bottom: 40px; left: 50px; height: auto !important; width: auto !important; } .section-dimension-127.cpad-0 { padding: 0px 0px 0px 0px; } .section-dimension-127.cpad-0 > .widget-divider:only-of-type { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; height: auto !important; width: auto !important; } } @media all { .sombra { box-shadow: 1px 1px 1px 1px #000000; } } @media all { .tamanholabel { width: 500px; } } .checkbox-padding-left { padding-left: 20px; } @media all and (min-width: 222px) { .row-height-4 > .col > .content-area { min-height: 100px; } } @media all { .texto_interesse p { font-size: 14px; text-align: center; } } @media all { }
0.410874
0.072505
.thumb-xs { height: 16px; width: 16px; } .fav > li > a { color: #000000 !important; line-height: 20px; padding: 0px 15px; position: relative; } .p-l-0{ padding-left: 0px; } .table > tbody > tr > td, .table > tbody > tr > th, .table > tfoot > tr > td, .table > tfoot > tr > th, .table > thead > tr > td, .table > thead > tr > th { padding: 8px 8px; white-space: nowrap; } .table > tbody > tr > td.wrap-text { padding: 8px 8px; white-space: normal; } .table-striped > tbody > tr:nth-child(even) > td, .table-striped > tbody > tr:nth-child(even) > th { background-color: #FFFFFF; } .portlet .portlet-heading { padding: 8px 20px; background-color: #dae5e4 !important; } .portlet .portlet-body { padding-top: 8px; padding-bottom: 8px; } .portlet { margin-bottom: 30px; box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1); } .console { min-height: 100%; background-color: black; padding: 10px; color: white; font-family: monospace; word-wrap: break-word; } .font-15{ font-size: 15px; } .font-20{ font-size: 20px; } .font-30{ font-size: 30px; } tags-input .tags { border-top: 0 !important; box-shadow: none !important; border-left: 0 !important; border-right: 0 !important; border-radius: 0 !important; } tags-input .tags .tag-item { background: #3f51b5 !important; } tags-input .tags .tag-item .remove-button { color: #ffffff !important; } .cg-notify-message { min-width: 400px; word-break: break-word; } .ng-table th { white-space: nowrap; } tr.ng-table-sort-header th { text-align: left!important; } .text-ellipsis-50 { overflow: hidden; text-overflow: ellipsis; white-space: nowrap !important; max-width: 50px!important; } .text-ellipsis-200 { overflow: hidden; text-overflow: ellipsis; white-space: nowrap !important; max-width: 200px!important; } .text-ellipsis-max { overflow: hidden; text-overflow: ellipsis; white-space: nowrap !important; max-width: 100%!important; } #sidebar-menu ul li .menu-arrow:before { content: "\f1b6"; } #sidebar-menu ul li a.subdrop .menu-arrow { -ms-transform: rotate(90deg); -webkit-transform: rotate(-90deg); -o-transform: rotate(-90deg); transform: rotate(90deg); } #sidebar-menu ul > li > ul > li > a.active { background-color: #eeeeee; } #sidebar-menu ul > li > ul > li > a.subdrop { background-color: #fff !important; } #sidebar-menu > ul > li > a.subdrop { background-color: #fff; } #sidebar-menu ul > li > ul > li > a.subdrop:only-child { background-color: #eeeeee !important; } #sidebar-menu > ul > li > a.subdrop:only-child { background-color: #eeeeee !important; } .enlarged #sidebar-menu > ul > li > a.active { background-color: #eeeeee; } .enlarged #sidebar-menu ul > li > ul > li > a.subdrop { background-color: #eeeeee !important; } .enlarged #sidebar-menu ul > li > ul > li > a.active { background-color: #eeeeee !important; } /* Shippable theme colors */ /* Shippable theme */ .navbar-default{ background-color: #008583; } .topbar .topbar-left{ background-color: #008583; } .button-menu-mobile{ background-color: #064052; } .text-primary{ color: #064052; } .label-primary { background-color: #064052; } .btn-primary { background-color: #064052 !important; border: 1px solid #064052 !important; } .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .btn-primary.focus, .btn-primary:active, .btn-primary:focus, .btn-primary:hover, .open > .dropdown-toggle.btn-primary { background-color: #008583 !important; border: 1px solid #008583 !important; } .panel-primary{ border-color: #064052; } .panel-border.panel-primary .panel-heading{ border-color: #064052 !important; color: #064052 !important; } .text-danger{ color: #DA5A5B; } .label-danger { background-color: #DA5A5B; } .btn-danger { background-color: #DA5A5B !important; border: 1px solid #DA5A5B !important; } .btn-danger:active, .btn-danger:focus, .btn-danger:hover, .btn-danger.active, .btn-danger.focus, .btn-danger:active, .btn-danger:focus, .btn-danger:hover, .open > .dropdown-toggle.btn-danger { background-color: #eb575d !important; border: 1px solid #eb575d !important; } .panel-danger{ border-color: #DA5A5B; } .panel-border.panel-danger .panel-heading{ border-color: #DA5A5B !important; color: #DA5A5B !important; } /* Shippable Status codes*/ .text-unstable { color: #cea61b; } .label-unstable { background-color: #cea61b; } .text-queued { color: #333333; } .label-queued { background-color: #333333; } .text-processing { color: #5183a0; } .label-processing { background-color: #5183a0; } .text-failure { color: #dc5f59; } .label-failure { background-color: #dc5f59; } .text-error { color: #dc5f59; } .label-error { background-color: #dc5f59; } .text-skipped { color: #f8a97d; } .label-skipped { background-color: #f8a97d; } .text-cancelled { color: #6bafbd; } .label-cancelled { background-color: #6bafbd; } .text-waiting { color: #58595b; } .label-waiting { background-color: #58595b; } .label-debug { background-color: #58595b; } .text-green { color: #8add6d; } .label-green { background-color: #8add6d; } .text-timeout { color: #a87073; } .label-timeout { background-color: #a87073; } .btn-timeout { background-color: #a87073 !important; border: 1px solid #a87073 !important; } .btn-timeout:active, .btn-timeout:focus, .btn-timeout:hover, .btn-timeout.active, .btn-timeout.focus, .btn-timeout:active, .btn-timeout:focus, .btn-timeout:hover, .open > .dropdown-toggle.btn-timeout { background-color: #a87073 !important; border: 1px solid #a87073 !important; } .text-initialized { color: #f3ce85; } .label-initialized { background-color: #f3ce85; } .btn-initialized { background-color: #f3ce85 !important; border: 1px solid #f3ce85 !important; } .btn-initialized:active, .btn-initialized:focus, .btn-initialized:hover, .btn-initialized.active, .btn-initialized.focus, .btn-initialized:active, .btn-initialized:focus, .btn-initialized:hover, .open > .dropdown-toggle.btn-initialized { background-color: #f3ce85 !important; border: 1px solid #f3ce85 !important; } .text-orphan{ color: #CCDDDD; } .label-orphan { background-color: #CCDDDD; } .btn-orphan { background-color: #CCDDDD !important; border: 1px solid #CCDDDD !important; } .btn-orphan:active, .btn-orphan:focus, .btn-orphan:hover, .btn-orphan.active, .btn-orphan.focus, .btn-orphan:active, .btn-orphan:focus, .btn-orphan:hover, .open > .dropdown-toggle.btn-orphan { background-color: #CCDDDD !important; border: 1px solid #CCDDDD !important; } .text-coupled{ color: #CCEECC; } .label-coupled { background-color: #CCEECC; } .btn-coupled { background-color: #CCEECC !important; border: 1px solid #CCEECC !important; } .btn-coupled:active, .btn-coupled:focus, .btn-coupled:hover, .btn-coupled.active, .btn-coupled.focus, .btn-coupled:active, .btn-coupled:focus, .btn-coupled:hover, .open > .dropdown-toggle.btn-coupled { background-color: #CCEECC !important; border: 1px solid #CCEECC !important; } .text-soft-deleted{ color: #e36f53; } .label-soft-deleted { background-color: #E36F53; } .btn-soft-deleted { background-color: #E36F53 !important; border: 1px solid #E36F53 !important; } .text-inconsistent{ color: #D1B1B1; } .label-inconsistent{ background-color: #D1B1B1; } .btn-inconsistent { background-color: #D1B1B1 !important; border: 1px solid #D1B1B1 !important; } .btn-soft-deleted:active, .btn-soft-deleted:focus, .btn-soft-deleted:hover, .btn-soft-deleted.active, .btn-soft-deleted.focus, .btn-soft-deleted:active, .btn-soft-deleted:focus, .btn-soft-deleted:hover, .open > .dropdown-toggle.btn-soft-deleted { background-color: #E36F53 !important; border: 1px solid #E36F53 !important; } .text-stopped{ color: #dc5f59; } .label-stopped { background-color: #dc5f59; } .btn-stopped { background-color: #dc5f59 !important; border: 1px solid #dc5f59 !important; } .btn-stopped:active, .btn-stopped:focus, .btn-stopped:hover, .btn-stopped.active, .btn-stopped.focus, .btn-stopped:active, .btn-stopped:focus, .btn-stopped:hover, .open > .dropdown-toggle.btn-stopped { background-color: #dc5f59 !important; border: 1px solid #dc5f59 !important; } .waves-effect.waves-shippable .waves-ripple { background-color: rgba(0, 133, 131, 0.4); } .tooltip .tooltip-inner { max-width: 350px !important; } .word-break { word-break: break-all !important; } .ms-container { width: 100% !important; } .vertical-middle { vertical-align: middle; } .navbar-custom >li { display: inline-block; } /* pull-right on all except xs devices */ @media (min-width: 772px) { .pull-right-sm { float: right; } } .scrollable-list { max-height: 500px; overflow: hidden; overflow-y: scroll; } /* override jstree icon location */ .jstree-default .jstree-icon { background-image: url("/app/plugins/jstree/32px.png"); } .jstree-default .jstree-themeicon-custom { background-color: transparent; background-image: none; background-position: 0 0; } /* override cursor when jstree is disabled */ .jstree-default .jstree-disabled { cursor: default; } /* Pricing tables */ .price-box { text-align: center; border: 1px solid rgba(0, 0, 0, 0.05); } .price-box .price-header { background: #000; color: #fff; padding: 30px 15px; } .price-box .price-header h1, .price-box .price-header h4 { color: #fff; letter-spacing: 0px; line-height: 1.1; margin-top: 0px; font-weight: 500; } .price-box .price-header h1 { text-transform: uppercase; } .price-box .price-header h1 span { font-size: 14px; opacity: 0.9; display: inline-block; } .price-box .price-header h4 { opacity: 0.9; margin: 0px; } .price-box.best-plan .price-header, .price-box.best-plan .price-footer { background: #DA5A5B; } .price-features { margin: 0; padding: 15px 0; } .price-features li { line-height: 50px; border-bottom: 1px solid rgba(0, 0, 0, 0.05); padding: 0px 15px; color: #666; } .price-features li:last-child { border-bottom: 0px; } .price-footer { background: #f5f5f5; padding: 25px 15px; } .space-10 { width: 100%; height: 10px; } .space-20 { width: 100%; height: 20px; } .btn-xl { padding: 12px 25px; font-size: 13px; font-weight: 500; } .btn-dark-border { background: transparent; color: #333; border: 2px solid #333; text-transform: uppercase; } .btn-dark-border:focus { background: transparent; color: #333; border: 2px solid #333; } .btn-dark-border:hover { background: #333; color: #fff; } .ship-text-failed { color: #dc5f59 !important; stroke: #dc5f59 !important; } .info-btn { width: 20px; height: 20px; font-size: 12px; border-radius: 15px; border-width: 0px; } .info-popover { max-width: 1000px; } .text-gray { color: gray; } .modal .modal-dialog .modal-content .modal-header .close { background-color: white; } #console-more-jobs-dropdown { max-height: 70vh; overflow-y: auto; left: -70px; z-index: 990; } #console-more-jobs-dropdown a:hover { cursor: pointer; } .dashboard-min-height { min-height: 500px; } .uib-datepicker-popup .text-info { color: black; font-weight: bold; } .dropdown-menu-lg { width: 37em; } #loading-bar .bar { background: #064052; height: 3px; } #loading-bar .peg { -webkit-box-shadow: #064052 1px 0 6px 1px; -moz-box-shadow: #064052 1px 0 6px 1px; -ms-box-shadow: #064052 1px 0 6px 1px; box-shadow: #064052 1px 0 6px 1px; } /* Global style for feedback on click */ a { color: #008583; text-decoration:none; position: relative; } a:active { top: 1px; color: #c6c6c6; } <!-- ADMIRAL --> .topbar .topbar-left { background: #008583 !important; } .navbar-default { background-color: #008583 !important; } .side-menu.left { background: #ffffff; } #sidebar-menu > ul > li > a { color: #2a3142; } #sidebar-menu > ul > li > a.active { border-left: 2px solid #2a3142; color: #2a3142; background-color: #eeeeee; } #sidebar-menu > ul > li > a:hover { color: #008583; } .user-detail { border-top: 1px solid #f9f9f9; } .table {display:table; width: 60%; } .table-row { display:table-row; } .cell { display:table-cell; padding: 5px; white-space: nowrap; } .greybg { background-color: #fafafa; } #thisNode{ display: block; } #newNode{ display: none; } #existingNode{ display: none; } .ship-console { min-height: 100%; background-color: black; padding: 10px; padding-bottom: 5px; border-radius: 7px; color: white; font-family: monospace; word-wrap: break-word; } .portlet-widgets > label { font-weight: 400; color: #000; margin-bottom: 0px; } .alignTextRight { text-align: right; } .alert-danger-popup { background-color: #f2dede; border-color: rgba(239, 83, 80, 0.5) !important; color: #ef5350; } .cursor-pointer { cursor: pointer; } .alignTextCenter { text-align: center !important; } .textAlignNone { text-align: unset !important; }
static/app/assets/css/shippable.css
.thumb-xs { height: 16px; width: 16px; } .fav > li > a { color: #000000 !important; line-height: 20px; padding: 0px 15px; position: relative; } .p-l-0{ padding-left: 0px; } .table > tbody > tr > td, .table > tbody > tr > th, .table > tfoot > tr > td, .table > tfoot > tr > th, .table > thead > tr > td, .table > thead > tr > th { padding: 8px 8px; white-space: nowrap; } .table > tbody > tr > td.wrap-text { padding: 8px 8px; white-space: normal; } .table-striped > tbody > tr:nth-child(even) > td, .table-striped > tbody > tr:nth-child(even) > th { background-color: #FFFFFF; } .portlet .portlet-heading { padding: 8px 20px; background-color: #dae5e4 !important; } .portlet .portlet-body { padding-top: 8px; padding-bottom: 8px; } .portlet { margin-bottom: 30px; box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1); } .console { min-height: 100%; background-color: black; padding: 10px; color: white; font-family: monospace; word-wrap: break-word; } .font-15{ font-size: 15px; } .font-20{ font-size: 20px; } .font-30{ font-size: 30px; } tags-input .tags { border-top: 0 !important; box-shadow: none !important; border-left: 0 !important; border-right: 0 !important; border-radius: 0 !important; } tags-input .tags .tag-item { background: #3f51b5 !important; } tags-input .tags .tag-item .remove-button { color: #ffffff !important; } .cg-notify-message { min-width: 400px; word-break: break-word; } .ng-table th { white-space: nowrap; } tr.ng-table-sort-header th { text-align: left!important; } .text-ellipsis-50 { overflow: hidden; text-overflow: ellipsis; white-space: nowrap !important; max-width: 50px!important; } .text-ellipsis-200 { overflow: hidden; text-overflow: ellipsis; white-space: nowrap !important; max-width: 200px!important; } .text-ellipsis-max { overflow: hidden; text-overflow: ellipsis; white-space: nowrap !important; max-width: 100%!important; } #sidebar-menu ul li .menu-arrow:before { content: "\f1b6"; } #sidebar-menu ul li a.subdrop .menu-arrow { -ms-transform: rotate(90deg); -webkit-transform: rotate(-90deg); -o-transform: rotate(-90deg); transform: rotate(90deg); } #sidebar-menu ul > li > ul > li > a.active { background-color: #eeeeee; } #sidebar-menu ul > li > ul > li > a.subdrop { background-color: #fff !important; } #sidebar-menu > ul > li > a.subdrop { background-color: #fff; } #sidebar-menu ul > li > ul > li > a.subdrop:only-child { background-color: #eeeeee !important; } #sidebar-menu > ul > li > a.subdrop:only-child { background-color: #eeeeee !important; } .enlarged #sidebar-menu > ul > li > a.active { background-color: #eeeeee; } .enlarged #sidebar-menu ul > li > ul > li > a.subdrop { background-color: #eeeeee !important; } .enlarged #sidebar-menu ul > li > ul > li > a.active { background-color: #eeeeee !important; } /* Shippable theme colors */ /* Shippable theme */ .navbar-default{ background-color: #008583; } .topbar .topbar-left{ background-color: #008583; } .button-menu-mobile{ background-color: #064052; } .text-primary{ color: #064052; } .label-primary { background-color: #064052; } .btn-primary { background-color: #064052 !important; border: 1px solid #064052 !important; } .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .btn-primary.focus, .btn-primary:active, .btn-primary:focus, .btn-primary:hover, .open > .dropdown-toggle.btn-primary { background-color: #008583 !important; border: 1px solid #008583 !important; } .panel-primary{ border-color: #064052; } .panel-border.panel-primary .panel-heading{ border-color: #064052 !important; color: #064052 !important; } .text-danger{ color: #DA5A5B; } .label-danger { background-color: #DA5A5B; } .btn-danger { background-color: #DA5A5B !important; border: 1px solid #DA5A5B !important; } .btn-danger:active, .btn-danger:focus, .btn-danger:hover, .btn-danger.active, .btn-danger.focus, .btn-danger:active, .btn-danger:focus, .btn-danger:hover, .open > .dropdown-toggle.btn-danger { background-color: #eb575d !important; border: 1px solid #eb575d !important; } .panel-danger{ border-color: #DA5A5B; } .panel-border.panel-danger .panel-heading{ border-color: #DA5A5B !important; color: #DA5A5B !important; } /* Shippable Status codes*/ .text-unstable { color: #cea61b; } .label-unstable { background-color: #cea61b; } .text-queued { color: #333333; } .label-queued { background-color: #333333; } .text-processing { color: #5183a0; } .label-processing { background-color: #5183a0; } .text-failure { color: #dc5f59; } .label-failure { background-color: #dc5f59; } .text-error { color: #dc5f59; } .label-error { background-color: #dc5f59; } .text-skipped { color: #f8a97d; } .label-skipped { background-color: #f8a97d; } .text-cancelled { color: #6bafbd; } .label-cancelled { background-color: #6bafbd; } .text-waiting { color: #58595b; } .label-waiting { background-color: #58595b; } .label-debug { background-color: #58595b; } .text-green { color: #8add6d; } .label-green { background-color: #8add6d; } .text-timeout { color: #a87073; } .label-timeout { background-color: #a87073; } .btn-timeout { background-color: #a87073 !important; border: 1px solid #a87073 !important; } .btn-timeout:active, .btn-timeout:focus, .btn-timeout:hover, .btn-timeout.active, .btn-timeout.focus, .btn-timeout:active, .btn-timeout:focus, .btn-timeout:hover, .open > .dropdown-toggle.btn-timeout { background-color: #a87073 !important; border: 1px solid #a87073 !important; } .text-initialized { color: #f3ce85; } .label-initialized { background-color: #f3ce85; } .btn-initialized { background-color: #f3ce85 !important; border: 1px solid #f3ce85 !important; } .btn-initialized:active, .btn-initialized:focus, .btn-initialized:hover, .btn-initialized.active, .btn-initialized.focus, .btn-initialized:active, .btn-initialized:focus, .btn-initialized:hover, .open > .dropdown-toggle.btn-initialized { background-color: #f3ce85 !important; border: 1px solid #f3ce85 !important; } .text-orphan{ color: #CCDDDD; } .label-orphan { background-color: #CCDDDD; } .btn-orphan { background-color: #CCDDDD !important; border: 1px solid #CCDDDD !important; } .btn-orphan:active, .btn-orphan:focus, .btn-orphan:hover, .btn-orphan.active, .btn-orphan.focus, .btn-orphan:active, .btn-orphan:focus, .btn-orphan:hover, .open > .dropdown-toggle.btn-orphan { background-color: #CCDDDD !important; border: 1px solid #CCDDDD !important; } .text-coupled{ color: #CCEECC; } .label-coupled { background-color: #CCEECC; } .btn-coupled { background-color: #CCEECC !important; border: 1px solid #CCEECC !important; } .btn-coupled:active, .btn-coupled:focus, .btn-coupled:hover, .btn-coupled.active, .btn-coupled.focus, .btn-coupled:active, .btn-coupled:focus, .btn-coupled:hover, .open > .dropdown-toggle.btn-coupled { background-color: #CCEECC !important; border: 1px solid #CCEECC !important; } .text-soft-deleted{ color: #e36f53; } .label-soft-deleted { background-color: #E36F53; } .btn-soft-deleted { background-color: #E36F53 !important; border: 1px solid #E36F53 !important; } .text-inconsistent{ color: #D1B1B1; } .label-inconsistent{ background-color: #D1B1B1; } .btn-inconsistent { background-color: #D1B1B1 !important; border: 1px solid #D1B1B1 !important; } .btn-soft-deleted:active, .btn-soft-deleted:focus, .btn-soft-deleted:hover, .btn-soft-deleted.active, .btn-soft-deleted.focus, .btn-soft-deleted:active, .btn-soft-deleted:focus, .btn-soft-deleted:hover, .open > .dropdown-toggle.btn-soft-deleted { background-color: #E36F53 !important; border: 1px solid #E36F53 !important; } .text-stopped{ color: #dc5f59; } .label-stopped { background-color: #dc5f59; } .btn-stopped { background-color: #dc5f59 !important; border: 1px solid #dc5f59 !important; } .btn-stopped:active, .btn-stopped:focus, .btn-stopped:hover, .btn-stopped.active, .btn-stopped.focus, .btn-stopped:active, .btn-stopped:focus, .btn-stopped:hover, .open > .dropdown-toggle.btn-stopped { background-color: #dc5f59 !important; border: 1px solid #dc5f59 !important; } .waves-effect.waves-shippable .waves-ripple { background-color: rgba(0, 133, 131, 0.4); } .tooltip .tooltip-inner { max-width: 350px !important; } .word-break { word-break: break-all !important; } .ms-container { width: 100% !important; } .vertical-middle { vertical-align: middle; } .navbar-custom >li { display: inline-block; } /* pull-right on all except xs devices */ @media (min-width: 772px) { .pull-right-sm { float: right; } } .scrollable-list { max-height: 500px; overflow: hidden; overflow-y: scroll; } /* override jstree icon location */ .jstree-default .jstree-icon { background-image: url("/app/plugins/jstree/32px.png"); } .jstree-default .jstree-themeicon-custom { background-color: transparent; background-image: none; background-position: 0 0; } /* override cursor when jstree is disabled */ .jstree-default .jstree-disabled { cursor: default; } /* Pricing tables */ .price-box { text-align: center; border: 1px solid rgba(0, 0, 0, 0.05); } .price-box .price-header { background: #000; color: #fff; padding: 30px 15px; } .price-box .price-header h1, .price-box .price-header h4 { color: #fff; letter-spacing: 0px; line-height: 1.1; margin-top: 0px; font-weight: 500; } .price-box .price-header h1 { text-transform: uppercase; } .price-box .price-header h1 span { font-size: 14px; opacity: 0.9; display: inline-block; } .price-box .price-header h4 { opacity: 0.9; margin: 0px; } .price-box.best-plan .price-header, .price-box.best-plan .price-footer { background: #DA5A5B; } .price-features { margin: 0; padding: 15px 0; } .price-features li { line-height: 50px; border-bottom: 1px solid rgba(0, 0, 0, 0.05); padding: 0px 15px; color: #666; } .price-features li:last-child { border-bottom: 0px; } .price-footer { background: #f5f5f5; padding: 25px 15px; } .space-10 { width: 100%; height: 10px; } .space-20 { width: 100%; height: 20px; } .btn-xl { padding: 12px 25px; font-size: 13px; font-weight: 500; } .btn-dark-border { background: transparent; color: #333; border: 2px solid #333; text-transform: uppercase; } .btn-dark-border:focus { background: transparent; color: #333; border: 2px solid #333; } .btn-dark-border:hover { background: #333; color: #fff; } .ship-text-failed { color: #dc5f59 !important; stroke: #dc5f59 !important; } .info-btn { width: 20px; height: 20px; font-size: 12px; border-radius: 15px; border-width: 0px; } .info-popover { max-width: 1000px; } .text-gray { color: gray; } .modal .modal-dialog .modal-content .modal-header .close { background-color: white; } #console-more-jobs-dropdown { max-height: 70vh; overflow-y: auto; left: -70px; z-index: 990; } #console-more-jobs-dropdown a:hover { cursor: pointer; } .dashboard-min-height { min-height: 500px; } .uib-datepicker-popup .text-info { color: black; font-weight: bold; } .dropdown-menu-lg { width: 37em; } #loading-bar .bar { background: #064052; height: 3px; } #loading-bar .peg { -webkit-box-shadow: #064052 1px 0 6px 1px; -moz-box-shadow: #064052 1px 0 6px 1px; -ms-box-shadow: #064052 1px 0 6px 1px; box-shadow: #064052 1px 0 6px 1px; } /* Global style for feedback on click */ a { color: #008583; text-decoration:none; position: relative; } a:active { top: 1px; color: #c6c6c6; } <!-- ADMIRAL --> .topbar .topbar-left { background: #008583 !important; } .navbar-default { background-color: #008583 !important; } .side-menu.left { background: #ffffff; } #sidebar-menu > ul > li > a { color: #2a3142; } #sidebar-menu > ul > li > a.active { border-left: 2px solid #2a3142; color: #2a3142; background-color: #eeeeee; } #sidebar-menu > ul > li > a:hover { color: #008583; } .user-detail { border-top: 1px solid #f9f9f9; } .table {display:table; width: 60%; } .table-row { display:table-row; } .cell { display:table-cell; padding: 5px; white-space: nowrap; } .greybg { background-color: #fafafa; } #thisNode{ display: block; } #newNode{ display: none; } #existingNode{ display: none; } .ship-console { min-height: 100%; background-color: black; padding: 10px; padding-bottom: 5px; border-radius: 7px; color: white; font-family: monospace; word-wrap: break-word; } .portlet-widgets > label { font-weight: 400; color: #000; margin-bottom: 0px; } .alignTextRight { text-align: right; } .alert-danger-popup { background-color: #f2dede; border-color: rgba(239, 83, 80, 0.5) !important; color: #ef5350; } .cursor-pointer { cursor: pointer; } .alignTextCenter { text-align: center !important; } .textAlignNone { text-align: unset !important; }
0.407333
0.100834
.menu-content{ background: #fff; box-shadow: 0px 0.5px 20px 0px rgba(0,0,0,0.1); padding-top: 30px; } .menu-wrap,.main-wrap{ width: 1200px; margin: 0 auto; } .category{ border-bottom: 1px solid #edf1f2; padding: 15px; } .fangxiang{ float: left; width: 60px; height: 100%; font-size: 14px; font-weight: bold; padding: 8px; } .fangxiang-content{ float: left; width: calc(100% - 100px); } .fangxiang-content a{ display: inline-block; font-size: 14px; color: #14191e; padding: 8px 12px; border-radius: 3px; margin-bottom: 8px; } .fangxiang-content .menu-select{ background: #2b333b; color: #fff; } .fangxiang-content a:hover{ color: red; } .nb{ border:0; } .main-title{ height: 70px; font-size: 14px !important; } .main-wrap{ padding: 0 23px; } .hot{ float: left; } .hot,.page,.difficuty{ height: 70px; line-height: 70px; } .page{ margin-left: 25px; } .page,.difficuty{ float: right; } .main-title a,.main-title span{ color: #787d82; } .main-title a{ margin-right: 20px; } .main-title a.a-select{ color: red; } .page-wrap{ margin: 0 10px; } .page .left,.page .right{ display: inline-block; vertical-align: text-bottom; text-align: center; border-radius: 10px; font-size: 12px; line-height: 20px; height: 20px; width: 20px; background: #d9dde1; } .course-card{ width: 216px; height: 250px; float: left; margin: 0px 7.4px 30px 7.4px; } .course-img{ height: 120px; position: relative; border-radius: 8px; overflow: hidden; } .course-img img{ width: 100%; height: auto; } .course-name{ margin-top:10px; padding: 0 5px; } .course-count,.course-desc{ padding: 0 5px; margin: 8px 0px; color: #93999f; font-size: 13px; } .course-desc{ font-weight: 300; } .course-count i{ margin-right: 2px; margin-left: 12px; } .pagenation{ height: 60px; text-align: center; color: #4d555d; margin-bottom: 50px; } .pagenation span{ margin: 0px 5px; } .pagenation .num{ display: inline-block; margin: 0 6px; width: 36px; height: 36px; border-radius: 18px; text-align: center; line-height: 36px; } .page-select{ background: #4d555d; color: #fff; }
static/css/freecourse.css
.menu-content{ background: #fff; box-shadow: 0px 0.5px 20px 0px rgba(0,0,0,0.1); padding-top: 30px; } .menu-wrap,.main-wrap{ width: 1200px; margin: 0 auto; } .category{ border-bottom: 1px solid #edf1f2; padding: 15px; } .fangxiang{ float: left; width: 60px; height: 100%; font-size: 14px; font-weight: bold; padding: 8px; } .fangxiang-content{ float: left; width: calc(100% - 100px); } .fangxiang-content a{ display: inline-block; font-size: 14px; color: #14191e; padding: 8px 12px; border-radius: 3px; margin-bottom: 8px; } .fangxiang-content .menu-select{ background: #2b333b; color: #fff; } .fangxiang-content a:hover{ color: red; } .nb{ border:0; } .main-title{ height: 70px; font-size: 14px !important; } .main-wrap{ padding: 0 23px; } .hot{ float: left; } .hot,.page,.difficuty{ height: 70px; line-height: 70px; } .page{ margin-left: 25px; } .page,.difficuty{ float: right; } .main-title a,.main-title span{ color: #787d82; } .main-title a{ margin-right: 20px; } .main-title a.a-select{ color: red; } .page-wrap{ margin: 0 10px; } .page .left,.page .right{ display: inline-block; vertical-align: text-bottom; text-align: center; border-radius: 10px; font-size: 12px; line-height: 20px; height: 20px; width: 20px; background: #d9dde1; } .course-card{ width: 216px; height: 250px; float: left; margin: 0px 7.4px 30px 7.4px; } .course-img{ height: 120px; position: relative; border-radius: 8px; overflow: hidden; } .course-img img{ width: 100%; height: auto; } .course-name{ margin-top:10px; padding: 0 5px; } .course-count,.course-desc{ padding: 0 5px; margin: 8px 0px; color: #93999f; font-size: 13px; } .course-desc{ font-weight: 300; } .course-count i{ margin-right: 2px; margin-left: 12px; } .pagenation{ height: 60px; text-align: center; color: #4d555d; margin-bottom: 50px; } .pagenation span{ margin: 0px 5px; } .pagenation .num{ display: inline-block; margin: 0 6px; width: 36px; height: 36px; border-radius: 18px; text-align: center; line-height: 36px; } .page-select{ background: #4d555d; color: #fff; }
0.263315
0.072243
body { background-color: #161616; } @media (max-width: 590px) { .pr-ld img { margin-left: 20px; position: absolute; top: -120px; } .sc-img-pr { width: 100%; margin-left: 0px!important; } .tpl-cover .avatar-center { margin-left: 15%!important; } .pro-img-1 { position: absolute; top: -150px; width: 200px; left: 69px; } .pro-img-2 { margin-left: 35px!important; } .dis-n { background: white!important; } .n-ds { display: none; } } @media (max-width: 650px) { #hv-vid { width:210px; } } @media (max-width: 1240px) { .w-blocks { width:47%!important; } .fl-left { float: left; } .pd-left { padding-left: 0px!important; } .main-img { height: 450px!important; background-position: 29px 303px!important; } .bg-text-vid { display: none; } } @media (max-width: 630px) { .w-blocks { width:100%!important; } } @media (max-width: 995px) { .sc-ct { } .sc-ct-block { padding:0px; margin-left: 0px!important; width: 98%; } .pd-left { padding-left: 20px!important; } .blocks-3 { margin-left: 20px!important; width: 96%; } .pd-bot { padding-bottom: 75px!important; } .sc-full-w { width: 100%!important; margin-left: 0px!important; padding-left: 0px!important; } .m-h-song { min-height: 210px; } .ul_quick ul { min-height: 80px; } .m-height-bt { min-height: 95px; } .m-height-bt-1 { min-height: 51px; } .sc-ct-2 { margin-top: 20px!important; } .sc-ct-3 { margin-left: 80px!important; margin-top: 0px!important; } .tpl-cover { background: #A0C5E8; } .tpl-cover .avatar-center { position: initial!important; min-height: 200px!important; min-width: 250px; margin-left: 32%; } .none-bg { display: none; } .n-ds { height: 350px; } .main-img { background-position: 36px 374px!important; height: 450px!important; } .mg-search { margin-left: 0px!important; margin-bottom: 10px; } .mg-right-search { margin-right: 0px!important; } .mg-l { margin-left: 35%!important; margin-right: 10px; } .display_sp { top:21px!important; } .about-artist { margin-top:-14px; } .event { float:left; /*background-color: #161616;*/ } .load { width: 100%; left: 0px!important; } } @media (max-width: 660px) { .pd-no img { min-height: 120px; max-height: 120px; } .photo-tpl4 img { min-height: 150px!important; width: 100%; } .artist-signup { background-size: inherit; } .main-img { background-image:none!important; } } @media (max-width: 560px) { .photo-tpl4 img { min-height: 100px!important; width: 100%; } } @media (max-width: 450px) { .pd-no { /*padding:0px;*/ } .mg-l { margin-left: 29%!important; width: 25%; } .profile-admin-maxheight { width: 96%!important; } .w-blocks { width:93%!important; } .fl-left { width:90%!important; margin-left: 10px; } .mg-l-20 { margin-left: -20px!important; } .pd-no img { min-height: 100px!important; } .full-w { width: 100%; } .full-w-tt { width: 100%; margin-top: 10px; text-align: right; } .full-w-im { width: 190px; margin-bottom: 10px; } .no-pd { padding: 0px; } .tpl-cover .avatar-center { margin-left: -3%!important; } .profile-admin-maxheight { min-height: 300px!important; } .avarta_profile { bottom: 90%!important; } .photo-pro { padding: 15px 10px 10px 0px!important; margin: 0px!important; } .n-p { padding-left: 0px!important; padding-right: 0px!important; } } @media (max-width: 767px) { .sc-pro { height:300px!important; } .w-blocks { width:96%!important; } .pd-left { padding-left: 0px!important; } .blocks-3 { margin-left:0px!important; } .sc-pro-img { height:300px!important; } .sc-ct-1 { margin-left: 0px!important; } .sc-ct-2 { width: 55%; } .sc-ct-3 { margin-left: 0px!important; width: 97%!important; } .no-pad { /*padding: 0px!important;*/ } .posi_img { top:-20px!important; } .main-img { background-position: 36px 231px!important; width: 100%!important; height: 386px!important; } } @media (max-width: 767px) { .sc-ct-1 { width:98%; } .sc-ct-2 { width:100%; padding-left: 0px!important; margin-left: 0px!important; } .sc-ct-3 { width:98%; } .w-img img { min-height: 75px!important; max-height: 75px!important; width: 65px; } } @media (max-width: 450px) { .w-blocks { width:92%!important; } .blocks-3 { margin-left:10px!important; } #hv-vid { margin-left: 24%; } } @media (max-width: 345px) { .w-blocks { width:90%!important; } #hv-vid { margin-left: 18%; } } @media (max-width: 390px) { .mg-l { margin-left: 24%!important; width: 31%; } } @media (max-width: 695px) { .n-mh { min-height:0!important; width: 98%; } } .sc-ct-block h2 { font-weight: bold; font-family: sans-serif; } .btn-info- { color: #fff; background-color: #fa4c29; border-color: #fa4c29; -webkit-transition: all .4s ease!important; -moz-transition: all .4s ease!important; -ms-transition: all .4s ease!important; -o-transition: all .4s ease!important; transition: all .4s ease!important; } .btn-info-:hover { background-position: left center!important; background-color: #000!important; border-color: #fa4c29; color: #fff; } .about-fan { background-color: #303030; background: #2b2b2b no-repeat; background: linear-gradient(#303030,#262626); background: -webkit-linear-gradient(top,#303030,#262626) no-repeat; filter: progid:DXImageTransform.Microsoft.gradient(gradientType=linear,startColorstr='#FF303030',endColorstr='#FF262626'); position: relative; color: white; white-space: nowrap; font-size: 15px; width: 88%; padding: 10px; overflow: hidden; } .about-fan a { color: white; text-decoration: none; } .psi { position: absolute; top: -1px; right: 19px; color: #988E8E; } h2 { font-size: 22px; margin-top: 14px; } .bg-bl { background-color: #000; height: 70px; } .n-padding { padding: 0px; } .about-artist {/* width: 102%; padding-bottom: 5px; border-bottom: 2px solid;*/ color: #fff; /*border-left: 1px solid; border-right: 1px solid; background-color: #080808;*/ height: 77px; } .about-artist:hover { /*border-bottom:2px solid #fff;*/ } .about-artist a { /*color: #fa4c29;*/ text-transform: uppercase; text-decoration: none; font-weight: bold; font-size: large; font-family: initial; } .about-artist a:hover { color: #fff; text-decoration: none; } .cl-cc { color: #fff; font-weight: bold; font-family: initial; } .relati { position: relative; } .absolu { position: absolute; } .background-play { height: 230px; width: 100px; background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%,rgba(0,0,0,0.3) 100%); -webkit-transition: background 1s ease-out; -moz-transition: background 1s ease-out; -o-transition: background 1s ease-out; transition: background 1s ease-out; /*background-image: url('data:image/svg+xml;base64,<KEY>');*/ } .ps-img:hover { color: black; text-decoration: none; } .ps-img { width: 40px; height: 40px; border-radius: 50%; background-color: crimson; /* position: absolute; */ /* bottom: 45px; */ /* left: 20px; */ /* background-image: none; */ color: cornsilk; line-height: 42px; /* font-size: 18px; */ /* margin-right: 0; */ text-align: center; /* margin:0 auto; width: 40px; height: 40px; border-radius: 50%; background-color: crimson; position: absolute; bottom: 45px; left: 20px; background-image: none; color: cornsilk; line-height: 42px; font-size: 18px; margin-right: 0; text-align: center; padding-left: 4px; text-decoration: none;*/ } .ps-img:active { text-decoration: none; color: #000; } .ps-play:before { content: "\f04b"; speak: none; font-family: FontAwesome!important; font-style: normal; text-rendering: auto; } .ps-play:active { text-decoration: none; } .ps-pause:before { content: "\f04c"; speak: none; font-family: FontAwesome!important; font-style: normal; text-rendering: auto; } .ps-pause:active { text-decoration: none; } .ps-h { position: absolute; left: 80px; bottom: 85px; color:white; } .main-img { position: absolute; /*background-image: url("../images/img/03-dj.png");*/ background-position: 30px 224px; background-size: 38%; background-repeat: no-repeat; background-attachment: fixed; opacity: 0.9; width: 520px; height: 470px; top: 0px; left: 0px; } .ps-h:hover { text-decoration: none; color: #2c9ce9; } .ps-cate { position: absolute; left: 82px; bottom: 43px; color: white; font-size: 15px; font-weight: bolder; } .bg-text { position: absolute; bottom: 1px; height: 400px; z-index: 0; background: linear-gradient(to bottom, rgba(0,0,0,0) 70%,rgba(0,0,0,1) 100%); } .load img { margin-left: 40%; } .dp-genre { padding: 6px 22px 6px 20px; margin-top: 10px; text-decoration: none; color: white; } .dp-genre:hover { color:#000; text-decoration: none; } .nav-genre { position: absolute; top: 440px; background: #000; height: 31px; } .mg-left { border: 1px solid; border-color: #e5e6e9 #dfe0e4 #d0d1d5; border-radius: 3px; } .bor_blocks { border: 1px solid; border-color: #e5e6e9 #dfe0e4 #d0d1d5; border-radius: 3px; } .no-pad h3 { margin-top: 0px; margin-left: -15px; width: 108%; /* background-image: linear-gradient(to bottom,#E5E5E5,#FFFFFF); */ padding: 10px; /* border-top-left-radius: 5px; */ /* border-top-right-radius: 5px; */ color: black; font-size: 20px; font-weight: bold; font-family: -webkit-body; margin-bottom: 20px; } .song_url a { /*color: #fff;*/ } /** * .dropdown-menu li a * { * color:#000; * } */ /** * .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus { * text-decoration: none; * color: #ffffff; * background-color: #0088cc; * background-color: #0081c2; * background-image: -moz-linear-gradient(top, #08c, #0077b3); * background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#0077b3)); * background-image: -webkit-linear-gradient(top, #08c, #0077b3); * background-image: -o-linear-gradient(top, #08c, #0077b3); * background-image: linear-gradient(to bottom, #0088cc,#0077b3); * background-repeat: repeat-x; * filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0); * } */ .event { /*background: #000;*/ padding-bottom: 10px; } .event img { border-top: 1px solid #161616; border-left: 1px solid #161616; /*border-top-left-radius: 3px; border-top-right-radius: 3px;*/ border-right: 1px solid #161616; } .featured-artist { min-height: 400px; } .featured-artist h1 { color: #fa4c29; } .artist-all h1 { color: #fa4c29; } .player-fixed { position: fixed; left: 13%; bottom: -5px; z-index: 1; width: 72.12%; padding-left: 10px; padding-right: 10px; background: #337AB7; border: 1px solid #fff; border-top-left-radius: 3px; height: 52px; } .close-mp3 { background: #337AB7; display: none; position: absolute; right: -38px; bottom: 4px; padding: 12px 9px 7px 9px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-top: 1px solid #fff; border-right: 1px solid #fff; border-bottom: 1px solid #fff; color: #fff; height: 47px; cursor: pointer; } .close-mp3:hover { color: #000; } .bor-sr { /*border: 1px solid #fa4c29; border-radius: 3px!important;*/ } .about-video { position: absolute; bottom: 30px; left: 70px; color: white; font-size: 18px; } .play_vid { position: absolute; left: 26px; bottom: 30px; width: 35px; height: 35px; border-radius: 50%; background-image: none; background-color: crimson; color: cornsilk; line-height: 50px; font-size: 18px; margin-right: 0; text-align: center; padding-left: 5px; text-decoration: none; } .play_vid:before { content: "\f04b"; speak: none; font-family: FontAwesome!important; font-style: normal; text-rendering: auto; position: absolute; left: 12px; top: -6px; } .bg-text-vid { background: linear-gradient(to bottom, rgba(0,0,0,0) 70%,rgba(0,0,0,1) 100%); position: absolute; width: 255px; height: 184px; left: 17px; bottom: 22px; } .search-artist { margin-left: -20px; margin-top: 0px; margin-bottom: 45px; } .search-artist a { color: white; font-size: 24px; font-weight: bold; } .search-artist a:hover { text-decoration: none; color: whitesmoke; } .color-search { color: white; } .mg-left { padding: 15px; background: #fff; margin-bottom: 15px; } /*Mds Page */ .mds .col-md-3 { text-align: center; color: #f25526; font-size: 20px; } .mds .col-md-3 a { border: 4px solid #d7d7d7; display: block; } .mds>.col-md-3 { float: left; margin-bottom: 20px; } .port-slider { height: auto; // margin: 0 auto; width: 100%; background-position: center top; background-repeat: no-repeat; background-attachment: fixed; background-image: url('../../images/img/microperche.jpg'); opacity:0.9; } .adp-biz { /*height: auto; width: 100%; position: relative; background-image: url('../../images/adaptable.jpg'); background-position: 0 -210px; background-size:100%; background-repeat: no-repeat; background-attachment: fixed; opacity:0.9; */ background-image:none; padding: 0px 0px; } /*.adp-biz .text-center,.digital-music .text-center{ color:#fff !important; } */ .digital-music { /* height: auto; width: 100%; position: relative; background-image: url('../../images/digital.jpg'); background-position: 0 0px; background-size:100%; background-repeat: no-repeat; background-attachment: fixed; opacity:0.9; */ background-image: none; padding: 0px 0px; } .afordable-price{ /*height: auto; width: 100%; position: relative; background-image: url('../../images/Banjoe Player against wall.jpg'); background-position: 0 80px; background-size:100%; background-repeat: no-repeat; background-attachment: fixed; opacity:0.9; */ background-image:none; padding: 0px 0px; } .brand-platform{ height: auto; width: 100%; position: relative; /*background-image: url('../../images/brand.jpg');*/ background-position: 0 -120px; background-size:100%; background-repeat: no-repeat; background-attachment: fixed; opacity:0.9; } .btn-small { border-radius: 3px; font-size: 13px !important; font-weight: 700; padding: 2px 10px; } .page-big-title { /*font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;*/ font-family: oswaldlight !important; font-size: 28px; font-weight: bold; margin-bottom: 10px; margin-left: -11px; } #example { background: transparent; width: 100%; overflow: hidden; } #example .frame { width: 100%; height: 100%; } #example .frame .slide_element { height: 100%; } #example .frame .slide_element > div { float: left; height: 100%; overflow: hidden; } #example .frame .mSCover img { max-width: none; } #example .frame .slide_element > div.slide1, #example .frame .slide_element > div.slide6 { background: #fafafa; } #example .frame .slide_element > div.slide1 .mSCover { margin-top: 27px; margin-left: 108px; } #example .frame .slide_element > div.slide3 { background: #000; } #example .frame .slide_element > div.slide3 .mSCover { margin-top: 22px; } #example .frame .slide_element > div.slide4 .mSCover { margin-top: -304px; margin-left: -153px; } #example .frame .slide_element > div.slide6 .mSCover { margin-left: -174px; margin-top: 0; } #example .frame .slide_element div.texts { position: absolute; width: 980px; top: 0; left: 0; bottom: 0; right: 0; margin: auto; color: #000; z-index: 1001; pointer-events: none; } #example .frame .slide_element div.texts a { pointer-events: all; } #example .frame .slide_element div.texts h2 { display: block; overflow: hidden; text-indent: -9999px; } #example .frame .slide_element div.texts h2 a { display: block; overflow: hidden; text-indent: -9999px; } #example .frame .slide_element > div.slide1 div.texts h2 { margin-top: 105px; margin-left: 39px; margin-bottom: 12px; width: 400px; } #example .frame .slide_element > div.slide1 div.texts h2 a { width: 500px; height: 194px; background: url(../../assets/img/apple_images/ios_titl.png) no-repeat 0 0; background-size: 500px 194px; } #example .frame .slide_element div.texts a.watch, #example .frame .slide_element div.texts a.learn { display: block; margin: 0 0 0 42px; width: 148px; height: 0; padding-top: 35px; overflow: hidden; cursor: pointer; background: url(../../assets/img/apple_images/learn_mo.png) no-repeat 0 0; background-size: 255px 70px; zoom: 1; } #example .frame .slide_element div.texts a.watch:hover, #example .frame .slide_element div.texts a.learn:hover { background-position: 0 100% !important; } #example .frame .slide_element div.texts a.watch { width: 255px; background-image: url(../../assets/img/apple_images/watch_ke.png); } #example .frame .slide_element > div.slide1 div.texts a.learn { margin-top: 4px; } #example .frame .slide_element > div.slide2 div.texts, #example .frame .slide_element > div.slide3 div.texts, #example .frame .slide_element > div.slide4 div.texts, #example .frame .slide_element > div.slide5 div.texts, #example .frame .slide_element > div.slide6 div.texts, #example .frame .slide_element > div.slide7 div.texts { text-align: center; } #example .frame .slide_element > div.slide2 div.texts h2 { width: 581px; height: 475px; margin: 0 auto; margin-top: 95px; margin-bottom: -57px; } #example .frame .slide_element > div.slide2 div.texts h2 a { width: 581px; height: 475px; background: url(../../assets/img/apple_images/osx_titl.png) no-repeat 0 0; background-size: 581px 475px; } #example .frame .slide_element > div.slide2 div.texts a.watch, #example .frame .slide_element > div.slide2 div.texts a.learn, #example .frame .slide_element > div.slide3 div.texts a.watch, #example .frame .slide_element > div.slide3 div.texts a.learn, #example .frame .slide_element > div.slide4 div.texts a.watch, #example .frame .slide_element > div.slide4 div.texts a.learn, #example .frame .slide_element > div.slide5 div.texts a.watch, #example .frame .slide_element > div.slide5 div.texts a.learn, #example .frame .slide_element > div.slide6 div.texts a.watch, #example .frame .slide_element > div.slide6 div.texts a.learn, #example .frame .slide_element > div.slide7 div.texts a.watch { display: inline-block; margin: 0 35px 0 0; background: url(../../assets/img/apple_images/learn_mq.png) no-repeat 0 0; background-size: 255px 70px; zoom: 1; } #example .frame .slide_element > div.slide2 div.texts a.watch, #example .frame .slide_element > div.slide3 div.texts a.watch, #example .frame .slide_element > div.slide4 div.texts a.watch, #example .frame .slide_element > div.slide5 div.texts a.watch { width: 255px; margin-left: 35px; background-image: url(../../assets/img/apple_images/watch_kg.png); } #example .frame .slide_element > div.slide3 div.texts h2 { width: 700px; height: 150px; margin: 0 auto; margin-top: 368px; margin-bottom: 4px; } #example .frame .slide_element > div.slide3 div.texts h2 a { width: 700px; height: 150px; background: url(../../assets/img/apple_images/macpro_t.png) no-repeat 0 0; background-size: 700px 150px; } #example .frame .slide_element > div.slide3 div.texts a.watch, #example .frame .slide_element > div.slide3 div.texts a.learn { background: url(../../assets/img/apple_images/learn_mp.png) no-repeat 0 0; } #example .frame .slide_element > div.slide3 div.texts a.watch { background-image: url(../../assets/img/apple_images/watch_kf.png); } #example .frame .slide_element > div.slide4 div.texts h2 { width: 1000px; height: 132px; margin: 0 auto; margin-top: 409px; margin-bottom: 18px; } #example .frame .slide_element > div.slide4 div.texts h2 a { width: 1000px; height: 132px; background: url(../../assets/img/apple_images/macbooka.png) no-repeat 0 0; background-size: 1000px 132px; } #example .frame .slide_element > div.slide4 div.texts a.watch, #example .frame .slide_element > div.slide4 div.texts a.learn { background: url(../../assets/img/apple_images/learn_mo.png) no-repeat 0 0; } #example .frame .slide_element > div.slide4 div.texts a.watch { background-image: url(../../assets/img/apple_images/watch_ke.png); } #example .frame .slide_element > div.slide5 div.texts h2 { width: 900px; height: 75px; margin: 0 auto; margin-top: 290px; margin-bottom: 18px; } #example .frame .slide_element > div.slide5 div.texts h2 a { width: 900px; height: 75px; background: url(../../assets/img/apple_images/designed.png) no-repeat 0 0; background-size: 900px 75px; } #example .frame .slide_element > div.slide5 div.texts a.watch, #example .frame .slide_element > div.slide5 div.texts a.learn { background: url(../../assets/img/apple_images/learn_mp.png) no-repeat 0 0; } #example .frame .slide_element > div.slide5 div.texts a.watch { width: 224px; background-image: url(../../assets/img/apple_images/watch_ad.png); } #example .frame .slide_element > div.slide6 div.texts h2 { width: 480px; height: 135px; margin-left: 460px; margin-top: 260px; margin-bottom: 18px; } #example .frame .slide_element > div.slide6 div.texts h2 a { width: 480px; height: 135px; background: url(../../assets/img/apple_images/itunesra.png) no-repeat 0 0; background-size: 480px 135px; } #example .frame .slide_element > div.slide6 div.texts a.watch, #example .frame .slide_element > div.slide6 div.texts a.learn { background: url(../../assets/img/apple_images/learn_mo.png) no-repeat 0 0; } #example .frame .slide_element > div.slide6 div.texts a.learn { margin-right: 0; } #example .frame .slide_element > div.slide6 div.texts a.watch { background-image: url(../../assets/img/apple_images/watch_ke.png); margin-left: 420px; } #example .frame .slide_element > div.slide7 div.texts h2 { width: 600px; height: 300px; margin: 0 auto; margin-top: 200px; margin-bottom: -115px; } #example .frame .slide_element > div.slide7 div.texts h2 a { width: 600px; height: 300px; background: url(../../assets/img/apple_images/wwdc_tit.png) no-repeat 0 0; background-size: 600px 300px; } #example .frame .slide_element > div.slide7 div.texts a.watch { background: url(../../assets/img/apple_images/watch_kf.png) no-repeat 0 0; margin: 0 auto; } /*Login Page */ .login-body { background: url('../../images/img/3.jpg') fixed; background-size: cover; padding: 0; margin: 0; } /*Dashboard Page */ .padding-50 { padding: 50px 0 0 0; } .dashboard-container{ font-family: 'Raleway', sans-serif; } .modal-title-red { color: #f41e2f; } .btn-file { position: relative; overflow: hidden; } .btn-file input[type=file] { position: absolute; top: 0; right: 0; min-width: 100%; min-height: 100%; font-size: 100px; text-align: right; filter: alpha(opacity=0); opacity: 0; outline: none; background: white; cursor: inherit; display: block; } #upload-wrapper { margin-top: 50px; } #upload-wrapper h3 { padding: 0px 0px 10px 0px; margin: 0px 0px 20px 0px; margin-top: -30px; border-bottom: 1px dotted #DDD; } #upload-wrapper input[type=file] { border: 1px solid #DDD; padding: 6px; background: #FFF; border-radius: 5px; } #output{ padding: 5px; font-size: 18px; } #output img { border: 1px solid #DDD; padding: 5px; } /* progress bar style */ #progressbox { border: 1px solid #92C8DA; padding: 1px; position:relative; width:400px; border-radius: 3px; margin: 10px; display:none; text-align:left; } #progressbar { height:20px; border-radius: 3px; background-color: #77E0FA; width:1%; } #statustxt { top:3px; left:50%; position:absolute; display:inline-block; color: #000000; } /* Our Plan Page */ .plan-body { background: url('../../images/img/2.jpg') fixed; background-size: cover; padding: 0; margin: 0; } .h2-our-plan { color:#fff; font-weight:700 } .plan-container { font-family: 'Raleway', sans-serif; } .padding-80 { padding : 80px 0 0 0; } /*============================================================ GENERAL STYLES ============================================================*/ .db-wrapper { /*font-family: 'Raleway', sans-serif;*/ font-family: oswaldlight !important; } /*============================================================ BACKGROUND COLORS ============================================================*/ .db-bk-color-one { background-color: #f55039; } .db-bk-color-two { background-color: #46A6F7; } .db-bk-color-three { background-color: #47887E; } .db-bk-color-four { background-color: #469E6F; } /*============================ PRICING TABLES EIGHT STYLES ==============================*/ .db-pricing-eight { margin-bottom: 30px; margin-top: 30px; text-align: center; color: #fff; border-radius: 5px; -webkit-border-radius: 5px; -moz-border-radius: 5px; transition: margin-top 0.5s ease 0s; -moz-transition: margin-top 0.5s ease 0s; -ms-transition: margin-top 0.5s ease 0s; min-height: 300px; } .db-pricing-eight:hover { margin-top: 5px; } .db-pricing-eight ul { list-style: none; margin: 0; text-align: center; padding-left: 0px; } .db-pricing-eight ul li { padding-top: 20px; padding-bottom: 20px; cursor: pointer; text-transform: uppercase; border-bottom: 2px solid rgba(0, 0, 0, 0.12); } .db-pricing-eight ul li.price { padding: 40px 20px 5px 20px; font-size: 20px; font-weight: 900; min-height:116px; } .db-pricing-eight ul li.price i { border-radius: 50%; -webkit-border-radius: 50%; -moz-border-radius: 50%; height: 80px; margin: -85px auto 20px; width: 80px; font-size: 18px; padding: 25px; display: block; color: #fff; border: 4px solid #FFF; } .db-pricing-eight .pricing-footer { padding: 20px; } .db-pricing-eight .pricing-footer a i { margin: 5px; } .box-mds { border: 1px solid #dfdfdf; background-color: #FFF; -webkit-box-shadow: 0 4px 5px 0 rgba(0,0,0,.13); -moz-box-shadow: 0 4px 5px 0 rgba(0,0,0,.13); box-shadow: 0 4px 5px 0 rgba(0,0,0,.13); color:#000; } .icon-custom { background: grey; width: 50px; height: 50px; border-radius: 50%; text-align: center; line-height: 50px; vertical-align: middle; //padding: 30px; font-size: 18px; color:#fff; } .list-custom li { margin-bottom:5px; } video#bgvid { position: fixed; top: 50%; left: 50%; min-width: 100%; min-height: 100%; width: auto; height: auto; z-index: -100; -webkit-transform: translateX(-50%) translateY(-50%); transform: translateX(-50%) translateY(-50%); background: url(polina.jpg) no-repeat; background-size: cover; } .top-margin { margin-top: 60px; } .welcome { color: #fff; font-family: fantasy; text-align: left; padding-left: 120px; } .top- { margin-top: -13px; } .text-top { font-size: 26px; margin-top: 20px; margin-left: 30px; } .red_text { color: #E3F1F8; } .red_text a { text-decoration: none; color: #41A6D9; } .artist-industry h1 { font-size: 25px; font-weight: bold; margin-top: 40px; margin-bottom: -10px!important; } .artist-crowd h1 { font-size: 28px; font-weight: bold; margin-bottom: -15px; } .artist-crowd h3 { margin-bottom: 40px; } .artist-crowd img { margin-left: 100px; margin-bottom: 30px; } .artist-musician h1 { font-size: 28px; font-weight: bold; margin-bottom: -15px; } .artist-musician h3 { margin-bottom: 25px; } .artist-musician img { margin-left: 200px; margin-bottom: 30px; } @media (max-width: 767px) { .adp-biz,.artist-home,.brand-platform,.afordable-price,.digital-music { background-size:auto; background-position:0px; } } @media (max-width: 480px) { #example .mightyslider_modern_skin { margin-right: 0; } #example .tabs { display: none; } }
assets/css/style1.css
body { background-color: #161616; } @media (max-width: 590px) { .pr-ld img { margin-left: 20px; position: absolute; top: -120px; } .sc-img-pr { width: 100%; margin-left: 0px!important; } .tpl-cover .avatar-center { margin-left: 15%!important; } .pro-img-1 { position: absolute; top: -150px; width: 200px; left: 69px; } .pro-img-2 { margin-left: 35px!important; } .dis-n { background: white!important; } .n-ds { display: none; } } @media (max-width: 650px) { #hv-vid { width:210px; } } @media (max-width: 1240px) { .w-blocks { width:47%!important; } .fl-left { float: left; } .pd-left { padding-left: 0px!important; } .main-img { height: 450px!important; background-position: 29px 303px!important; } .bg-text-vid { display: none; } } @media (max-width: 630px) { .w-blocks { width:100%!important; } } @media (max-width: 995px) { .sc-ct { } .sc-ct-block { padding:0px; margin-left: 0px!important; width: 98%; } .pd-left { padding-left: 20px!important; } .blocks-3 { margin-left: 20px!important; width: 96%; } .pd-bot { padding-bottom: 75px!important; } .sc-full-w { width: 100%!important; margin-left: 0px!important; padding-left: 0px!important; } .m-h-song { min-height: 210px; } .ul_quick ul { min-height: 80px; } .m-height-bt { min-height: 95px; } .m-height-bt-1 { min-height: 51px; } .sc-ct-2 { margin-top: 20px!important; } .sc-ct-3 { margin-left: 80px!important; margin-top: 0px!important; } .tpl-cover { background: #A0C5E8; } .tpl-cover .avatar-center { position: initial!important; min-height: 200px!important; min-width: 250px; margin-left: 32%; } .none-bg { display: none; } .n-ds { height: 350px; } .main-img { background-position: 36px 374px!important; height: 450px!important; } .mg-search { margin-left: 0px!important; margin-bottom: 10px; } .mg-right-search { margin-right: 0px!important; } .mg-l { margin-left: 35%!important; margin-right: 10px; } .display_sp { top:21px!important; } .about-artist { margin-top:-14px; } .event { float:left; /*background-color: #161616;*/ } .load { width: 100%; left: 0px!important; } } @media (max-width: 660px) { .pd-no img { min-height: 120px; max-height: 120px; } .photo-tpl4 img { min-height: 150px!important; width: 100%; } .artist-signup { background-size: inherit; } .main-img { background-image:none!important; } } @media (max-width: 560px) { .photo-tpl4 img { min-height: 100px!important; width: 100%; } } @media (max-width: 450px) { .pd-no { /*padding:0px;*/ } .mg-l { margin-left: 29%!important; width: 25%; } .profile-admin-maxheight { width: 96%!important; } .w-blocks { width:93%!important; } .fl-left { width:90%!important; margin-left: 10px; } .mg-l-20 { margin-left: -20px!important; } .pd-no img { min-height: 100px!important; } .full-w { width: 100%; } .full-w-tt { width: 100%; margin-top: 10px; text-align: right; } .full-w-im { width: 190px; margin-bottom: 10px; } .no-pd { padding: 0px; } .tpl-cover .avatar-center { margin-left: -3%!important; } .profile-admin-maxheight { min-height: 300px!important; } .avarta_profile { bottom: 90%!important; } .photo-pro { padding: 15px 10px 10px 0px!important; margin: 0px!important; } .n-p { padding-left: 0px!important; padding-right: 0px!important; } } @media (max-width: 767px) { .sc-pro { height:300px!important; } .w-blocks { width:96%!important; } .pd-left { padding-left: 0px!important; } .blocks-3 { margin-left:0px!important; } .sc-pro-img { height:300px!important; } .sc-ct-1 { margin-left: 0px!important; } .sc-ct-2 { width: 55%; } .sc-ct-3 { margin-left: 0px!important; width: 97%!important; } .no-pad { /*padding: 0px!important;*/ } .posi_img { top:-20px!important; } .main-img { background-position: 36px 231px!important; width: 100%!important; height: 386px!important; } } @media (max-width: 767px) { .sc-ct-1 { width:98%; } .sc-ct-2 { width:100%; padding-left: 0px!important; margin-left: 0px!important; } .sc-ct-3 { width:98%; } .w-img img { min-height: 75px!important; max-height: 75px!important; width: 65px; } } @media (max-width: 450px) { .w-blocks { width:92%!important; } .blocks-3 { margin-left:10px!important; } #hv-vid { margin-left: 24%; } } @media (max-width: 345px) { .w-blocks { width:90%!important; } #hv-vid { margin-left: 18%; } } @media (max-width: 390px) { .mg-l { margin-left: 24%!important; width: 31%; } } @media (max-width: 695px) { .n-mh { min-height:0!important; width: 98%; } } .sc-ct-block h2 { font-weight: bold; font-family: sans-serif; } .btn-info- { color: #fff; background-color: #fa4c29; border-color: #fa4c29; -webkit-transition: all .4s ease!important; -moz-transition: all .4s ease!important; -ms-transition: all .4s ease!important; -o-transition: all .4s ease!important; transition: all .4s ease!important; } .btn-info-:hover { background-position: left center!important; background-color: #000!important; border-color: #fa4c29; color: #fff; } .about-fan { background-color: #303030; background: #2b2b2b no-repeat; background: linear-gradient(#303030,#262626); background: -webkit-linear-gradient(top,#303030,#262626) no-repeat; filter: progid:DXImageTransform.Microsoft.gradient(gradientType=linear,startColorstr='#FF303030',endColorstr='#FF262626'); position: relative; color: white; white-space: nowrap; font-size: 15px; width: 88%; padding: 10px; overflow: hidden; } .about-fan a { color: white; text-decoration: none; } .psi { position: absolute; top: -1px; right: 19px; color: #988E8E; } h2 { font-size: 22px; margin-top: 14px; } .bg-bl { background-color: #000; height: 70px; } .n-padding { padding: 0px; } .about-artist {/* width: 102%; padding-bottom: 5px; border-bottom: 2px solid;*/ color: #fff; /*border-left: 1px solid; border-right: 1px solid; background-color: #080808;*/ height: 77px; } .about-artist:hover { /*border-bottom:2px solid #fff;*/ } .about-artist a { /*color: #fa4c29;*/ text-transform: uppercase; text-decoration: none; font-weight: bold; font-size: large; font-family: initial; } .about-artist a:hover { color: #fff; text-decoration: none; } .cl-cc { color: #fff; font-weight: bold; font-family: initial; } .relati { position: relative; } .absolu { position: absolute; } .background-play { height: 230px; width: 100px; background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%,rgba(0,0,0,0.3) 100%); -webkit-transition: background 1s ease-out; -moz-transition: background 1s ease-out; -o-transition: background 1s ease-out; transition: background 1s ease-out; /*background-image: url('data:image/svg+xml;base64,<KEY>');*/ } .ps-img:hover { color: black; text-decoration: none; } .ps-img { width: 40px; height: 40px; border-radius: 50%; background-color: crimson; /* position: absolute; */ /* bottom: 45px; */ /* left: 20px; */ /* background-image: none; */ color: cornsilk; line-height: 42px; /* font-size: 18px; */ /* margin-right: 0; */ text-align: center; /* margin:0 auto; width: 40px; height: 40px; border-radius: 50%; background-color: crimson; position: absolute; bottom: 45px; left: 20px; background-image: none; color: cornsilk; line-height: 42px; font-size: 18px; margin-right: 0; text-align: center; padding-left: 4px; text-decoration: none;*/ } .ps-img:active { text-decoration: none; color: #000; } .ps-play:before { content: "\f04b"; speak: none; font-family: FontAwesome!important; font-style: normal; text-rendering: auto; } .ps-play:active { text-decoration: none; } .ps-pause:before { content: "\f04c"; speak: none; font-family: FontAwesome!important; font-style: normal; text-rendering: auto; } .ps-pause:active { text-decoration: none; } .ps-h { position: absolute; left: 80px; bottom: 85px; color:white; } .main-img { position: absolute; /*background-image: url("../images/img/03-dj.png");*/ background-position: 30px 224px; background-size: 38%; background-repeat: no-repeat; background-attachment: fixed; opacity: 0.9; width: 520px; height: 470px; top: 0px; left: 0px; } .ps-h:hover { text-decoration: none; color: #2c9ce9; } .ps-cate { position: absolute; left: 82px; bottom: 43px; color: white; font-size: 15px; font-weight: bolder; } .bg-text { position: absolute; bottom: 1px; height: 400px; z-index: 0; background: linear-gradient(to bottom, rgba(0,0,0,0) 70%,rgba(0,0,0,1) 100%); } .load img { margin-left: 40%; } .dp-genre { padding: 6px 22px 6px 20px; margin-top: 10px; text-decoration: none; color: white; } .dp-genre:hover { color:#000; text-decoration: none; } .nav-genre { position: absolute; top: 440px; background: #000; height: 31px; } .mg-left { border: 1px solid; border-color: #e5e6e9 #dfe0e4 #d0d1d5; border-radius: 3px; } .bor_blocks { border: 1px solid; border-color: #e5e6e9 #dfe0e4 #d0d1d5; border-radius: 3px; } .no-pad h3 { margin-top: 0px; margin-left: -15px; width: 108%; /* background-image: linear-gradient(to bottom,#E5E5E5,#FFFFFF); */ padding: 10px; /* border-top-left-radius: 5px; */ /* border-top-right-radius: 5px; */ color: black; font-size: 20px; font-weight: bold; font-family: -webkit-body; margin-bottom: 20px; } .song_url a { /*color: #fff;*/ } /** * .dropdown-menu li a * { * color:#000; * } */ /** * .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus { * text-decoration: none; * color: #ffffff; * background-color: #0088cc; * background-color: #0081c2; * background-image: -moz-linear-gradient(top, #08c, #0077b3); * background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#0077b3)); * background-image: -webkit-linear-gradient(top, #08c, #0077b3); * background-image: -o-linear-gradient(top, #08c, #0077b3); * background-image: linear-gradient(to bottom, #0088cc,#0077b3); * background-repeat: repeat-x; * filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0); * } */ .event { /*background: #000;*/ padding-bottom: 10px; } .event img { border-top: 1px solid #161616; border-left: 1px solid #161616; /*border-top-left-radius: 3px; border-top-right-radius: 3px;*/ border-right: 1px solid #161616; } .featured-artist { min-height: 400px; } .featured-artist h1 { color: #fa4c29; } .artist-all h1 { color: #fa4c29; } .player-fixed { position: fixed; left: 13%; bottom: -5px; z-index: 1; width: 72.12%; padding-left: 10px; padding-right: 10px; background: #337AB7; border: 1px solid #fff; border-top-left-radius: 3px; height: 52px; } .close-mp3 { background: #337AB7; display: none; position: absolute; right: -38px; bottom: 4px; padding: 12px 9px 7px 9px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-top: 1px solid #fff; border-right: 1px solid #fff; border-bottom: 1px solid #fff; color: #fff; height: 47px; cursor: pointer; } .close-mp3:hover { color: #000; } .bor-sr { /*border: 1px solid #fa4c29; border-radius: 3px!important;*/ } .about-video { position: absolute; bottom: 30px; left: 70px; color: white; font-size: 18px; } .play_vid { position: absolute; left: 26px; bottom: 30px; width: 35px; height: 35px; border-radius: 50%; background-image: none; background-color: crimson; color: cornsilk; line-height: 50px; font-size: 18px; margin-right: 0; text-align: center; padding-left: 5px; text-decoration: none; } .play_vid:before { content: "\f04b"; speak: none; font-family: FontAwesome!important; font-style: normal; text-rendering: auto; position: absolute; left: 12px; top: -6px; } .bg-text-vid { background: linear-gradient(to bottom, rgba(0,0,0,0) 70%,rgba(0,0,0,1) 100%); position: absolute; width: 255px; height: 184px; left: 17px; bottom: 22px; } .search-artist { margin-left: -20px; margin-top: 0px; margin-bottom: 45px; } .search-artist a { color: white; font-size: 24px; font-weight: bold; } .search-artist a:hover { text-decoration: none; color: whitesmoke; } .color-search { color: white; } .mg-left { padding: 15px; background: #fff; margin-bottom: 15px; } /*Mds Page */ .mds .col-md-3 { text-align: center; color: #f25526; font-size: 20px; } .mds .col-md-3 a { border: 4px solid #d7d7d7; display: block; } .mds>.col-md-3 { float: left; margin-bottom: 20px; } .port-slider { height: auto; // margin: 0 auto; width: 100%; background-position: center top; background-repeat: no-repeat; background-attachment: fixed; background-image: url('../../images/img/microperche.jpg'); opacity:0.9; } .adp-biz { /*height: auto; width: 100%; position: relative; background-image: url('../../images/adaptable.jpg'); background-position: 0 -210px; background-size:100%; background-repeat: no-repeat; background-attachment: fixed; opacity:0.9; */ background-image:none; padding: 0px 0px; } /*.adp-biz .text-center,.digital-music .text-center{ color:#fff !important; } */ .digital-music { /* height: auto; width: 100%; position: relative; background-image: url('../../images/digital.jpg'); background-position: 0 0px; background-size:100%; background-repeat: no-repeat; background-attachment: fixed; opacity:0.9; */ background-image: none; padding: 0px 0px; } .afordable-price{ /*height: auto; width: 100%; position: relative; background-image: url('../../images/Banjoe Player against wall.jpg'); background-position: 0 80px; background-size:100%; background-repeat: no-repeat; background-attachment: fixed; opacity:0.9; */ background-image:none; padding: 0px 0px; } .brand-platform{ height: auto; width: 100%; position: relative; /*background-image: url('../../images/brand.jpg');*/ background-position: 0 -120px; background-size:100%; background-repeat: no-repeat; background-attachment: fixed; opacity:0.9; } .btn-small { border-radius: 3px; font-size: 13px !important; font-weight: 700; padding: 2px 10px; } .page-big-title { /*font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;*/ font-family: oswaldlight !important; font-size: 28px; font-weight: bold; margin-bottom: 10px; margin-left: -11px; } #example { background: transparent; width: 100%; overflow: hidden; } #example .frame { width: 100%; height: 100%; } #example .frame .slide_element { height: 100%; } #example .frame .slide_element > div { float: left; height: 100%; overflow: hidden; } #example .frame .mSCover img { max-width: none; } #example .frame .slide_element > div.slide1, #example .frame .slide_element > div.slide6 { background: #fafafa; } #example .frame .slide_element > div.slide1 .mSCover { margin-top: 27px; margin-left: 108px; } #example .frame .slide_element > div.slide3 { background: #000; } #example .frame .slide_element > div.slide3 .mSCover { margin-top: 22px; } #example .frame .slide_element > div.slide4 .mSCover { margin-top: -304px; margin-left: -153px; } #example .frame .slide_element > div.slide6 .mSCover { margin-left: -174px; margin-top: 0; } #example .frame .slide_element div.texts { position: absolute; width: 980px; top: 0; left: 0; bottom: 0; right: 0; margin: auto; color: #000; z-index: 1001; pointer-events: none; } #example .frame .slide_element div.texts a { pointer-events: all; } #example .frame .slide_element div.texts h2 { display: block; overflow: hidden; text-indent: -9999px; } #example .frame .slide_element div.texts h2 a { display: block; overflow: hidden; text-indent: -9999px; } #example .frame .slide_element > div.slide1 div.texts h2 { margin-top: 105px; margin-left: 39px; margin-bottom: 12px; width: 400px; } #example .frame .slide_element > div.slide1 div.texts h2 a { width: 500px; height: 194px; background: url(../../assets/img/apple_images/ios_titl.png) no-repeat 0 0; background-size: 500px 194px; } #example .frame .slide_element div.texts a.watch, #example .frame .slide_element div.texts a.learn { display: block; margin: 0 0 0 42px; width: 148px; height: 0; padding-top: 35px; overflow: hidden; cursor: pointer; background: url(../../assets/img/apple_images/learn_mo.png) no-repeat 0 0; background-size: 255px 70px; zoom: 1; } #example .frame .slide_element div.texts a.watch:hover, #example .frame .slide_element div.texts a.learn:hover { background-position: 0 100% !important; } #example .frame .slide_element div.texts a.watch { width: 255px; background-image: url(../../assets/img/apple_images/watch_ke.png); } #example .frame .slide_element > div.slide1 div.texts a.learn { margin-top: 4px; } #example .frame .slide_element > div.slide2 div.texts, #example .frame .slide_element > div.slide3 div.texts, #example .frame .slide_element > div.slide4 div.texts, #example .frame .slide_element > div.slide5 div.texts, #example .frame .slide_element > div.slide6 div.texts, #example .frame .slide_element > div.slide7 div.texts { text-align: center; } #example .frame .slide_element > div.slide2 div.texts h2 { width: 581px; height: 475px; margin: 0 auto; margin-top: 95px; margin-bottom: -57px; } #example .frame .slide_element > div.slide2 div.texts h2 a { width: 581px; height: 475px; background: url(../../assets/img/apple_images/osx_titl.png) no-repeat 0 0; background-size: 581px 475px; } #example .frame .slide_element > div.slide2 div.texts a.watch, #example .frame .slide_element > div.slide2 div.texts a.learn, #example .frame .slide_element > div.slide3 div.texts a.watch, #example .frame .slide_element > div.slide3 div.texts a.learn, #example .frame .slide_element > div.slide4 div.texts a.watch, #example .frame .slide_element > div.slide4 div.texts a.learn, #example .frame .slide_element > div.slide5 div.texts a.watch, #example .frame .slide_element > div.slide5 div.texts a.learn, #example .frame .slide_element > div.slide6 div.texts a.watch, #example .frame .slide_element > div.slide6 div.texts a.learn, #example .frame .slide_element > div.slide7 div.texts a.watch { display: inline-block; margin: 0 35px 0 0; background: url(../../assets/img/apple_images/learn_mq.png) no-repeat 0 0; background-size: 255px 70px; zoom: 1; } #example .frame .slide_element > div.slide2 div.texts a.watch, #example .frame .slide_element > div.slide3 div.texts a.watch, #example .frame .slide_element > div.slide4 div.texts a.watch, #example .frame .slide_element > div.slide5 div.texts a.watch { width: 255px; margin-left: 35px; background-image: url(../../assets/img/apple_images/watch_kg.png); } #example .frame .slide_element > div.slide3 div.texts h2 { width: 700px; height: 150px; margin: 0 auto; margin-top: 368px; margin-bottom: 4px; } #example .frame .slide_element > div.slide3 div.texts h2 a { width: 700px; height: 150px; background: url(../../assets/img/apple_images/macpro_t.png) no-repeat 0 0; background-size: 700px 150px; } #example .frame .slide_element > div.slide3 div.texts a.watch, #example .frame .slide_element > div.slide3 div.texts a.learn { background: url(../../assets/img/apple_images/learn_mp.png) no-repeat 0 0; } #example .frame .slide_element > div.slide3 div.texts a.watch { background-image: url(../../assets/img/apple_images/watch_kf.png); } #example .frame .slide_element > div.slide4 div.texts h2 { width: 1000px; height: 132px; margin: 0 auto; margin-top: 409px; margin-bottom: 18px; } #example .frame .slide_element > div.slide4 div.texts h2 a { width: 1000px; height: 132px; background: url(../../assets/img/apple_images/macbooka.png) no-repeat 0 0; background-size: 1000px 132px; } #example .frame .slide_element > div.slide4 div.texts a.watch, #example .frame .slide_element > div.slide4 div.texts a.learn { background: url(../../assets/img/apple_images/learn_mo.png) no-repeat 0 0; } #example .frame .slide_element > div.slide4 div.texts a.watch { background-image: url(../../assets/img/apple_images/watch_ke.png); } #example .frame .slide_element > div.slide5 div.texts h2 { width: 900px; height: 75px; margin: 0 auto; margin-top: 290px; margin-bottom: 18px; } #example .frame .slide_element > div.slide5 div.texts h2 a { width: 900px; height: 75px; background: url(../../assets/img/apple_images/designed.png) no-repeat 0 0; background-size: 900px 75px; } #example .frame .slide_element > div.slide5 div.texts a.watch, #example .frame .slide_element > div.slide5 div.texts a.learn { background: url(../../assets/img/apple_images/learn_mp.png) no-repeat 0 0; } #example .frame .slide_element > div.slide5 div.texts a.watch { width: 224px; background-image: url(../../assets/img/apple_images/watch_ad.png); } #example .frame .slide_element > div.slide6 div.texts h2 { width: 480px; height: 135px; margin-left: 460px; margin-top: 260px; margin-bottom: 18px; } #example .frame .slide_element > div.slide6 div.texts h2 a { width: 480px; height: 135px; background: url(../../assets/img/apple_images/itunesra.png) no-repeat 0 0; background-size: 480px 135px; } #example .frame .slide_element > div.slide6 div.texts a.watch, #example .frame .slide_element > div.slide6 div.texts a.learn { background: url(../../assets/img/apple_images/learn_mo.png) no-repeat 0 0; } #example .frame .slide_element > div.slide6 div.texts a.learn { margin-right: 0; } #example .frame .slide_element > div.slide6 div.texts a.watch { background-image: url(../../assets/img/apple_images/watch_ke.png); margin-left: 420px; } #example .frame .slide_element > div.slide7 div.texts h2 { width: 600px; height: 300px; margin: 0 auto; margin-top: 200px; margin-bottom: -115px; } #example .frame .slide_element > div.slide7 div.texts h2 a { width: 600px; height: 300px; background: url(../../assets/img/apple_images/wwdc_tit.png) no-repeat 0 0; background-size: 600px 300px; } #example .frame .slide_element > div.slide7 div.texts a.watch { background: url(../../assets/img/apple_images/watch_kf.png) no-repeat 0 0; margin: 0 auto; } /*Login Page */ .login-body { background: url('../../images/img/3.jpg') fixed; background-size: cover; padding: 0; margin: 0; } /*Dashboard Page */ .padding-50 { padding: 50px 0 0 0; } .dashboard-container{ font-family: 'Raleway', sans-serif; } .modal-title-red { color: #f41e2f; } .btn-file { position: relative; overflow: hidden; } .btn-file input[type=file] { position: absolute; top: 0; right: 0; min-width: 100%; min-height: 100%; font-size: 100px; text-align: right; filter: alpha(opacity=0); opacity: 0; outline: none; background: white; cursor: inherit; display: block; } #upload-wrapper { margin-top: 50px; } #upload-wrapper h3 { padding: 0px 0px 10px 0px; margin: 0px 0px 20px 0px; margin-top: -30px; border-bottom: 1px dotted #DDD; } #upload-wrapper input[type=file] { border: 1px solid #DDD; padding: 6px; background: #FFF; border-radius: 5px; } #output{ padding: 5px; font-size: 18px; } #output img { border: 1px solid #DDD; padding: 5px; } /* progress bar style */ #progressbox { border: 1px solid #92C8DA; padding: 1px; position:relative; width:400px; border-radius: 3px; margin: 10px; display:none; text-align:left; } #progressbar { height:20px; border-radius: 3px; background-color: #77E0FA; width:1%; } #statustxt { top:3px; left:50%; position:absolute; display:inline-block; color: #000000; } /* Our Plan Page */ .plan-body { background: url('../../images/img/2.jpg') fixed; background-size: cover; padding: 0; margin: 0; } .h2-our-plan { color:#fff; font-weight:700 } .plan-container { font-family: 'Raleway', sans-serif; } .padding-80 { padding : 80px 0 0 0; } /*============================================================ GENERAL STYLES ============================================================*/ .db-wrapper { /*font-family: 'Raleway', sans-serif;*/ font-family: oswaldlight !important; } /*============================================================ BACKGROUND COLORS ============================================================*/ .db-bk-color-one { background-color: #f55039; } .db-bk-color-two { background-color: #46A6F7; } .db-bk-color-three { background-color: #47887E; } .db-bk-color-four { background-color: #469E6F; } /*============================ PRICING TABLES EIGHT STYLES ==============================*/ .db-pricing-eight { margin-bottom: 30px; margin-top: 30px; text-align: center; color: #fff; border-radius: 5px; -webkit-border-radius: 5px; -moz-border-radius: 5px; transition: margin-top 0.5s ease 0s; -moz-transition: margin-top 0.5s ease 0s; -ms-transition: margin-top 0.5s ease 0s; min-height: 300px; } .db-pricing-eight:hover { margin-top: 5px; } .db-pricing-eight ul { list-style: none; margin: 0; text-align: center; padding-left: 0px; } .db-pricing-eight ul li { padding-top: 20px; padding-bottom: 20px; cursor: pointer; text-transform: uppercase; border-bottom: 2px solid rgba(0, 0, 0, 0.12); } .db-pricing-eight ul li.price { padding: 40px 20px 5px 20px; font-size: 20px; font-weight: 900; min-height:116px; } .db-pricing-eight ul li.price i { border-radius: 50%; -webkit-border-radius: 50%; -moz-border-radius: 50%; height: 80px; margin: -85px auto 20px; width: 80px; font-size: 18px; padding: 25px; display: block; color: #fff; border: 4px solid #FFF; } .db-pricing-eight .pricing-footer { padding: 20px; } .db-pricing-eight .pricing-footer a i { margin: 5px; } .box-mds { border: 1px solid #dfdfdf; background-color: #FFF; -webkit-box-shadow: 0 4px 5px 0 rgba(0,0,0,.13); -moz-box-shadow: 0 4px 5px 0 rgba(0,0,0,.13); box-shadow: 0 4px 5px 0 rgba(0,0,0,.13); color:#000; } .icon-custom { background: grey; width: 50px; height: 50px; border-radius: 50%; text-align: center; line-height: 50px; vertical-align: middle; //padding: 30px; font-size: 18px; color:#fff; } .list-custom li { margin-bottom:5px; } video#bgvid { position: fixed; top: 50%; left: 50%; min-width: 100%; min-height: 100%; width: auto; height: auto; z-index: -100; -webkit-transform: translateX(-50%) translateY(-50%); transform: translateX(-50%) translateY(-50%); background: url(polina.jpg) no-repeat; background-size: cover; } .top-margin { margin-top: 60px; } .welcome { color: #fff; font-family: fantasy; text-align: left; padding-left: 120px; } .top- { margin-top: -13px; } .text-top { font-size: 26px; margin-top: 20px; margin-left: 30px; } .red_text { color: #E3F1F8; } .red_text a { text-decoration: none; color: #41A6D9; } .artist-industry h1 { font-size: 25px; font-weight: bold; margin-top: 40px; margin-bottom: -10px!important; } .artist-crowd h1 { font-size: 28px; font-weight: bold; margin-bottom: -15px; } .artist-crowd h3 { margin-bottom: 40px; } .artist-crowd img { margin-left: 100px; margin-bottom: 30px; } .artist-musician h1 { font-size: 28px; font-weight: bold; margin-bottom: -15px; } .artist-musician h3 { margin-bottom: 25px; } .artist-musician img { margin-left: 200px; margin-bottom: 30px; } @media (max-width: 767px) { .adp-biz,.artist-home,.brand-platform,.afordable-price,.digital-music { background-size:auto; background-position:0px; } } @media (max-width: 480px) { #example .mightyslider_modern_skin { margin-right: 0; } #example .tabs { display: none; } }
0.4436
0.060502
* 1. Change the default font family in all browsers (opinionated). * 2. Prevent adjustments of font size after orientation changes in IE and iOS. */ html { font-family: sans-serif; /* 1 */ -ms-text-size-adjust: 100%; /* 2 */ -webkit-text-size-adjust: 100%; /* 2 */ } /** * Remove the margin in all browsers (opinionated). */ body { margin: 0; } /* HTML5 display definitions ========================================================================== */ /** * Add the correct display in IE <10. * Add the correct display in Edge, IE, and Firefox for `details` or `summary`. * Add the correct display in IE for `main`. */ article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary { display: block; } /** * Add the correct display in IE <10. */ audio, canvas, progress, video { display: inline-block; } /** * Add the correct display and remove excess height in iOS 4-7. */ audio:not([controls]) { display: none; height: 0; } /** * Add the correct vertical alignment in Chrome, Firefox, and Opera. */ progress { vertical-align: baseline; } /** * Add the correct display in IE <11, Safari <8, and Firefox <22. * 1. Add the correct display in IE. */ template, [hidden] { display: none; } /* Links ========================================================================== */ /** * 1. Remove the gray background on active links in IE 10. * 2. Remove gaps in links underline in iOS 8+ and Safari 8+. */ a { background-color: transparent; /* 1 */ -webkit-text-decoration-skip: objects; /* 2 */ } /** * Remove the outline on focused links when they are also active or hovered * in all browsers (opinionated). */ a:active, a:hover { outline-width: 0; } /* Text-level semantics ========================================================================== */ /** * 1. Remove the bottom border in Firefox <40. * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. */ abbr[title] { border-bottom: none; /* 1 */ text-decoration: underline; /* 2 */ text-decoration: underline dotted; /* 2 */ } /** * Prevent the duplicate application of `bolder` by the next rule in Safari 6. */ b, strong { font-weight: inherit; } /** * Add the correct font weight in Chrome, Edge, and Safari. */ b, strong { font-weight: bolder; } /** * 1. Correct the inheritance and scaling of font size in all browsers. * 2. Correct the odd `em` font sizing in all browsers. */ code, kbd, samp { font-family: monospace, monospace; font-size: 1em; } /** * Add the correct font style in Android <4.4. */ dfn { font-style: italic; } /** * Correct the font size and margin on `h1` elements within `section` and * `article` contexts in Chrome, Firefox, and Safari. */ h1 { font-size: 2em; /* Set 1 unit of vertical rhythm on the top and bottom margins. */ margin: 0.75em 0; } /** * Add the correct background and color in IE <10. */ mark { background-color: #ff0; color: #000; } /** * Add the correct font size in all browsers. */ small { font-size: 80%; } /** * Prevent `sub` and `sup` elements from affecting the line height in * all browsers. */ sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } sub { bottom: -0.25em; } sup { top: -0.5em; } /* Embedded content ========================================================================== */ /** * Remove the border on images inside links in IE <11. */ img { border-style: none; } /** * Hide the overflow in IE. */ svg:not(:root) { overflow: hidden; } /* Grouping content ========================================================================== */ /** * Add the correct margin in IE 8. */ figure { margin: 1.5em 40px; } /** * 1. Add the correct box sizing in Firefox. * 2. Show the overflow in Edge and IE. */ hr { box-sizing: content-box; /* 1 */ height: 0; /* 1 */ overflow: visible; /* 2 */ } pre { font-family: monospace, monospace; font-size: 1em; } /* Forms ========================================================================== */ /** * Known issues: * - By default, Chrome on OS X and Safari on OS X allow very limited styling of * select, unless a border property is set. The default font weight on * optgroup elements cannot safely be changed in Chrome on OSX and Safari on * OS X. * - It is recommended that you do not style checkbox and radio inputs as * Firefox's implementation does not respect box-sizing, padding, or width. * - Certain font size values applied to number inputs cause the cursor style of * the decrement button to change from default to text. * - The search input is not fully stylable by default. In Chrome and Safari on * OSX/iOS you can't control font, padding, border, or background. In Chrome * and Safari on Windows you can't control border properly. It will apply * border-width but will only show a border color (which cannot be controlled) * for the outer 1px of that border. Applying -webkit-appearance: textfield * addresses these issues without removing the benefits of search inputs (e.g. * showing past searches). Safari (but not Chrome) will clip the cancel button * on when it has padding (and textfield appearance). */ /** * 1. Change font properties to `inherit` in all browsers (opinionated). * 2. Remove the margin in Firefox and Safari. * 3. Address `font-family` inconsistency between `textarea` and other form in IE 7 * 4. Improve appearance and consistency with IE 6/7. */ button, input, optgroup, select, textarea { font: inherit; /* 1 */ margin: 0; /* 2 */ } /** * Show the overflow in IE. */ button { overflow: visible; } /** * Remove the inheritance of text transform in Edge, Firefox, and IE. * 1. Remove the inheritance of text transform in Firefox. */ button, select { /* 1 */ text-transform: none; } /** * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video` * controls in Android 4. * 2. Correct the inability to style clickable types in iOS and Safari. */ button, html [type="button"], [type="reset"], [type="submit"] { -webkit-appearance: button; /* 2 */ } button, [type="button"], [type="reset"], [type="submit"] { /** * Remove the inner border and padding in Firefox. */ /** * Restore the focus styles unset by the previous rule. */ } button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner { border-style: none; padding: 0; } button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring { outline: 1px dotted ButtonText; } /** * Show the overflow in Edge. */ input { overflow: visible; } /** * 1. Add the correct box sizing in IE <11. * 2. Remove the padding in IE <11. * 3. Remove excess padding in IE 7. * Known issue: excess padding remains in IE 6. */ [type="checkbox"], [type="radio"] { box-sizing: border-box; /* 1 */ padding: 0; /* 2 */ } /** * Correct the cursor style of increment and decrement buttons in Chrome. */ [type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button { height: auto; } /** * 1. Correct the odd appearance in Chrome and Safari. * 2. Correct the outline style in Safari. */ [type="search"] { -webkit-appearance: textfield; /* 1 */ outline-offset: -2px; /* 2 */ /** * Remove the inner padding and cancel buttons in Chrome and Safari on OS X. */ } [type="search"]::-webkit-search-cancel-button, [type="search"]::-webkit-search-decoration { -webkit-appearance: none; } /** * Correct the text style of placeholders in Chrome, Edge, and Safari. */ ::-webkit-input-placeholder { color: inherit; opacity: 0.54; } /** * 1. Correct the inability to style clickable types in iOS and Safari. * 2. Change font properties to `inherit` in Safari. */ ::-webkit-file-upload-button { -webkit-appearance: button; /* 1 */ font: inherit; /* 2 */ } /** * Change the border, margin, and padding in all browsers (opinionated). */ fieldset { border: 1px solid #c0c0c0; margin: 0 2px; padding: 0.35em 0.625em 0.75em; } /** * 1. Correct the text wrapping in Edge and IE. * 2. Correct the color inheritance from `fieldset` elements in IE. * 3. Remove the padding so developers are not caught out when they zero out * `fieldset` elements in all browsers. * 4. Correct alignment displayed oddly in IE 6/7. */ legend { box-sizing: border-box; /* 1 */ display: table; /* 1 */ max-width: 100%; /* 1 */ white-space: normal; /* 1 */ color: inherit; /* 2 */ padding: 0; /* 3 */ } /** * Restore the font weight unset by a previous rule. */ optgroup { font-weight: bold; } /** * Remove the default vertical scrollbar in IE. */ textarea { overflow: auto; } html { box-sizing: border-box; } *, *:before, *:after { box-sizing: inherit; } body { overflow-y: scroll; overflow-x: auto; background-color: #FCFFFD; } .container { max-width: 50em; margin-left: auto; margin-right: auto; } .container:after { content: " "; display: block; clear: both; } body { font-size: 100%; font-family: 'Eczar', serif; font-weight: 400; color: #2D2D29; } p { font-family: 'Eczar', serif; font-size: 1.1rem; line-height: 1.6rem; font-weight: 400; margin-top: 1rem; margin-bottom: 1rem; text-align: justify; } h1, h2, h3, h4, h5, h6 { font-family: 'Proza Libre'; font-weight: 600; } h1 { font-size: 1.6rem; margin-top: 8rem; } a { position: relative; color: #2D2D29; font-weight: 500; text-decoration: none; transition: color 0.3s ease-in-out; } a::before { content: ""; position: absolute; bottom: 0; height: 100%; width: 100%; background: linear-gradient(to top, #2D2D29, #2D2D29 2px, #92c5fc 3px, #92c5fc 100%); z-index: -1; } a::after { content: ""; position: absolute; left: 0; bottom: 2px; width: 100%; height: 100%; background: #FCFFFD; transition: all 0.3s ease-in-out; z-index: -1; } a:hover { color: #FCFFFD; cursor: hover; } a:hover::after { bottom: 100%; height: 0; } ul { margin-top: -1rem; list-style-type: none; } ul li { font-size: 0.8rem; } blockquote { border-left: 5px solid #FF5E5E; margin: 0; } blockquote p { font-family: 'Proza Libre', sans-serif; font-size: 1rem; line-height: 1.5rem; font-weight: 600; color: #FF5E5E; text-align: justify; padding-left: 1.6rem; } .me { width: 13.09524%; float: left; margin-left: 1.78571%; margin-right: 1.78571%; margin-left: -14.88095%; } .me h1 { font-family: 'Raleway', sans-serif; font-size: 1rem; font-weight: 700; margin: 0; } nav { width: 96.42857%; float: left; margin-left: 1.78571%; margin-right: 1.78571%; margin-top: 4rem; } nav .menu { width: 96.42857%; float: left; margin-left: 1.78571%; margin-right: 1.78571%; } nav .menu a { margin-right: 2rem; } nav a.right { float: right; margin-left: 2rem; margin-right: 0; } header { position: relative; width: 100%; height: 200px; padding: 4.4rem; background: url("../images/one.jpg") no-repeat; background-size: cover; background-position: 50% 40%; text-align: center; } header:after { content: ''; display: block; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-color: rgba(33, 33, 33, 0.8); z-index: 0; } header h1 { position: relative; font-family: 'Eczar', serif; font-size: 2.4rem; font-weight: 400; color: white; margin-top: 0; z-index: 1; } .page-content { width: 96.42857%; float: left; margin-left: 1.78571%; margin-right: 1.78571%; margin-top: 8rem; margin-bottom: 8rem; } .page-content .document { width: 96.42857%; float: left; margin-left: 1.78571%; margin-right: 1.78571%; } #contact-form { width: 50%; } #contact-form .form-field { position: relative; margin-bottom: 1rem; } #contact-form label { position: absolute; top: 14px; right: 105%; font-size: 0.8rem; text-transform: uppercase; margin-bottom: 0.4rem; } #contact-form label span { position: absolute; top: 2px; left: -7px; color: #FF5E5E; } #contact-form input, #contact-form textarea { padding: 10px 10px; border: 1px solid #2D2D29; border-radius: 2px; } #contact-form input:focus, #contact-form textarea:focus { outline: 0; } #contact-form .form-input-wrapper input { width: 100%; } #contact-form .form-textarea-wrapper textarea { width: 100%; height: 80px; } #contact-form button { padding: 4px 10px; border: 0; border-radius: 2px; transition: background 0.3s ease-in-out; } #contact-form button:focus { outline: 0; } #contact-form button:hover { cursor: pointer; } #contact-form button[type=submit] { color: #2D2D29; background: #FCFFFD; margin-right: 1rem; } #contact-form button[type=submit]:hover { background: #92c5fc; } #contact-form button[type=reset] { color: #2D2D29; background: #FCFFFD; } #contact-form button[type=reset]:hover { background: #92c5fc; }
dist/styles/app.css
* 1. Change the default font family in all browsers (opinionated). * 2. Prevent adjustments of font size after orientation changes in IE and iOS. */ html { font-family: sans-serif; /* 1 */ -ms-text-size-adjust: 100%; /* 2 */ -webkit-text-size-adjust: 100%; /* 2 */ } /** * Remove the margin in all browsers (opinionated). */ body { margin: 0; } /* HTML5 display definitions ========================================================================== */ /** * Add the correct display in IE <10. * Add the correct display in Edge, IE, and Firefox for `details` or `summary`. * Add the correct display in IE for `main`. */ article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary { display: block; } /** * Add the correct display in IE <10. */ audio, canvas, progress, video { display: inline-block; } /** * Add the correct display and remove excess height in iOS 4-7. */ audio:not([controls]) { display: none; height: 0; } /** * Add the correct vertical alignment in Chrome, Firefox, and Opera. */ progress { vertical-align: baseline; } /** * Add the correct display in IE <11, Safari <8, and Firefox <22. * 1. Add the correct display in IE. */ template, [hidden] { display: none; } /* Links ========================================================================== */ /** * 1. Remove the gray background on active links in IE 10. * 2. Remove gaps in links underline in iOS 8+ and Safari 8+. */ a { background-color: transparent; /* 1 */ -webkit-text-decoration-skip: objects; /* 2 */ } /** * Remove the outline on focused links when they are also active or hovered * in all browsers (opinionated). */ a:active, a:hover { outline-width: 0; } /* Text-level semantics ========================================================================== */ /** * 1. Remove the bottom border in Firefox <40. * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. */ abbr[title] { border-bottom: none; /* 1 */ text-decoration: underline; /* 2 */ text-decoration: underline dotted; /* 2 */ } /** * Prevent the duplicate application of `bolder` by the next rule in Safari 6. */ b, strong { font-weight: inherit; } /** * Add the correct font weight in Chrome, Edge, and Safari. */ b, strong { font-weight: bolder; } /** * 1. Correct the inheritance and scaling of font size in all browsers. * 2. Correct the odd `em` font sizing in all browsers. */ code, kbd, samp { font-family: monospace, monospace; font-size: 1em; } /** * Add the correct font style in Android <4.4. */ dfn { font-style: italic; } /** * Correct the font size and margin on `h1` elements within `section` and * `article` contexts in Chrome, Firefox, and Safari. */ h1 { font-size: 2em; /* Set 1 unit of vertical rhythm on the top and bottom margins. */ margin: 0.75em 0; } /** * Add the correct background and color in IE <10. */ mark { background-color: #ff0; color: #000; } /** * Add the correct font size in all browsers. */ small { font-size: 80%; } /** * Prevent `sub` and `sup` elements from affecting the line height in * all browsers. */ sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } sub { bottom: -0.25em; } sup { top: -0.5em; } /* Embedded content ========================================================================== */ /** * Remove the border on images inside links in IE <11. */ img { border-style: none; } /** * Hide the overflow in IE. */ svg:not(:root) { overflow: hidden; } /* Grouping content ========================================================================== */ /** * Add the correct margin in IE 8. */ figure { margin: 1.5em 40px; } /** * 1. Add the correct box sizing in Firefox. * 2. Show the overflow in Edge and IE. */ hr { box-sizing: content-box; /* 1 */ height: 0; /* 1 */ overflow: visible; /* 2 */ } pre { font-family: monospace, monospace; font-size: 1em; } /* Forms ========================================================================== */ /** * Known issues: * - By default, Chrome on OS X and Safari on OS X allow very limited styling of * select, unless a border property is set. The default font weight on * optgroup elements cannot safely be changed in Chrome on OSX and Safari on * OS X. * - It is recommended that you do not style checkbox and radio inputs as * Firefox's implementation does not respect box-sizing, padding, or width. * - Certain font size values applied to number inputs cause the cursor style of * the decrement button to change from default to text. * - The search input is not fully stylable by default. In Chrome and Safari on * OSX/iOS you can't control font, padding, border, or background. In Chrome * and Safari on Windows you can't control border properly. It will apply * border-width but will only show a border color (which cannot be controlled) * for the outer 1px of that border. Applying -webkit-appearance: textfield * addresses these issues without removing the benefits of search inputs (e.g. * showing past searches). Safari (but not Chrome) will clip the cancel button * on when it has padding (and textfield appearance). */ /** * 1. Change font properties to `inherit` in all browsers (opinionated). * 2. Remove the margin in Firefox and Safari. * 3. Address `font-family` inconsistency between `textarea` and other form in IE 7 * 4. Improve appearance and consistency with IE 6/7. */ button, input, optgroup, select, textarea { font: inherit; /* 1 */ margin: 0; /* 2 */ } /** * Show the overflow in IE. */ button { overflow: visible; } /** * Remove the inheritance of text transform in Edge, Firefox, and IE. * 1. Remove the inheritance of text transform in Firefox. */ button, select { /* 1 */ text-transform: none; } /** * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video` * controls in Android 4. * 2. Correct the inability to style clickable types in iOS and Safari. */ button, html [type="button"], [type="reset"], [type="submit"] { -webkit-appearance: button; /* 2 */ } button, [type="button"], [type="reset"], [type="submit"] { /** * Remove the inner border and padding in Firefox. */ /** * Restore the focus styles unset by the previous rule. */ } button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner { border-style: none; padding: 0; } button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring { outline: 1px dotted ButtonText; } /** * Show the overflow in Edge. */ input { overflow: visible; } /** * 1. Add the correct box sizing in IE <11. * 2. Remove the padding in IE <11. * 3. Remove excess padding in IE 7. * Known issue: excess padding remains in IE 6. */ [type="checkbox"], [type="radio"] { box-sizing: border-box; /* 1 */ padding: 0; /* 2 */ } /** * Correct the cursor style of increment and decrement buttons in Chrome. */ [type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button { height: auto; } /** * 1. Correct the odd appearance in Chrome and Safari. * 2. Correct the outline style in Safari. */ [type="search"] { -webkit-appearance: textfield; /* 1 */ outline-offset: -2px; /* 2 */ /** * Remove the inner padding and cancel buttons in Chrome and Safari on OS X. */ } [type="search"]::-webkit-search-cancel-button, [type="search"]::-webkit-search-decoration { -webkit-appearance: none; } /** * Correct the text style of placeholders in Chrome, Edge, and Safari. */ ::-webkit-input-placeholder { color: inherit; opacity: 0.54; } /** * 1. Correct the inability to style clickable types in iOS and Safari. * 2. Change font properties to `inherit` in Safari. */ ::-webkit-file-upload-button { -webkit-appearance: button; /* 1 */ font: inherit; /* 2 */ } /** * Change the border, margin, and padding in all browsers (opinionated). */ fieldset { border: 1px solid #c0c0c0; margin: 0 2px; padding: 0.35em 0.625em 0.75em; } /** * 1. Correct the text wrapping in Edge and IE. * 2. Correct the color inheritance from `fieldset` elements in IE. * 3. Remove the padding so developers are not caught out when they zero out * `fieldset` elements in all browsers. * 4. Correct alignment displayed oddly in IE 6/7. */ legend { box-sizing: border-box; /* 1 */ display: table; /* 1 */ max-width: 100%; /* 1 */ white-space: normal; /* 1 */ color: inherit; /* 2 */ padding: 0; /* 3 */ } /** * Restore the font weight unset by a previous rule. */ optgroup { font-weight: bold; } /** * Remove the default vertical scrollbar in IE. */ textarea { overflow: auto; } html { box-sizing: border-box; } *, *:before, *:after { box-sizing: inherit; } body { overflow-y: scroll; overflow-x: auto; background-color: #FCFFFD; } .container { max-width: 50em; margin-left: auto; margin-right: auto; } .container:after { content: " "; display: block; clear: both; } body { font-size: 100%; font-family: 'Eczar', serif; font-weight: 400; color: #2D2D29; } p { font-family: 'Eczar', serif; font-size: 1.1rem; line-height: 1.6rem; font-weight: 400; margin-top: 1rem; margin-bottom: 1rem; text-align: justify; } h1, h2, h3, h4, h5, h6 { font-family: 'Proza Libre'; font-weight: 600; } h1 { font-size: 1.6rem; margin-top: 8rem; } a { position: relative; color: #2D2D29; font-weight: 500; text-decoration: none; transition: color 0.3s ease-in-out; } a::before { content: ""; position: absolute; bottom: 0; height: 100%; width: 100%; background: linear-gradient(to top, #2D2D29, #2D2D29 2px, #92c5fc 3px, #92c5fc 100%); z-index: -1; } a::after { content: ""; position: absolute; left: 0; bottom: 2px; width: 100%; height: 100%; background: #FCFFFD; transition: all 0.3s ease-in-out; z-index: -1; } a:hover { color: #FCFFFD; cursor: hover; } a:hover::after { bottom: 100%; height: 0; } ul { margin-top: -1rem; list-style-type: none; } ul li { font-size: 0.8rem; } blockquote { border-left: 5px solid #FF5E5E; margin: 0; } blockquote p { font-family: 'Proza Libre', sans-serif; font-size: 1rem; line-height: 1.5rem; font-weight: 600; color: #FF5E5E; text-align: justify; padding-left: 1.6rem; } .me { width: 13.09524%; float: left; margin-left: 1.78571%; margin-right: 1.78571%; margin-left: -14.88095%; } .me h1 { font-family: 'Raleway', sans-serif; font-size: 1rem; font-weight: 700; margin: 0; } nav { width: 96.42857%; float: left; margin-left: 1.78571%; margin-right: 1.78571%; margin-top: 4rem; } nav .menu { width: 96.42857%; float: left; margin-left: 1.78571%; margin-right: 1.78571%; } nav .menu a { margin-right: 2rem; } nav a.right { float: right; margin-left: 2rem; margin-right: 0; } header { position: relative; width: 100%; height: 200px; padding: 4.4rem; background: url("../images/one.jpg") no-repeat; background-size: cover; background-position: 50% 40%; text-align: center; } header:after { content: ''; display: block; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-color: rgba(33, 33, 33, 0.8); z-index: 0; } header h1 { position: relative; font-family: 'Eczar', serif; font-size: 2.4rem; font-weight: 400; color: white; margin-top: 0; z-index: 1; } .page-content { width: 96.42857%; float: left; margin-left: 1.78571%; margin-right: 1.78571%; margin-top: 8rem; margin-bottom: 8rem; } .page-content .document { width: 96.42857%; float: left; margin-left: 1.78571%; margin-right: 1.78571%; } #contact-form { width: 50%; } #contact-form .form-field { position: relative; margin-bottom: 1rem; } #contact-form label { position: absolute; top: 14px; right: 105%; font-size: 0.8rem; text-transform: uppercase; margin-bottom: 0.4rem; } #contact-form label span { position: absolute; top: 2px; left: -7px; color: #FF5E5E; } #contact-form input, #contact-form textarea { padding: 10px 10px; border: 1px solid #2D2D29; border-radius: 2px; } #contact-form input:focus, #contact-form textarea:focus { outline: 0; } #contact-form .form-input-wrapper input { width: 100%; } #contact-form .form-textarea-wrapper textarea { width: 100%; height: 80px; } #contact-form button { padding: 4px 10px; border: 0; border-radius: 2px; transition: background 0.3s ease-in-out; } #contact-form button:focus { outline: 0; } #contact-form button:hover { cursor: pointer; } #contact-form button[type=submit] { color: #2D2D29; background: #FCFFFD; margin-right: 1rem; } #contact-form button[type=submit]:hover { background: #92c5fc; } #contact-form button[type=reset] { color: #2D2D29; background: #FCFFFD; } #contact-form button[type=reset]:hover { background: #92c5fc; }
0.610918
0.146209
.multilevelpushmenu_wrapper { position: absolute; overflow: hidden; min-width: 100%; min-height: 100%; margin: 0; padding: 0; } .multilevelpushmenu_wrapper .levelHolderClass { position: absolute; overflow: hidden; top: 0; background: #336ca6; width: auto; min-height: 100%; font-family: 'Open Sans Condensed', sans-serif; font-size: 1em; zoom: 1; } .multilevelpushmenu_wrapper .ltr { margin-left: -100%; left: 0; -moz-box-shadow: 5px 0 5px -5px #1f4164; -webkit-box-shadow: 5px 0 5px -5px #1f4164; box-shadow: 5px 0 5px -5px #1f4164; filter: progid:DXImageTransform.Microsoft.Shadow(color=#1f4164, direction=90, strength=2); } .multilevelpushmenu_wrapper .rtl { margin-right: -100%; right: 0; -moz-box-shadow: 5px 0 5px 5px #1f4164; -webkit-box-shadow: 5px 0 5px 5px #1f4164; box-shadow: 5px 0 5px 5px #1f4164; filter: progid:DXImageTransform.Microsoft.Shadow(color=#1f4164, direction=270, strength=2); } .multilevelpushmenu_wrapper .multilevelpushmenu_inactive { background: #2e6196; } .multilevelpushmenu_wrapper h2 { font-size: 1.5em; line-height: 1em; font-weight: bold; color: #1f4164; padding: 0 .4em 0 .4em; } .multilevelpushmenu_wrapper ul { list-style: none; padding: 0; margin: 0; } .multilevelpushmenu_wrapper li { cursor: pointer; border-top: 1px solid #295685; padding: .4em .4em .4em .4em; } .multilevelpushmenu_wrapper li:last-child { border-bottom: 1px solid #295685; } .multilevelpushmenu_wrapper li:hover { background-color: #295685; } .multilevelpushmenu_wrapper a { display: block; outline: none; overflow: hidden; font-size: 1.5em; line-height: 1em; padding: .2em .2em; text-decoration: none; color: #fff; } .multilevelpushmenu_wrapper a:hover { color: #ffe; } .multilevelpushmenu_wrapper .backItemClass { display: block; padding: .4em .4em .4em .4em; background: #2e6196; border-top: 1px solid #295685; } .multilevelpushmenu_wrapper .floatRight { float: right; } .multilevelpushmenu_wrapper .floatLeft { float: left; } .multilevelpushmenu_wrapper .cursorPointer { cursor: pointer; } .multilevelpushmenu_wrapper .iconSpacing_ltr { padding: 0 .4em 0 0; } .multilevelpushmenu_wrapper .iconSpacing_rtl { padding: 0 0 0 .4em; } .multilevelpushmenu_wrapper h2>img, .multilevelpushmenu_wrapper a>img { max-height: 1em; }
Resources/CSS/jquery.multilevelpushmenu.css
.multilevelpushmenu_wrapper { position: absolute; overflow: hidden; min-width: 100%; min-height: 100%; margin: 0; padding: 0; } .multilevelpushmenu_wrapper .levelHolderClass { position: absolute; overflow: hidden; top: 0; background: #336ca6; width: auto; min-height: 100%; font-family: 'Open Sans Condensed', sans-serif; font-size: 1em; zoom: 1; } .multilevelpushmenu_wrapper .ltr { margin-left: -100%; left: 0; -moz-box-shadow: 5px 0 5px -5px #1f4164; -webkit-box-shadow: 5px 0 5px -5px #1f4164; box-shadow: 5px 0 5px -5px #1f4164; filter: progid:DXImageTransform.Microsoft.Shadow(color=#1f4164, direction=90, strength=2); } .multilevelpushmenu_wrapper .rtl { margin-right: -100%; right: 0; -moz-box-shadow: 5px 0 5px 5px #1f4164; -webkit-box-shadow: 5px 0 5px 5px #1f4164; box-shadow: 5px 0 5px 5px #1f4164; filter: progid:DXImageTransform.Microsoft.Shadow(color=#1f4164, direction=270, strength=2); } .multilevelpushmenu_wrapper .multilevelpushmenu_inactive { background: #2e6196; } .multilevelpushmenu_wrapper h2 { font-size: 1.5em; line-height: 1em; font-weight: bold; color: #1f4164; padding: 0 .4em 0 .4em; } .multilevelpushmenu_wrapper ul { list-style: none; padding: 0; margin: 0; } .multilevelpushmenu_wrapper li { cursor: pointer; border-top: 1px solid #295685; padding: .4em .4em .4em .4em; } .multilevelpushmenu_wrapper li:last-child { border-bottom: 1px solid #295685; } .multilevelpushmenu_wrapper li:hover { background-color: #295685; } .multilevelpushmenu_wrapper a { display: block; outline: none; overflow: hidden; font-size: 1.5em; line-height: 1em; padding: .2em .2em; text-decoration: none; color: #fff; } .multilevelpushmenu_wrapper a:hover { color: #ffe; } .multilevelpushmenu_wrapper .backItemClass { display: block; padding: .4em .4em .4em .4em; background: #2e6196; border-top: 1px solid #295685; } .multilevelpushmenu_wrapper .floatRight { float: right; } .multilevelpushmenu_wrapper .floatLeft { float: left; } .multilevelpushmenu_wrapper .cursorPointer { cursor: pointer; } .multilevelpushmenu_wrapper .iconSpacing_ltr { padding: 0 .4em 0 0; } .multilevelpushmenu_wrapper .iconSpacing_rtl { padding: 0 0 0 .4em; } .multilevelpushmenu_wrapper h2>img, .multilevelpushmenu_wrapper a>img { max-height: 1em; }
0.45423
0.075927
* { box-sizing: border-box; } html { scroll-behavior: smooth; } body{ display: grid; grid-template-columns: auto 550px auto; background-color: #395D5E; margin:0; } header { display: flex; justify-content: center; grid-column: span 3; margin-bottom: 1em; background-color: #F4CFB4; } h1, h2 { text-align: center; font-family: '<NAME>'; } h1{ font-size: 8em; margin: 0.4em 0em; line-height: 80px; } h2{ font-size: 30px; } img { max-width: 100%; align-self: center; } main{ grid-column-start: 2; background-color: #FFF2E9; border-radius: 10px; font-family: Montserrat; display: flex; flex-direction: column; padding:1em 0em; } textarea { float: left; width: 100%; } button { cursor: pointer; } .div-react { margin-top: 2em; /* margin-bottom: 2em; */ display: flex; justify-content: space-between; } .likes, .smiles, .cries { margin-right: 0.25em; margin-left: 1em; border-radius: 5px; font-size: 1.15em; } #new-post-form { display: none; border: solid 3px #C93429; border-radius: 5px; margin: 1em 2em; padding: 2em; flex-direction: column; } #post-form-top { display: flex; justify-content: space-between; margin-bottom: 1em; } #formErrors{ height: 1em; } #counter { align-self: flex-end; margin-top: 0.75em; } #selectedGif { display: flex; align-items: flex-start; margin: 1em 0em; } #selectedGif input{ height: 2em; width: 2em; border-radius: 50%; border:none; background-color: #C93429; color: white; font-weight: 1000; } #selectedGif img { margin-right: -15px; } #gifForm{ margin-top: 1em; } #gifContainer{ margin-top: 1em; display: grid; grid-template-columns: repeat(2, 1fr); } #gifContainer img { height:100%; object-fit: cover; } .add-comment-form { display: flex; flex-direction:column; } .comment-btn { align-self: flex-end; } .input-form { margin-top: 1em; margin-bottom: 0.75em; } .comments-div { margin-top: 2em; text-align: start; } .author-date-div { display: flex; justify-content: space-between; } .post { display: flex; flex-direction: column; } article { border: solid 3px #C93429; border-radius: 5px; margin: 1em 2em; padding: 2em; background-color: white; text-align: center; } #showMorePosts{ width: 1.5em; border: none; font-size: 3em; background: none; cursor: pointer; align-self: center; } footer { display: flex; justify-content: center; grid-column: span 3; font-family: MontSerrat; } #footer-container { display: flex; flex-direction: column; margin-top: 2em; } .footer-p { text-align: center; margin: 0.3em 0em; font-size: 0.8em; color: #FFF2E9; } .float-btn { width: 70px; height: 70px; border-radius: 50%; color: white; border: solid 5px #C5A48D; box-sizing: border-box; position: fixed; bottom: 40px; right: 40px; cursor: pointer; } .icon{ position: absolute; left: -1px; top:-1px; } .loader { border: 10px solid #f3f3f3; /* Light grey */ border-top: 10px solid black; /* Blue */ border-radius: 50%; width: 3em; height: 3em; animation: spin 0.7s linear infinite; margin:1em; align-self: center; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } @media only screen and (max-width: 550px) { body{ display: block; } header{ padding: 0em 1.5em; } body main{ border-radius: 0; } article, #new-post-form{ margin: 0.37em 0.75em 0.37em 0.75em; padding: 1.25em; font-size: 1.5em; } body #userPoem{ height: 39vh; } #post-form-author { display: flex; flex-direction: column; } #poemTitle{ width:100%; } #poemTitle, #userPoem, #gifSearch{ font-size: 1em; font-family: MontSerrat; margin-top: .1em; } #form-btns{ display: flex; justify-content: space-around; } #addGif, #submitPoem, #gifWord{ font-size: 1em; } #gifWord{ width: 100%; } #closeForm{ height: 35px; } #post-form-top{ align-items: flex-end; } .p-date, .p-author{ margin: 0.5em 0em; font-size: .8em; text-align: start; } .author-date-div{ flex-direction: column; align-items: flex-start; } .likes, .smiles, .cries { margin-right: 0.10em; margin-left: 0.75em; border-radius: 5px; } } .p-title{ font-size: 2em; margin:0.5em 0em; } .p-author, .p-date{ color: grey; } button , input { font-family: Montserrat; }
client/static/css/style.css
* { box-sizing: border-box; } html { scroll-behavior: smooth; } body{ display: grid; grid-template-columns: auto 550px auto; background-color: #395D5E; margin:0; } header { display: flex; justify-content: center; grid-column: span 3; margin-bottom: 1em; background-color: #F4CFB4; } h1, h2 { text-align: center; font-family: '<NAME>'; } h1{ font-size: 8em; margin: 0.4em 0em; line-height: 80px; } h2{ font-size: 30px; } img { max-width: 100%; align-self: center; } main{ grid-column-start: 2; background-color: #FFF2E9; border-radius: 10px; font-family: Montserrat; display: flex; flex-direction: column; padding:1em 0em; } textarea { float: left; width: 100%; } button { cursor: pointer; } .div-react { margin-top: 2em; /* margin-bottom: 2em; */ display: flex; justify-content: space-between; } .likes, .smiles, .cries { margin-right: 0.25em; margin-left: 1em; border-radius: 5px; font-size: 1.15em; } #new-post-form { display: none; border: solid 3px #C93429; border-radius: 5px; margin: 1em 2em; padding: 2em; flex-direction: column; } #post-form-top { display: flex; justify-content: space-between; margin-bottom: 1em; } #formErrors{ height: 1em; } #counter { align-self: flex-end; margin-top: 0.75em; } #selectedGif { display: flex; align-items: flex-start; margin: 1em 0em; } #selectedGif input{ height: 2em; width: 2em; border-radius: 50%; border:none; background-color: #C93429; color: white; font-weight: 1000; } #selectedGif img { margin-right: -15px; } #gifForm{ margin-top: 1em; } #gifContainer{ margin-top: 1em; display: grid; grid-template-columns: repeat(2, 1fr); } #gifContainer img { height:100%; object-fit: cover; } .add-comment-form { display: flex; flex-direction:column; } .comment-btn { align-self: flex-end; } .input-form { margin-top: 1em; margin-bottom: 0.75em; } .comments-div { margin-top: 2em; text-align: start; } .author-date-div { display: flex; justify-content: space-between; } .post { display: flex; flex-direction: column; } article { border: solid 3px #C93429; border-radius: 5px; margin: 1em 2em; padding: 2em; background-color: white; text-align: center; } #showMorePosts{ width: 1.5em; border: none; font-size: 3em; background: none; cursor: pointer; align-self: center; } footer { display: flex; justify-content: center; grid-column: span 3; font-family: MontSerrat; } #footer-container { display: flex; flex-direction: column; margin-top: 2em; } .footer-p { text-align: center; margin: 0.3em 0em; font-size: 0.8em; color: #FFF2E9; } .float-btn { width: 70px; height: 70px; border-radius: 50%; color: white; border: solid 5px #C5A48D; box-sizing: border-box; position: fixed; bottom: 40px; right: 40px; cursor: pointer; } .icon{ position: absolute; left: -1px; top:-1px; } .loader { border: 10px solid #f3f3f3; /* Light grey */ border-top: 10px solid black; /* Blue */ border-radius: 50%; width: 3em; height: 3em; animation: spin 0.7s linear infinite; margin:1em; align-self: center; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } @media only screen and (max-width: 550px) { body{ display: block; } header{ padding: 0em 1.5em; } body main{ border-radius: 0; } article, #new-post-form{ margin: 0.37em 0.75em 0.37em 0.75em; padding: 1.25em; font-size: 1.5em; } body #userPoem{ height: 39vh; } #post-form-author { display: flex; flex-direction: column; } #poemTitle{ width:100%; } #poemTitle, #userPoem, #gifSearch{ font-size: 1em; font-family: MontSerrat; margin-top: .1em; } #form-btns{ display: flex; justify-content: space-around; } #addGif, #submitPoem, #gifWord{ font-size: 1em; } #gifWord{ width: 100%; } #closeForm{ height: 35px; } #post-form-top{ align-items: flex-end; } .p-date, .p-author{ margin: 0.5em 0em; font-size: .8em; text-align: start; } .author-date-div{ flex-direction: column; align-items: flex-start; } .likes, .smiles, .cries { margin-right: 0.10em; margin-left: 0.75em; border-radius: 5px; } } .p-title{ font-size: 2em; margin:0.5em 0em; } .p-author, .p-date{ color: grey; } button , input { font-family: Montserrat; }
0.507568
0.138404
body{ background: none !important; } .img-full { width: 100%;min-height: 350px;max-height: 350px; } .nen1 { width: 100%;min-height: 350px;max-height: 350px;background-color: #302F2F;padding-top: 90px; } .nen1 h2 { color: #fff; } .img-profiles img { width:150px; height:125px; min-height: 125px;max-height: 125px; } .docs-pictures li { margin-top: 15px!important; } .docs-pictures li img { width: 1px !important; } .jp-video-270p { width: 100% !important; } .jp-jplayer{ width: 100% !important; text-align: center; } .remove_padding{ padding: 0px !important; } .view_style_text{ color: #eee; } .mb1-blog-img{ float: left; margin-right: 5px; } .wp_content_list{ border-bottom: 1px solid #080808; box-shadow: 0 1px 0 rgba(34, 34, 34, 0.8); -webkit-box-shadow: 0 1px 0 rgba(34, 34, 34, 0.8); margin: 15px 0; overflow: hidden; padding-bottom: 5px; } .wp_content_list:last-child{ border: none; box-shadow: none; -webkit-box-shadow: none; } .remove_part{ background: url('../../images/icon/cancel_3-icon.png') no-repeat; width: 20px; height: 20px; position: absolute; right: 10px; top: 6px; cursor: pointer; display: none; z-index: 99; } .liner_landing{ display: block; width: 100%; border-bottom: 1px solid #080808; box-shadow: 0 1px 0 rgba(34, 34, 34, 0.8); -webkit-box-shadow: 0 1px 0 rgba(34, 34, 34, 0.8); margin: -1px 0 15px; } .header_new_style h2.tt{ padding: 10px; margin: 0; border-bottom: 1px solid red; display: inline-block; font-family: oswaldlight; font-size: 22px; font-weight: bold; color: #fff; } .bg-landing{ background: url('../../../../assets/images/bg/8277771-hd-backgrounds.jpg') fixed; background-position: 50% 50%; background-attachment: fixed; background-color: rgb(0, 0, 0); } .header_new_style{ position: relative; margin: 0px 5px; margin-bottom: 20px; padding: 10px; background: rgba(0, 0, 0, 0.9); border: 0px solid #000000; /*Firefox*/ -moz-border-top-left-radius: 8px; -moz-border-top-right-radius: 8px; -moz-border-bottom-right-radius: 8px; -moz-border-bottom-left-radius: 8px; /*Safari, Chrome*/ -webkit-border-top-left-radius: 8px; -webkit-border-top-right-radius: 8px; -webkit-border-bottom-right-radius: 8px; -webkit-border-bottom-left-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; border-bottom-right-radius: 8px; border-bottom-left-radius: 8px; } .icon_part{ width: 30px; position: relative; top: -4px; } .image_fix_value{ width: 290px; height: 250px; background-position: 50% 25% !important; background-size: cover !important; transition-duration: 500ms; transition-property: width, height; cursor: pointer; margin: 0px auto; } .image_fix_value_video{ width: 80px; height: 80px; background-position: 50% 25% !important; background-size: cover !important; transition-duration: 500ms; transition-property: width, height; cursor: pointer; } .image_fix_value_video_1{ width: 130px; height: 90px; background-position: 50% 25% !important; background-size: cover !important; transition-duration: 500ms; transition-property: width, height; cursor: pointer; } .box{ margin-bottom: 20px; padding: 30px 15px; background: rgba(255,255,255,0.7); } .new_style_add{ margin: 0px auto; float: none; overflow: hidden; } .intro-text{ font-size: 2em; } .add_session{ padding: 20px 0; overflow: hidden; } .remove_padding_new{ padding: 0px 10px !important; } .row{ margin-left: 0px !important; } .cmt { font-size: 16px; } .cmt img { width: 60px; min-height: 40px;margin-bottom: 5px;margin-right: 10px; } .cmt span { font-size: 12px; } .content_video_title { font-size: 18px; font-weight: bold; color: #337ab7; } .mxh p { margin-top: 20px;margin-bottom: 20px; } .mxh p a span { height:24px;width:24px; } .wp_content_list .full-w { font-size: 16px;margin-left: 15px; } .wp_content_list .full-w-tt { float: right; } .wp_content_list .full-w-tt span { color: #57ce57;font-size: 12px;margin-right: 20px; }
assets/css/amper/template/landing-page-5.css
body{ background: none !important; } .img-full { width: 100%;min-height: 350px;max-height: 350px; } .nen1 { width: 100%;min-height: 350px;max-height: 350px;background-color: #302F2F;padding-top: 90px; } .nen1 h2 { color: #fff; } .img-profiles img { width:150px; height:125px; min-height: 125px;max-height: 125px; } .docs-pictures li { margin-top: 15px!important; } .docs-pictures li img { width: 1px !important; } .jp-video-270p { width: 100% !important; } .jp-jplayer{ width: 100% !important; text-align: center; } .remove_padding{ padding: 0px !important; } .view_style_text{ color: #eee; } .mb1-blog-img{ float: left; margin-right: 5px; } .wp_content_list{ border-bottom: 1px solid #080808; box-shadow: 0 1px 0 rgba(34, 34, 34, 0.8); -webkit-box-shadow: 0 1px 0 rgba(34, 34, 34, 0.8); margin: 15px 0; overflow: hidden; padding-bottom: 5px; } .wp_content_list:last-child{ border: none; box-shadow: none; -webkit-box-shadow: none; } .remove_part{ background: url('../../images/icon/cancel_3-icon.png') no-repeat; width: 20px; height: 20px; position: absolute; right: 10px; top: 6px; cursor: pointer; display: none; z-index: 99; } .liner_landing{ display: block; width: 100%; border-bottom: 1px solid #080808; box-shadow: 0 1px 0 rgba(34, 34, 34, 0.8); -webkit-box-shadow: 0 1px 0 rgba(34, 34, 34, 0.8); margin: -1px 0 15px; } .header_new_style h2.tt{ padding: 10px; margin: 0; border-bottom: 1px solid red; display: inline-block; font-family: oswaldlight; font-size: 22px; font-weight: bold; color: #fff; } .bg-landing{ background: url('../../../../assets/images/bg/8277771-hd-backgrounds.jpg') fixed; background-position: 50% 50%; background-attachment: fixed; background-color: rgb(0, 0, 0); } .header_new_style{ position: relative; margin: 0px 5px; margin-bottom: 20px; padding: 10px; background: rgba(0, 0, 0, 0.9); border: 0px solid #000000; /*Firefox*/ -moz-border-top-left-radius: 8px; -moz-border-top-right-radius: 8px; -moz-border-bottom-right-radius: 8px; -moz-border-bottom-left-radius: 8px; /*Safari, Chrome*/ -webkit-border-top-left-radius: 8px; -webkit-border-top-right-radius: 8px; -webkit-border-bottom-right-radius: 8px; -webkit-border-bottom-left-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; border-bottom-right-radius: 8px; border-bottom-left-radius: 8px; } .icon_part{ width: 30px; position: relative; top: -4px; } .image_fix_value{ width: 290px; height: 250px; background-position: 50% 25% !important; background-size: cover !important; transition-duration: 500ms; transition-property: width, height; cursor: pointer; margin: 0px auto; } .image_fix_value_video{ width: 80px; height: 80px; background-position: 50% 25% !important; background-size: cover !important; transition-duration: 500ms; transition-property: width, height; cursor: pointer; } .image_fix_value_video_1{ width: 130px; height: 90px; background-position: 50% 25% !important; background-size: cover !important; transition-duration: 500ms; transition-property: width, height; cursor: pointer; } .box{ margin-bottom: 20px; padding: 30px 15px; background: rgba(255,255,255,0.7); } .new_style_add{ margin: 0px auto; float: none; overflow: hidden; } .intro-text{ font-size: 2em; } .add_session{ padding: 20px 0; overflow: hidden; } .remove_padding_new{ padding: 0px 10px !important; } .row{ margin-left: 0px !important; } .cmt { font-size: 16px; } .cmt img { width: 60px; min-height: 40px;margin-bottom: 5px;margin-right: 10px; } .cmt span { font-size: 12px; } .content_video_title { font-size: 18px; font-weight: bold; color: #337ab7; } .mxh p { margin-top: 20px;margin-bottom: 20px; } .mxh p a span { height:24px;width:24px; } .wp_content_list .full-w { font-size: 16px;margin-left: 15px; } .wp_content_list .full-w-tt { float: right; } .wp_content_list .full-w-tt span { color: #57ce57;font-size: 12px;margin-right: 20px; }
0.385606
0.083106
.frage { width: 100%; word-wrap: break-word; } #logo { position: fixed; right: 1.5em; top: 1em; width: 2.5em; -webkit-filter: drop-shadow(5px 5px 5px #222); filter: drop-shadow(5px 5px 5px #222); } #badge { position: fixed; left: 1.5em; top: 1em; width: 2.5em; } #AntwortRichtig { margin-bottom: 15px; color: #008744; font-weight: bold; } #AntwortFalsch { margin-bottom: 15px; color: #e10c14; font-weight: bold; } .text-field { margin-top: 15px; margin-bottom: 15px; } .header-img { margin-bottom: 15px; } .map-small { width: 100%; height: 200px; background-color: grey; } .map-small .img-responsive { margin: 0 auto; display: block; width: auto; max-height: 100%; } .locationName { opacity: 0.7; position: absolute; top: 0; background-color: #fff; width: 100%; padding: 5px 10px; } .locationBadge { opacity: 0.7; position: absolute; top: 0; background-color: #fff; width: 78%; padding: 5px 10px; z-index: 3; } .locationTitle { opacity: 0.7; position: relative; bottom: 4.7rem; background-color: #fff; width: 100%; margin: 0; padding: 5px 10px; z-index: 3; } .imageDescription { opacity: 0.7; position: relative; bottom: 2.8rem; background-color: #fff; width: 100%; padding: 5px 10px; z-index: 3; } #bottomNav { padding:10px; } #bottomNav a { /* font-size:24pt;*/ color:#ddd; text-decoration:none; } #bottomNav a:hover { color:#fff; } .row.is-flex { display: flex; flex-wrap: wrap; } .row.is-flex > [class*='col-'] { display: flex; flex-direction: column; } .row.row-horizon { background-color: #555; padding-bottom: 2em; padding-top: 2em; vertical-align: middle; } .row-horizon > [class*="col-lg"], .row-horizon > [class*="col-md"], .row-horizon > [class*="col-sm"], .row-horizon > [class*="col-xs"] { vertical-align: middle; } .panel { margin-bottom: 0; } /* * And with max cross-browser enabled. * Nobody should ever write this by hand. * Use a preprocesser with autoprefixing. */ .row.is-flex { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; } .row.is-flex > [class*='col-'] { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; } body { padding-bottom: 60px; } .page-header { margin-top: 50px; } .map-big { width: 100%; height: 260px; background-color: grey; } .cards { width: 100%; height: 140px; object-fit: cover; } .fa-lightbulb-o { font-size: 2.5em; margin-right: 10px; } kbd { white-space: nowrap; background-color: #37569a; } @media (min-width: 768px) { body { padding-bottom: 120px; } .map-big { height: 320px; } .cards { height: 320px; } } @media (min-width: 992px) { body { padding-bottom: 120px; } .map-big { height: 360px; } .cards { height: 360px; } } @media (min-width: 1200px) { body { padding-bottom: 120px; } .map-big { height: 400px; } .cards { height: 400px; } }
src/main/webapp/resources/css/styles.css
.frage { width: 100%; word-wrap: break-word; } #logo { position: fixed; right: 1.5em; top: 1em; width: 2.5em; -webkit-filter: drop-shadow(5px 5px 5px #222); filter: drop-shadow(5px 5px 5px #222); } #badge { position: fixed; left: 1.5em; top: 1em; width: 2.5em; } #AntwortRichtig { margin-bottom: 15px; color: #008744; font-weight: bold; } #AntwortFalsch { margin-bottom: 15px; color: #e10c14; font-weight: bold; } .text-field { margin-top: 15px; margin-bottom: 15px; } .header-img { margin-bottom: 15px; } .map-small { width: 100%; height: 200px; background-color: grey; } .map-small .img-responsive { margin: 0 auto; display: block; width: auto; max-height: 100%; } .locationName { opacity: 0.7; position: absolute; top: 0; background-color: #fff; width: 100%; padding: 5px 10px; } .locationBadge { opacity: 0.7; position: absolute; top: 0; background-color: #fff; width: 78%; padding: 5px 10px; z-index: 3; } .locationTitle { opacity: 0.7; position: relative; bottom: 4.7rem; background-color: #fff; width: 100%; margin: 0; padding: 5px 10px; z-index: 3; } .imageDescription { opacity: 0.7; position: relative; bottom: 2.8rem; background-color: #fff; width: 100%; padding: 5px 10px; z-index: 3; } #bottomNav { padding:10px; } #bottomNav a { /* font-size:24pt;*/ color:#ddd; text-decoration:none; } #bottomNav a:hover { color:#fff; } .row.is-flex { display: flex; flex-wrap: wrap; } .row.is-flex > [class*='col-'] { display: flex; flex-direction: column; } .row.row-horizon { background-color: #555; padding-bottom: 2em; padding-top: 2em; vertical-align: middle; } .row-horizon > [class*="col-lg"], .row-horizon > [class*="col-md"], .row-horizon > [class*="col-sm"], .row-horizon > [class*="col-xs"] { vertical-align: middle; } .panel { margin-bottom: 0; } /* * And with max cross-browser enabled. * Nobody should ever write this by hand. * Use a preprocesser with autoprefixing. */ .row.is-flex { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; } .row.is-flex > [class*='col-'] { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; } body { padding-bottom: 60px; } .page-header { margin-top: 50px; } .map-big { width: 100%; height: 260px; background-color: grey; } .cards { width: 100%; height: 140px; object-fit: cover; } .fa-lightbulb-o { font-size: 2.5em; margin-right: 10px; } kbd { white-space: nowrap; background-color: #37569a; } @media (min-width: 768px) { body { padding-bottom: 120px; } .map-big { height: 320px; } .cards { height: 320px; } } @media (min-width: 992px) { body { padding-bottom: 120px; } .map-big { height: 360px; } .cards { height: 360px; } } @media (min-width: 1200px) { body { padding-bottom: 120px; } .map-big { height: 400px; } .cards { height: 400px; } }
0.431584
0.181336
font-size: 4em; font-family: 'Rokkitt', serif; text-shadow: 1px 1px 2px black; color: white; text-align: right; margin-top: 10%; } [class*='col-'] { padding-top: 15px; padding-bottom: 15px; } .login { width: 350px; background: #fff; margin-top: 13%; border-radius: 10px; } .login, #button { float: right; margin-right: 13%; } .mini-submenu{ display:none; background-color: rgba(0, 0, 0, 0); border: 1px solid rgba(0, 0, 0, 0.9); border-radius: 4px; padding: 9px; /*position: relative;*/ width: 42px; } .mini-submenu:hover{ cursor: pointer; } .mini-submenu .icon-bar { border-radius: 1px; display: block; height: 2px; width: 22px; margin-top: 3px; } .mini-submenu .icon-bar { background-color: #000; } #slide-submenu{ background: rgba(0, 0, 0, 0.45); display: inline-block; padding: 0 8px; border-radius: 4px; cursor: pointer; } .top { width:100%; height: auto; } .mid { margin-top: 51px; width: 80%; margin-left: auto; margin-right: 20%; height: auto; } .right { width: 20%; margin-right: 0; margin-left: auto; } .right .fullW { width: auto; } .mid .fullW { width: auto; } .sidebar { float: right; } .h2down { margin-left: 11%; } .dash-unit {/*프로필 테두리*/ margin-bottom: 30px; padding-bottom:10px; border: 1px solid #383737; background-image:url('../img/sep-half.png'); background-color: #3d3d3d; height:200px; width: 200px; } .dash-unit:hover { background-color: #4f4f4f; -moz-box-shadow: 3px 3px 2px 0px #151515; -webkit-box-shadow: 3px 3px 2px 0px #151515; box-shadow: 3px 3px 2px 0px #151515; } .dash-unit dtitle {/*프로필 제목*/ font-size:11px; text-transform:uppercase; color:#ffffff; margin:8px; padding:0px; height:inherit } .dash-unit hr {/*프로필 밑줄*/ border: 0; border-top: 1px solid #151515; border-top-style: dashed; margin-top:3px; } .dash-unit h1 { font-family: 'Raleway', sans-serif; font-weight:300; font-size: 20px; line-height: 2px; letter-spacing: 0px; color: #ffffff; padding-top:10px; padding-left:5px; margin-top:2px; text-align:left; } .dash-unit h3 { font-weight:300; font-size: 15px; line-height: 2px; letter-spacing: 0px; color: #b2c831; padding-top:10px; padding-left:5px; margin-top:2px; text-align:left; } .dash-unit p { font-size: 14px; font-weight: 200; line-height: 16px; color: inherit; margin: 0 0 10px; padding:5px; } .dash-unit bold{ font-family: 'Open Sans', sans-serif; font-size:26px; font-weight:bold; color:#fff; vertical-align:middle; } .content-img {/*프로필 이미지 자동 맞춤*/ float: right; max-width: 50% ; width: 100%; height: auto ; margin-right: 20px; } .dash-unit .icon-holder{ position: relative; display: inline-block; -webkit-transition: all 0.3s ease; transition: all 0.3s ease; margin-left: 17%; } .follow-img{ width: 100px; height: 100px; float: left; margin-right: 15px; } .follow-img-font{ font-family: HY나무M; font-size: 20px; } li { list-style: none; } #followimg-margin li{ margin-top: 5%; margin-bottom: 5%; } hr{ border: dashed 1px #989da0; } .profile-img{ position: relative; width: 200px; height: 250px; } .logout-font{ font-size: 24px; color: #00a8ff; margin-left: 28%; } .profile-position{ position: relative; } .username{ text-align: center; } .follow { margin-left: 50px; margin-top: 60px; } .follow_title { margin-left: 30px; margin-bottom: 30px; font-size: 35px; text-align: center; padding: 0; color: #5d5d5d; } .follow_list { margin-left: 50px; margin-bottom: 30px; border:1px solid #b6b6b6; padding: 0; } #follow_nick{ margin-top: 15px; font-size: 16px; color: #004c7a; font-weight: bold; } #follow_info{ font-size: 15px; } #follow_button{ float: right; margin-right: 25px; } #follow-img{ width: 150px; height: 150px; }
public/css/style.css
font-size: 4em; font-family: 'Rokkitt', serif; text-shadow: 1px 1px 2px black; color: white; text-align: right; margin-top: 10%; } [class*='col-'] { padding-top: 15px; padding-bottom: 15px; } .login { width: 350px; background: #fff; margin-top: 13%; border-radius: 10px; } .login, #button { float: right; margin-right: 13%; } .mini-submenu{ display:none; background-color: rgba(0, 0, 0, 0); border: 1px solid rgba(0, 0, 0, 0.9); border-radius: 4px; padding: 9px; /*position: relative;*/ width: 42px; } .mini-submenu:hover{ cursor: pointer; } .mini-submenu .icon-bar { border-radius: 1px; display: block; height: 2px; width: 22px; margin-top: 3px; } .mini-submenu .icon-bar { background-color: #000; } #slide-submenu{ background: rgba(0, 0, 0, 0.45); display: inline-block; padding: 0 8px; border-radius: 4px; cursor: pointer; } .top { width:100%; height: auto; } .mid { margin-top: 51px; width: 80%; margin-left: auto; margin-right: 20%; height: auto; } .right { width: 20%; margin-right: 0; margin-left: auto; } .right .fullW { width: auto; } .mid .fullW { width: auto; } .sidebar { float: right; } .h2down { margin-left: 11%; } .dash-unit {/*프로필 테두리*/ margin-bottom: 30px; padding-bottom:10px; border: 1px solid #383737; background-image:url('../img/sep-half.png'); background-color: #3d3d3d; height:200px; width: 200px; } .dash-unit:hover { background-color: #4f4f4f; -moz-box-shadow: 3px 3px 2px 0px #151515; -webkit-box-shadow: 3px 3px 2px 0px #151515; box-shadow: 3px 3px 2px 0px #151515; } .dash-unit dtitle {/*프로필 제목*/ font-size:11px; text-transform:uppercase; color:#ffffff; margin:8px; padding:0px; height:inherit } .dash-unit hr {/*프로필 밑줄*/ border: 0; border-top: 1px solid #151515; border-top-style: dashed; margin-top:3px; } .dash-unit h1 { font-family: 'Raleway', sans-serif; font-weight:300; font-size: 20px; line-height: 2px; letter-spacing: 0px; color: #ffffff; padding-top:10px; padding-left:5px; margin-top:2px; text-align:left; } .dash-unit h3 { font-weight:300; font-size: 15px; line-height: 2px; letter-spacing: 0px; color: #b2c831; padding-top:10px; padding-left:5px; margin-top:2px; text-align:left; } .dash-unit p { font-size: 14px; font-weight: 200; line-height: 16px; color: inherit; margin: 0 0 10px; padding:5px; } .dash-unit bold{ font-family: 'Open Sans', sans-serif; font-size:26px; font-weight:bold; color:#fff; vertical-align:middle; } .content-img {/*프로필 이미지 자동 맞춤*/ float: right; max-width: 50% ; width: 100%; height: auto ; margin-right: 20px; } .dash-unit .icon-holder{ position: relative; display: inline-block; -webkit-transition: all 0.3s ease; transition: all 0.3s ease; margin-left: 17%; } .follow-img{ width: 100px; height: 100px; float: left; margin-right: 15px; } .follow-img-font{ font-family: HY나무M; font-size: 20px; } li { list-style: none; } #followimg-margin li{ margin-top: 5%; margin-bottom: 5%; } hr{ border: dashed 1px #989da0; } .profile-img{ position: relative; width: 200px; height: 250px; } .logout-font{ font-size: 24px; color: #00a8ff; margin-left: 28%; } .profile-position{ position: relative; } .username{ text-align: center; } .follow { margin-left: 50px; margin-top: 60px; } .follow_title { margin-left: 30px; margin-bottom: 30px; font-size: 35px; text-align: center; padding: 0; color: #5d5d5d; } .follow_list { margin-left: 50px; margin-bottom: 30px; border:1px solid #b6b6b6; padding: 0; } #follow_nick{ margin-top: 15px; font-size: 16px; color: #004c7a; font-weight: bold; } #follow_info{ font-size: 15px; } #follow_button{ float: right; margin-right: 25px; } #follow-img{ width: 150px; height: 150px; }
0.357007
0.112795
@charset "UTF-8"; @font-face { font-family: 'OpenWeb Icons'; src: url("../font/openwebicons.eot"); src: url("../font/openwebicons.eot?#iefix") format("embedded-opentype"), url("../font/openwebicons.woff2") format("woff2"), url("../font/openwebicons.woff") format("woff"), url("../font/openwebicons.ttf") format("truetype"), url("../font/openwebicons.svg#openweb_iconsregular") format("svg"); font-weight: normal; font-style: normal; } [class^="openwebicons-"]:before, [class*=" openwebicons-"]:before { font-family: 'OpenWeb Icons'; font-weight: normal; font-style: normal; display: inline-block; text-decoration: inherit; vertical-align: center; font-smoothing: antialiased; -webkit-font-smoothing: antialiased; } a [class^="openwebicons-"], a [class*=" openwebicons-"] { display: inline-block; text-decoration: inherit; } li[class^="openwebicons-"], li[class*=" openwebicons-"] { display: block; } .openwebicons-apml:before { content: ""; } .openwebicons-open-share:before { content: ""; } .openwebicons-open-share-simple:before { content: ""; } .openwebicons-share:before { content: ""; } .openwebicons-share-simple:before { content: ""; } .openwebicons-feed:before { content: ""; } .openwebicons-feed-simple:before { content: ""; } .openwebicons-ostatus:before { content: ""; } .openwebicons-ostatus-simple:before { content: ""; } .openwebicons-opml:before { content: ""; } .openwebicons-activity:before { content: ""; } .openwebicons-activity-simple:before { content: ""; } .openwebicons-microformats:before { content: ""; } .openwebicons-geo:before { content: ""; } .openwebicons-opensearch:before { content: ""; } .openwebicons-oauth:before { content: ""; } .openwebicons-openid:before { content: ""; } .openwebicons-semantic-web:before { content: ""; } .openwebicons-rdf:before { content: ""; } .openwebicons-rdfa:before { content: ""; } .openwebicons-owl:before { content: ""; } .openwebicons-dataportability:before { content: ""; } .openwebicons-federated:before { content: ""; } .openwebicons-web-intents:before { content: ""; } .openwebicons-open-web:before { content: ""; } .openwebicons-xmpp:before { content: ""; } .openwebicons-html5:before { content: ""; } .openwebicons-css3:before { content: ""; } .openwebicons-connectivity:before { content: ""; } .openwebicons-semantics:before { content: ""; } .openwebicons-3deffects:before { content: ""; } .openwebicons-device-access:before { content: ""; } .openwebicons-multimedia:before { content: ""; } .openwebicons-offline-storage:before { content: ""; } .openwebicons-perfintegration:before { content: ""; } .openwebicons-git:before { content: ""; } .openwebicons-webhooks:before { content: ""; } .openwebicons-osi:before { content: ""; } .openwebicons-opensource:before { content: ""; } .openwebicons-opengraph:before { content: ""; } .openwebicons-epub:before { content: ""; } .openwebicons-qr:before { content: ""; } .openwebicons-foaf:before { content: ""; } .openwebicons-info-card:before { content: ""; } .openwebicons-browserid:before { content: ""; } .openwebicons-remote-storage:before { content: ""; } .openwebicons-persona:before { content: ""; } .openwebicons-odata:before { content: ""; } .openwebicons-markdown:before { content: ""; } .openwebicons-tosdr:before { content: ""; } .openwebicons-pub:before { content: ""; } .openwebicons-sub:before { content: ""; } .openwebicons-hubbub:before { content: ""; } .openwebicons-pubsubhubbub:before { content: ""; } .openwebicons-cc:before { content: ""; } .openwebicons-cc-by:before { content: ""; } .openwebicons-cc-nc:before { content: ""; } .openwebicons-cc-nc-eu:before { content: ""; } .openwebicons-cc-nc-jp:before { content: ""; } .openwebicons-cc-sa:before { content: ""; } .openwebicons-cc-nd:before { content: ""; } .openwebicons-cc-public:before { content: ""; } .openwebicons-cc-zero:before { content: ""; } .openwebicons-cc-share:before { content: ""; } .openwebicons-cc-remix:before { content: ""; } .openwebicons-hatom:before { content: ""; } .openwebicons-hresume:before { content: ""; } .openwebicons-hcard-add:before { content: ""; } .openwebicons-hcard-download:before { content: ""; } .openwebicons-indieweb:before { content: ""; } .openwebicons-indiewebcamp:before { content: ""; } .openwebicons-webfinger:before { content: ""; } .openwebicons-bitcoin:before { content: ""; } .openwebicons-bitcoin-simple:before { content: ""; } .openwebicons-svg:before { content: ""; } .openwebicons-json-ld:before { content: ""; } .openwebicons-tent:before { content: ""; } .openwebicons-copyleft:before { content: ""; } .openwebicons-gnu:before { content: ""; } .openwebicons-ofl-attribution:before { content: ""; } .openwebicons-ofl-share:before { content: ""; } .openwebicons-ofl-renaming:before { content: ""; } .openwebicons-ofl-selling:before { content: ""; } .openwebicons-ofl-embedding:before { content: ""; } .openwebicons-webmention:before { content: ""; } .openwebicons-javascript:before { content: ""; } .openwebicons-wtfpl:before { content: ""; } .openwebicons-ofl:before { content: ""; } .openwebicons-wordpress:before { content: ""; } .openwebicons-owncloud:before { content: ""; } .openwebicons-cccs:before { content: ""; } .openwebicons-barcamp:before { content: ""; } .openwebicons-indiehosters:before { content: ""; } .openwebicons-known:before { content: ""; } .openwebicons-mozilla:before { content: ""; } .openwebicons-unhosted:before { content: ""; } .openwebicons-diaspora:before { content: ""; } .openwebicons-indie:before { content: ""; } .openwebicons-ghost:before { content: ""; } .openwebicons-webplattform:before { content: ""; } .openwebicons-opensourcedesign:before { content: ""; } .openwebicons-opendesign:before { content: ""; } .openwebicons-gnusocial:before { content: ""; } .openwebicons-gnusocial-simple:before { content: ""; }
01_tribute_page/bower_components/openwebicons/css/weloveiconfonts.css
@charset "UTF-8"; @font-face { font-family: 'OpenWeb Icons'; src: url("../font/openwebicons.eot"); src: url("../font/openwebicons.eot?#iefix") format("embedded-opentype"), url("../font/openwebicons.woff2") format("woff2"), url("../font/openwebicons.woff") format("woff"), url("../font/openwebicons.ttf") format("truetype"), url("../font/openwebicons.svg#openweb_iconsregular") format("svg"); font-weight: normal; font-style: normal; } [class^="openwebicons-"]:before, [class*=" openwebicons-"]:before { font-family: 'OpenWeb Icons'; font-weight: normal; font-style: normal; display: inline-block; text-decoration: inherit; vertical-align: center; font-smoothing: antialiased; -webkit-font-smoothing: antialiased; } a [class^="openwebicons-"], a [class*=" openwebicons-"] { display: inline-block; text-decoration: inherit; } li[class^="openwebicons-"], li[class*=" openwebicons-"] { display: block; } .openwebicons-apml:before { content: ""; } .openwebicons-open-share:before { content: ""; } .openwebicons-open-share-simple:before { content: ""; } .openwebicons-share:before { content: ""; } .openwebicons-share-simple:before { content: ""; } .openwebicons-feed:before { content: ""; } .openwebicons-feed-simple:before { content: ""; } .openwebicons-ostatus:before { content: ""; } .openwebicons-ostatus-simple:before { content: ""; } .openwebicons-opml:before { content: ""; } .openwebicons-activity:before { content: ""; } .openwebicons-activity-simple:before { content: ""; } .openwebicons-microformats:before { content: ""; } .openwebicons-geo:before { content: ""; } .openwebicons-opensearch:before { content: ""; } .openwebicons-oauth:before { content: ""; } .openwebicons-openid:before { content: ""; } .openwebicons-semantic-web:before { content: ""; } .openwebicons-rdf:before { content: ""; } .openwebicons-rdfa:before { content: ""; } .openwebicons-owl:before { content: ""; } .openwebicons-dataportability:before { content: ""; } .openwebicons-federated:before { content: ""; } .openwebicons-web-intents:before { content: ""; } .openwebicons-open-web:before { content: ""; } .openwebicons-xmpp:before { content: ""; } .openwebicons-html5:before { content: ""; } .openwebicons-css3:before { content: ""; } .openwebicons-connectivity:before { content: ""; } .openwebicons-semantics:before { content: ""; } .openwebicons-3deffects:before { content: ""; } .openwebicons-device-access:before { content: ""; } .openwebicons-multimedia:before { content: ""; } .openwebicons-offline-storage:before { content: ""; } .openwebicons-perfintegration:before { content: ""; } .openwebicons-git:before { content: ""; } .openwebicons-webhooks:before { content: ""; } .openwebicons-osi:before { content: ""; } .openwebicons-opensource:before { content: ""; } .openwebicons-opengraph:before { content: ""; } .openwebicons-epub:before { content: ""; } .openwebicons-qr:before { content: ""; } .openwebicons-foaf:before { content: ""; } .openwebicons-info-card:before { content: ""; } .openwebicons-browserid:before { content: ""; } .openwebicons-remote-storage:before { content: ""; } .openwebicons-persona:before { content: ""; } .openwebicons-odata:before { content: ""; } .openwebicons-markdown:before { content: ""; } .openwebicons-tosdr:before { content: ""; } .openwebicons-pub:before { content: ""; } .openwebicons-sub:before { content: ""; } .openwebicons-hubbub:before { content: ""; } .openwebicons-pubsubhubbub:before { content: ""; } .openwebicons-cc:before { content: ""; } .openwebicons-cc-by:before { content: ""; } .openwebicons-cc-nc:before { content: ""; } .openwebicons-cc-nc-eu:before { content: ""; } .openwebicons-cc-nc-jp:before { content: ""; } .openwebicons-cc-sa:before { content: ""; } .openwebicons-cc-nd:before { content: ""; } .openwebicons-cc-public:before { content: ""; } .openwebicons-cc-zero:before { content: ""; } .openwebicons-cc-share:before { content: ""; } .openwebicons-cc-remix:before { content: ""; } .openwebicons-hatom:before { content: ""; } .openwebicons-hresume:before { content: ""; } .openwebicons-hcard-add:before { content: ""; } .openwebicons-hcard-download:before { content: ""; } .openwebicons-indieweb:before { content: ""; } .openwebicons-indiewebcamp:before { content: ""; } .openwebicons-webfinger:before { content: ""; } .openwebicons-bitcoin:before { content: ""; } .openwebicons-bitcoin-simple:before { content: ""; } .openwebicons-svg:before { content: ""; } .openwebicons-json-ld:before { content: ""; } .openwebicons-tent:before { content: ""; } .openwebicons-copyleft:before { content: ""; } .openwebicons-gnu:before { content: ""; } .openwebicons-ofl-attribution:before { content: ""; } .openwebicons-ofl-share:before { content: ""; } .openwebicons-ofl-renaming:before { content: ""; } .openwebicons-ofl-selling:before { content: ""; } .openwebicons-ofl-embedding:before { content: ""; } .openwebicons-webmention:before { content: ""; } .openwebicons-javascript:before { content: ""; } .openwebicons-wtfpl:before { content: ""; } .openwebicons-ofl:before { content: ""; } .openwebicons-wordpress:before { content: ""; } .openwebicons-owncloud:before { content: ""; } .openwebicons-cccs:before { content: ""; } .openwebicons-barcamp:before { content: ""; } .openwebicons-indiehosters:before { content: ""; } .openwebicons-known:before { content: ""; } .openwebicons-mozilla:before { content: ""; } .openwebicons-unhosted:before { content: ""; } .openwebicons-diaspora:before { content: ""; } .openwebicons-indie:before { content: ""; } .openwebicons-ghost:before { content: ""; } .openwebicons-webplattform:before { content: ""; } .openwebicons-opensourcedesign:before { content: ""; } .openwebicons-opendesign:before { content: ""; } .openwebicons-gnusocial:before { content: ""; } .openwebicons-gnusocial-simple:before { content: ""; }
0.411229
0.043732
.scListview { width: 100%; height: 100%; overflow: auto; } .scListviewItemReport { color: windowtext; cursor: default; overflow: hidden; padding: 3px; text-overflow: ellipsis; vertical-align: top; } .scListviewItemReport_Selected { background: #F6D2AB; border: 1px solid #F0CCA5; color: #46448D; filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#F8EED0', EndColorStr='#F8D5A6'); cursor: default; overflow: hidden; padding: 2px; text-overflow: ellipsis; vertical-align: top; } .scListviewViewReportIcon { cursor: default; padding-bottom: 4px; } .scListviewItemIcons { cursor: default; display: inline; overflow: hidden; padding: 5px; text-align: center; text-overflow: ellipsis; vertical-align: top; width: 80px; } .scListviewItemIcons_Selected { background: #F6D2AB; border: 1px solid #F0CCA5; color: #46448D; filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#F8EED0', EndColorStr='#F8D5A6'); cursor: default; display: inline; overflow: hidden; padding: 4px; text-align: center; text-overflow: ellipsis; vertical-align: top; width: 80px; } .scListviewViewIconsIcon { cursor: default; padding-bottom: 4px; } .scListviewItemList { cursor: default; display: inline; overflow: hidden; padding: 2px; text-overflow: ellipsis; white-space: nowrap; width: 150px; } .scListviewItemList_Selected { background: #F8D5A6; border: 1px solid #F6D2AB; color: #46448D; cursor: default; filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#F8EED0', EndColorStr='#F8D5A6'); display: inline; overflow: hidden; padding: 1px; text-overflow: ellipsis; white-space: nowrap; width: 150px; } .scListviewItemDetails { cursor: default; overflow: hidden; padding: 3px; text-overflow: ellipsis; white-space: nowrap; } .scListviewItemDetails_Selected { cursor: default; overflow: hidden; padding: 3px; text-overflow: ellipsis; white-space: nowrap; } .scListviewItemDetailsCell { cursor: default; padding: 2px 8px 2px 4px; white-space: nowrap; } .scListviewItemDetailsCell_Selected { background: #F8D5A6; border-bottom: 1px solid #F6D2AB; border-top: 1px solid #F6D2AB; color: #46448D; filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#F8EED0', EndColorStr='#F8D5A6'); cursor: default; padding: 1px 8px 1px 4px; white-space: nowrap; } .scListviewItemThumbnails { color: windowtext; cursor: default; display: inline; overflow: hidden; padding: 5px; text-align: center; text-overflow: ellipsis; vertical-align: top; width: 100px; } .scListviewItemThumbnails_Selected { background: #F8D5A6; border: 1px solid #F6D2AB; color: #46448D; filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#F8EED0', EndColorStr='#F8D5A6'); cursor: default; display: inline; overflow: hidden; padding: 4px; text-align: center; text-overflow: ellipsis; vertical-align: top; width: 100px; } .scListviewItemThumbnailsIcon { border: 1px solid threedface; cursor: default; height: 72px; vertical-align: baseline; width: 72px; } .scListviewItemDocument { border-bottom: 1px solid threedface; color: highlight; cursor: default; overflow: hidden; padding: 5px; text-align: center; text-overflow: ellipsis; vertical-align: top; } .scListviewItemDocument_Selected { border-bottom: 1px solid threedface; background: highlight; color: highlighttext; cursor: default; overflow: hidden; padding: 5px; text-align: center; text-overflow: ellipsis; vertical-align: top; } .scListviewItemDocumentTitle { color: windowtext; } .scListviewItemDocumentText { color: windowtext; } .scListviewDetailline { padding: 2px 0px 2px 0px; } .scListviewNavigator { background: threedface; border-left: 1px solid threedhighlight; border-top: 1px solid threedhighlight; border-right: 1px solid threedshadow; border-bottom: 1px solid threedshadow; padding: 2px 4px 2px 4px; white-space: nowrap; } .scListviewNavigatorItem { font-weight: bold; } .scListviewNavigatorItemActive { color: activecaption; font-weight: bold; } .scListviewViewDetailsHeader { background: threedface url(/sitecore/shell/themes/standard/images/listviewheader16x17.png) repeat-x; border-left: 1px solid #E0E0E0; border-right: 1px solid #FFF; color: #373738; height: 17px; padding: 1px 3px 1px 3px; text-align: left; white-space: nowrap; } .scListviewViewDetailsHeaderHover { background: threedface url(/sitecore/shell/themes/standard/images/listviewheaderhover16x17.png) repeat-x; border-left: 1px solid #E0E0E0; border-right: 1px solid #FFF; color: #373738; height: 17px; padding: 1px 3px 1px 3px; text-align: left; white-space: nowrap; }
sitecore/shell/Themes/Standard/Firefox/Listview.css
.scListview { width: 100%; height: 100%; overflow: auto; } .scListviewItemReport { color: windowtext; cursor: default; overflow: hidden; padding: 3px; text-overflow: ellipsis; vertical-align: top; } .scListviewItemReport_Selected { background: #F6D2AB; border: 1px solid #F0CCA5; color: #46448D; filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#F8EED0', EndColorStr='#F8D5A6'); cursor: default; overflow: hidden; padding: 2px; text-overflow: ellipsis; vertical-align: top; } .scListviewViewReportIcon { cursor: default; padding-bottom: 4px; } .scListviewItemIcons { cursor: default; display: inline; overflow: hidden; padding: 5px; text-align: center; text-overflow: ellipsis; vertical-align: top; width: 80px; } .scListviewItemIcons_Selected { background: #F6D2AB; border: 1px solid #F0CCA5; color: #46448D; filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#F8EED0', EndColorStr='#F8D5A6'); cursor: default; display: inline; overflow: hidden; padding: 4px; text-align: center; text-overflow: ellipsis; vertical-align: top; width: 80px; } .scListviewViewIconsIcon { cursor: default; padding-bottom: 4px; } .scListviewItemList { cursor: default; display: inline; overflow: hidden; padding: 2px; text-overflow: ellipsis; white-space: nowrap; width: 150px; } .scListviewItemList_Selected { background: #F8D5A6; border: 1px solid #F6D2AB; color: #46448D; cursor: default; filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#F8EED0', EndColorStr='#F8D5A6'); display: inline; overflow: hidden; padding: 1px; text-overflow: ellipsis; white-space: nowrap; width: 150px; } .scListviewItemDetails { cursor: default; overflow: hidden; padding: 3px; text-overflow: ellipsis; white-space: nowrap; } .scListviewItemDetails_Selected { cursor: default; overflow: hidden; padding: 3px; text-overflow: ellipsis; white-space: nowrap; } .scListviewItemDetailsCell { cursor: default; padding: 2px 8px 2px 4px; white-space: nowrap; } .scListviewItemDetailsCell_Selected { background: #F8D5A6; border-bottom: 1px solid #F6D2AB; border-top: 1px solid #F6D2AB; color: #46448D; filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#F8EED0', EndColorStr='#F8D5A6'); cursor: default; padding: 1px 8px 1px 4px; white-space: nowrap; } .scListviewItemThumbnails { color: windowtext; cursor: default; display: inline; overflow: hidden; padding: 5px; text-align: center; text-overflow: ellipsis; vertical-align: top; width: 100px; } .scListviewItemThumbnails_Selected { background: #F8D5A6; border: 1px solid #F6D2AB; color: #46448D; filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#F8EED0', EndColorStr='#F8D5A6'); cursor: default; display: inline; overflow: hidden; padding: 4px; text-align: center; text-overflow: ellipsis; vertical-align: top; width: 100px; } .scListviewItemThumbnailsIcon { border: 1px solid threedface; cursor: default; height: 72px; vertical-align: baseline; width: 72px; } .scListviewItemDocument { border-bottom: 1px solid threedface; color: highlight; cursor: default; overflow: hidden; padding: 5px; text-align: center; text-overflow: ellipsis; vertical-align: top; } .scListviewItemDocument_Selected { border-bottom: 1px solid threedface; background: highlight; color: highlighttext; cursor: default; overflow: hidden; padding: 5px; text-align: center; text-overflow: ellipsis; vertical-align: top; } .scListviewItemDocumentTitle { color: windowtext; } .scListviewItemDocumentText { color: windowtext; } .scListviewDetailline { padding: 2px 0px 2px 0px; } .scListviewNavigator { background: threedface; border-left: 1px solid threedhighlight; border-top: 1px solid threedhighlight; border-right: 1px solid threedshadow; border-bottom: 1px solid threedshadow; padding: 2px 4px 2px 4px; white-space: nowrap; } .scListviewNavigatorItem { font-weight: bold; } .scListviewNavigatorItemActive { color: activecaption; font-weight: bold; } .scListviewViewDetailsHeader { background: threedface url(/sitecore/shell/themes/standard/images/listviewheader16x17.png) repeat-x; border-left: 1px solid #E0E0E0; border-right: 1px solid #FFF; color: #373738; height: 17px; padding: 1px 3px 1px 3px; text-align: left; white-space: nowrap; } .scListviewViewDetailsHeaderHover { background: threedface url(/sitecore/shell/themes/standard/images/listviewheaderhover16x17.png) repeat-x; border-left: 1px solid #E0E0E0; border-right: 1px solid #FFF; color: #373738; height: 17px; padding: 1px 3px 1px 3px; text-align: left; white-space: nowrap; }
0.330579
0.093802
body { font-size: 20px; line-height: 1.6; } @media screen and (max-width: 992px) { body { font-size: 16px; } } #scrollup { width: 30px; height: 30px; position: fixed; bottom: 20px; right: 20px; display: none; text-indent: -9999px; background-image: url(../img/scrollup.png); cursor: pointer } .btn-info{ border-color: #fff; !important; } div#tabs{ width: 100%; height: 50px; text-align: right; margin-top: 10px; } div#tabs a.btn{ width: 50%; height: 50px; float:left; line-height: 40px; font-size: 18px; font-family:"Ubuntu",sans-serif; } div#tabs a#before{ background: #CFB1C0; } div#tabs a#before:hover{ background: #C6A7B7; border-color: #fff !important; } div#tabs a#before:before{ content: url('../img/leftarrow.png'); padding-right: 5px; vertical-align: -2%; } div#tabs a#after{ background: #B0DAE7; } div#tabs a#after:hover{ background: #A4CDDA; border-color: #fff !important; } div#tabs a#after:after{ content: url('../img/rightarrow.png'); padding-left: 5px; vertical-align: -2%; } div#tabs a#invisible{ background: #fff; border-color: #fff !important; cursor:default } div.col-lg-6{ padding: 20px; } img{ width: 100%; margin-bottom: 50px } video { display: block; margin: 30px auto; } a { -webkit-transition: 0.5s; -o-transition: 0.5s; transition: 0.5s; } a:hover, a:active, a:focus { color: #da1212; outline: none; } li.font_padding{ padding-top: 15px !important; } h1.header{ font-size: 55px; padding-bottom: 20px; color: #E3857A; } h1.header:after{ content:""; display: block; height: 0.5em; width: 100%; border-bottom: 2px solid #ddd; } a.btn-warning{ font-family:"Ubuntu",sans-serif; font-size: 15px; margin-left: 15px; margin-bottom: 10px; margin-top: 5px; } iframe { width: 100%; height: 870px; margin: 0 auto; } iframe.prototype{ height: 730px; border: none; } iframe.vimeo{ width:100%; height: 680px; display:block; margin: 0 auto 30px; } iframe.youtube{ width:100%; height: 500px; display:block; margin: 0 auto; } h2.page-header{ color: #333; font-size: 35px; text-transform: uppercase; text-align: left; } div.highlight{ margin-top: 15px; padding: 10px; } h2.update{ font-size: 25px; color: #fff; font-weight: bold; text-align: left; padding: 20px; background: #333; border-radius: 5px; letter-spacing: 0.07em; text-align: center; } h2.update:before{ content: url('../img/ribbon.png'); vertical-align: -50%; padding-right: 16px; } h2.update span{ color: #C99D00; } h3.project_subtitle{ color:#464646; font-size:25px; margin:50px 0 40px; letter-spacing: 0.05em; font-weight: bold; text-align: left; font-family: "Montserrat", sans-serif; text-transform: uppercase } h3.project_subtitle:before{ content: url('../img/document.png'); vertical-align: -40%; padding-right: 16px; } .initial{ margin-left: 300px !important; } h4.mini-title{ color:#5F5F5F; font-size:20px; padding-bottom: 10px; font-family: "Ubuntu", sans-serif; text-transform: uppercase; text-align: left; } h4.cic-winner{ margin-top: 30px; text-decoration: none; float:left; } h4.cic-winner a{ font-size:15px; color: #fff; padding-bottom: 10px; font-family: "Ubuntu", sans-serif; padding:8px 13px; background: #BCBCBC; border-radius: 3px; text-decoration: none; } h4.cic-press{ margin-top: 30px; margin-left: 10px; text-decoration: none; float: left; } h4.cic-press a{ font-size:15px; color: #fff; padding-bottom: 10px; font-family: "Ubuntu", sans-serif; padding:8px 13px; background: #777; border-radius: 3px; text-decoration: none; } p.mini-desc{ margin-bottom: 30px; } h3.header{ color:#404148; font-size:20px; margin:35px 20px 10px; text-transform: uppercase } h3.overview_subtitle{ color: #343434; font-size: 20px; font-weight: bold; padding-top: 10px; text-align: left; font-family: "Ubuntu", sans-serif; padding-bottom: 5px; text-transform: uppercase; } h3.overview_subtitle:before{ content: url('../img/magnifyingglass.png'); padding-right: 10px; vertical-align: -30%; } p.project-desc { color:#828282; font-size:16px; text-align:left; font-family: "Hind", sans-serif; } .hide-bullets { list-style:none; margin-left: -40px; } .thumbnail { width: 100px; height: 100px; padding: 0; border: none; cursor: pointer } .carousel-inner{ overflow: none; } .carousel-inner>.item>img, .carousel-inner>.item>a>img { width: 100%; } #fh5co-page { width: 100%; overflow: hidden; position: relative; } #fh5co-aside { padding-top: 10px; padding-bottom: 40px; width: 20%; position: fixed; bottom: 0; top: 0; left: 0; overflow-y: scroll; -webkit-transition: 0.5s; -o-transition: 0.5s; transition: 0.5s; background-color: rgba(0,0,0,0.8) } #fh5co-aside.border { border-right: 1px solid #e6e6e6; } @media screen and (max-width: 1200px) { #fh5co-aside { width: 30%; } } @media screen and (max-width: 768px) { #fh5co-aside { width: 270px; -moz-transform: translateX(-270px); -webkit-transform: translateX(-270px); -ms-transform: translateX(-270px); -o-transform: translateX(-270px); transform: translateX(-270px); } } #fh5co-aside #fh5co-main-menu ul { margin: 0; padding-left: 10px; } @media screen and (max-width: 768px) { #fh5co-aside #fh5co-main-menu ul { margin: 0px } #fh5co-aside #fh5co-main-menu ul li{ padding-bottom: 5px !important; } iframe.vimeo{ width: 100%; height:200px; margin-bottom: 0 } iframe.youtube{ width: 100%; height: 200px; } iframe.invision{ transform:scale(0.6) !important; width: 420px; height: 880px; margin-left: -25px; margin-top: -150px; } iframe.smarthome{ width: 100%; height: 600px; } .none{ display: none; } } #fh5co-aside #fh5co-main-menu ul li { margin: 0px; padding: 0; list-style: none; line-height: 1.3; } #fh5co-aside #fh5co-main-menu ul li a { color: #D0D0D0; text-decoration: none; font-size: 17px; font-weight: 300; position: relative; -webkit-transition: 0.3s; -o-transition: 0.3s; transition: 0.3s; padding: 10px 7px; letter-spacing: .2em; font-family:"Ubuntu",sans-serif; text-transform: uppercase } #fh5co-aside #fh5co-main-menu ul li a.sub{ color: #999; font-size: 13px; letter-spacing: .10em; padding-left: 2px 0 2px 15px !important; font-family:"Hind",sans-serif; text-transform: none !important; } #fh5co-aside #fh5co-main-menu ul li a.sub:before{ content: "- " } #fh5co-aside #fh5co-main-menu ul li a:after { content: ""; position: absolute; height: 2px; bottom: 7px; left: 10px; right: 10px; background-color: #da1212; visibility: hidden; -webkit-transform: scaleX(0); -moz-transform: scaleX(0); -ms-transform: scaleX(0); -o-transform: scaleX(0); transform: scaleX(0); -webkit-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); -moz-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); -ms-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); -o-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); } #fh5co-aside #fh5co-main-menu ul li a:hover { text-decoration: none; color: #fff; } #fh5co-aside #fh5co-main-menu ul li a:hover:after { visibility: visible; -webkit-transform: scaleX(1); -moz-transform: scaleX(1); -ms-transform: scaleX(1); -o-transform: scaleX(1); transform: scaleX(1); } #fh5co-aside #fh5co-main-menu ul li a.sub:after{ background-color: #2aa98d; } #fh5co-main { width: 80%; float: right; -webkit-transition: 0.5s; -o-transition: 0.5s; transition: 0.5s; } @media screen and (max-width: 1200px) { #fh5co-main { width: 75%; } } @media screen and (max-width: 768px) { #fh5co-main { width: 100%; } } #fh5co-main .fh5co-narrow-content { position: relative; width: 90%; margin: 0 auto; } @media screen and (max-width: 768px) { #fh5co-main .fh5co-narrow-content { width: 100%; padding: 3.5em 1em; } } body.offcanvas { overflow-x: hidden; } body.offcanvas #fh5co-aside { -moz-transform: translateX(0); -webkit-transform: translateX(0); -ms-transform: translateX(0); -o-transform: translateX(0); transform: translateX(0); width: 270px; background: #323544; z-index: 999; position: fixed; } body.offcanvas #fh5co-main, body.offcanvas .fh5co-nav-toggle { top: 0; -moz-transform: translateX(270px); -webkit-transform: translateX(270px); -ms-transform: translateX(270px); -o-transform: translateX(270px); transform: translateX(270px); } .work-item { margin-bottom: 30px; } .work-item a { border: none; text-align: center; } .work-item a img { margin-bottom: 10px; float: left; border: 10px solid transparent; -webkit-transition: 0.5s; -o-transition: 0.5s; transition: 0.5s; } .work-item a h3 { font-size: 20px; color: #000; margin-bottom: 10px; } .work-item a p { font-size: 14px; color: #cccccc; margin-bottom: 0; } .work-item a:hover, .work-item a:active, .work-item a:focus { text-decoration: none; } .work-item a:hover img, .work-item a:active img, .work-item a:focus img { border: 10px solid #000; } .fh5co-nav-toggle { cursor: pointer; text-decoration: none; } .fh5co-nav-toggle i { position: relative; display: -moz-inline-stack; display: inline-block; zoom: 1; *display: inline; width: 30px; height: 2px; color: #000; font: bold 14px/.4 Helvetica; text-transform: uppercase; text-indent: -55px; background: #000; transition: all .2s ease-out; } .fh5co-nav-toggle i::before, .fh5co-nav-toggle i::after { content: ''; width: 30px; height: 2px; background: #000; position: absolute; left: 0; -webkit-transition: 0.2s; -o-transition: 0.2s; transition: 0.2s; } .fh5co-nav-toggle.dark i { position: relative; color: #000; background: #000; transition: all .2s ease-out; } .fh5co-nav-toggle.dark i::before, .fh5co-nav-toggle.dark i::after { background: #000; -webkit-transition: 0.2s; -o-transition: 0.2s; transition: 0.2s; } .fh5co-nav-toggle i::before { top: -7px; } .fh5co-nav-toggle i::after { bottom: -7px; } .fh5co-nav-toggle:hover i::before { top: -10px; } .fh5co-nav-toggle:hover i::after { bottom: -10px; } .fh5co-nav-toggle.active i { background: transparent; } .fh5co-nav-toggle.active i::before { top: 0; -webkit-transform: rotateZ(45deg); -moz-transform: rotateZ(45deg); -ms-transform: rotateZ(45deg); -o-transform: rotateZ(45deg); transform: rotateZ(45deg); } .fh5co-nav-toggle.active i::after { bottom: 0; -webkit-transform: rotateZ(-45deg); -moz-transform: rotateZ(-45deg); -ms-transform: rotateZ(-45deg); -o-transform: rotateZ(-45deg); transform: rotateZ(-45deg); } .fh5co-nav-toggle { position: fixed; left: 0; top: 0px; z-index: 9999; cursor: pointer; opacity: 1; visibility: hidden; padding: 20px; -webkit-transition: 0.5s; -o-transition: 0.5s; transition: 0.5s; } @media screen and (max-width: 768px) { .fh5co-nav-toggle { opacity: 1; visibility: visible; } div#tabs{ height: 40px; } div#tabs a.btn{ height: 40px; line-height: 27px; font-size: 17px; font-family:"Ubuntu",sans-serif; } div#tabs a#after:after, div#tabs a#before:before{ vertical-align: -10%; } h1.header{ font-size: 35px; } h2.page-header{ font-size: 25px; } h2.update{ font-size: 15px; margin-bottom: 0; } h2.update:before{ content: none; } h3.overview_subtitle{ font-size: 15px; } h3.project_subtitle{ font-size:16px; margin-top: 40px; margin-bottom: 20px; letter-spacing: 0.03em; text-align: left; } h3.project_subtitle:before{ vertical-align: -70%; } h4.mini-title{ text-align: left; font-size:14px; margin-bottom: 20px; margin-left: 0; padding-bottom: 0 } p.project-desc{ font-size: 13px; line-height:20px; margin: 0 } img{ margin: 20px auto; padding: 0 !important; } video { margin: 20px auto; margin-left: -10px; } h3.overview_subtitle:before{ vertical-align: -50%; } h4.cic-winner{ float:left; } h4.cic-winner a{ font-size: 11px; padding: 6px 8px; } h4.cic-press{ float:left; margin-left: 5px; } h4.cic-press a{ font-size: 11px; padding: 6px 8px; } }
css/portfolio_landing.css
body { font-size: 20px; line-height: 1.6; } @media screen and (max-width: 992px) { body { font-size: 16px; } } #scrollup { width: 30px; height: 30px; position: fixed; bottom: 20px; right: 20px; display: none; text-indent: -9999px; background-image: url(../img/scrollup.png); cursor: pointer } .btn-info{ border-color: #fff; !important; } div#tabs{ width: 100%; height: 50px; text-align: right; margin-top: 10px; } div#tabs a.btn{ width: 50%; height: 50px; float:left; line-height: 40px; font-size: 18px; font-family:"Ubuntu",sans-serif; } div#tabs a#before{ background: #CFB1C0; } div#tabs a#before:hover{ background: #C6A7B7; border-color: #fff !important; } div#tabs a#before:before{ content: url('../img/leftarrow.png'); padding-right: 5px; vertical-align: -2%; } div#tabs a#after{ background: #B0DAE7; } div#tabs a#after:hover{ background: #A4CDDA; border-color: #fff !important; } div#tabs a#after:after{ content: url('../img/rightarrow.png'); padding-left: 5px; vertical-align: -2%; } div#tabs a#invisible{ background: #fff; border-color: #fff !important; cursor:default } div.col-lg-6{ padding: 20px; } img{ width: 100%; margin-bottom: 50px } video { display: block; margin: 30px auto; } a { -webkit-transition: 0.5s; -o-transition: 0.5s; transition: 0.5s; } a:hover, a:active, a:focus { color: #da1212; outline: none; } li.font_padding{ padding-top: 15px !important; } h1.header{ font-size: 55px; padding-bottom: 20px; color: #E3857A; } h1.header:after{ content:""; display: block; height: 0.5em; width: 100%; border-bottom: 2px solid #ddd; } a.btn-warning{ font-family:"Ubuntu",sans-serif; font-size: 15px; margin-left: 15px; margin-bottom: 10px; margin-top: 5px; } iframe { width: 100%; height: 870px; margin: 0 auto; } iframe.prototype{ height: 730px; border: none; } iframe.vimeo{ width:100%; height: 680px; display:block; margin: 0 auto 30px; } iframe.youtube{ width:100%; height: 500px; display:block; margin: 0 auto; } h2.page-header{ color: #333; font-size: 35px; text-transform: uppercase; text-align: left; } div.highlight{ margin-top: 15px; padding: 10px; } h2.update{ font-size: 25px; color: #fff; font-weight: bold; text-align: left; padding: 20px; background: #333; border-radius: 5px; letter-spacing: 0.07em; text-align: center; } h2.update:before{ content: url('../img/ribbon.png'); vertical-align: -50%; padding-right: 16px; } h2.update span{ color: #C99D00; } h3.project_subtitle{ color:#464646; font-size:25px; margin:50px 0 40px; letter-spacing: 0.05em; font-weight: bold; text-align: left; font-family: "Montserrat", sans-serif; text-transform: uppercase } h3.project_subtitle:before{ content: url('../img/document.png'); vertical-align: -40%; padding-right: 16px; } .initial{ margin-left: 300px !important; } h4.mini-title{ color:#5F5F5F; font-size:20px; padding-bottom: 10px; font-family: "Ubuntu", sans-serif; text-transform: uppercase; text-align: left; } h4.cic-winner{ margin-top: 30px; text-decoration: none; float:left; } h4.cic-winner a{ font-size:15px; color: #fff; padding-bottom: 10px; font-family: "Ubuntu", sans-serif; padding:8px 13px; background: #BCBCBC; border-radius: 3px; text-decoration: none; } h4.cic-press{ margin-top: 30px; margin-left: 10px; text-decoration: none; float: left; } h4.cic-press a{ font-size:15px; color: #fff; padding-bottom: 10px; font-family: "Ubuntu", sans-serif; padding:8px 13px; background: #777; border-radius: 3px; text-decoration: none; } p.mini-desc{ margin-bottom: 30px; } h3.header{ color:#404148; font-size:20px; margin:35px 20px 10px; text-transform: uppercase } h3.overview_subtitle{ color: #343434; font-size: 20px; font-weight: bold; padding-top: 10px; text-align: left; font-family: "Ubuntu", sans-serif; padding-bottom: 5px; text-transform: uppercase; } h3.overview_subtitle:before{ content: url('../img/magnifyingglass.png'); padding-right: 10px; vertical-align: -30%; } p.project-desc { color:#828282; font-size:16px; text-align:left; font-family: "Hind", sans-serif; } .hide-bullets { list-style:none; margin-left: -40px; } .thumbnail { width: 100px; height: 100px; padding: 0; border: none; cursor: pointer } .carousel-inner{ overflow: none; } .carousel-inner>.item>img, .carousel-inner>.item>a>img { width: 100%; } #fh5co-page { width: 100%; overflow: hidden; position: relative; } #fh5co-aside { padding-top: 10px; padding-bottom: 40px; width: 20%; position: fixed; bottom: 0; top: 0; left: 0; overflow-y: scroll; -webkit-transition: 0.5s; -o-transition: 0.5s; transition: 0.5s; background-color: rgba(0,0,0,0.8) } #fh5co-aside.border { border-right: 1px solid #e6e6e6; } @media screen and (max-width: 1200px) { #fh5co-aside { width: 30%; } } @media screen and (max-width: 768px) { #fh5co-aside { width: 270px; -moz-transform: translateX(-270px); -webkit-transform: translateX(-270px); -ms-transform: translateX(-270px); -o-transform: translateX(-270px); transform: translateX(-270px); } } #fh5co-aside #fh5co-main-menu ul { margin: 0; padding-left: 10px; } @media screen and (max-width: 768px) { #fh5co-aside #fh5co-main-menu ul { margin: 0px } #fh5co-aside #fh5co-main-menu ul li{ padding-bottom: 5px !important; } iframe.vimeo{ width: 100%; height:200px; margin-bottom: 0 } iframe.youtube{ width: 100%; height: 200px; } iframe.invision{ transform:scale(0.6) !important; width: 420px; height: 880px; margin-left: -25px; margin-top: -150px; } iframe.smarthome{ width: 100%; height: 600px; } .none{ display: none; } } #fh5co-aside #fh5co-main-menu ul li { margin: 0px; padding: 0; list-style: none; line-height: 1.3; } #fh5co-aside #fh5co-main-menu ul li a { color: #D0D0D0; text-decoration: none; font-size: 17px; font-weight: 300; position: relative; -webkit-transition: 0.3s; -o-transition: 0.3s; transition: 0.3s; padding: 10px 7px; letter-spacing: .2em; font-family:"Ubuntu",sans-serif; text-transform: uppercase } #fh5co-aside #fh5co-main-menu ul li a.sub{ color: #999; font-size: 13px; letter-spacing: .10em; padding-left: 2px 0 2px 15px !important; font-family:"Hind",sans-serif; text-transform: none !important; } #fh5co-aside #fh5co-main-menu ul li a.sub:before{ content: "- " } #fh5co-aside #fh5co-main-menu ul li a:after { content: ""; position: absolute; height: 2px; bottom: 7px; left: 10px; right: 10px; background-color: #da1212; visibility: hidden; -webkit-transform: scaleX(0); -moz-transform: scaleX(0); -ms-transform: scaleX(0); -o-transform: scaleX(0); transform: scaleX(0); -webkit-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); -moz-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); -ms-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); -o-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); } #fh5co-aside #fh5co-main-menu ul li a:hover { text-decoration: none; color: #fff; } #fh5co-aside #fh5co-main-menu ul li a:hover:after { visibility: visible; -webkit-transform: scaleX(1); -moz-transform: scaleX(1); -ms-transform: scaleX(1); -o-transform: scaleX(1); transform: scaleX(1); } #fh5co-aside #fh5co-main-menu ul li a.sub:after{ background-color: #2aa98d; } #fh5co-main { width: 80%; float: right; -webkit-transition: 0.5s; -o-transition: 0.5s; transition: 0.5s; } @media screen and (max-width: 1200px) { #fh5co-main { width: 75%; } } @media screen and (max-width: 768px) { #fh5co-main { width: 100%; } } #fh5co-main .fh5co-narrow-content { position: relative; width: 90%; margin: 0 auto; } @media screen and (max-width: 768px) { #fh5co-main .fh5co-narrow-content { width: 100%; padding: 3.5em 1em; } } body.offcanvas { overflow-x: hidden; } body.offcanvas #fh5co-aside { -moz-transform: translateX(0); -webkit-transform: translateX(0); -ms-transform: translateX(0); -o-transform: translateX(0); transform: translateX(0); width: 270px; background: #323544; z-index: 999; position: fixed; } body.offcanvas #fh5co-main, body.offcanvas .fh5co-nav-toggle { top: 0; -moz-transform: translateX(270px); -webkit-transform: translateX(270px); -ms-transform: translateX(270px); -o-transform: translateX(270px); transform: translateX(270px); } .work-item { margin-bottom: 30px; } .work-item a { border: none; text-align: center; } .work-item a img { margin-bottom: 10px; float: left; border: 10px solid transparent; -webkit-transition: 0.5s; -o-transition: 0.5s; transition: 0.5s; } .work-item a h3 { font-size: 20px; color: #000; margin-bottom: 10px; } .work-item a p { font-size: 14px; color: #cccccc; margin-bottom: 0; } .work-item a:hover, .work-item a:active, .work-item a:focus { text-decoration: none; } .work-item a:hover img, .work-item a:active img, .work-item a:focus img { border: 10px solid #000; } .fh5co-nav-toggle { cursor: pointer; text-decoration: none; } .fh5co-nav-toggle i { position: relative; display: -moz-inline-stack; display: inline-block; zoom: 1; *display: inline; width: 30px; height: 2px; color: #000; font: bold 14px/.4 Helvetica; text-transform: uppercase; text-indent: -55px; background: #000; transition: all .2s ease-out; } .fh5co-nav-toggle i::before, .fh5co-nav-toggle i::after { content: ''; width: 30px; height: 2px; background: #000; position: absolute; left: 0; -webkit-transition: 0.2s; -o-transition: 0.2s; transition: 0.2s; } .fh5co-nav-toggle.dark i { position: relative; color: #000; background: #000; transition: all .2s ease-out; } .fh5co-nav-toggle.dark i::before, .fh5co-nav-toggle.dark i::after { background: #000; -webkit-transition: 0.2s; -o-transition: 0.2s; transition: 0.2s; } .fh5co-nav-toggle i::before { top: -7px; } .fh5co-nav-toggle i::after { bottom: -7px; } .fh5co-nav-toggle:hover i::before { top: -10px; } .fh5co-nav-toggle:hover i::after { bottom: -10px; } .fh5co-nav-toggle.active i { background: transparent; } .fh5co-nav-toggle.active i::before { top: 0; -webkit-transform: rotateZ(45deg); -moz-transform: rotateZ(45deg); -ms-transform: rotateZ(45deg); -o-transform: rotateZ(45deg); transform: rotateZ(45deg); } .fh5co-nav-toggle.active i::after { bottom: 0; -webkit-transform: rotateZ(-45deg); -moz-transform: rotateZ(-45deg); -ms-transform: rotateZ(-45deg); -o-transform: rotateZ(-45deg); transform: rotateZ(-45deg); } .fh5co-nav-toggle { position: fixed; left: 0; top: 0px; z-index: 9999; cursor: pointer; opacity: 1; visibility: hidden; padding: 20px; -webkit-transition: 0.5s; -o-transition: 0.5s; transition: 0.5s; } @media screen and (max-width: 768px) { .fh5co-nav-toggle { opacity: 1; visibility: visible; } div#tabs{ height: 40px; } div#tabs a.btn{ height: 40px; line-height: 27px; font-size: 17px; font-family:"Ubuntu",sans-serif; } div#tabs a#after:after, div#tabs a#before:before{ vertical-align: -10%; } h1.header{ font-size: 35px; } h2.page-header{ font-size: 25px; } h2.update{ font-size: 15px; margin-bottom: 0; } h2.update:before{ content: none; } h3.overview_subtitle{ font-size: 15px; } h3.project_subtitle{ font-size:16px; margin-top: 40px; margin-bottom: 20px; letter-spacing: 0.03em; text-align: left; } h3.project_subtitle:before{ vertical-align: -70%; } h4.mini-title{ text-align: left; font-size:14px; margin-bottom: 20px; margin-left: 0; padding-bottom: 0 } p.project-desc{ font-size: 13px; line-height:20px; margin: 0 } img{ margin: 20px auto; padding: 0 !important; } video { margin: 20px auto; margin-left: -10px; } h3.overview_subtitle:before{ vertical-align: -50%; } h4.cic-winner{ float:left; } h4.cic-winner a{ font-size: 11px; padding: 6px 8px; } h4.cic-press{ float:left; margin-left: 5px; } h4.cic-press a{ font-size: 11px; padding: 6px 8px; } }
0.288669
0.067824
* { cursor: default; } body { font-family: "Ubuntu", sans-serif; } nav { background-color: #252525; background-image: url("../imgs/stripe_texture_overlay.png"); background-repeat: repeat; border-right-width: 12px; border-right-style: solid; border-image: linear-gradient(to top, #44f, #0db) 1 100%; box-shadow: 0 0 25px rgba(0, 0, 0, 0.4); z-index: 1; } nav #logo { background-image: url("../imgs/logo.png"); background-size: 200px auto; background-repeat: no-repeat; } nav ul li { letter-spacing: 0.05em; cursor: pointer; color: rgba(255, 255, 255, 0.7); transition: 0.15s color, 0.1s padding-left; padding-left: 5px; } nav ul li.highlighted, nav ul li:hover { color: white; padding-left: 0; } #content { background-color: #FFF; } #content .page header { background-color: #F8F8F8; background-image: url("../imgs/stripe_texture_overlay_light.png"); background-repeat: repeat; } #content .page header h1 { letter-spacing: 0.05em; } #content .page .page_content p { font-size: 16px; } #content .page .page_content ul li { font-size: 16px; } #content .page .page_content code { background-color: #F8F8F8; padding: 4px 10px; font-size: 0.8em; font-weight: bold; font-family: "Nimbus Mono L", monospace; border: 1px solid #DDD; border-radius: 3px; } form { background-color: #F8F8F8; border-radius: 5px; background-image: url("../imgs/stripe_texture_overlay_light.png"); background-repeat: repeat; } form .property input { border: none; padding: 5px 15px; border-radius: 3px; border-left: 3px solid #0ca; font-size: 14px; font-family: "Ubuntu", sans-serif; transition: 0.2s border-left-color; cursor: text; } form .property input:focus { outline: none; border-left-color: #0a9; } form .property .description { padding: 5px; } form .property .description .hidden_info { border-radius: 3px; background-color: rgba(0, 0, 0, 0.6); color: #FFF; text-align: justify; } form .property .description::before { content: "?"; background-color: #0ca; color: #FFF; text-align: center; font-weight: bold; transition: 0.2s background-color; cursor: help; } form .property .description:hover::before { background-color: #0a9; } .swal-button-container button, button { background-color: #0ca; color: #FFFFFF; transition: 0.15s background-color; font-weight: bold; cursor: pointer; } .swal-button-container button:hover, button:hover { background-color: #0a9 !important; } .ixi, .neighbor { background-color: #F8F8F8; background-image: url("../imgs/stripe_texture_overlay_light.png"); background-repeat: repeat; } .ixi .name, .neighbor .name { border-bottom: 1px solid rgba(0, 0, 0, 0.1); } .ixi .stats div, .neighbor .stats div { border-radius: 3px; background-color: rgba(0, 0, 0, 0.6); color: #FFF; font-weight: bold; } .ixi .stats div:before, .neighbor .stats div:before { font-size: 12px; display: block; margin-bottom: 10px; } .ixi .stats .all:before, .neighbor .stats .all:before { content: "ALL"; } .ixi .stats .new:before, .neighbor .stats .new:before { content: "NEW"; } .ixi .stats .requested:before, .neighbor .stats .requested:before { content: "REQUESTED"; } .ixi .stats .invalid:before, .neighbor .stats .invalid:before { content: "INVALID"; } .ixi .stats .ignored:before, .neighbor .stats .ignored:before { content: "IGNORED"; } #log { border-radius: 5px; background-color: #252525; color: #F8F8F8; font-family: "Nimbus Mono L", monospace; white-space: pre; padding: 20px 30px; overflow: scroll; } form, .ixi, .neighbor, #log { border-width: 0; border-left-width: 5px; border-style: solid; border-image: linear-gradient(to top, #0bd, #0db) 1 100%; } form .log.WARN, .ixi .log.WARN, .neighbor .log.WARN, #log .log.WARN { color: #FF0; font-weight: bold; } form .log.ERROR, .ixi .log.ERROR, .neighbor .log.ERROR, #log .log.ERROR { color: #F00; font-weight: bold; } /*# sourceMappingURL=theme.css.map */
web/css/theme.css
* { cursor: default; } body { font-family: "Ubuntu", sans-serif; } nav { background-color: #252525; background-image: url("../imgs/stripe_texture_overlay.png"); background-repeat: repeat; border-right-width: 12px; border-right-style: solid; border-image: linear-gradient(to top, #44f, #0db) 1 100%; box-shadow: 0 0 25px rgba(0, 0, 0, 0.4); z-index: 1; } nav #logo { background-image: url("../imgs/logo.png"); background-size: 200px auto; background-repeat: no-repeat; } nav ul li { letter-spacing: 0.05em; cursor: pointer; color: rgba(255, 255, 255, 0.7); transition: 0.15s color, 0.1s padding-left; padding-left: 5px; } nav ul li.highlighted, nav ul li:hover { color: white; padding-left: 0; } #content { background-color: #FFF; } #content .page header { background-color: #F8F8F8; background-image: url("../imgs/stripe_texture_overlay_light.png"); background-repeat: repeat; } #content .page header h1 { letter-spacing: 0.05em; } #content .page .page_content p { font-size: 16px; } #content .page .page_content ul li { font-size: 16px; } #content .page .page_content code { background-color: #F8F8F8; padding: 4px 10px; font-size: 0.8em; font-weight: bold; font-family: "Nimbus Mono L", monospace; border: 1px solid #DDD; border-radius: 3px; } form { background-color: #F8F8F8; border-radius: 5px; background-image: url("../imgs/stripe_texture_overlay_light.png"); background-repeat: repeat; } form .property input { border: none; padding: 5px 15px; border-radius: 3px; border-left: 3px solid #0ca; font-size: 14px; font-family: "Ubuntu", sans-serif; transition: 0.2s border-left-color; cursor: text; } form .property input:focus { outline: none; border-left-color: #0a9; } form .property .description { padding: 5px; } form .property .description .hidden_info { border-radius: 3px; background-color: rgba(0, 0, 0, 0.6); color: #FFF; text-align: justify; } form .property .description::before { content: "?"; background-color: #0ca; color: #FFF; text-align: center; font-weight: bold; transition: 0.2s background-color; cursor: help; } form .property .description:hover::before { background-color: #0a9; } .swal-button-container button, button { background-color: #0ca; color: #FFFFFF; transition: 0.15s background-color; font-weight: bold; cursor: pointer; } .swal-button-container button:hover, button:hover { background-color: #0a9 !important; } .ixi, .neighbor { background-color: #F8F8F8; background-image: url("../imgs/stripe_texture_overlay_light.png"); background-repeat: repeat; } .ixi .name, .neighbor .name { border-bottom: 1px solid rgba(0, 0, 0, 0.1); } .ixi .stats div, .neighbor .stats div { border-radius: 3px; background-color: rgba(0, 0, 0, 0.6); color: #FFF; font-weight: bold; } .ixi .stats div:before, .neighbor .stats div:before { font-size: 12px; display: block; margin-bottom: 10px; } .ixi .stats .all:before, .neighbor .stats .all:before { content: "ALL"; } .ixi .stats .new:before, .neighbor .stats .new:before { content: "NEW"; } .ixi .stats .requested:before, .neighbor .stats .requested:before { content: "REQUESTED"; } .ixi .stats .invalid:before, .neighbor .stats .invalid:before { content: "INVALID"; } .ixi .stats .ignored:before, .neighbor .stats .ignored:before { content: "IGNORED"; } #log { border-radius: 5px; background-color: #252525; color: #F8F8F8; font-family: "Nimbus Mono L", monospace; white-space: pre; padding: 20px 30px; overflow: scroll; } form, .ixi, .neighbor, #log { border-width: 0; border-left-width: 5px; border-style: solid; border-image: linear-gradient(to top, #0bd, #0db) 1 100%; } form .log.WARN, .ixi .log.WARN, .neighbor .log.WARN, #log .log.WARN { color: #FF0; font-weight: bold; } form .log.ERROR, .ixi .log.ERROR, .neighbor .log.ERROR, #log .log.ERROR { color: #F00; font-weight: bold; } /*# sourceMappingURL=theme.css.map */
0.393502
0.085824
html, body, div, span,applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dd, dl, dt, li, ol, ul, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {margin:0;padding:0;} div {text-align:left;} h1, h2, h3, h4, h5, h6{font-size:100%;} address, cite, em{font-style:normal;} li{list-style-type:none;} fieldset, img {border:0;} label,button{cursor: pointer;} select,input,textarea{font-size:12px;line-height:1.2em;} /*reset*/ body{height:100%;background:#fff;font:12px/1.5em "\5b8b\4f53","Arial Narrow";color:#707070;-webkit-text-size-adjust:none;} a{text-decoration:none;color:#404040;} a:hover{color:#02a1d9;text-decoration:underline;} .on:hover {text-decoration:none;} /*layer*/ .bigmovie_play,.star,.movielist_topic_2 .play,.pageturn2,.box h2,.taglink li,.tagbox h2,.ranklist .show em,.ranklist .top em,.close,.stars,.topmovie_img img,.movielist_modB .desc,.txtlist li,.moviecollect li,.moviecollect li,.info,.ico720,.box_tt {background:url(images/sprite_m.png) no-repeat 0 0;} .HL {color:#db160d !important;} .wrapper {width:970px;margin:0 auto;overflow:hidden;zoom:1;} .main {float:left;width:720px;} .side {float:right;width:240px;} .L721R230 .main {width:721px;background:url(images/line_1.png) no-repeat right top;} .L721R230 .side {width:230px;} .height_1 {height:340px;} .height_2 {height:323px;} .height_3 {height:425px;} .height_4 {height:380px;} .height_5 {height:456px;} .height_6 {position:relative;height:493px;} .height_7 {height:603px;} .height_8 {position:relative;height:245px;} .height_9 {height:478px;} .height_10 {height:547px;} .height_11 {height:735px;} .height_12 {height:284px;} .close {position:absolute;right:3px;top:3px;display:block;width:48px;height:19px;background-position:-120px -58px;color:#666;line-height:19px;text-indent:5px;} .research {position:fixed;_position:absolute;right:0;bottom:0;z-index:9999;} .research_con {position:relative;width:100px;height:130px;} .research_close {position:absolute;right:0px;top:0px;display:block;width:15px;height:15px;background:#000;text-indent:-9999px;overflow:hidden;opacity:0;filter:alpha(opacity=0);} /*footer*/ .footer {width:970px;height:80px;padding-top:15px;margin:0 auto;color:#888;text-align:center;clear:both;} .footer a {color:#888;} .footer .f-nav {width:930px;height:20px;color:#C9C9C9;text-align:center;} .footer .f-nav a {margin:0 8px;color:#333;} .footer .copyright {width:970px;height:44px;font-family:"Arial";line-height:22px;text-align:center;} /*slidebox*/ .slidebox {position:relative;overflow:hidden;} .slidecontain {position:relative;margin:0 auto;overflow:hidden;} .slide_tigger {position:absolute;top:150px;display:block;width:26px;height:64px;background:url(images/slide_tigger.png) 0 -65px;text-indent:-9999px;z-index:9;overflow:hidden;cursor:pointer; _background:none;_filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="http://misc.web.xunlei.com/movie_index_59/img/ie_tigger_L.png" ,sizingMethod="crop"); } .slide_tigger_L {left:-1px;} .slide_tigger_L:hover {background-position:0 -130px;} .slide_tigger_L_none,.slide_tigger_L_none:hover {background-position:0 0;cursor:default;} .slide_tigger_R {right:-2px;background-position:-26px -65px; _background:none;_filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="http://misc.web.xunlei.com/movie_index_59/img/ie_tigger_R.png" ,sizingMethod="crop"); } .slide_tigger_R:hover {background-position:-26px -130px;} .slide_tigger_R_none,.slide_tigger_R_none:hover {background-position:-26px 0;cursor:default;} .slidebox_1 .movielist {width:1436px;} .slidebox_1 .slidecontain {width:718px;} .slidebox_2 .slide_tigger {top:38px;} .slidebox_2 .slidecontain {width:696px;left:-8px;} .slidebox_2 .movielist {width:3480px;} .slidebox_3 .slidecontain {width:675px;} .slidebox_3 .slide_tigger {top:200px;} /*fouce*/ .fouce {position:relative;width:970px;height:350px;background:#2b2b2b;margin:0 auto 10px;} .foucebox {position:relative;width:720px;height:350px;overflow:hidden;} .foucebox_imgbox {position:relative;width:720px;height:350px;overflow:hidden;z-index:9;} .foucebox_imgbox img {display:block;width:720px;height:350px;} .foucebox_bg {position:absolute;left:0;bottom:0;width:720px;height:90px;background:#000;filter:alpha(opacity=60);opacity:0.6;z-index:8;} .foucebox_h4 {position:absolute;left:55px;top:270px;font-size:16px;color:#fff;line-height:22px;z-index:9;} .foucebox_h4 a {color:#fff;font-weight:normal;} .scrollimg2_tigger {position:absolute;left:0;bottom:6px;height:45px;overflow:hidden;z-index:10;} .scrollimg2_tigger ul{padding-top:6px;overflow:hidden;} .scrollimg2_tigger li {position:relative;float:left;display:inline;width:64px;height:39px;margin-left:7px;text-align:center;overflow:hidden;} .scrollimg2_tigger a {position:absolute;left:0;top:0;display:block;width:60px;height:35px;background:#aeaeae;padding:2px;color:#ababad;} .scrollimg2_tigger img {width:60px;height:35px;margin-bottom:2px;} .scrollimg2_tigger_hoverbg {position:absolute;left:7px;top:0;width:64px;height:45px;background:url(images/fouce.png) no-repeat -21px -56px;cursor:pointer;z-index:2;} .scrollimg2_tigger .scrollimg2_tigger_link {position:absolute;left:0;top:6px;padding:0px;z-index:3;} .scrollimg2_tigger .scrollimg2_tigger_link a {display:block;width:70px;height:50px;filter:alpha(opacity=0);opacity:0;} .scrollimg2_bigimg .scrollimg2_bg {position:absolute;left:0;top:269px;float:none;width:740px;height:40px;background:#000;filter:alpha(opacity=60);opacity:0.6;z-index:98;} .playico {position:absolute;left:10px;top:265px;width:40px;height:40px;background:url(images/slide_tigger.png) 0 -205px;_background:none;z-index:9;} /*tagbox*/ .tagbox {position:relative;width:968px;height:116px;background:url(images/tagbox.png);margin:0 auto 10px;border:solid #ddd 1px;} .tagbox h2 {position:absolute;left:20px;top:10px;width:72px;height:18px;background-position:0 -161px;text-indent:-9999px;overflow:hidden;} .taglink {float:left;width:80px;padding:37px 0 0 25px;} .taglink li {background-position:-496px -39px;padding-left:10px;line-height:22px;} .tagbox_dl {float:left;display:inline;width:130px;height:116px;background:url(images/tagbox_dl.png) no-repeat 0 0;padding-left:20px;overflow:hidden;} .tagbox_dl dt {margin:15px 0 5px;font-size:14px;font-weight:bold;} .tagbox_dl dd {float:left;width:40px;line-height:22px;} .tagbox_dl dd a {white-space:nowrap;} .tagbox_dl_1 {width:170px;} .tagbox_dl_4 {width:150px;} .tagbox_dl_4 dd {width:50px;} .tagbox_dl_5 {width:180px;} .tagbox_dl_5 dd {width:auto;margin-right:10px;} /*taglist*/ .taglist dl {height:24px;padding:0 0 0 0;line-height:24px;overflow:hidden;zoom:1;} .taglist dt {float:left;display:inline;margin-right:11px;color:#5b5b5b;font-weight:bold;} .taglist dd {float:left;display:inline;margin-right:12px;white-space:nowrap;} .taglist .taglist_zt {height:auto;} .taglist .taglist_zt dt,.taglist .taglist_zt dd {float:none;display:block;} .taglist .taglist_star {height:48px;overflow:hidden;} /*box*/ .box {margin-bottom:10px;border:solid #ddd 1px;overflow:hidden;zoom:1;} .box h2 {float:left;display:inline;width:72px;height:18px;margin:6px 10px 0 15px;text-indent:-9999px;overflow:hidden;} .side .box h2 {width:auto;height:auto;background:none;margin-top:0;font-size:14px;color:#303030;text-indent:0;} .box .side_h2 {float:none;display:block;width:auto;height:auto;background:none;margin:16px 0 8px;text-indent:0;font-size:14px;color:#313131;} .box .more {float:right;display:inline;margin-right:10px;} .box_tt {height:33px;background-repeat:repeat-x;line-height:33px;} .act {float:right;display:inline;margin-right:10px;} .tabbox {float:left;border-right:solid #ddd 1px;} .tabbox li {float:left;width:82px;font-size:14px;text-align:center;border-left:solid #ddd 1px;cursor:pointer;} .tabbox .on {background:#fff;color:#414141;font-weight:bold;} .box_tt_tab .tabbox {margin-left:-1px;border-right:none;} .box_tt_tab .tabbox li {width:118px;} .box_A .box_tt {background:none;margin:10px 0;} .box .h2_1 {background-position:0 -180px;} .box .h2_2 {background-position:0 -199px;} .box .h2_3 {background-position:0 -218px;} .box .h2_4 {background-position:0 -237px;} .box .h2_5 {width:90px;height:25px;background-position:-73px -180px;} .box .h2_6 {height:25px;background-position:-73px -206px;} .box .h2_7 {background-position:0 -256px;} .box .h2_8 {background-position:0 -275px;} .box .h2_9 {background-position:-73px -161px;} /*banner*/ .banner {width:970px;height:80px;margin:0 auto 12px;overflow:hidden;zoom:1;} .ttbanner {float:right;display:inline;width:140px;height:20px;margin:6px 10px 0 0;overflow:hidden;} /*list*/ .score {position:absolute;right:11px;top:0px;color:#ff3c00;} .info {position:absolute;right:0px;top:4px;display:block;width:8px;height:10px;background-position:-158px -78px;text-indent:-9999px;overflow:hidden;} .ico720 {position:absolute;right:3px;top:77px;display:block;width:33px;height:15px;background-position:-173px -34px;text-indent:-9999px;overflow:hidden;} .title {position:relative;height:16px;padding-right:35px;margin:7px 0;overflow:hidden;} .movielist {overflow:hidden;zoom:1;} .movielist li {position:relative;float:left;display:inline;width:127px;height:275px;padding:20px 0 0 10px;overflow:hidden;} .movielist .pic {position:relative;display:block;width:127px;height:182px;} .movielist .pic img {width:127px;height:182px;} .movielist h3 {height:16px;font-size:14px;font-weight:normal;line-height:16px;overflow:hidden;} .movielist p {line-height:20px;overflow:hidden;} .movielist .p1 {height:20px;} .movielist .p1 a,.movielist_modB p a {margin:0 2px;} .movielist_topic li {width:214px;height:126px;padding:15px 0 0 12px;} .movielist_topic .pic,.movielist_topic .pic img {width:214px;height:95px;} .movielist_topic .title {padding-right:0;} .movielist_topic_2 li {height:161px;} .movielist_topic_2 .pic,.movielist_topic_2 .pic img {width:214px;height:110px;} .movielist_topic_2 .play {float:right;background-position:-483px -63px;padding-left:20px;margin-top:0;>margin-top:-20px;} .movielist_modB {padding-left:8px;} .movielist_modB li {width:174px;height:113px;padding:76px 0 0 170px;margin:15px 0 0 6px;} .movielist_modB .pic {position:absolute;left:0;top:0;width:152px;height:189px;background:#333;} .movielist_modB .pic img {width:152px;height:189px;} .movielist_modB .ico720 {top:171px;right:3px;} .movielist_modB .title {margin:0 0 10px;} .movielist_modB p {height:20px;} .movielist_modB .p1 {height:auto;} .movielist_modB .score {top:-2px;font-size:14px;font-family:"Microsoft Yahei";} .movielist_modB .score em {font-size:18px;} .movielist_modB .desc {position:absolute;top:0;left:160px;width:168px;height:56px;background-position:0 -95px;padding:10px 8px 0;} .movielist_modB_2 .ico720 {top:122px;right:3px;} .movielist_modB_2 li {width:119px;height:75px;padding:65px 0 0 110px;margin-top:25px;} .movielist_modB_2 .desc {left:110px;width:103px;height:50px;background-position:0 -34px;} .movielist_modB_2 .pic,.movielist_modB_2 .pic img {width:100px;height:140px;} .movielist_modC li {width:100px;height:180px;padding:0 0 0 16px;text-align:center;} .movielist_modC .pic {width:100px;height:140px;margin-bottom:5px;} .movielist_modC .pic img {width:100px;height:140px;} .movielist_modC p {height:20px;} .movielist_modC h3 {font-size:12px;} .movielist_modC .ico720 {top:122px;} .txtlist {padding:5px 10px 0;} .txtlist li {height:24px;background-position:-496px -39px;padding-left:10px;line-height:24px;overflow:hidden;} .txtlist .newmovie {position:relative;width:114px;height:127px;background:none;padding-left:105px;margin:20px auto 10px;line-height:20px;} .txtlist .newmovie .pic {position:absolute;left:0;top:0;} .newmovie .score {right:0;} .newmovie h3 {height:16px;line-height:16px;overflow:hidden;} .newmovie h3 a {font-size:14px;font-weight:normal;} .newmovie div {height:20px;overflow:hidden;} .newmovie strong {display:block;margin:5px 0 8px;} /*moviecollect*/ .moviecollect {float:left;display:inline;width:153px;padding:0 10px;border-left:solid #f1f1f1 1px;} .moviecollect_first {margin-left:10px;border:none;} .moviecollect h3 {margin:15px 0 10px;font-size:14px;color:#626262;text-align:center;} .moviecollect .pic {display:block;height:145px;background:#f3f3f3;margin-bottom:8px;font-size:14px;text-align:center;} .moviecollect img {display:block;width:153px;height:117px;margin-bottom:4px;border-bottom:solid #fff 1px;} .moviecollect li {height:18px;background-position:-484px -86px;padding-left:22px;margin-top:5px;line-height:18px;overflow:hidden;} .moviecollect_award {float:none;display:block;width:215px;padding:0 0 9px;margin:11px auto 0;border:none;border-bottom:dashed #ddd 1px;} .moviecollect_award .pic {width:215px;height:116px;text-align:left;} .moviecollect_award img {width:215px;height:91px;} /*topmovie*/ .topmovie {position:relative;height:240px;padding:0 15px 0 368px;margin-top:15px;color:#6e6e6e;border-bottom:dashed #dadada 1px;overflow:hidden;} .topmovie .pic {position:absolute;left:15px;top:0;display:block;width:330px;height:214px;background:#ddd;} .topmovie .pic img {width:330px;height:214px;} .topmovie h3 {height:16px;margin-bottom:12px;font-size:14px;line-height:16px;font-weight:normal;overflow:hidden;} .topmovie h3 span {margin-left:5px;font-size:12px;} .topmovie .score {right:16px;font-size:22px;font-family:"Tahoma";line-height:1em;font-weight:bold;} .topmovie .score em {position:relative;top:8px;font-size:30px;} .topmovie_info ul {overflow:hidden;zoom:1;} .topmovie_info li {height:15px;margin-top:6px;color:#7e7e7e;line-height:15px;overflow:hidden;} .topmovie_info li a {margin-left:5px;} .topmovie_txt {background:url(images/topmovie_txt.png) no-repeat 0 0;padding:0 17px;margin:10px 0 8px;line-height:21px;} .topmovie_img li {float:left;display:inline;width:109px;text-align:center;} .topmovie_img img {display:block;width:100px;height:67px;background-position:-207px -34px;padding:4px 4px 8px 5px;} .topmovie_img a {color:#858484;} .topmovie_img a:hover {color:#313131;} .topmovie_2 {height:205px;border-bottom:none;} .topmovie_2 .pic,.topmovie_2 .pic img {height:180px;} /*star*/ .star {float:left;display:block;width:30px;height:14px;background-position:-207px -114px;padding-left:89px;margin:0 !important;font-size:13px;line-height:14px;overflow:hidden;} .star4 {background-position:-207px -129px;} .star3 {background-position:-207px -144px;} .star2 {background-position:-207px -159px;} .star1 {background-position:-207px -174px;} .star0 {background-position:-207px -189px;} .star strong {font-size:15px;color:#de3805;font-weight:normal;font-family:"Arial";} .stars {position:relative;top:1px;>top:-2px;display:inline-block;width:59px;height:11px;background-position:-318px -34px;overflow:hidden;} .stars_4 {background-position:-318px -46px;} .stars_3 {background-position:-318px -58px;} .stars_4 {background-position:-318px -70px;} .stars_1 {background-position:-318px -82px;} .stars_0 {background-position:-318px -94px;} /*bigmovie*/ .bigmovie {position:relative;width:210px;margin:20px auto 0;} .bigmovie img {display:block;width:210px;height:295px;background:#000;} .bigmovie_tt {position:relative;height:27px;background:#f7f7f7;padding:0 78px 0 8px;line-height:27px;border:solid #e7e7e7 1px;border-top:none;overflow:hidden;} .bigmovie_tt h3 {font-size:14px;font-weight:normal;} .bigmovie_play {position:absolute;right:8px;top:0px;background-position:-483px -59px;padding-left:20px;} .bigmovie_ul {padding-top:10px;} .bigmovie_ul li {height:20px;line-height:20px;overflow:hidden;} .bigmovie_ul a,.bigmovie_ul strong {margin-right:3px;} .bigmovie_ul strong {color:#5b5b5b;} .bigmovie_ul .p2 {height:40px;} .bigmovie_ico {position:absolute;left:10px;top:240px;display:block;_display:none;width:45px;height:45px;background:url(images/slide_tigger.png) no-repeat 0 -205px;cursor:pointer;} .pageturn3 {position:absolute;top:150px;display:block;_display:none;width:27px;height:47px;background:url(images/slide_tigger.png) no-repeat 0 -272px;_background:none;text-indent:-9999px;overflow:hidden;z-index:9;} .pageturn3_L {left:15px;} .pageturn3_L:hover {background-position:-5px -418px;} .pageturn3_R {right:15px;background-position:0 -318px;} .pageturn3_R:hover {background-position:0 -364px;} /*pageturn*/ .pageturn {height:30px;padding:0 5px 0 13px;margin-top:12px;line-height:30px;border-top:solid #ddd 1px;} .pageturn_btn {float:right;} .pageturn_btn a,.pageturn_btn span {margin:0 8px;} .pageturn_num {float:left;color:#2f2f2f;} .pageturn2 {float:right;display:inline;width:52px;height:23px;background-position:-120px -34px;margin:5px 10px 0 0;color:#a7a7a7;line-height:23px;text-align:center;} .pageturn2 a {display:block;height:23px;} /*intro*/ .intro {width:570px;height:57px;background:url(images/intro.png);padding:15px 30px 0 90px;margin:20px auto 0;line-height:22px;} /*commentlist*/ .commentlist {float:left;width:675px;} .commentlist li {position:relative;width:530px;height:160px;padding-left:145px;margin:0 auto;color:#838383;overflow:hidden;} .commentlist .pic {position:absolute;left:0;top:0;display:block;width:130px;height:116px;background:#f2f2f2;} .commentlist .pic img {width:130px;height:116px;} .commentlist_user {margin:5px 0 5px 10px;} .commentlist_user a {margin-right:10px;} .commentlist p {height:65px;padding:5px 0 0 10px;} .commentlist h3 {height:29px;background:#f8f8f8;padding:0 10px;font-size:14px;font-weight:normal;line-height:29px;} .commentlist_oper {color:#ccc;text-align:right;} .commentlist_oper a {margin:0 8px;} /*ranklist*/ .ranklist {padding:23px 10px 0;overflow:hidden;zoom:1;} .ranklist p {height:16px;line-height:16px;overflow:hidden;} .ranklist p a {margin-right:8px;} .ranklist strong {position:absolute;margin-left:6px;color:#b6b5b3;font-weight:normal;white-space:nowrap;} .ranklist .type {font-size:10px;font-family:"Tahoma";font-weight:bold;} .ranklist li {position:relative;height:16px;padding:0 32px 7px 28px;margin-top:5px;>margin-top:1px;color:#9b9b9b;line-height:16px;overflow:hidden;} .ranklist em {position:absolute;left:0;top:0;display:block;width:18px;height:14px;background-position:0 -17px;font-size:11px;color:#929292;font-family:"Tahoma";line-height:14px;text-align:center;border:solid #c5c5c5 1px;} .ranklist .top em {width:20px;height:16px;background-position:-120px -78px;color:#fff;font-weight:bold;border:none;} .ranklist .score {position:absolute;right:0;top:0;color:#ff3c00;} .ranklist .title {padding:0 23px 0 0;margin-bottom:4px;} .ranklist .info {top:3px;} .ranklist .pic {position:absolute;left:0;top:0;display:block;width:105px;height:150px;} .ranklist .pic img {width:105px;height:150px;} .ranklist b {font-size:11px;font-family:"Arial";font-weight:normal;} .ranklist .show {height:150px;padding:0 0 0 115px;margin:0 0 19px 0;overflow:visible;_overflow:hidden;} .ranklist .show .title {height:18px;padding:0 27px 0 0;line-height:18px;} .ranklist .show em {left:5px;top:-4px;width:25px;height:30px;background-position:-173px -50px;text-indent:-9999px;overflow:hidden;} .ranklist .show .score {right:0;top:0;font-size:12px;color:#ea3705;font-family:"Microsoft Yahei";font-weight:normal;} .ranklist .show .score b {font-size:16px;font-family:"Microsoft Yahei";font-weight:normal;} .ranklist .show p {margin-top:2px;} .ranklist_typeB {padding:10px 10px 0;} .ranklist_typeB li {padding-right:0;margin:0 0 2px;} .ranklist_typeB p {padding-right:38px;} .ranklist_typeB strong {right:0;top:0;} .morebox {padding:0 10px;font-family:"\5b8b\4f53";text-align:right;} .ranklist_modC .show .title {padding:0;} .ranklist_modC a {margin:0 5px 0 0;} .ranklist_modC li {padding:0 25px 4px 28px;margin-top:8px;} /*box_fouce*/ .ranklist_fouce .info,.playbtn,.box_fouce .box_tt,.ranklist_fouce .top em {background:url(images/fouce.png) no-repeat 0 0;} .box_fouce {position:absolute;right:1px;top:1px;width:245px;height:346px;border:solid #474747 1px;} .box_fouce .box_tt {height:32px;background-repeat:repeat-x;line-height:32px;} .box_fouce .box_tt_tab .tabbox li {width:122px;color:#d2d2d2;border-left:solid #474747 1px;} .box_fouce .box_tt_tab .tabbox .on {background:#2b2b2b;color:#d4d4d4;} .ranklist_fouce {padding-top:10px;} .ranklist_fouce li {padding-right:40px;margin-top:3px;>margin-top:1px;} .ranklist_fouce strong {color:#535353;} .ranklist_fouce a {color:#b5b5b5;} .ranklist_fouce em {border:solid #444 1px;} .ranklist_fouce .top em {background-position:0 -56px;} .ranklist_fouce .show {height:90px;padding-left:75px;margin-bottom:10px;color:#929292;} .ranklist_fouce .show em {left:75px;top:2px;width:20px;height:16px;text-indent:0;} .ranklist_fouce .show p {margin-bottom:5px;} .ranklist_fouce .show .title {padding-left:25px;margin-top:0;} .ranklist_fouce .title a {font-size:14px;} .ranklist_fouce li a {margin-right:5px;} .ranklist_fouce .pic,.ranklist_fouce .pic img {width:64px;height:90px;} .ranklist_fouce .score {right:18px;} .ranklist_fouce .score,.ranklist_fouce .show .score {color:#ee8510;} .ranklist_fouce .info {background-position:-112px -33px;} .playbtn {float:left;display:block;width:55px;height:23px;background-position:0 -32px;line-height:23px;text-indent:25px;} .playbtn:hover {background-position:-56px -32px;color:#fff;} .detaillink {float:left;display:inline;margin:4px 0 0 5px;white-space:nowrap;} .box_fouce .more {color:#a1a1a1;} /*movie_info*/ #movie_info{z-index:995;position:absolute;background-color:#fff;border:1px solid #c9c9c9; width:211px; height:139px;margin:2px 0 0 0;overflow:hidden;} .bg_tm{overflow:hidden; height:100%;} .win_content{ position:absolute; top:0; width:100%; height:138px; } .win_content dl{ padding:7px 9px;} .win_content dt{position:relative;padding-right:80px;margin-bottom:3px;font-size:14px;color:#414141;font-weight:bold;height:18px; overflow:hidden;} .win_content .popular{ float:none; position:absolute; left:125px; top:26px;} .win_content p {width:195px;color:#969696;line-height:20px;overflow:hidden;} .win_content .p_1 {margin-bottom:9px;} .win_content p span {margin:0 3px;color:#4a4a4a;} .win_content p em {float:left;font-style:normal;color:#adacac;line-height:14px;} .win_content_loading {position:absolute;left:0px;top:60px;width:210px;text-align:center;}
css/index_movie.css
html, body, div, span,applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dd, dl, dt, li, ol, ul, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {margin:0;padding:0;} div {text-align:left;} h1, h2, h3, h4, h5, h6{font-size:100%;} address, cite, em{font-style:normal;} li{list-style-type:none;} fieldset, img {border:0;} label,button{cursor: pointer;} select,input,textarea{font-size:12px;line-height:1.2em;} /*reset*/ body{height:100%;background:#fff;font:12px/1.5em "\5b8b\4f53","Arial Narrow";color:#707070;-webkit-text-size-adjust:none;} a{text-decoration:none;color:#404040;} a:hover{color:#02a1d9;text-decoration:underline;} .on:hover {text-decoration:none;} /*layer*/ .bigmovie_play,.star,.movielist_topic_2 .play,.pageturn2,.box h2,.taglink li,.tagbox h2,.ranklist .show em,.ranklist .top em,.close,.stars,.topmovie_img img,.movielist_modB .desc,.txtlist li,.moviecollect li,.moviecollect li,.info,.ico720,.box_tt {background:url(images/sprite_m.png) no-repeat 0 0;} .HL {color:#db160d !important;} .wrapper {width:970px;margin:0 auto;overflow:hidden;zoom:1;} .main {float:left;width:720px;} .side {float:right;width:240px;} .L721R230 .main {width:721px;background:url(images/line_1.png) no-repeat right top;} .L721R230 .side {width:230px;} .height_1 {height:340px;} .height_2 {height:323px;} .height_3 {height:425px;} .height_4 {height:380px;} .height_5 {height:456px;} .height_6 {position:relative;height:493px;} .height_7 {height:603px;} .height_8 {position:relative;height:245px;} .height_9 {height:478px;} .height_10 {height:547px;} .height_11 {height:735px;} .height_12 {height:284px;} .close {position:absolute;right:3px;top:3px;display:block;width:48px;height:19px;background-position:-120px -58px;color:#666;line-height:19px;text-indent:5px;} .research {position:fixed;_position:absolute;right:0;bottom:0;z-index:9999;} .research_con {position:relative;width:100px;height:130px;} .research_close {position:absolute;right:0px;top:0px;display:block;width:15px;height:15px;background:#000;text-indent:-9999px;overflow:hidden;opacity:0;filter:alpha(opacity=0);} /*footer*/ .footer {width:970px;height:80px;padding-top:15px;margin:0 auto;color:#888;text-align:center;clear:both;} .footer a {color:#888;} .footer .f-nav {width:930px;height:20px;color:#C9C9C9;text-align:center;} .footer .f-nav a {margin:0 8px;color:#333;} .footer .copyright {width:970px;height:44px;font-family:"Arial";line-height:22px;text-align:center;} /*slidebox*/ .slidebox {position:relative;overflow:hidden;} .slidecontain {position:relative;margin:0 auto;overflow:hidden;} .slide_tigger {position:absolute;top:150px;display:block;width:26px;height:64px;background:url(images/slide_tigger.png) 0 -65px;text-indent:-9999px;z-index:9;overflow:hidden;cursor:pointer; _background:none;_filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="http://misc.web.xunlei.com/movie_index_59/img/ie_tigger_L.png" ,sizingMethod="crop"); } .slide_tigger_L {left:-1px;} .slide_tigger_L:hover {background-position:0 -130px;} .slide_tigger_L_none,.slide_tigger_L_none:hover {background-position:0 0;cursor:default;} .slide_tigger_R {right:-2px;background-position:-26px -65px; _background:none;_filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="http://misc.web.xunlei.com/movie_index_59/img/ie_tigger_R.png" ,sizingMethod="crop"); } .slide_tigger_R:hover {background-position:-26px -130px;} .slide_tigger_R_none,.slide_tigger_R_none:hover {background-position:-26px 0;cursor:default;} .slidebox_1 .movielist {width:1436px;} .slidebox_1 .slidecontain {width:718px;} .slidebox_2 .slide_tigger {top:38px;} .slidebox_2 .slidecontain {width:696px;left:-8px;} .slidebox_2 .movielist {width:3480px;} .slidebox_3 .slidecontain {width:675px;} .slidebox_3 .slide_tigger {top:200px;} /*fouce*/ .fouce {position:relative;width:970px;height:350px;background:#2b2b2b;margin:0 auto 10px;} .foucebox {position:relative;width:720px;height:350px;overflow:hidden;} .foucebox_imgbox {position:relative;width:720px;height:350px;overflow:hidden;z-index:9;} .foucebox_imgbox img {display:block;width:720px;height:350px;} .foucebox_bg {position:absolute;left:0;bottom:0;width:720px;height:90px;background:#000;filter:alpha(opacity=60);opacity:0.6;z-index:8;} .foucebox_h4 {position:absolute;left:55px;top:270px;font-size:16px;color:#fff;line-height:22px;z-index:9;} .foucebox_h4 a {color:#fff;font-weight:normal;} .scrollimg2_tigger {position:absolute;left:0;bottom:6px;height:45px;overflow:hidden;z-index:10;} .scrollimg2_tigger ul{padding-top:6px;overflow:hidden;} .scrollimg2_tigger li {position:relative;float:left;display:inline;width:64px;height:39px;margin-left:7px;text-align:center;overflow:hidden;} .scrollimg2_tigger a {position:absolute;left:0;top:0;display:block;width:60px;height:35px;background:#aeaeae;padding:2px;color:#ababad;} .scrollimg2_tigger img {width:60px;height:35px;margin-bottom:2px;} .scrollimg2_tigger_hoverbg {position:absolute;left:7px;top:0;width:64px;height:45px;background:url(images/fouce.png) no-repeat -21px -56px;cursor:pointer;z-index:2;} .scrollimg2_tigger .scrollimg2_tigger_link {position:absolute;left:0;top:6px;padding:0px;z-index:3;} .scrollimg2_tigger .scrollimg2_tigger_link a {display:block;width:70px;height:50px;filter:alpha(opacity=0);opacity:0;} .scrollimg2_bigimg .scrollimg2_bg {position:absolute;left:0;top:269px;float:none;width:740px;height:40px;background:#000;filter:alpha(opacity=60);opacity:0.6;z-index:98;} .playico {position:absolute;left:10px;top:265px;width:40px;height:40px;background:url(images/slide_tigger.png) 0 -205px;_background:none;z-index:9;} /*tagbox*/ .tagbox {position:relative;width:968px;height:116px;background:url(images/tagbox.png);margin:0 auto 10px;border:solid #ddd 1px;} .tagbox h2 {position:absolute;left:20px;top:10px;width:72px;height:18px;background-position:0 -161px;text-indent:-9999px;overflow:hidden;} .taglink {float:left;width:80px;padding:37px 0 0 25px;} .taglink li {background-position:-496px -39px;padding-left:10px;line-height:22px;} .tagbox_dl {float:left;display:inline;width:130px;height:116px;background:url(images/tagbox_dl.png) no-repeat 0 0;padding-left:20px;overflow:hidden;} .tagbox_dl dt {margin:15px 0 5px;font-size:14px;font-weight:bold;} .tagbox_dl dd {float:left;width:40px;line-height:22px;} .tagbox_dl dd a {white-space:nowrap;} .tagbox_dl_1 {width:170px;} .tagbox_dl_4 {width:150px;} .tagbox_dl_4 dd {width:50px;} .tagbox_dl_5 {width:180px;} .tagbox_dl_5 dd {width:auto;margin-right:10px;} /*taglist*/ .taglist dl {height:24px;padding:0 0 0 0;line-height:24px;overflow:hidden;zoom:1;} .taglist dt {float:left;display:inline;margin-right:11px;color:#5b5b5b;font-weight:bold;} .taglist dd {float:left;display:inline;margin-right:12px;white-space:nowrap;} .taglist .taglist_zt {height:auto;} .taglist .taglist_zt dt,.taglist .taglist_zt dd {float:none;display:block;} .taglist .taglist_star {height:48px;overflow:hidden;} /*box*/ .box {margin-bottom:10px;border:solid #ddd 1px;overflow:hidden;zoom:1;} .box h2 {float:left;display:inline;width:72px;height:18px;margin:6px 10px 0 15px;text-indent:-9999px;overflow:hidden;} .side .box h2 {width:auto;height:auto;background:none;margin-top:0;font-size:14px;color:#303030;text-indent:0;} .box .side_h2 {float:none;display:block;width:auto;height:auto;background:none;margin:16px 0 8px;text-indent:0;font-size:14px;color:#313131;} .box .more {float:right;display:inline;margin-right:10px;} .box_tt {height:33px;background-repeat:repeat-x;line-height:33px;} .act {float:right;display:inline;margin-right:10px;} .tabbox {float:left;border-right:solid #ddd 1px;} .tabbox li {float:left;width:82px;font-size:14px;text-align:center;border-left:solid #ddd 1px;cursor:pointer;} .tabbox .on {background:#fff;color:#414141;font-weight:bold;} .box_tt_tab .tabbox {margin-left:-1px;border-right:none;} .box_tt_tab .tabbox li {width:118px;} .box_A .box_tt {background:none;margin:10px 0;} .box .h2_1 {background-position:0 -180px;} .box .h2_2 {background-position:0 -199px;} .box .h2_3 {background-position:0 -218px;} .box .h2_4 {background-position:0 -237px;} .box .h2_5 {width:90px;height:25px;background-position:-73px -180px;} .box .h2_6 {height:25px;background-position:-73px -206px;} .box .h2_7 {background-position:0 -256px;} .box .h2_8 {background-position:0 -275px;} .box .h2_9 {background-position:-73px -161px;} /*banner*/ .banner {width:970px;height:80px;margin:0 auto 12px;overflow:hidden;zoom:1;} .ttbanner {float:right;display:inline;width:140px;height:20px;margin:6px 10px 0 0;overflow:hidden;} /*list*/ .score {position:absolute;right:11px;top:0px;color:#ff3c00;} .info {position:absolute;right:0px;top:4px;display:block;width:8px;height:10px;background-position:-158px -78px;text-indent:-9999px;overflow:hidden;} .ico720 {position:absolute;right:3px;top:77px;display:block;width:33px;height:15px;background-position:-173px -34px;text-indent:-9999px;overflow:hidden;} .title {position:relative;height:16px;padding-right:35px;margin:7px 0;overflow:hidden;} .movielist {overflow:hidden;zoom:1;} .movielist li {position:relative;float:left;display:inline;width:127px;height:275px;padding:20px 0 0 10px;overflow:hidden;} .movielist .pic {position:relative;display:block;width:127px;height:182px;} .movielist .pic img {width:127px;height:182px;} .movielist h3 {height:16px;font-size:14px;font-weight:normal;line-height:16px;overflow:hidden;} .movielist p {line-height:20px;overflow:hidden;} .movielist .p1 {height:20px;} .movielist .p1 a,.movielist_modB p a {margin:0 2px;} .movielist_topic li {width:214px;height:126px;padding:15px 0 0 12px;} .movielist_topic .pic,.movielist_topic .pic img {width:214px;height:95px;} .movielist_topic .title {padding-right:0;} .movielist_topic_2 li {height:161px;} .movielist_topic_2 .pic,.movielist_topic_2 .pic img {width:214px;height:110px;} .movielist_topic_2 .play {float:right;background-position:-483px -63px;padding-left:20px;margin-top:0;>margin-top:-20px;} .movielist_modB {padding-left:8px;} .movielist_modB li {width:174px;height:113px;padding:76px 0 0 170px;margin:15px 0 0 6px;} .movielist_modB .pic {position:absolute;left:0;top:0;width:152px;height:189px;background:#333;} .movielist_modB .pic img {width:152px;height:189px;} .movielist_modB .ico720 {top:171px;right:3px;} .movielist_modB .title {margin:0 0 10px;} .movielist_modB p {height:20px;} .movielist_modB .p1 {height:auto;} .movielist_modB .score {top:-2px;font-size:14px;font-family:"Microsoft Yahei";} .movielist_modB .score em {font-size:18px;} .movielist_modB .desc {position:absolute;top:0;left:160px;width:168px;height:56px;background-position:0 -95px;padding:10px 8px 0;} .movielist_modB_2 .ico720 {top:122px;right:3px;} .movielist_modB_2 li {width:119px;height:75px;padding:65px 0 0 110px;margin-top:25px;} .movielist_modB_2 .desc {left:110px;width:103px;height:50px;background-position:0 -34px;} .movielist_modB_2 .pic,.movielist_modB_2 .pic img {width:100px;height:140px;} .movielist_modC li {width:100px;height:180px;padding:0 0 0 16px;text-align:center;} .movielist_modC .pic {width:100px;height:140px;margin-bottom:5px;} .movielist_modC .pic img {width:100px;height:140px;} .movielist_modC p {height:20px;} .movielist_modC h3 {font-size:12px;} .movielist_modC .ico720 {top:122px;} .txtlist {padding:5px 10px 0;} .txtlist li {height:24px;background-position:-496px -39px;padding-left:10px;line-height:24px;overflow:hidden;} .txtlist .newmovie {position:relative;width:114px;height:127px;background:none;padding-left:105px;margin:20px auto 10px;line-height:20px;} .txtlist .newmovie .pic {position:absolute;left:0;top:0;} .newmovie .score {right:0;} .newmovie h3 {height:16px;line-height:16px;overflow:hidden;} .newmovie h3 a {font-size:14px;font-weight:normal;} .newmovie div {height:20px;overflow:hidden;} .newmovie strong {display:block;margin:5px 0 8px;} /*moviecollect*/ .moviecollect {float:left;display:inline;width:153px;padding:0 10px;border-left:solid #f1f1f1 1px;} .moviecollect_first {margin-left:10px;border:none;} .moviecollect h3 {margin:15px 0 10px;font-size:14px;color:#626262;text-align:center;} .moviecollect .pic {display:block;height:145px;background:#f3f3f3;margin-bottom:8px;font-size:14px;text-align:center;} .moviecollect img {display:block;width:153px;height:117px;margin-bottom:4px;border-bottom:solid #fff 1px;} .moviecollect li {height:18px;background-position:-484px -86px;padding-left:22px;margin-top:5px;line-height:18px;overflow:hidden;} .moviecollect_award {float:none;display:block;width:215px;padding:0 0 9px;margin:11px auto 0;border:none;border-bottom:dashed #ddd 1px;} .moviecollect_award .pic {width:215px;height:116px;text-align:left;} .moviecollect_award img {width:215px;height:91px;} /*topmovie*/ .topmovie {position:relative;height:240px;padding:0 15px 0 368px;margin-top:15px;color:#6e6e6e;border-bottom:dashed #dadada 1px;overflow:hidden;} .topmovie .pic {position:absolute;left:15px;top:0;display:block;width:330px;height:214px;background:#ddd;} .topmovie .pic img {width:330px;height:214px;} .topmovie h3 {height:16px;margin-bottom:12px;font-size:14px;line-height:16px;font-weight:normal;overflow:hidden;} .topmovie h3 span {margin-left:5px;font-size:12px;} .topmovie .score {right:16px;font-size:22px;font-family:"Tahoma";line-height:1em;font-weight:bold;} .topmovie .score em {position:relative;top:8px;font-size:30px;} .topmovie_info ul {overflow:hidden;zoom:1;} .topmovie_info li {height:15px;margin-top:6px;color:#7e7e7e;line-height:15px;overflow:hidden;} .topmovie_info li a {margin-left:5px;} .topmovie_txt {background:url(images/topmovie_txt.png) no-repeat 0 0;padding:0 17px;margin:10px 0 8px;line-height:21px;} .topmovie_img li {float:left;display:inline;width:109px;text-align:center;} .topmovie_img img {display:block;width:100px;height:67px;background-position:-207px -34px;padding:4px 4px 8px 5px;} .topmovie_img a {color:#858484;} .topmovie_img a:hover {color:#313131;} .topmovie_2 {height:205px;border-bottom:none;} .topmovie_2 .pic,.topmovie_2 .pic img {height:180px;} /*star*/ .star {float:left;display:block;width:30px;height:14px;background-position:-207px -114px;padding-left:89px;margin:0 !important;font-size:13px;line-height:14px;overflow:hidden;} .star4 {background-position:-207px -129px;} .star3 {background-position:-207px -144px;} .star2 {background-position:-207px -159px;} .star1 {background-position:-207px -174px;} .star0 {background-position:-207px -189px;} .star strong {font-size:15px;color:#de3805;font-weight:normal;font-family:"Arial";} .stars {position:relative;top:1px;>top:-2px;display:inline-block;width:59px;height:11px;background-position:-318px -34px;overflow:hidden;} .stars_4 {background-position:-318px -46px;} .stars_3 {background-position:-318px -58px;} .stars_4 {background-position:-318px -70px;} .stars_1 {background-position:-318px -82px;} .stars_0 {background-position:-318px -94px;} /*bigmovie*/ .bigmovie {position:relative;width:210px;margin:20px auto 0;} .bigmovie img {display:block;width:210px;height:295px;background:#000;} .bigmovie_tt {position:relative;height:27px;background:#f7f7f7;padding:0 78px 0 8px;line-height:27px;border:solid #e7e7e7 1px;border-top:none;overflow:hidden;} .bigmovie_tt h3 {font-size:14px;font-weight:normal;} .bigmovie_play {position:absolute;right:8px;top:0px;background-position:-483px -59px;padding-left:20px;} .bigmovie_ul {padding-top:10px;} .bigmovie_ul li {height:20px;line-height:20px;overflow:hidden;} .bigmovie_ul a,.bigmovie_ul strong {margin-right:3px;} .bigmovie_ul strong {color:#5b5b5b;} .bigmovie_ul .p2 {height:40px;} .bigmovie_ico {position:absolute;left:10px;top:240px;display:block;_display:none;width:45px;height:45px;background:url(images/slide_tigger.png) no-repeat 0 -205px;cursor:pointer;} .pageturn3 {position:absolute;top:150px;display:block;_display:none;width:27px;height:47px;background:url(images/slide_tigger.png) no-repeat 0 -272px;_background:none;text-indent:-9999px;overflow:hidden;z-index:9;} .pageturn3_L {left:15px;} .pageturn3_L:hover {background-position:-5px -418px;} .pageturn3_R {right:15px;background-position:0 -318px;} .pageturn3_R:hover {background-position:0 -364px;} /*pageturn*/ .pageturn {height:30px;padding:0 5px 0 13px;margin-top:12px;line-height:30px;border-top:solid #ddd 1px;} .pageturn_btn {float:right;} .pageturn_btn a,.pageturn_btn span {margin:0 8px;} .pageturn_num {float:left;color:#2f2f2f;} .pageturn2 {float:right;display:inline;width:52px;height:23px;background-position:-120px -34px;margin:5px 10px 0 0;color:#a7a7a7;line-height:23px;text-align:center;} .pageturn2 a {display:block;height:23px;} /*intro*/ .intro {width:570px;height:57px;background:url(images/intro.png);padding:15px 30px 0 90px;margin:20px auto 0;line-height:22px;} /*commentlist*/ .commentlist {float:left;width:675px;} .commentlist li {position:relative;width:530px;height:160px;padding-left:145px;margin:0 auto;color:#838383;overflow:hidden;} .commentlist .pic {position:absolute;left:0;top:0;display:block;width:130px;height:116px;background:#f2f2f2;} .commentlist .pic img {width:130px;height:116px;} .commentlist_user {margin:5px 0 5px 10px;} .commentlist_user a {margin-right:10px;} .commentlist p {height:65px;padding:5px 0 0 10px;} .commentlist h3 {height:29px;background:#f8f8f8;padding:0 10px;font-size:14px;font-weight:normal;line-height:29px;} .commentlist_oper {color:#ccc;text-align:right;} .commentlist_oper a {margin:0 8px;} /*ranklist*/ .ranklist {padding:23px 10px 0;overflow:hidden;zoom:1;} .ranklist p {height:16px;line-height:16px;overflow:hidden;} .ranklist p a {margin-right:8px;} .ranklist strong {position:absolute;margin-left:6px;color:#b6b5b3;font-weight:normal;white-space:nowrap;} .ranklist .type {font-size:10px;font-family:"Tahoma";font-weight:bold;} .ranklist li {position:relative;height:16px;padding:0 32px 7px 28px;margin-top:5px;>margin-top:1px;color:#9b9b9b;line-height:16px;overflow:hidden;} .ranklist em {position:absolute;left:0;top:0;display:block;width:18px;height:14px;background-position:0 -17px;font-size:11px;color:#929292;font-family:"Tahoma";line-height:14px;text-align:center;border:solid #c5c5c5 1px;} .ranklist .top em {width:20px;height:16px;background-position:-120px -78px;color:#fff;font-weight:bold;border:none;} .ranklist .score {position:absolute;right:0;top:0;color:#ff3c00;} .ranklist .title {padding:0 23px 0 0;margin-bottom:4px;} .ranklist .info {top:3px;} .ranklist .pic {position:absolute;left:0;top:0;display:block;width:105px;height:150px;} .ranklist .pic img {width:105px;height:150px;} .ranklist b {font-size:11px;font-family:"Arial";font-weight:normal;} .ranklist .show {height:150px;padding:0 0 0 115px;margin:0 0 19px 0;overflow:visible;_overflow:hidden;} .ranklist .show .title {height:18px;padding:0 27px 0 0;line-height:18px;} .ranklist .show em {left:5px;top:-4px;width:25px;height:30px;background-position:-173px -50px;text-indent:-9999px;overflow:hidden;} .ranklist .show .score {right:0;top:0;font-size:12px;color:#ea3705;font-family:"Microsoft Yahei";font-weight:normal;} .ranklist .show .score b {font-size:16px;font-family:"Microsoft Yahei";font-weight:normal;} .ranklist .show p {margin-top:2px;} .ranklist_typeB {padding:10px 10px 0;} .ranklist_typeB li {padding-right:0;margin:0 0 2px;} .ranklist_typeB p {padding-right:38px;} .ranklist_typeB strong {right:0;top:0;} .morebox {padding:0 10px;font-family:"\5b8b\4f53";text-align:right;} .ranklist_modC .show .title {padding:0;} .ranklist_modC a {margin:0 5px 0 0;} .ranklist_modC li {padding:0 25px 4px 28px;margin-top:8px;} /*box_fouce*/ .ranklist_fouce .info,.playbtn,.box_fouce .box_tt,.ranklist_fouce .top em {background:url(images/fouce.png) no-repeat 0 0;} .box_fouce {position:absolute;right:1px;top:1px;width:245px;height:346px;border:solid #474747 1px;} .box_fouce .box_tt {height:32px;background-repeat:repeat-x;line-height:32px;} .box_fouce .box_tt_tab .tabbox li {width:122px;color:#d2d2d2;border-left:solid #474747 1px;} .box_fouce .box_tt_tab .tabbox .on {background:#2b2b2b;color:#d4d4d4;} .ranklist_fouce {padding-top:10px;} .ranklist_fouce li {padding-right:40px;margin-top:3px;>margin-top:1px;} .ranklist_fouce strong {color:#535353;} .ranklist_fouce a {color:#b5b5b5;} .ranklist_fouce em {border:solid #444 1px;} .ranklist_fouce .top em {background-position:0 -56px;} .ranklist_fouce .show {height:90px;padding-left:75px;margin-bottom:10px;color:#929292;} .ranklist_fouce .show em {left:75px;top:2px;width:20px;height:16px;text-indent:0;} .ranklist_fouce .show p {margin-bottom:5px;} .ranklist_fouce .show .title {padding-left:25px;margin-top:0;} .ranklist_fouce .title a {font-size:14px;} .ranklist_fouce li a {margin-right:5px;} .ranklist_fouce .pic,.ranklist_fouce .pic img {width:64px;height:90px;} .ranklist_fouce .score {right:18px;} .ranklist_fouce .score,.ranklist_fouce .show .score {color:#ee8510;} .ranklist_fouce .info {background-position:-112px -33px;} .playbtn {float:left;display:block;width:55px;height:23px;background-position:0 -32px;line-height:23px;text-indent:25px;} .playbtn:hover {background-position:-56px -32px;color:#fff;} .detaillink {float:left;display:inline;margin:4px 0 0 5px;white-space:nowrap;} .box_fouce .more {color:#a1a1a1;} /*movie_info*/ #movie_info{z-index:995;position:absolute;background-color:#fff;border:1px solid #c9c9c9; width:211px; height:139px;margin:2px 0 0 0;overflow:hidden;} .bg_tm{overflow:hidden; height:100%;} .win_content{ position:absolute; top:0; width:100%; height:138px; } .win_content dl{ padding:7px 9px;} .win_content dt{position:relative;padding-right:80px;margin-bottom:3px;font-size:14px;color:#414141;font-weight:bold;height:18px; overflow:hidden;} .win_content .popular{ float:none; position:absolute; left:125px; top:26px;} .win_content p {width:195px;color:#969696;line-height:20px;overflow:hidden;} .win_content .p_1 {margin-bottom:9px;} .win_content p span {margin:0 3px;color:#4a4a4a;} .win_content p em {float:left;font-style:normal;color:#adacac;line-height:14px;} .win_content_loading {position:absolute;left:0px;top:60px;width:210px;text-align:center;}
0.308294
0.071949
@charset "utf-8"; /* css*/ * { margin: 0%; border: 0%; padding: 0%; } body { /* margin: 60px; */ /* background-color: rgb(240, 240, 240); */ background-image: url(../imagenes1/naturaleza.jpg); } /* header */ /* **************** */ /* *******************+ */ header img { width: 10%; margin: 3% 0% 0% 5%; border-radius: 40px; border: 2px solid white; } /* nav */ /* ********************+ */ nav { width: 80%; margin: -4% 0px 0px 20%; } nav ul { list-style-type: none; /*desaparecn los puntos*/ display: flex; /*fila*/ } nav>li { float: left; } .nav li a { background-color: transparent; color: white; text-decoration: none; /*desaparecen la rayas*/ padding: 10px; /*ordm*/ display: block; text-align: center; width: 100%; font-size: 16pt; letter-spacing: 2px; } .nav li ul { display: none; /*orden*/ position: absolute; min-width: 140px } .nav li ul li { position: relative; } .nav li ul li a { background-color: rgb(102, 83, 46); font-family: 'Courier New', Courier, monospace; /* font-size: 20px; */ } .nav li:hover>ul { display: block; /*los selectores*/ } .nav li a:hover { color: black; background-color: gray; } /* logo whatsap */ /* **************** */ .whatsapp img { background-color: wheat; border-radius: 100px; float: right; width: 8%; margin: -60px 80px 0px 0px; } /* *********** */ /*ATRIBUTOS IMÁGENES HEADER*/ .sliderheader { width: 100%; margin: 0px; padding: 0px; overflow: hidden; /*junta las fotos uno encima del otro*/ /* margin-left: 30px; */ background-image: url(../imagenes1/cinco/7.jpg); /* border-radius: 10px; */ } .sliderheader ul { display: flex; animation: cambio 5s infinite alternate; } .sliderheader li { width: 100%; list-style: none; padding: 0px; } .sliderheader img { width: 700px; height: 400px; padding: 20px 2px 20px 10px; } @keyframes cambio { 0% { margin-left: 0; } 10% { margin-left: 0; } 15% { margin-left: -90%; } 50% { margin-left: -110%; } 55% { margin-left: -130%; } 65% { margin-left: -180%; } 70% { margin-left: -210%; } 100% { margin-left: -212%; } } /* *************** */ /* main img */ .primero img { width: 100%; } .patrimonio { background-color: white; text-align: center; } .patrimonio p { color: rgb(102, 83, 46); font-size: 20pt; font-weight: bold; font-family: 'Courier New', Courier, monospace; margin: 20px 0px; } .patrimonio img { width: 15%; padding: 10px; } .patrimonio a img:hover { -webkit-transform: scale(1.3); transform: scale(1.3); } /* section */ /* ********************** */ /* ******************* */ /* section p { text-align: center; margin: 40px 0px 50px 0px; color: rgb(102, 83, 46); font: 4em courier; font-weight: bolder; border-left: 40px solid red; border-right: 38px solid white; border-radius: 100% 50% 50% 100% / 100%; height: 200px; width: 1269px; } */ .wordart { font-family: Arial, sans-serif; font-size: 5em; font-weight: bold; position: relative; z-index: 1; display: inline-block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .wordart.radial .text { background: #ff0505; background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJod…BoZWlnaHQ9IjEwMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+); background: -moz-radial-gradient(center, ellipse cover, white 0%, red 100%); background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #fffffe), color-stop(100%, #ec8a39)); background: -webkit-radial-gradient(center, ellipse cover,white 0%, red 100%); background: -o-radial-gradient(center, ellipse cover, white 0%, red 100%); background: -ms-radial-gradient(center, ellipse cover, white 0%, red 100%); background: radial-gradient(ellipse at center, white 0%, red 100%); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='white', endColorstr='red', GradientType=1); font-family: Impact, sans-serif; font-weight: bold; } /* */ .figure { width: 70%; padding: 5px; display: flex; flex-direction: row; justify-content: space-around; flex-wrap: wrap; margin-left: 200px; } .figure figure { width: 50%; margin-top: 10px; margin-bottom: 10px; border-radius: 20px; } .figure figure img { width: 80%; height: 400px; margin: 10px auto; display: block; border-radius: 50px; } .figure figure img:hover { -webkit-transform: scale(0.3); transform: scale(0.9); } .figure figure img { overflow: hidden; } .figure figure figcaption { font-size: 30pt; color: white; font-weight: bolder; font-family: 'Courier New', Courier, monospace; text-align: center; } .figure figure a { text-decoration: none; } /* color de link al momento de hacer click */ .figure figure figcaption:hover { color: red; } /* footer */ /* ***************+ */ footer { background-color: black; } footer p { text-align: center; font-size: 13pt; color: white; font-family: 'Courier New', Courier, monospace; margin-bottom: -15px; }
css/estilos.css
@charset "utf-8"; /* css*/ * { margin: 0%; border: 0%; padding: 0%; } body { /* margin: 60px; */ /* background-color: rgb(240, 240, 240); */ background-image: url(../imagenes1/naturaleza.jpg); } /* header */ /* **************** */ /* *******************+ */ header img { width: 10%; margin: 3% 0% 0% 5%; border-radius: 40px; border: 2px solid white; } /* nav */ /* ********************+ */ nav { width: 80%; margin: -4% 0px 0px 20%; } nav ul { list-style-type: none; /*desaparecn los puntos*/ display: flex; /*fila*/ } nav>li { float: left; } .nav li a { background-color: transparent; color: white; text-decoration: none; /*desaparecen la rayas*/ padding: 10px; /*ordm*/ display: block; text-align: center; width: 100%; font-size: 16pt; letter-spacing: 2px; } .nav li ul { display: none; /*orden*/ position: absolute; min-width: 140px } .nav li ul li { position: relative; } .nav li ul li a { background-color: rgb(102, 83, 46); font-family: 'Courier New', Courier, monospace; /* font-size: 20px; */ } .nav li:hover>ul { display: block; /*los selectores*/ } .nav li a:hover { color: black; background-color: gray; } /* logo whatsap */ /* **************** */ .whatsapp img { background-color: wheat; border-radius: 100px; float: right; width: 8%; margin: -60px 80px 0px 0px; } /* *********** */ /*ATRIBUTOS IMÁGENES HEADER*/ .sliderheader { width: 100%; margin: 0px; padding: 0px; overflow: hidden; /*junta las fotos uno encima del otro*/ /* margin-left: 30px; */ background-image: url(../imagenes1/cinco/7.jpg); /* border-radius: 10px; */ } .sliderheader ul { display: flex; animation: cambio 5s infinite alternate; } .sliderheader li { width: 100%; list-style: none; padding: 0px; } .sliderheader img { width: 700px; height: 400px; padding: 20px 2px 20px 10px; } @keyframes cambio { 0% { margin-left: 0; } 10% { margin-left: 0; } 15% { margin-left: -90%; } 50% { margin-left: -110%; } 55% { margin-left: -130%; } 65% { margin-left: -180%; } 70% { margin-left: -210%; } 100% { margin-left: -212%; } } /* *************** */ /* main img */ .primero img { width: 100%; } .patrimonio { background-color: white; text-align: center; } .patrimonio p { color: rgb(102, 83, 46); font-size: 20pt; font-weight: bold; font-family: 'Courier New', Courier, monospace; margin: 20px 0px; } .patrimonio img { width: 15%; padding: 10px; } .patrimonio a img:hover { -webkit-transform: scale(1.3); transform: scale(1.3); } /* section */ /* ********************** */ /* ******************* */ /* section p { text-align: center; margin: 40px 0px 50px 0px; color: rgb(102, 83, 46); font: 4em courier; font-weight: bolder; border-left: 40px solid red; border-right: 38px solid white; border-radius: 100% 50% 50% 100% / 100%; height: 200px; width: 1269px; } */ .wordart { font-family: Arial, sans-serif; font-size: 5em; font-weight: bold; position: relative; z-index: 1; display: inline-block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .wordart.radial .text { background: #ff0505; background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJod…BoZWlnaHQ9IjEwMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+); background: -moz-radial-gradient(center, ellipse cover, white 0%, red 100%); background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #fffffe), color-stop(100%, #ec8a39)); background: -webkit-radial-gradient(center, ellipse cover,white 0%, red 100%); background: -o-radial-gradient(center, ellipse cover, white 0%, red 100%); background: -ms-radial-gradient(center, ellipse cover, white 0%, red 100%); background: radial-gradient(ellipse at center, white 0%, red 100%); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='white', endColorstr='red', GradientType=1); font-family: Impact, sans-serif; font-weight: bold; } /* */ .figure { width: 70%; padding: 5px; display: flex; flex-direction: row; justify-content: space-around; flex-wrap: wrap; margin-left: 200px; } .figure figure { width: 50%; margin-top: 10px; margin-bottom: 10px; border-radius: 20px; } .figure figure img { width: 80%; height: 400px; margin: 10px auto; display: block; border-radius: 50px; } .figure figure img:hover { -webkit-transform: scale(0.3); transform: scale(0.9); } .figure figure img { overflow: hidden; } .figure figure figcaption { font-size: 30pt; color: white; font-weight: bolder; font-family: 'Courier New', Courier, monospace; text-align: center; } .figure figure a { text-decoration: none; } /* color de link al momento de hacer click */ .figure figure figcaption:hover { color: red; } /* footer */ /* ***************+ */ footer { background-color: black; } footer p { text-align: center; font-size: 13pt; color: white; font-family: 'Courier New', Courier, monospace; margin-bottom: -15px; }
0.251832
0.036357
/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification for details on configuring this project to bundle and minify static web assets. */ a.navbar-brand { white-space: normal; text-align: center; word-break: break-all; } /* Provide sufficient contrast against white background */ a { color: #6c757d; } .btn-primary { color: #fff; background-color: #1b6ec2; border-color: #1861ac; } .btn-huge { padding-top: 25px; padding-bottom: 25px; } .nav-pills .nav-link.active, .nav-pills .show > .nav-link { color: #fff; background-color: #1b6ec2; border-color: #1861ac; } /* Sticky footer styles -------------------------------------------------- */ html { font-size: 14px; } @media (min-width: 768px) { html { font-size: 16px; } } .border-top { border-top: 1px solid #e5e5e5; } .border-bottom { border-bottom: 1px solid #e5e5e5; } .box-shadow { box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05); } button.accept-policy { font-size: 1rem; line-height: inherit; } /* Sticky footer styles -------------------------------------------------- */ html { position: relative; min-height: 100%; } body { /* Margin bottom by footer height */ margin-bottom: 60px; background-image: url("https://images.hdqwalls.com/wallpapers/white-cube-pattern-4k-bu.jpg"); } nav { background-image: url("https://minibackground.com/wp-content/uploads/2019/01/Wilson-wood.jpg"); } .footer { position: absolute; bottom: 0; width: 100%; white-space: nowrap; line-height: 60px; /* Vertically center the text there */ } /*---------------------------------CUSTOMS------------------------------*/ /*---------------------------------CUSTOMS------------------------------*/ /*---------------------------------CUSTOMS------------------------------*/ /*---------------------------------CUSTOMS------------------------------*/ .customBody { background-image: url("https://wallpaperaccess.com/full/666625.jpg"); } h1, h2, h3 { padding-bottom: 5px; white-space: nowrap; overflow: hidden; width: 100%; animation: animtext 2s steps(80, end); transition: all cubic-bezier(0.1, 0.7, 1.0, 0.1); } @keyframes animtext { from { width: 0; transition: all 2s ease-in-out; } }
Web/CollectorHub.Web/wwwroot/css/site.css
/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification for details on configuring this project to bundle and minify static web assets. */ a.navbar-brand { white-space: normal; text-align: center; word-break: break-all; } /* Provide sufficient contrast against white background */ a { color: #6c757d; } .btn-primary { color: #fff; background-color: #1b6ec2; border-color: #1861ac; } .btn-huge { padding-top: 25px; padding-bottom: 25px; } .nav-pills .nav-link.active, .nav-pills .show > .nav-link { color: #fff; background-color: #1b6ec2; border-color: #1861ac; } /* Sticky footer styles -------------------------------------------------- */ html { font-size: 14px; } @media (min-width: 768px) { html { font-size: 16px; } } .border-top { border-top: 1px solid #e5e5e5; } .border-bottom { border-bottom: 1px solid #e5e5e5; } .box-shadow { box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05); } button.accept-policy { font-size: 1rem; line-height: inherit; } /* Sticky footer styles -------------------------------------------------- */ html { position: relative; min-height: 100%; } body { /* Margin bottom by footer height */ margin-bottom: 60px; background-image: url("https://images.hdqwalls.com/wallpapers/white-cube-pattern-4k-bu.jpg"); } nav { background-image: url("https://minibackground.com/wp-content/uploads/2019/01/Wilson-wood.jpg"); } .footer { position: absolute; bottom: 0; width: 100%; white-space: nowrap; line-height: 60px; /* Vertically center the text there */ } /*---------------------------------CUSTOMS------------------------------*/ /*---------------------------------CUSTOMS------------------------------*/ /*---------------------------------CUSTOMS------------------------------*/ /*---------------------------------CUSTOMS------------------------------*/ .customBody { background-image: url("https://wallpaperaccess.com/full/666625.jpg"); } h1, h2, h3 { padding-bottom: 5px; white-space: nowrap; overflow: hidden; width: 100%; animation: animtext 2s steps(80, end); transition: all cubic-bezier(0.1, 0.7, 1.0, 0.1); } @keyframes animtext { from { width: 0; transition: all 2s ease-in-out; } }
0.52074
0.092155
html { /*height: 100%;*/ } .header { height: auto; padding: 10px 20px 0 20px; } .header .tab-item { margin-right: 20px; border-bottom: 3px solid transparent; transition: 0.5s; } .header h2 { margin: 5px 0; } .header .tab-item.focus { border-color: #FFF; } .header .tab-item:hover { border-color: #FFF; } .header .tab-item a { color: #FFF; cursor: pointer; } .item { margin-top: 20px; width: 340px; /*height: 40px;*/ line-height: 20px; background-color: #fff; border-radius: 5px; box-shadow: 0 0 3px #555; padding: 10px; cursor: pointer; } .item a { margin-top: 10px; font-size: 12px; transition: 0.5s; cursor: pointer; } .item-sender:hover { color: #2BB8AA; } .item-name { margin-right: 40px; } .item-info { margin-top: 10px; } .item-time { margin-left: 40px; color: #ccc; } p.item-content { display: block; padding-bottom: 10px; border-bottom: 1px solid #ededed; } .main-list { margin-bottom: 40px; margin-top: 120px; } .main-list .user-item { margin: 5px 8px; background-color: #F0F0F0; border-radius: 3px; border: 2px solid transparent; padding: 0 4px; cursor: pointer; font-size: 12px; transition: 0.5s; } .main-list .target-user { border-color: #2BB8AA; } .J-refresh { margin-top: 14px; } .footer { width: 100%; border-top: 1px solid #ddd; position: fixed; bottom: 0; padding: 5px 5% 10px 5%; } .footer input { box-sizing: border-box; display: inline-block; border: 0; height: 20px; width: 120px; border-bottom: 1px solid #007D9E; margin-top: 15px; font-size: 16px; text-align: center; outline: none; } .footer textarea { box-sizing: border-box; border: 2px solid #2BB8AA; outline: none; } #content { margin: 10px 5%; padding: 10px; width: 90%; height: 100px; border: 2px dashed #2BB8AA; border-radius: 5px; overflow: auto; outline: none; font-size: 14px; line-height: 20px; } /* tmp btn*/ .btn-wp { height: 40px; margin-bottom: 30px; } .ft-left { width: 50%; } .ft-right { width: 50%; } .input-btn { display: block; box-sizing: border-box; height: 30px; width: 130px; line-height: 30px; font-size: 14px; border-radius: 100px; text-align: center; } .send-btn { background-color: #2BB8AA; color: #FFFFFF; } .clear-btn { border: 1px solid #2BB8AA; color: #2BB8AA; } .modal { /*display: none;*/ position: fixed; font-size: 14px; color: #FFF; border-radius: 5px; padding: 0 10px; right: 10px; background: rgba(28, 30, 32, 0.4); }
child/message/css/message.css
html { /*height: 100%;*/ } .header { height: auto; padding: 10px 20px 0 20px; } .header .tab-item { margin-right: 20px; border-bottom: 3px solid transparent; transition: 0.5s; } .header h2 { margin: 5px 0; } .header .tab-item.focus { border-color: #FFF; } .header .tab-item:hover { border-color: #FFF; } .header .tab-item a { color: #FFF; cursor: pointer; } .item { margin-top: 20px; width: 340px; /*height: 40px;*/ line-height: 20px; background-color: #fff; border-radius: 5px; box-shadow: 0 0 3px #555; padding: 10px; cursor: pointer; } .item a { margin-top: 10px; font-size: 12px; transition: 0.5s; cursor: pointer; } .item-sender:hover { color: #2BB8AA; } .item-name { margin-right: 40px; } .item-info { margin-top: 10px; } .item-time { margin-left: 40px; color: #ccc; } p.item-content { display: block; padding-bottom: 10px; border-bottom: 1px solid #ededed; } .main-list { margin-bottom: 40px; margin-top: 120px; } .main-list .user-item { margin: 5px 8px; background-color: #F0F0F0; border-radius: 3px; border: 2px solid transparent; padding: 0 4px; cursor: pointer; font-size: 12px; transition: 0.5s; } .main-list .target-user { border-color: #2BB8AA; } .J-refresh { margin-top: 14px; } .footer { width: 100%; border-top: 1px solid #ddd; position: fixed; bottom: 0; padding: 5px 5% 10px 5%; } .footer input { box-sizing: border-box; display: inline-block; border: 0; height: 20px; width: 120px; border-bottom: 1px solid #007D9E; margin-top: 15px; font-size: 16px; text-align: center; outline: none; } .footer textarea { box-sizing: border-box; border: 2px solid #2BB8AA; outline: none; } #content { margin: 10px 5%; padding: 10px; width: 90%; height: 100px; border: 2px dashed #2BB8AA; border-radius: 5px; overflow: auto; outline: none; font-size: 14px; line-height: 20px; } /* tmp btn*/ .btn-wp { height: 40px; margin-bottom: 30px; } .ft-left { width: 50%; } .ft-right { width: 50%; } .input-btn { display: block; box-sizing: border-box; height: 30px; width: 130px; line-height: 30px; font-size: 14px; border-radius: 100px; text-align: center; } .send-btn { background-color: #2BB8AA; color: #FFFFFF; } .clear-btn { border: 1px solid #2BB8AA; color: #2BB8AA; } .modal { /*display: none;*/ position: fixed; font-size: 14px; color: #FFF; border-radius: 5px; padding: 0 10px; right: 10px; background: rgba(28, 30, 32, 0.4); }
0.333612
0.092483
.profileContain { display: table; width ="100%" margin-left : auto; margin-right: auto; margin-top: 20px; } .row { display: table-row; } .row div { display: table-cell; } .profileLeft { width: 175px; padding: 4px; vertical-align: middle; } .profileRight { width: 472px; padding: 4px; padding-left: 75px; } #picker { float: right; margin-top: -20px; color: #888; } TABLE { width: 100%; border-spacing: 0px; border-collapse: collapse; } INPUT,SELECT,TEXTAREA { background-color: black; color: white; border-color: #444; } INPUT,SELECT { font-size: x-small; } .codeButton { background-color: black; color: white; font-size: medium; border: 2px outset #444; padding: 0px; padding-left: 6px; padding-right: 6px; } .bk { display: none; } .tandc { margin-top: 20px; } .white { color: white; } .highlight { color: #ffbb22; margin-top: 20px; } .inactive { color: #999; } .sticky1,TD.unread { font-weight: bold; } .num,.center { text-align: center; } .num { width: 10%; } .bigtitle { font-size: 12pt; font-weight: bold; } .thrd { white-space: nowrap; width: 100%; } #breadcrumb,.title,#commandtitle { color: white; font-weight: bold; } UL.flat { list-style-type: none; margin: 2px; padding: 0; } UL.flat LI { display: inline; padding: 0 4px; margin: 0; } .actions INPUT,.actions SELECT { background-color: #222; border: 1px solid #444; text-align: center; } #infopane { padding-top: 10px; width: 100%; text-align: center; } #infopane .title,#infotitle { font-size: 18pt; margin: 0 20px 0 5px; } #infotitle { margin: 40px 10%; } .attention { text-align: center; color: white; background-color: #a00; margin: 10px 0 0 0; padding: 2px; width: 100%; } .goodattention { text-align: center; color: white; background-color: #060; margin: 10px 0 0 0; padding: 2px; width: 100%; } .actions .commands { text-align: right; } .nav,.nav INPUT { font-size: 8pt; } #nocontrols { height: 24px; padding: 1px; margin-top: 10px; } #controls,.actions,#commandtitle,#info,#content { position: relative; background-color: black; } #commandtitle { margin-top: 60px; text-align: center; font-size: 16pt; font-weight: bold; padding: 2px 0; } #controls { padding: 1px; margin-top: 10px; text-align: center; } #controls,.actions,.border,#commandtitle,#info { border: 2px solid #382418; } #info { width: 80%; margin: 50px 10% 0 10%; padding: 5px; } #breadcrumb { margin-top: 15px; } #command { text-align: center; margin-left: 15%; width: 70%; } #command .commandtitle { text-align: right; width: 40%; } #command .commandinput { font-size: 10px; } #menu { margin: 20px 0; text-align: center; } #command .commandtwo { text-align: center; } #contentfrm .groupname { border: 2px solid #382418; border-bottom: 0; background-color: #1c1610; font-size: 12pt; font-weight: bold; text-align: left; padding: 5px 0 5px 5px; } #contentfrm .item { background-color: #000; } #contentfrm .icon,#content .threadmarks { width: 25px; text-align: center; padding-right: 5px; } #contentfrm .frmname { width: 50%; } #top { margin-top: 2px; padding: 2px; } #contentfrm,#content,#becontrol,#contentmsg { padding: 2px; margin-top: 20px; } #bottom { margin-top: 5px; padding: 2px; } #contentfrm .lefttd { border-left: 2px solid #382418; } #contentfrm .righttd { border-right: 2px solid #382418; } #contentfrm .groupend { border-top: 2px solid #382418; margin-bottom: 10px; } #contentfrm .item,#content.item { border-top: 1px solid #382418; } #content .updated,#contentfrm.updated { width: 22%; } #content .update2 { width: 25%; } #no_form_mess.form{ margin:0px; padding:0px; } #content .spacerm #contentmsg .spacerm,#contentfrm.spacerm { height: 5px; } #content .sticky { font-weight: bold; } .modcentreitem DIV.l { text-align: center; margin: 6px; padding: 3px; background-color: black; border: 2px solid #313131; } .modcentreitem IMG { padding: 0px 5px; } .modcentreitem .title { padding-bottom: 5px; } #becontrol TD.list,#becontrol TD.viewdetails,.extra { border: 2px solid #313131; padding: 2px; background-color: black; } #becontrol TD.list { width: 25%; } #becontrol TD.viewdetails { padding-left: 10%; width: 60%; } #becontrol .priv { text-align: right; margin-right: 32%; } .extra,TD.viewdetails { margin-top: 20px; } .extra { text-align: center; } #history,.listof { text-align: left; } #history { margin-top: 20px; margin-left: 1%; width: 98%; } .searchresult { padding: 2px; } #uid { text-align: center; color: #888; margin-top: 20px; } .msgplace { margin-top: -50px; } #smileylegend { margin-top: 20px; text-align: center; } #smileylegend SPAN { cursor: pointer; } .thdhid { background-color: #270909; } .thdmved { background-color: #020440; } .thdnrml { background-color: #191919; } .note,.noteb,.notet { border: 2px solid #313131; padding: 2px 0px 5px 0px; background: black; } .noteb { border-top: 0px; } .notet { border-bottom: 0px; } .notehidden { background-color: #270909; } .stats_value { display: inline-block; background: #33190d; color: #FFFFFF; padding: 2px 6px; font-weight: bold; -moz-border-radius: 2px; -webkit-border-radius: 2px; border-radius: 2px; margin-right: 3px }
public/css/forum-3.css
.profileContain { display: table; width ="100%" margin-left : auto; margin-right: auto; margin-top: 20px; } .row { display: table-row; } .row div { display: table-cell; } .profileLeft { width: 175px; padding: 4px; vertical-align: middle; } .profileRight { width: 472px; padding: 4px; padding-left: 75px; } #picker { float: right; margin-top: -20px; color: #888; } TABLE { width: 100%; border-spacing: 0px; border-collapse: collapse; } INPUT,SELECT,TEXTAREA { background-color: black; color: white; border-color: #444; } INPUT,SELECT { font-size: x-small; } .codeButton { background-color: black; color: white; font-size: medium; border: 2px outset #444; padding: 0px; padding-left: 6px; padding-right: 6px; } .bk { display: none; } .tandc { margin-top: 20px; } .white { color: white; } .highlight { color: #ffbb22; margin-top: 20px; } .inactive { color: #999; } .sticky1,TD.unread { font-weight: bold; } .num,.center { text-align: center; } .num { width: 10%; } .bigtitle { font-size: 12pt; font-weight: bold; } .thrd { white-space: nowrap; width: 100%; } #breadcrumb,.title,#commandtitle { color: white; font-weight: bold; } UL.flat { list-style-type: none; margin: 2px; padding: 0; } UL.flat LI { display: inline; padding: 0 4px; margin: 0; } .actions INPUT,.actions SELECT { background-color: #222; border: 1px solid #444; text-align: center; } #infopane { padding-top: 10px; width: 100%; text-align: center; } #infopane .title,#infotitle { font-size: 18pt; margin: 0 20px 0 5px; } #infotitle { margin: 40px 10%; } .attention { text-align: center; color: white; background-color: #a00; margin: 10px 0 0 0; padding: 2px; width: 100%; } .goodattention { text-align: center; color: white; background-color: #060; margin: 10px 0 0 0; padding: 2px; width: 100%; } .actions .commands { text-align: right; } .nav,.nav INPUT { font-size: 8pt; } #nocontrols { height: 24px; padding: 1px; margin-top: 10px; } #controls,.actions,#commandtitle,#info,#content { position: relative; background-color: black; } #commandtitle { margin-top: 60px; text-align: center; font-size: 16pt; font-weight: bold; padding: 2px 0; } #controls { padding: 1px; margin-top: 10px; text-align: center; } #controls,.actions,.border,#commandtitle,#info { border: 2px solid #382418; } #info { width: 80%; margin: 50px 10% 0 10%; padding: 5px; } #breadcrumb { margin-top: 15px; } #command { text-align: center; margin-left: 15%; width: 70%; } #command .commandtitle { text-align: right; width: 40%; } #command .commandinput { font-size: 10px; } #menu { margin: 20px 0; text-align: center; } #command .commandtwo { text-align: center; } #contentfrm .groupname { border: 2px solid #382418; border-bottom: 0; background-color: #1c1610; font-size: 12pt; font-weight: bold; text-align: left; padding: 5px 0 5px 5px; } #contentfrm .item { background-color: #000; } #contentfrm .icon,#content .threadmarks { width: 25px; text-align: center; padding-right: 5px; } #contentfrm .frmname { width: 50%; } #top { margin-top: 2px; padding: 2px; } #contentfrm,#content,#becontrol,#contentmsg { padding: 2px; margin-top: 20px; } #bottom { margin-top: 5px; padding: 2px; } #contentfrm .lefttd { border-left: 2px solid #382418; } #contentfrm .righttd { border-right: 2px solid #382418; } #contentfrm .groupend { border-top: 2px solid #382418; margin-bottom: 10px; } #contentfrm .item,#content.item { border-top: 1px solid #382418; } #content .updated,#contentfrm.updated { width: 22%; } #content .update2 { width: 25%; } #no_form_mess.form{ margin:0px; padding:0px; } #content .spacerm #contentmsg .spacerm,#contentfrm.spacerm { height: 5px; } #content .sticky { font-weight: bold; } .modcentreitem DIV.l { text-align: center; margin: 6px; padding: 3px; background-color: black; border: 2px solid #313131; } .modcentreitem IMG { padding: 0px 5px; } .modcentreitem .title { padding-bottom: 5px; } #becontrol TD.list,#becontrol TD.viewdetails,.extra { border: 2px solid #313131; padding: 2px; background-color: black; } #becontrol TD.list { width: 25%; } #becontrol TD.viewdetails { padding-left: 10%; width: 60%; } #becontrol .priv { text-align: right; margin-right: 32%; } .extra,TD.viewdetails { margin-top: 20px; } .extra { text-align: center; } #history,.listof { text-align: left; } #history { margin-top: 20px; margin-left: 1%; width: 98%; } .searchresult { padding: 2px; } #uid { text-align: center; color: #888; margin-top: 20px; } .msgplace { margin-top: -50px; } #smileylegend { margin-top: 20px; text-align: center; } #smileylegend SPAN { cursor: pointer; } .thdhid { background-color: #270909; } .thdmved { background-color: #020440; } .thdnrml { background-color: #191919; } .note,.noteb,.notet { border: 2px solid #313131; padding: 2px 0px 5px 0px; background: black; } .noteb { border-top: 0px; } .notet { border-bottom: 0px; } .notehidden { background-color: #270909; } .stats_value { display: inline-block; background: #33190d; color: #FFFFFF; padding: 2px 6px; font-weight: bold; -moz-border-radius: 2px; -webkit-border-radius: 2px; border-radius: 2px; margin-right: 3px }
0.240685
0.064124
border: 1px solid transparent; }*/ table.properties { width: 100%; table-layout: fixed; border-collapse: collapse; } table.properties table { border-collapse: collapse; } table.properties tr.ng-enter { -webkit-transition: all 0.6s ease-in-out 0.6s; -moz-transition: all 0.6s ease-in-out 0.6s; -o-transition: all 0.6s ease-in-out 0.6s; transition: all 0.6s ease-in-out 0.6s; } table.properties tr.ng-leave { -webkit-transition: all 0.6s ease-in-out; -moz-transition: all 0.6s ease-in-out; -o-transition: all 0.6s ease-in-out; transition: all 0.6s ease-in-out; } table.properties tr.ng-enter { opacity: 0; } table.properties tr.ng-enter.ng-enter-active { opacity: 1; } table.properties tr.ng-leave { opacity: 1; text-decoration: line-through; } table.properties tr.ng-leave.ng-leave-active { opacity: 0; } table.properties th { text-align: center; font-family: "Segoe UI Light"; padding: 6px; border-top: 0px solid #888888; border-bottom: 1px solid #888888; /*background-color: #d8dbdd;*/ } table.properties th:nth-child(1) { width: 40%; } table.properties th:nth-child(2) { width: 60%; border-left: 0px solid #ffffff; } table.properties td { font-size: 92%; vertical-align: top; padding-top: 4px; padding-bottom: 4px; background-color: rgba(230, 230, 230, 0.25); border-bottom: 3px solid #ffffff; } table.properties td:nth-child(1):not([colspan="2"]) { width: 40%; text-align: right; padding-right: 3px; font-family: "Segoe UI"; } table.properties td:nth-child(2) { width: 60%; text-align: left; padding-left: 3px; font-family: "Segoe UI"; border-left: 0px solid #ddd; } table.properties td:nth-child(1):not([colspan="2"]) label::after { content: ""; } table.properties td:nth-child(1) .mandatory { font-family: "Segoe UI Semibold"; /*color: #992222;*/ } table.properties td:nth-child(2) input { width: 98%; text-align: left; margin: 0px; } table.properties td:nth-child(2) label { display: block; cursor: pointer; } table.properties td:nth-child(2) input[type="checkbox"], table.properties td:nth-child(2) input[type="radio"] { width: 14px; margin-top: 4px; display: inline-block; } table.properties td:nth-child(2) input[type="checkbox"] + div, table.properties td:nth-child(2) input[type="radio"] + div { width: 85%; color: #555555; vertical-align: top; display: inline-block; } table.properties td:nth-child(2) input[type="checkbox"]:checked + div, table.properties td:nth-child(2) input[type="radio"]:checked + div { color: rgb(0, 115, 200); } table.properties td:nth-child(2) textarea, table.properties td:nth-child(2) input[type="text"], table.properties td:nth-child(2) input[type="number"] { -webkit-transition: all 0.5s ease-in-out; -moz-transition: all 0.5s ease-in-out; -ms-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out; color: rgb(0, 100, 180); resize: none; width: 96%; min-height: 18px; padding-left: 2px; border: 1px solid #dddddd; } table.properties td:nth-child(2) .ng-invalid { box-shadow: 0 0 6px rgba(200, 30, 30, 0.5); border: 1px solid rgba(200, 30, 30, 0.5); } table.properties td:nth-child(2) .ng-invalid + div { /*border: 1px solid #992222;*/ color: red; } table.properties td:nth-child(2) .messages div { margin: 0px; font-size: 80%; color: rgba(200, 30, 30, 1); } .ng-valid {} .ng-pristine {} .ng-dirty {} .ng-touched {} .ng-untouched {} .ng-pending {} .messages div { -webkit-transition: all 0.6s ease-in-out; -moz-transition: all 0.6s ease-in-out; -o-transition: all 0.6s ease-in-out; transition: all 0.6s ease-in-out; } .messages .ng-enter { opacity: 0; } .messages .ng-enter.ng-enter-active { opacity: 1; } .messages .ng-leave { opacity: 1; } .messages .ng-leave.ng-leave-active { opacity: 0; }
app/properties-part/properties.css
border: 1px solid transparent; }*/ table.properties { width: 100%; table-layout: fixed; border-collapse: collapse; } table.properties table { border-collapse: collapse; } table.properties tr.ng-enter { -webkit-transition: all 0.6s ease-in-out 0.6s; -moz-transition: all 0.6s ease-in-out 0.6s; -o-transition: all 0.6s ease-in-out 0.6s; transition: all 0.6s ease-in-out 0.6s; } table.properties tr.ng-leave { -webkit-transition: all 0.6s ease-in-out; -moz-transition: all 0.6s ease-in-out; -o-transition: all 0.6s ease-in-out; transition: all 0.6s ease-in-out; } table.properties tr.ng-enter { opacity: 0; } table.properties tr.ng-enter.ng-enter-active { opacity: 1; } table.properties tr.ng-leave { opacity: 1; text-decoration: line-through; } table.properties tr.ng-leave.ng-leave-active { opacity: 0; } table.properties th { text-align: center; font-family: "Segoe UI Light"; padding: 6px; border-top: 0px solid #888888; border-bottom: 1px solid #888888; /*background-color: #d8dbdd;*/ } table.properties th:nth-child(1) { width: 40%; } table.properties th:nth-child(2) { width: 60%; border-left: 0px solid #ffffff; } table.properties td { font-size: 92%; vertical-align: top; padding-top: 4px; padding-bottom: 4px; background-color: rgba(230, 230, 230, 0.25); border-bottom: 3px solid #ffffff; } table.properties td:nth-child(1):not([colspan="2"]) { width: 40%; text-align: right; padding-right: 3px; font-family: "Segoe UI"; } table.properties td:nth-child(2) { width: 60%; text-align: left; padding-left: 3px; font-family: "Segoe UI"; border-left: 0px solid #ddd; } table.properties td:nth-child(1):not([colspan="2"]) label::after { content: ""; } table.properties td:nth-child(1) .mandatory { font-family: "Segoe UI Semibold"; /*color: #992222;*/ } table.properties td:nth-child(2) input { width: 98%; text-align: left; margin: 0px; } table.properties td:nth-child(2) label { display: block; cursor: pointer; } table.properties td:nth-child(2) input[type="checkbox"], table.properties td:nth-child(2) input[type="radio"] { width: 14px; margin-top: 4px; display: inline-block; } table.properties td:nth-child(2) input[type="checkbox"] + div, table.properties td:nth-child(2) input[type="radio"] + div { width: 85%; color: #555555; vertical-align: top; display: inline-block; } table.properties td:nth-child(2) input[type="checkbox"]:checked + div, table.properties td:nth-child(2) input[type="radio"]:checked + div { color: rgb(0, 115, 200); } table.properties td:nth-child(2) textarea, table.properties td:nth-child(2) input[type="text"], table.properties td:nth-child(2) input[type="number"] { -webkit-transition: all 0.5s ease-in-out; -moz-transition: all 0.5s ease-in-out; -ms-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out; color: rgb(0, 100, 180); resize: none; width: 96%; min-height: 18px; padding-left: 2px; border: 1px solid #dddddd; } table.properties td:nth-child(2) .ng-invalid { box-shadow: 0 0 6px rgba(200, 30, 30, 0.5); border: 1px solid rgba(200, 30, 30, 0.5); } table.properties td:nth-child(2) .ng-invalid + div { /*border: 1px solid #992222;*/ color: red; } table.properties td:nth-child(2) .messages div { margin: 0px; font-size: 80%; color: rgba(200, 30, 30, 1); } .ng-valid {} .ng-pristine {} .ng-dirty {} .ng-touched {} .ng-untouched {} .ng-pending {} .messages div { -webkit-transition: all 0.6s ease-in-out; -moz-transition: all 0.6s ease-in-out; -o-transition: all 0.6s ease-in-out; transition: all 0.6s ease-in-out; } .messages .ng-enter { opacity: 0; } .messages .ng-enter.ng-enter-active { opacity: 1; } .messages .ng-leave { opacity: 1; } .messages .ng-leave.ng-leave-active { opacity: 0; }
0.481698
0.115561
.article-entry ul, .article-entry ol, .article-entry li { list-style: inherit; margin-left: 1em; padding-left: 0; } .outer { font-weight: 400; color: #4A4A4A; } .outer a { transition: color .5s ease; } .outer a + a { margin-left: .16rem; } .outer a:hover { color: #039be5; } .outer .main-nav { float: right; font-weight: bold; } .article { border-bottom: .01rem solid #EBF2F6; padding: .4rem 0 .5rem; } .article h1 { margin: 0; } ul, li { list-style-type: none; padding: 0; margin: 0; } .article-header { font-size: .24rem; margin-bottom: .16rem; } .article-header .article-title { padding: .06rem .12rem; color: #fff; background: #333; transition: .3s ease-in-out; } .article-header .article-title:hover { background: #039be5; color: #fff; } .article-header a { color: #333; font-weight: bold; transition: color .3s ease; } .article-header h2 { padding: 0; margin: 0; } .article-entry { color: #3A4145; padding: .01rem; margin-top: .1rem; } .article-entry .read-more:hover a { text-decoration: none; color: #fff; } .article-entry .read-more:hover { color: #fff; cursor: pointer; background: #333; } .article-entry p > a + span.caption { display: block; text-align: center; } .article-nav { display: flex; color: #9eabb3; font-size: .14rem; } .article-nav > a { flex: 1; } p img { position: relative; left: 50%; padding: .05rem; -webkit-transform: translateX(-50%); -moz-transform: translateX(-50%); transform: translateX(-50%); max-width: 100% !important; } .pagination { display: block; margin: .7rem auto 1rem; text-align: center; color: #9EABB3; font-size: .14rem; } .footer { overflow: hidden; } .footer .outer { position: absolute; left: 0; right: 0; padding: .1rem; color: #BBC7CC; font-size: .14rem; } .footer .outer a { color: inherit; } .footer .outer div { display: inline-block; } .footer .outer .copyright { float: left; white-space: nowrap; } .footer .outer .author-info { float: right; } .footer .outer .author-info a { font-weight: bold; } .footer .outer .bolder { font-weight: bolder; } .page-nav { margin: .6rem 0 1rem; font-size: .14rem; color: #9EABB3; text-align: center; } .page-nav .page-number { display: inline-block; width: .2rem; color: #0086b3; border: .01rem solid; padding: .02rem; } .page-nav .page-number:hover { background: #333; color: #fff; border: .01rem solid #333; } .page-nav a, .page-nav span { margin-left: .16rem; } .page-nav *:first-child { margin-left: 0; } .page-nav .current { color: inherit; } #mobile-nav { display: none; } .post { margin-top: 1rem; } time { color: #9EABB3; } #header { padding: .16rem 0; border-bottom: .04rem solid #039be5; font-weight: bold; } /* ugly */ .article-more-link.read-more { float: right; padding: 0 .06rem; transition: .3s ease-in-out; } .article-more-link.read-more:hover { background: #039be5; color: #fff; } .article-footer { overflow: hidden; } .article-footer > a > time { float: left; } .article-tag-list { overflow: hidden; float: left; margin-left: .1rem; } .article-tag-list > li { float: left; text-decoration: underline; } .article-tag-list > li + li { margin-left: .05rem; }
source/css/layout.css
.article-entry ul, .article-entry ol, .article-entry li { list-style: inherit; margin-left: 1em; padding-left: 0; } .outer { font-weight: 400; color: #4A4A4A; } .outer a { transition: color .5s ease; } .outer a + a { margin-left: .16rem; } .outer a:hover { color: #039be5; } .outer .main-nav { float: right; font-weight: bold; } .article { border-bottom: .01rem solid #EBF2F6; padding: .4rem 0 .5rem; } .article h1 { margin: 0; } ul, li { list-style-type: none; padding: 0; margin: 0; } .article-header { font-size: .24rem; margin-bottom: .16rem; } .article-header .article-title { padding: .06rem .12rem; color: #fff; background: #333; transition: .3s ease-in-out; } .article-header .article-title:hover { background: #039be5; color: #fff; } .article-header a { color: #333; font-weight: bold; transition: color .3s ease; } .article-header h2 { padding: 0; margin: 0; } .article-entry { color: #3A4145; padding: .01rem; margin-top: .1rem; } .article-entry .read-more:hover a { text-decoration: none; color: #fff; } .article-entry .read-more:hover { color: #fff; cursor: pointer; background: #333; } .article-entry p > a + span.caption { display: block; text-align: center; } .article-nav { display: flex; color: #9eabb3; font-size: .14rem; } .article-nav > a { flex: 1; } p img { position: relative; left: 50%; padding: .05rem; -webkit-transform: translateX(-50%); -moz-transform: translateX(-50%); transform: translateX(-50%); max-width: 100% !important; } .pagination { display: block; margin: .7rem auto 1rem; text-align: center; color: #9EABB3; font-size: .14rem; } .footer { overflow: hidden; } .footer .outer { position: absolute; left: 0; right: 0; padding: .1rem; color: #BBC7CC; font-size: .14rem; } .footer .outer a { color: inherit; } .footer .outer div { display: inline-block; } .footer .outer .copyright { float: left; white-space: nowrap; } .footer .outer .author-info { float: right; } .footer .outer .author-info a { font-weight: bold; } .footer .outer .bolder { font-weight: bolder; } .page-nav { margin: .6rem 0 1rem; font-size: .14rem; color: #9EABB3; text-align: center; } .page-nav .page-number { display: inline-block; width: .2rem; color: #0086b3; border: .01rem solid; padding: .02rem; } .page-nav .page-number:hover { background: #333; color: #fff; border: .01rem solid #333; } .page-nav a, .page-nav span { margin-left: .16rem; } .page-nav *:first-child { margin-left: 0; } .page-nav .current { color: inherit; } #mobile-nav { display: none; } .post { margin-top: 1rem; } time { color: #9EABB3; } #header { padding: .16rem 0; border-bottom: .04rem solid #039be5; font-weight: bold; } /* ugly */ .article-more-link.read-more { float: right; padding: 0 .06rem; transition: .3s ease-in-out; } .article-more-link.read-more:hover { background: #039be5; color: #fff; } .article-footer { overflow: hidden; } .article-footer > a > time { float: left; } .article-tag-list { overflow: hidden; float: left; margin-left: .1rem; } .article-tag-list > li { float: left; text-decoration: underline; } .article-tag-list > li + li { margin-left: .05rem; }
0.55929
0.081923
} #docaria #destaque-endereco { width: 470px; margin-left: -22px; margin-bottom: -100px; padding-left: 25px; padding-right: 25px; z-index: 2; } #docaria #destaque-endereco div:first-of-type { padding-top: 5px; padding-left: 0; } #loja-mais-proxima { padding: 20px; height: 250px; width: 340px; -ms-transform: rotate(7deg); /* IE 9 */ -webkit-transform: rotate(7deg); /* Chrome, Safari, Opera */ transform: rotate(7deg); } #loja-mais-proxima form { padding: 60px 20px 0px 20px; -ms-transform: rotate(-7deg); /* IE 9 */ -webkit-transform: rotate(-7deg); /* Chrome, Safari, Opera */ transform: rotate(-7deg); } #encontre-loja { -webkit-backface-visibility: hidden; font-size: 20px; font-family: 'Open Sans', sans-serif; font-weight: lighter; color: #713821; height: 45px; position: absolute; margin-top: -19px; margin-left: -65px; padding: 5px 35px 10px 35px; width: 400px; -ms-transform: rotate(-14deg); /* IE 9 */ -webkit-transform: rotate(-14deg); /* Chrome, Safari, Opera */ transform: rotate(-14deg); text-align: center; } #encontre-loja span { } #encontre-loja:after { margin-bottom: 5px; } #fazer-encomenda-docaria { width: 100%; font-family: 'Open Sans', sans-serif; font-weight: lighter; font-size: 26px; color: white; bottom: 0; position: relative; text-align: center; padding-left: 20px; padding-right: 20px; } #loja-mais-proxima .sombra-botao:after { box-shadow: 0 8px 7px -3px rgba(128, 128, 128, 0.35); } #loja-mais-proxima.tracejado-detalhe:after { display: flex !important; flex-flow: column wrap !important; } #destaque-endereco.faixa-listrada-verde { background: repeating-linear-gradient( 90deg, #89c7bc, #89c7bc 13px, #a0d8cd 13px, #a0d8cd 26px ); } #endereco-redesocial { width: 155px; height: 55px; padding: 3px 20px 10px 10px; position: absolute; z-index: 3; -ms-transform: rotate(-35deg); /* IE 9 */ -webkit-transform: rotate(-35deg); /* Chrome, Safari, Opera */ transform: rotate(-35deg); -webkit-backface-visibility: hidden; margin-left: -73px; margin-top: -14px; } #endereco-redesocial img { padding-top: 5px; padding-bottom: 5px; } #endereco-redesocial:after { margin-bottom: 3px; } #docaria-carousel { width: 450px; text-align: right; } #docaria #docaria-carousel .owl-dots { bottom: 0; position: relative; } #docaria-carousel.owl-carousel { z-index: 1; width: 445px; } #docaria #docaria-carousel.owl-theme .owl-dots .owl-dot span { background: url("../img/coracao_transparente2.png") no-repeat !important; background-size: 16px !important; width: 20px !important; height: 30px !important; margin: 5px 7px; display: block; -webkit-backface-visibility: visible; transition: opacity 200ms ease; border-radius: 0 !important; } #docaria #docaria-carousel.owl-theme .owl-dots .owl-dot.active span, #docaria-carousel.owl-theme .owl-dots .owl-dot:hover span { background: url("../img/coracao.png") no-repeat !important; background-size: 16px !important; } #docaria .titulo-destaque-coracao:after { top: 0; left: 80%; } #docaria-cardapio { width: 150px; height: 50px; padding: 5px 10px 10px 10px; text-align: center; background-color: #f39eb0; font-size: 18px; font-weight: 900; color: #fff; position: absolute; right: 0; top: 25px; -ms-transform: rotate(7deg); /* IE 9 */ -webkit-transform: rotate(7deg); /* Chrome, Safari, Opera */ transform: rotate(7deg); } #docaria-cardapio:after { margin-bottom: 5px; } #a-loja { padding-right: 50px; }
css/page-docaria.css
} #docaria #destaque-endereco { width: 470px; margin-left: -22px; margin-bottom: -100px; padding-left: 25px; padding-right: 25px; z-index: 2; } #docaria #destaque-endereco div:first-of-type { padding-top: 5px; padding-left: 0; } #loja-mais-proxima { padding: 20px; height: 250px; width: 340px; -ms-transform: rotate(7deg); /* IE 9 */ -webkit-transform: rotate(7deg); /* Chrome, Safari, Opera */ transform: rotate(7deg); } #loja-mais-proxima form { padding: 60px 20px 0px 20px; -ms-transform: rotate(-7deg); /* IE 9 */ -webkit-transform: rotate(-7deg); /* Chrome, Safari, Opera */ transform: rotate(-7deg); } #encontre-loja { -webkit-backface-visibility: hidden; font-size: 20px; font-family: 'Open Sans', sans-serif; font-weight: lighter; color: #713821; height: 45px; position: absolute; margin-top: -19px; margin-left: -65px; padding: 5px 35px 10px 35px; width: 400px; -ms-transform: rotate(-14deg); /* IE 9 */ -webkit-transform: rotate(-14deg); /* Chrome, Safari, Opera */ transform: rotate(-14deg); text-align: center; } #encontre-loja span { } #encontre-loja:after { margin-bottom: 5px; } #fazer-encomenda-docaria { width: 100%; font-family: 'Open Sans', sans-serif; font-weight: lighter; font-size: 26px; color: white; bottom: 0; position: relative; text-align: center; padding-left: 20px; padding-right: 20px; } #loja-mais-proxima .sombra-botao:after { box-shadow: 0 8px 7px -3px rgba(128, 128, 128, 0.35); } #loja-mais-proxima.tracejado-detalhe:after { display: flex !important; flex-flow: column wrap !important; } #destaque-endereco.faixa-listrada-verde { background: repeating-linear-gradient( 90deg, #89c7bc, #89c7bc 13px, #a0d8cd 13px, #a0d8cd 26px ); } #endereco-redesocial { width: 155px; height: 55px; padding: 3px 20px 10px 10px; position: absolute; z-index: 3; -ms-transform: rotate(-35deg); /* IE 9 */ -webkit-transform: rotate(-35deg); /* Chrome, Safari, Opera */ transform: rotate(-35deg); -webkit-backface-visibility: hidden; margin-left: -73px; margin-top: -14px; } #endereco-redesocial img { padding-top: 5px; padding-bottom: 5px; } #endereco-redesocial:after { margin-bottom: 3px; } #docaria-carousel { width: 450px; text-align: right; } #docaria #docaria-carousel .owl-dots { bottom: 0; position: relative; } #docaria-carousel.owl-carousel { z-index: 1; width: 445px; } #docaria #docaria-carousel.owl-theme .owl-dots .owl-dot span { background: url("../img/coracao_transparente2.png") no-repeat !important; background-size: 16px !important; width: 20px !important; height: 30px !important; margin: 5px 7px; display: block; -webkit-backface-visibility: visible; transition: opacity 200ms ease; border-radius: 0 !important; } #docaria #docaria-carousel.owl-theme .owl-dots .owl-dot.active span, #docaria-carousel.owl-theme .owl-dots .owl-dot:hover span { background: url("../img/coracao.png") no-repeat !important; background-size: 16px !important; } #docaria .titulo-destaque-coracao:after { top: 0; left: 80%; } #docaria-cardapio { width: 150px; height: 50px; padding: 5px 10px 10px 10px; text-align: center; background-color: #f39eb0; font-size: 18px; font-weight: 900; color: #fff; position: absolute; right: 0; top: 25px; -ms-transform: rotate(7deg); /* IE 9 */ -webkit-transform: rotate(7deg); /* Chrome, Safari, Opera */ transform: rotate(7deg); } #docaria-cardapio:after { margin-bottom: 5px; } #a-loja { padding-right: 50px; }
0.386648
0.098903
.carousel { width: 558px; position: relative; } .carousel-wrapper { width: 558px; overflow: hidden; padding:0px; } .carousel-items { width: 10000px; position: relative; } .carousel-block { float: left; width: 558px; padding: 25px 0; } /*********** BUTTONS ***********/ .carousel-button-left a{ background: url(../img/carousel-left.png) no-repeat top center; z-index: 1; width: 34px; height: 35px; position: absolute; top: 45%; cursor: pointer; text-decoration:none; margin-left: 15px; } .carousel-button-right a{ float: right; background: url(../img/carousel-right.png) no-repeat top center; z-index: 1; width: 34px; height: 35px; position: absolute; top: 45%; right: 15px; cursor: pointer; text-decoration:none; } .carousel2 { width: 591px; position: relative; } .carousel-wrapper2 { width: 591px; overflow: hidden; padding:0px; } .carousel-items2 { width: 10000px; position: relative; } .carousel-block2 { float: left; width: 591px; padding: 0; } /*********** BUTTONS ***********/ .carousel-button-left2 a{ background: url(../img/carousel-left.png) no-repeat top center; z-index: 1; width: 34px; height: 35px; position: absolute; top: 45%; cursor: pointer; text-decoration:none; margin-left: 15px; } .carousel-button-right2 a{ float: right; background: url(../img/carousel-right.png) no-repeat top center; z-index: 1; width: 34px; height: 35px; position: absolute; top: 45%; right: 15px; cursor: pointer; text-decoration:none; } .carousel3 { width: 558px; position: relative; } .carousel-wrapper3 { width: 558px; overflow: hidden; padding:0px; } .carousel-items3 { width: 10000px; position: relative; } .carousel-block3 { float: left; width: 558px; padding: 25px 0; } /*********** BUTTONS ***********/ .carousel-button-left3 a{ background: url(../img/carousel-left.png) no-repeat top center; z-index: 1; width: 34px; height: 35px; position: absolute; top: 45%; cursor: pointer; text-decoration:none; margin-left: 15px; } .carousel-button-right3 a{ float: right; background: url(../img/carousel-right.png) no-repeat top center; z-index: 1; width: 34px; height: 35px; position: absolute; top: 45%; right: 15px; cursor: pointer; text-decoration:none; }
!arh/landing/65_landings_templates/32/css/styles-carousel.css
.carousel { width: 558px; position: relative; } .carousel-wrapper { width: 558px; overflow: hidden; padding:0px; } .carousel-items { width: 10000px; position: relative; } .carousel-block { float: left; width: 558px; padding: 25px 0; } /*********** BUTTONS ***********/ .carousel-button-left a{ background: url(../img/carousel-left.png) no-repeat top center; z-index: 1; width: 34px; height: 35px; position: absolute; top: 45%; cursor: pointer; text-decoration:none; margin-left: 15px; } .carousel-button-right a{ float: right; background: url(../img/carousel-right.png) no-repeat top center; z-index: 1; width: 34px; height: 35px; position: absolute; top: 45%; right: 15px; cursor: pointer; text-decoration:none; } .carousel2 { width: 591px; position: relative; } .carousel-wrapper2 { width: 591px; overflow: hidden; padding:0px; } .carousel-items2 { width: 10000px; position: relative; } .carousel-block2 { float: left; width: 591px; padding: 0; } /*********** BUTTONS ***********/ .carousel-button-left2 a{ background: url(../img/carousel-left.png) no-repeat top center; z-index: 1; width: 34px; height: 35px; position: absolute; top: 45%; cursor: pointer; text-decoration:none; margin-left: 15px; } .carousel-button-right2 a{ float: right; background: url(../img/carousel-right.png) no-repeat top center; z-index: 1; width: 34px; height: 35px; position: absolute; top: 45%; right: 15px; cursor: pointer; text-decoration:none; } .carousel3 { width: 558px; position: relative; } .carousel-wrapper3 { width: 558px; overflow: hidden; padding:0px; } .carousel-items3 { width: 10000px; position: relative; } .carousel-block3 { float: left; width: 558px; padding: 25px 0; } /*********** BUTTONS ***********/ .carousel-button-left3 a{ background: url(../img/carousel-left.png) no-repeat top center; z-index: 1; width: 34px; height: 35px; position: absolute; top: 45%; cursor: pointer; text-decoration:none; margin-left: 15px; } .carousel-button-right3 a{ float: right; background: url(../img/carousel-right.png) no-repeat top center; z-index: 1; width: 34px; height: 35px; position: absolute; top: 45%; right: 15px; cursor: pointer; text-decoration:none; }
0.375248
0.075176
@import url("https://fonts.googleapis.com/css?family=Pacifico|Montserrat:500,900"); .uk-navbar-toggle{height:52px;width:52px;z-index:10;position:relative;} section{ border: 1rem solid #181e23; padding:0;} .uk-text-white{color:#fff !important;} .uk-alpha-700 { background: #00000090; ; } .hero-content { color: #fffc; padding: 8rem 0 12rem 0; width: fit-content; right: 0; left: 0; top: 0; bottom: 0; position: relative; text-align: center; margin: auto; z-index: 2; } .header { width: 100%; position: relative; } .hero-wrap { height: 100%; margin: auto; overflow: hidden; background-color: #1e88e5; } .hero-image { position: absolute !important; will-change: transform; left: 0; right:0; top: 0; bottom: 0; opacity: 0.3; width: 100%; z-index: 0; filter: saturate(1.2); background-repeat: no-repeat; opacity: .3;} .dzsparallaxer { height: 300px; position:absolute; overflow: hidden; } .uk-heading-hero { font-family: "Montserrat", sans-serif; font-size: 4.5rem; font-weight: 900; text-transform: uppercase; text-shadow: 0 4px 1px #000000; letter-spacing: 8px; margin: 12px auto; color: #ffffff !important; } .marketing{font-size: .875rem; margin: 0; font-weight: 500; background: #ffe500; letter-spacing: 0px; color: #000; padding: 4px 18px;} .subheading{ font-size: 2rem; font-family: "Pacifico", cursive; margin: 1rem 0 0 0; letter-spacing:1px; color: #ffe500; text-shadow: 0 2px #000000, 0 -1px black, 1px 0 black, -1px 0 black;} .uk-text-outline { text-shadow: 1px 0 #000000, -1px 0 #000000, 0 1px #000000, 0 -1px #000000; } .speech-bubble:after { position: absolute; content: ' '; border-right: 16px solid rgba(0, 0, 0, 0); top: 50%; right: 0; margin: 14px 32px 0 0px; border-top: 14px solid #181e23; height: 0; width: 0; } .profile{ border: 8px solid #181e23; border-radius: 100%; margin: auto; bottom:-40px; left:0; right:0; margin-top:1rem; position: absolute; height: 160px; width: 160px; z-index: 15; background-size: contain; background-image: url(https://scontent.fagc1-1.fna.fbcdn.net/v/t1.0-9/18951509_10104825354557723_3021696985438837088_n.jpg?_nc_cat=104&oh=28e9b77955b04002f2da6c236eb1edd5&oe=5C5EB106);} .angle { background-attachment: scroll; background-size: cover; background-position: 50%; background-repeat: no-repeat; margin: auto; z-index: 9; position: absolute; width: 100%; height: auto; bottom:-10px; text-align: center; background-color:transparent; } .speech-bubble { float: right; padding: 4px 18px 3px 18px; position: relative; background: #181e23; text-transform: uppercase; letter-spacing: 4px; border-radius: 8px; margin: 0; color: #fff; font-size: .875rem; font-weight: 600; } .speech-bubble-left { text-align:center; padding: 8px 28px 8px 28px; position: relative; background: #1e88e5; width:fit-content; text-transform: uppercase; letter-spacing: 3px; border-radius: 6px; color: #fff; font-size: .75rem; font-weight: 600; z-index:5 } .speech-bubble-left:after { position: absolute; content: " "; border-left: 18px solid #0000; top: 50%; left: 24px; margin: 14px 0 0 18px; border-top: 16px solid #1e88e5; height: 0; width: 0; } .uk-divider-yellow { border-top: 4px solid #ffe500; margin: 4rem 0 8rem 0; } line.upper { stroke: #ffffff50; stroke-width: 4px; } line.lower { stroke: #ffe500; stroke-width: 18px; } polygon.one { fill: #181e23; } polygon.two { fill: #fff; } #about { background-image: url(https://demo.yootheme.com/themes/joomla/2018/summit/images/yootheme/section-bg-large.svg); background-size: auto; background-position: 100% bottom; background-repeat: no-repeat; padding: 8rem 0; } .infocard { min-width:340px; width:100%; background-color: #fff; background-position: 80% 65%; border-radius: 0.25rem; border: 1px solid #99999975; background-repeat: no-repeat; position: relative; box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2); margin: auto; } .infocard-title { margin: 1rem 0; display: flex; font-size: 1.25em; flex-direction: column; justify-content: center; border: 4px solid #1e88e5; text-align: center; padding: 1rem 0 1.25rem 0; } .infocard-title p { background-color: #fff; align-self: center; text-align: center; padding: 0 8px; position: absolute; font-size: 0.75rem; margin-top: 36px; } .entry { height: 3rem; align-items: center; display: flex; } .entry h5 { letter-spacing: -1px; font-variant: all-small-caps; margin: 0; font-size: 0.9rem; font-weight: 600; color: #181e23cc; } .entry i { margin-right: 6px; color: #1e88e5; font-size: 0.875rem !important; } .entry .list-content { margin-left: 6px; font-size: 0.8rem; color: #181e23cc; } .blue-text { color: #1e88e5; } .shadow { box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2); } .logo { color: #f9f9f9; transition: all 1s ease-in-out; background-color: #181e23; height: 72px !important; } .logo:hover { color: #1e88e5 !important; animation: rotate 1s 1; animation-direction: regular; } .section-text { padding: 4rem 0; position: relative; margin: auto; } .section-heading { font-size: 3rem; padding-top: 4rem; font-family: "Montserrat", sans-serif; font-weight: 500; letter-spacing: 2px; line-height: 1.3; } strong { letter-spacing: -1px; text-transform: uppercase; color: #1e88e5;} .section-subheading { font-size: 1.5rem; font-weight: 400; } .section-subheading > bold { color: #1e88e5; letter-spacing: 3px; font-weight: 900; font-style:italic; } b{font-weight:900;} .merkle-team{margin:auto;width:100%;height:auto;border-radius:.25rem;background-repeat:no-repeat;position:relative;background-position:25% 80%;background-size:cover; border:8px solid #181e23;} .about-sub{font-size:1.2rem;letter-spacing:1px;max-width:700px;} .cursive { font-family: "Pacifico", cursive; } .heading { font-family: "Montserrat", sans-serif; } .uk-button-resume { width: 100%; padding: 12px 0; color: #fff; margin-top: 12px; background-color: #1e88e5; border-bottom-left-radius: 0.25rem; border-bottom-right-radius: 0.25rem; text-align: center; transition: all 0.25s ease-in-out; } .uk-button-resume:hover { letter-spacing: 1px; background-color: #1976d2; } .uk-button-resume i { margin: 8px; font-size: 18px; } .cta { width: 45%; } .uk-section-muted { background-color: #eceff1; } .mhdm { background-image: url(http://www.chipwalter.com/matt-hoff/mh-dm.jpg); margin: auto; } .merkle { background-image: url(http://www.chipwalter.com/matt-hoff/merkle-logo.jpg); margin: auto; width:260px !important; } .seer { background-image: url(http://www.chipwalter.com/matt-hoff/seer-logo.jpg); margin: auto; width:220px !important; } .tcf { background-image: url(http://www.chipwalter.com/matt-hoff/content-factory-logo.jpg); margin: auto; width:180px !important; } .wmg { background-image: url(http://www.chipwalter.com/matt-hoff/warner-music-logo.jpg); margin: auto; width:180px !important; } .uk-slider-container { overflow: hidden; border-left: 1px solid #00000075; border-right: 1px solid #00000075; } .dots { position: absolute; z-index: 10; left: 0%; right: 0%; background-color:#181e23;padding:2rem 0;width:100%;} .arrow-left { position: relative; left: 0; color: #181e23cc; } .uk-overlay-dark { background: #000000f5; } .uk-overlay-primary { background: #00000060; } .arrow-right { position: relative; right: 0; color: #181e23cc; } .pitt { background-size: cover; filter: saturate(1.25)contrast(1.15); background-image: url(http://www.chipwalter.com/matt-hoff/pitt.jpg); background-position: 60% 30%; background-attachment: fixed; background-repeat: no-repeat; } .uk-background-dark{background-color:#181e23;} #education { font-size: 14px; } #work{padding:6rem 0;} .job-card{border-radius: .25rem; height:400px; display: flex; flex-direction: column; justify-content: space-between; box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2); transition: all .25s ease-in-out;} .uk-job-header { height: 80px; padding: 16px; border-bottom: 1px solid #00000025; display: flex; justify-content: center; flex-direction: column; } .job-content{text-align: center; padding: 12px;} .job-name{margin: 0; color: #000a; text-transform: capitalize; letter-spacing: 2px; font-size: 1.25rem; font-weight: 400; } .job-position{ font-size: 1.25rem; font-weight: 700; color: #111c; text-transform: uppercase; margin: 0; letter-spacing: 1.3px;} .job-date{margin: 0; font-size:1rem; letter-spacing: -.25px; color: #00000080;} .job-company { margin: 0; padding: 2rem 0 .25rem 0; font-size: .9rem; } .job-image { background-size: contain; background-repeat: no-repeat; background-position: 50%; width: 90%; max-width: 320px; height: 100px; } .uk-card-default.uk-card-hover:hover { background-color: #fff; transform: translateY(-4px); box-shadow: 0 18px 28px -6px rgba(0,0,0,0.2), 0 16px 12px -8px rgba(0,0,0,0.18); } .subnav { height: 28px; display: flex; justify-content: center; align-items: center; text-align: center; padding: 1rem 0 0 0; } .subnav>li>a>i { margin-right: 2px; font-size: .8rem; } .subnav>li a{font-size:.75rem;text-transform:capitalize !important;} .impaqt { background-image: url(http://www.chipwalter.com/matt-hoff/impaqt.jpg); margin: auto;} .iphone{width:100%;max-width:280px;height:auto;} .menu-link { font-size: 1.2rem !important; line-height: 2.2!important; color:#181e23aa !important; text-transform: capitalize !important; position: relative; text-align: left; margin-left: .5rem; font-variant-caps: all-small-caps !important; font-family: "Montserrat", sans-serif; transition: all .75s cubic-bezier(0.18, 0.89, 0.32, 1.28); } .menu-link:after { content: "🠐"; position: absolute; font-size: 3rem; top: -2rem; right: 0; color: #0000; transition: all .6s cubic-bezier(0.68, -0.55, 0.27, 1.55); } .menu-link:hover:after { color: #1e88e5; transform: translateX(3rem)scale(1.25); right: 35%; height:auto; transition-delay: .2s; } .menu-link:hover { color: #181e23 !important; padding-left: 18px; letter-spacing: 2px; width: 100%; background-color:#99999920; border-left: 6px solid #1e88e5; } .uk-offcanvas-bar { position: absolute; top: 0; display: flex; flex-direction: column; align-content: center; justify-content: center; width:270px; bottom: 0; left: 0; background-color:#fffffff5; color: #222d; overflow-y: auto; -webkit-overflow-scrolling: touch; transform: translateX(-100%); } .close{color:#222 !important;transition:color .2s ease-in-out;} .close:hover{color:#1e88e5 !important;} @media (max-width: 768px) { section{ border: .25rem solid #181e23; padding:0;} body { font-size: 14px; } .job-position{ font-size: 1rem; font-weight: 500; letter-spacing:0;} .job-name{margin: 0; color: #000a; text-transform: capitalize; letter-spacing: 1px; font-size: .875rem; font-weight: 400; } .job-nav>ul>li>a>i { margin-right: 3px; } .job-nav>ul>li>a{font-size:.7rem;text-transform:capitalize;} .section-heading { font-family: "Montserrat", sans-serif; letter-spacing: 0; font-size: 1.25rem; } .section-subheading { font-size: 1rem; line-height:1.25;} strong { letter-spacing: -1px; text-transform: uppercase; color: #1e88e5; } .nav-link { font-size: 0.75rem !important; width: fit-content !important; padding: 0 8px !important; } .angle { bottom: 0; } .uk-divider-yellow { border-top: 4px solid #ffe500; margin: 2rem auto; } } @media (min-width: 320px) { .uk-offcanvas-bar {width:280px; padding: 0px !important;} } @media (min-width: 375px) { .uk-offcanvas-bar {width:335px;padding:8px;}} @media (min-width: 420px) { .uk-offcanvas-bar {width:400px;padding:12px;}} @media (min-width: 1024px) { .infocard{right:-40px;} .uk-offcanvas-bar {width:400px} .padding-lg{padding:60px;} } .hamburger { top:50%; left:25%; right:25%; width: 30px; height: 2px; background: #222c; position: absolute; transition: .35s; } .hamburger:before { top: -8px; } .hamburger:after { top: 8px; } .icon { z-index:100; box-shadow: 0 6px 5px -2px #00000060; border-radius:.1rem; background-color:#eaeaeaaa; border:2px solid #222222aa; right:1.5rem; top:1.5rem; padding: 22px 28px; position:absolute; cursor: pointer; transition:all .2s ease-in-out; } .icon:hover{ background-color:#ffffffe9; border:2px solid #222d; box-shadow: 0 1px 1px -1px #00000080;} .icon:active{transform:scale(.95);} .hamburger:before, .hamburger:after { content: ''; position:absolute; width: 30px; height: 2px; background:#222c; transition:0.25s; } .icon.uk-active .hamburger { background:rgba(0,0,0,0); } .icon.uk-active .hamburger:before { top: 0; transform:rotate(135deg); } .icon.uk-active .hamburger:after { top: 0; transform:rotate(225deg); }
css/style.css
@import url("https://fonts.googleapis.com/css?family=Pacifico|Montserrat:500,900"); .uk-navbar-toggle{height:52px;width:52px;z-index:10;position:relative;} section{ border: 1rem solid #181e23; padding:0;} .uk-text-white{color:#fff !important;} .uk-alpha-700 { background: #00000090; ; } .hero-content { color: #fffc; padding: 8rem 0 12rem 0; width: fit-content; right: 0; left: 0; top: 0; bottom: 0; position: relative; text-align: center; margin: auto; z-index: 2; } .header { width: 100%; position: relative; } .hero-wrap { height: 100%; margin: auto; overflow: hidden; background-color: #1e88e5; } .hero-image { position: absolute !important; will-change: transform; left: 0; right:0; top: 0; bottom: 0; opacity: 0.3; width: 100%; z-index: 0; filter: saturate(1.2); background-repeat: no-repeat; opacity: .3;} .dzsparallaxer { height: 300px; position:absolute; overflow: hidden; } .uk-heading-hero { font-family: "Montserrat", sans-serif; font-size: 4.5rem; font-weight: 900; text-transform: uppercase; text-shadow: 0 4px 1px #000000; letter-spacing: 8px; margin: 12px auto; color: #ffffff !important; } .marketing{font-size: .875rem; margin: 0; font-weight: 500; background: #ffe500; letter-spacing: 0px; color: #000; padding: 4px 18px;} .subheading{ font-size: 2rem; font-family: "Pacifico", cursive; margin: 1rem 0 0 0; letter-spacing:1px; color: #ffe500; text-shadow: 0 2px #000000, 0 -1px black, 1px 0 black, -1px 0 black;} .uk-text-outline { text-shadow: 1px 0 #000000, -1px 0 #000000, 0 1px #000000, 0 -1px #000000; } .speech-bubble:after { position: absolute; content: ' '; border-right: 16px solid rgba(0, 0, 0, 0); top: 50%; right: 0; margin: 14px 32px 0 0px; border-top: 14px solid #181e23; height: 0; width: 0; } .profile{ border: 8px solid #181e23; border-radius: 100%; margin: auto; bottom:-40px; left:0; right:0; margin-top:1rem; position: absolute; height: 160px; width: 160px; z-index: 15; background-size: contain; background-image: url(https://scontent.fagc1-1.fna.fbcdn.net/v/t1.0-9/18951509_10104825354557723_3021696985438837088_n.jpg?_nc_cat=104&oh=28e9b77955b04002f2da6c236eb1edd5&oe=5C5EB106);} .angle { background-attachment: scroll; background-size: cover; background-position: 50%; background-repeat: no-repeat; margin: auto; z-index: 9; position: absolute; width: 100%; height: auto; bottom:-10px; text-align: center; background-color:transparent; } .speech-bubble { float: right; padding: 4px 18px 3px 18px; position: relative; background: #181e23; text-transform: uppercase; letter-spacing: 4px; border-radius: 8px; margin: 0; color: #fff; font-size: .875rem; font-weight: 600; } .speech-bubble-left { text-align:center; padding: 8px 28px 8px 28px; position: relative; background: #1e88e5; width:fit-content; text-transform: uppercase; letter-spacing: 3px; border-radius: 6px; color: #fff; font-size: .75rem; font-weight: 600; z-index:5 } .speech-bubble-left:after { position: absolute; content: " "; border-left: 18px solid #0000; top: 50%; left: 24px; margin: 14px 0 0 18px; border-top: 16px solid #1e88e5; height: 0; width: 0; } .uk-divider-yellow { border-top: 4px solid #ffe500; margin: 4rem 0 8rem 0; } line.upper { stroke: #ffffff50; stroke-width: 4px; } line.lower { stroke: #ffe500; stroke-width: 18px; } polygon.one { fill: #181e23; } polygon.two { fill: #fff; } #about { background-image: url(https://demo.yootheme.com/themes/joomla/2018/summit/images/yootheme/section-bg-large.svg); background-size: auto; background-position: 100% bottom; background-repeat: no-repeat; padding: 8rem 0; } .infocard { min-width:340px; width:100%; background-color: #fff; background-position: 80% 65%; border-radius: 0.25rem; border: 1px solid #99999975; background-repeat: no-repeat; position: relative; box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2); margin: auto; } .infocard-title { margin: 1rem 0; display: flex; font-size: 1.25em; flex-direction: column; justify-content: center; border: 4px solid #1e88e5; text-align: center; padding: 1rem 0 1.25rem 0; } .infocard-title p { background-color: #fff; align-self: center; text-align: center; padding: 0 8px; position: absolute; font-size: 0.75rem; margin-top: 36px; } .entry { height: 3rem; align-items: center; display: flex; } .entry h5 { letter-spacing: -1px; font-variant: all-small-caps; margin: 0; font-size: 0.9rem; font-weight: 600; color: #181e23cc; } .entry i { margin-right: 6px; color: #1e88e5; font-size: 0.875rem !important; } .entry .list-content { margin-left: 6px; font-size: 0.8rem; color: #181e23cc; } .blue-text { color: #1e88e5; } .shadow { box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2); } .logo { color: #f9f9f9; transition: all 1s ease-in-out; background-color: #181e23; height: 72px !important; } .logo:hover { color: #1e88e5 !important; animation: rotate 1s 1; animation-direction: regular; } .section-text { padding: 4rem 0; position: relative; margin: auto; } .section-heading { font-size: 3rem; padding-top: 4rem; font-family: "Montserrat", sans-serif; font-weight: 500; letter-spacing: 2px; line-height: 1.3; } strong { letter-spacing: -1px; text-transform: uppercase; color: #1e88e5;} .section-subheading { font-size: 1.5rem; font-weight: 400; } .section-subheading > bold { color: #1e88e5; letter-spacing: 3px; font-weight: 900; font-style:italic; } b{font-weight:900;} .merkle-team{margin:auto;width:100%;height:auto;border-radius:.25rem;background-repeat:no-repeat;position:relative;background-position:25% 80%;background-size:cover; border:8px solid #181e23;} .about-sub{font-size:1.2rem;letter-spacing:1px;max-width:700px;} .cursive { font-family: "Pacifico", cursive; } .heading { font-family: "Montserrat", sans-serif; } .uk-button-resume { width: 100%; padding: 12px 0; color: #fff; margin-top: 12px; background-color: #1e88e5; border-bottom-left-radius: 0.25rem; border-bottom-right-radius: 0.25rem; text-align: center; transition: all 0.25s ease-in-out; } .uk-button-resume:hover { letter-spacing: 1px; background-color: #1976d2; } .uk-button-resume i { margin: 8px; font-size: 18px; } .cta { width: 45%; } .uk-section-muted { background-color: #eceff1; } .mhdm { background-image: url(http://www.chipwalter.com/matt-hoff/mh-dm.jpg); margin: auto; } .merkle { background-image: url(http://www.chipwalter.com/matt-hoff/merkle-logo.jpg); margin: auto; width:260px !important; } .seer { background-image: url(http://www.chipwalter.com/matt-hoff/seer-logo.jpg); margin: auto; width:220px !important; } .tcf { background-image: url(http://www.chipwalter.com/matt-hoff/content-factory-logo.jpg); margin: auto; width:180px !important; } .wmg { background-image: url(http://www.chipwalter.com/matt-hoff/warner-music-logo.jpg); margin: auto; width:180px !important; } .uk-slider-container { overflow: hidden; border-left: 1px solid #00000075; border-right: 1px solid #00000075; } .dots { position: absolute; z-index: 10; left: 0%; right: 0%; background-color:#181e23;padding:2rem 0;width:100%;} .arrow-left { position: relative; left: 0; color: #181e23cc; } .uk-overlay-dark { background: #000000f5; } .uk-overlay-primary { background: #00000060; } .arrow-right { position: relative; right: 0; color: #181e23cc; } .pitt { background-size: cover; filter: saturate(1.25)contrast(1.15); background-image: url(http://www.chipwalter.com/matt-hoff/pitt.jpg); background-position: 60% 30%; background-attachment: fixed; background-repeat: no-repeat; } .uk-background-dark{background-color:#181e23;} #education { font-size: 14px; } #work{padding:6rem 0;} .job-card{border-radius: .25rem; height:400px; display: flex; flex-direction: column; justify-content: space-between; box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2); transition: all .25s ease-in-out;} .uk-job-header { height: 80px; padding: 16px; border-bottom: 1px solid #00000025; display: flex; justify-content: center; flex-direction: column; } .job-content{text-align: center; padding: 12px;} .job-name{margin: 0; color: #000a; text-transform: capitalize; letter-spacing: 2px; font-size: 1.25rem; font-weight: 400; } .job-position{ font-size: 1.25rem; font-weight: 700; color: #111c; text-transform: uppercase; margin: 0; letter-spacing: 1.3px;} .job-date{margin: 0; font-size:1rem; letter-spacing: -.25px; color: #00000080;} .job-company { margin: 0; padding: 2rem 0 .25rem 0; font-size: .9rem; } .job-image { background-size: contain; background-repeat: no-repeat; background-position: 50%; width: 90%; max-width: 320px; height: 100px; } .uk-card-default.uk-card-hover:hover { background-color: #fff; transform: translateY(-4px); box-shadow: 0 18px 28px -6px rgba(0,0,0,0.2), 0 16px 12px -8px rgba(0,0,0,0.18); } .subnav { height: 28px; display: flex; justify-content: center; align-items: center; text-align: center; padding: 1rem 0 0 0; } .subnav>li>a>i { margin-right: 2px; font-size: .8rem; } .subnav>li a{font-size:.75rem;text-transform:capitalize !important;} .impaqt { background-image: url(http://www.chipwalter.com/matt-hoff/impaqt.jpg); margin: auto;} .iphone{width:100%;max-width:280px;height:auto;} .menu-link { font-size: 1.2rem !important; line-height: 2.2!important; color:#181e23aa !important; text-transform: capitalize !important; position: relative; text-align: left; margin-left: .5rem; font-variant-caps: all-small-caps !important; font-family: "Montserrat", sans-serif; transition: all .75s cubic-bezier(0.18, 0.89, 0.32, 1.28); } .menu-link:after { content: "🠐"; position: absolute; font-size: 3rem; top: -2rem; right: 0; color: #0000; transition: all .6s cubic-bezier(0.68, -0.55, 0.27, 1.55); } .menu-link:hover:after { color: #1e88e5; transform: translateX(3rem)scale(1.25); right: 35%; height:auto; transition-delay: .2s; } .menu-link:hover { color: #181e23 !important; padding-left: 18px; letter-spacing: 2px; width: 100%; background-color:#99999920; border-left: 6px solid #1e88e5; } .uk-offcanvas-bar { position: absolute; top: 0; display: flex; flex-direction: column; align-content: center; justify-content: center; width:270px; bottom: 0; left: 0; background-color:#fffffff5; color: #222d; overflow-y: auto; -webkit-overflow-scrolling: touch; transform: translateX(-100%); } .close{color:#222 !important;transition:color .2s ease-in-out;} .close:hover{color:#1e88e5 !important;} @media (max-width: 768px) { section{ border: .25rem solid #181e23; padding:0;} body { font-size: 14px; } .job-position{ font-size: 1rem; font-weight: 500; letter-spacing:0;} .job-name{margin: 0; color: #000a; text-transform: capitalize; letter-spacing: 1px; font-size: .875rem; font-weight: 400; } .job-nav>ul>li>a>i { margin-right: 3px; } .job-nav>ul>li>a{font-size:.7rem;text-transform:capitalize;} .section-heading { font-family: "Montserrat", sans-serif; letter-spacing: 0; font-size: 1.25rem; } .section-subheading { font-size: 1rem; line-height:1.25;} strong { letter-spacing: -1px; text-transform: uppercase; color: #1e88e5; } .nav-link { font-size: 0.75rem !important; width: fit-content !important; padding: 0 8px !important; } .angle { bottom: 0; } .uk-divider-yellow { border-top: 4px solid #ffe500; margin: 2rem auto; } } @media (min-width: 320px) { .uk-offcanvas-bar {width:280px; padding: 0px !important;} } @media (min-width: 375px) { .uk-offcanvas-bar {width:335px;padding:8px;}} @media (min-width: 420px) { .uk-offcanvas-bar {width:400px;padding:12px;}} @media (min-width: 1024px) { .infocard{right:-40px;} .uk-offcanvas-bar {width:400px} .padding-lg{padding:60px;} } .hamburger { top:50%; left:25%; right:25%; width: 30px; height: 2px; background: #222c; position: absolute; transition: .35s; } .hamburger:before { top: -8px; } .hamburger:after { top: 8px; } .icon { z-index:100; box-shadow: 0 6px 5px -2px #00000060; border-radius:.1rem; background-color:#eaeaeaaa; border:2px solid #222222aa; right:1.5rem; top:1.5rem; padding: 22px 28px; position:absolute; cursor: pointer; transition:all .2s ease-in-out; } .icon:hover{ background-color:#ffffffe9; border:2px solid #222d; box-shadow: 0 1px 1px -1px #00000080;} .icon:active{transform:scale(.95);} .hamburger:before, .hamburger:after { content: ''; position:absolute; width: 30px; height: 2px; background:#222c; transition:0.25s; } .icon.uk-active .hamburger { background:rgba(0,0,0,0); } .icon.uk-active .hamburger:before { top: 0; transform:rotate(135deg); } .icon.uk-active .hamburger:after { top: 0; transform:rotate(225deg); }
0.448426
0.11358
body{ width: 100%; overflow-x: hidden; font-family: 'Courgette', cursive; scroll-behavior: smooth; font-size: 22px; } header{ background-image: url("https://media.gettyimages.com/photos/delicious-italian-pizza-picture-id1124359123?s=2048x2048"); height: 100vh; } .overlay{ background-color: rgba(0,0, 0, 0.7); justify-content: center; height: 100vh; text-align: center; padding-top: 15%; color: white; } table{ align-content: center; } td{ padding: 20px; } #orderSummary{ margin-left: 40%; height: 60vh; } nav ul{ display: flex; flex-direction: row; margin-right: 5%; width: 80%; margin-left: 5%; background-color: transparent; } nav{ background-color: transparent; position: fixed; color:white; justify-content: space-between; box-shadow: 5px 5px 5px silver; margin-top: 0%; width: 100%; } nav ul li{ text-decoration: none; padding-right: 8%; list-style-type: none; } nav ul li:hover{ text-decoration: underline; } .icons{ display: flex; justify-content: space-between; margin-right: 3%; } #order2{ padding:3%; } #aboutImage{ float: left; width:500px; } #about > h2{ padding-top: 5%; } #welcome{ padding-top: 7%; } #menu{ background-image: url("https://cdn.pixabay.com/photo/2017/01/15/10/20/texture-1981165_960_720.jpg"); } #spacing{ padding-left: 7%; } .row figcaption{ text-align: center; color: white; } .row{ padding-top: 10%; display: flex; justify-content: space-between; margin-right: 3%; margin-bottom: 5%; } #menuTitle{ text-align: center; color: white; padding-top: 3%; } .form-group{ align-content: center; margin-left: 20%; width: 60%; margin-right: 15%; padding-left: 5%; } #summary{ text-align: center; padding-top: 5%; } #lefter{ float: left; } #contact{ justify-content: center; padding-top: 50px; height: 100vh; margin-top: 20%; } #submitFeedback{ width: 40%; margin-left: 30%; } #message{ padding-top: 10px; } footer{ background-image: url("https://media.gettyimages.com/photos/slice-of-pizza-being-lifted-from-a-pizza-pie-with-lots-of-cheese-and-picture-id1059263080?s=2048x2048"); } #name #email{ margin-top: 10px; margin-bottom: 20px; width: 40%; } .overlay > h2{ color: white; text-align: center; padding: 30px; margin-top: 2%; } @media only screen and (max-width: 1000px) { body{ display: flex; flex-direction: column; overflow-wrap: break-word; } .icons{ flex-direction: column; } nav{ display: none; } #aboutImage #summaryImage{ display: none; } }
CSS/styles.css
body{ width: 100%; overflow-x: hidden; font-family: 'Courgette', cursive; scroll-behavior: smooth; font-size: 22px; } header{ background-image: url("https://media.gettyimages.com/photos/delicious-italian-pizza-picture-id1124359123?s=2048x2048"); height: 100vh; } .overlay{ background-color: rgba(0,0, 0, 0.7); justify-content: center; height: 100vh; text-align: center; padding-top: 15%; color: white; } table{ align-content: center; } td{ padding: 20px; } #orderSummary{ margin-left: 40%; height: 60vh; } nav ul{ display: flex; flex-direction: row; margin-right: 5%; width: 80%; margin-left: 5%; background-color: transparent; } nav{ background-color: transparent; position: fixed; color:white; justify-content: space-between; box-shadow: 5px 5px 5px silver; margin-top: 0%; width: 100%; } nav ul li{ text-decoration: none; padding-right: 8%; list-style-type: none; } nav ul li:hover{ text-decoration: underline; } .icons{ display: flex; justify-content: space-between; margin-right: 3%; } #order2{ padding:3%; } #aboutImage{ float: left; width:500px; } #about > h2{ padding-top: 5%; } #welcome{ padding-top: 7%; } #menu{ background-image: url("https://cdn.pixabay.com/photo/2017/01/15/10/20/texture-1981165_960_720.jpg"); } #spacing{ padding-left: 7%; } .row figcaption{ text-align: center; color: white; } .row{ padding-top: 10%; display: flex; justify-content: space-between; margin-right: 3%; margin-bottom: 5%; } #menuTitle{ text-align: center; color: white; padding-top: 3%; } .form-group{ align-content: center; margin-left: 20%; width: 60%; margin-right: 15%; padding-left: 5%; } #summary{ text-align: center; padding-top: 5%; } #lefter{ float: left; } #contact{ justify-content: center; padding-top: 50px; height: 100vh; margin-top: 20%; } #submitFeedback{ width: 40%; margin-left: 30%; } #message{ padding-top: 10px; } footer{ background-image: url("https://media.gettyimages.com/photos/slice-of-pizza-being-lifted-from-a-pizza-pie-with-lots-of-cheese-and-picture-id1059263080?s=2048x2048"); } #name #email{ margin-top: 10px; margin-bottom: 20px; width: 40%; } .overlay > h2{ color: white; text-align: center; padding: 30px; margin-top: 2%; } @media only screen and (max-width: 1000px) { body{ display: flex; flex-direction: column; overflow-wrap: break-word; } .icons{ flex-direction: column; } nav{ display: none; } #aboutImage #summaryImage{ display: none; } }
0.513425
0.083591
@font-face { font-family: 'maktro-ms'; src: url('fonts/maktro-ms.eot?40hb42'); src: url('fonts/maktro-ms.eot?40hb42#iefix') format('embedded-opentype'), url('fonts/maktro-ms.ttf?40hb42') format('truetype'), url('fonts/maktro-ms.woff?40hb42') format('woff'); font-weight: normal; font-style: normal; font-display: block; } [class^='ic-'], [class*=' ic-'] { /* use !important to prevent issues with browser extensions that change fonts */ font-family: 'maktro-ms' !important; speak: none; font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; line-height: 1; /* Better Font Rendering =========== */ -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .ic-warning:before { content: '\e900'; } .ic-chevron-down:before { content: '\e901'; } .ic-chevron-left:before { content: '\e902'; } .ic-chevron-right:before { content: '\e903'; } .ic-chevron-up:before { content: '\e904'; } .ic-controller-paus:before { content: '\e905'; } .ic-controller-play:before { content: '\e906'; } .ic-controller-stop:before { content: '\e907'; } .ic-dots-three-horizontal:before { content: '\e908'; } .ic-dots-three-vertical:before { content: '\e909'; } .ic-add-user:before { content: '\e90a'; } .ic-block:before { content: '\e90b'; } .ic-calendar:before { content: '\e90c'; } .ic-check:before { content: '\e90d'; } .ic-cog:before { content: '\e90e'; } .ic-credit-card:before { content: '\e90f'; } .ic-credit:before { content: '\e910'; } .ic-cross:before { content: '\e911'; } .ic-cycle:before { content: '\e912'; } .ic-export:before { content: '\e913'; } .ic-globe:before { content: '\e914'; } .ic-help-with-circle:before { content: '\e915'; } .ic-help:before { content: '\e916'; } .ic-home:before { content: '\e917'; } .ic-info-with-circle:before { content: '\e918'; } .ic-info:before { content: '\e919'; } .ic-location:before { content: '\e91a'; } .ic-megaphone:before { content: '\e91b'; } .ic-menu:before { content: '\e91c'; } .ic-message:before { content: '\e91d'; } .ic-minus:before { content: '\e91e'; } .ic-new-message:before { content: '\e91f'; } .ic-pencil:before { content: '\e920'; } .ic-phone:before { content: '\e921'; } .ic-pin:before { content: '\e922'; } .ic-plus:before { content: '\e923'; } .ic-quote:before { content: '\e924'; } .ic-shop:before { content: '\e925'; } .ic-shopping-cart:before { content: '\e926'; } .ic-sound-mix:before { content: '\e927'; } .ic-star:before { content: '\e928'; } .ic-switch:before { content: '\e929'; } .ic-tools:before { content: '\e92a'; } .ic-typing:before { content: '\e92b'; } .ic-user:before { content: '\e92c'; } .ic-arrow-down:before { content: '\e92d'; } .ic-arrow-left:before { content: '\e92e'; } .ic-arrow-right:before { content: '\e92f'; } .ic-arrow-up:before { content: '\e930'; } .ic-save:before { content: '\e931'; } .ic-trash:before { content: '\e932'; } .ic-archive:before { content: '\e933'; } .ic-attachment:before { content: '\e934'; } .ic-back-in-time:before { content: '\e935'; } .ic-battery:before { content: '\e936'; } .ic-briefcase:before { content: '\e937'; } .ic-calculator:before { content: '\e938'; } .ic-compass:before { content: '\e939'; } .ic-edit:before { content: '\e93a'; } .ic-flag:before { content: '\e93b'; } .ic-forward:before { content: '\e93c'; } .ic-funnel:before { content: '\e93d'; } .ic-gauge:before { content: '\e93e'; } .ic-grid:before { content: '\e93f'; } .ic-hour-glass:before { content: '\e940'; } .ic-key:before { content: '\e941'; } .ic-lock-open:before { content: '\e942'; } .ic-lock:before { content: '\e943'; } .ic-magnifying-glass:before { content: '\e944'; } .ic-mail:before { content: '\e945'; } .ic-pie-chart:before { content: '\e946'; } .ic-print:before { content: '\e947'; } .ic-publish:before { content: '\e948'; } .ic-radio:before { content: '\e949'; } .ic-rss:before { content: '\e94a'; } .ic-scissors:before { content: '\e94b'; } .ic-share-alternitive:before { content: '\e94c'; } .ic-shopping-bag:before { content: '\e94d'; } .ic-tv:before { content: '\e94e'; } .ic-v-card:before { content: '\e94f'; }
public/images/icons/style.css
@font-face { font-family: 'maktro-ms'; src: url('fonts/maktro-ms.eot?40hb42'); src: url('fonts/maktro-ms.eot?40hb42#iefix') format('embedded-opentype'), url('fonts/maktro-ms.ttf?40hb42') format('truetype'), url('fonts/maktro-ms.woff?40hb42') format('woff'); font-weight: normal; font-style: normal; font-display: block; } [class^='ic-'], [class*=' ic-'] { /* use !important to prevent issues with browser extensions that change fonts */ font-family: 'maktro-ms' !important; speak: none; font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; line-height: 1; /* Better Font Rendering =========== */ -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .ic-warning:before { content: '\e900'; } .ic-chevron-down:before { content: '\e901'; } .ic-chevron-left:before { content: '\e902'; } .ic-chevron-right:before { content: '\e903'; } .ic-chevron-up:before { content: '\e904'; } .ic-controller-paus:before { content: '\e905'; } .ic-controller-play:before { content: '\e906'; } .ic-controller-stop:before { content: '\e907'; } .ic-dots-three-horizontal:before { content: '\e908'; } .ic-dots-three-vertical:before { content: '\e909'; } .ic-add-user:before { content: '\e90a'; } .ic-block:before { content: '\e90b'; } .ic-calendar:before { content: '\e90c'; } .ic-check:before { content: '\e90d'; } .ic-cog:before { content: '\e90e'; } .ic-credit-card:before { content: '\e90f'; } .ic-credit:before { content: '\e910'; } .ic-cross:before { content: '\e911'; } .ic-cycle:before { content: '\e912'; } .ic-export:before { content: '\e913'; } .ic-globe:before { content: '\e914'; } .ic-help-with-circle:before { content: '\e915'; } .ic-help:before { content: '\e916'; } .ic-home:before { content: '\e917'; } .ic-info-with-circle:before { content: '\e918'; } .ic-info:before { content: '\e919'; } .ic-location:before { content: '\e91a'; } .ic-megaphone:before { content: '\e91b'; } .ic-menu:before { content: '\e91c'; } .ic-message:before { content: '\e91d'; } .ic-minus:before { content: '\e91e'; } .ic-new-message:before { content: '\e91f'; } .ic-pencil:before { content: '\e920'; } .ic-phone:before { content: '\e921'; } .ic-pin:before { content: '\e922'; } .ic-plus:before { content: '\e923'; } .ic-quote:before { content: '\e924'; } .ic-shop:before { content: '\e925'; } .ic-shopping-cart:before { content: '\e926'; } .ic-sound-mix:before { content: '\e927'; } .ic-star:before { content: '\e928'; } .ic-switch:before { content: '\e929'; } .ic-tools:before { content: '\e92a'; } .ic-typing:before { content: '\e92b'; } .ic-user:before { content: '\e92c'; } .ic-arrow-down:before { content: '\e92d'; } .ic-arrow-left:before { content: '\e92e'; } .ic-arrow-right:before { content: '\e92f'; } .ic-arrow-up:before { content: '\e930'; } .ic-save:before { content: '\e931'; } .ic-trash:before { content: '\e932'; } .ic-archive:before { content: '\e933'; } .ic-attachment:before { content: '\e934'; } .ic-back-in-time:before { content: '\e935'; } .ic-battery:before { content: '\e936'; } .ic-briefcase:before { content: '\e937'; } .ic-calculator:before { content: '\e938'; } .ic-compass:before { content: '\e939'; } .ic-edit:before { content: '\e93a'; } .ic-flag:before { content: '\e93b'; } .ic-forward:before { content: '\e93c'; } .ic-funnel:before { content: '\e93d'; } .ic-gauge:before { content: '\e93e'; } .ic-grid:before { content: '\e93f'; } .ic-hour-glass:before { content: '\e940'; } .ic-key:before { content: '\e941'; } .ic-lock-open:before { content: '\e942'; } .ic-lock:before { content: '\e943'; } .ic-magnifying-glass:before { content: '\e944'; } .ic-mail:before { content: '\e945'; } .ic-pie-chart:before { content: '\e946'; } .ic-print:before { content: '\e947'; } .ic-publish:before { content: '\e948'; } .ic-radio:before { content: '\e949'; } .ic-rss:before { content: '\e94a'; } .ic-scissors:before { content: '\e94b'; } .ic-share-alternitive:before { content: '\e94c'; } .ic-shopping-bag:before { content: '\e94d'; } .ic-tv:before { content: '\e94e'; } .ic-v-card:before { content: '\e94f'; }
0.375363
0.192103
listBibl, biblStruct, biblFull, respStmt, editionStmt, availability, licence, seriesStmt { display:block; -oxy-display-tags:none; -oxy-foldable:true; } listBibl, biblStruct, biblFull, respStmt, editionStmt, availability, seriesStmt { -oxy-folded:true; } /* Section Labels */ listBibl:before, biblStruct:before, biblFull:before, respStmt:before, editionStmt:before, analytic:before, monogr:before, series:before, seriesStmt:before, availability:before, licence:before { display:block; color:white; background-color:rgba(0, 0, 128, 0.5); font-weight:bold; width:100%; margin:5px; content: oxy_concat("${i18n(", oxy_name(), ".label)}"); } listBibl:before { background-color:gray; } /* Field labels */ bibl:before, title:before, author:before, editor:before, sponsor:before, funder:before, principal:before, resp:before, name:before, edition:before, publisher:before, distributor:before, authority:before, pubPlace:before { content: oxy_label( text, oxy_concat("${i18n(", oxy_name(), ".label)}: ") styles, "@import 'labels.css';" ) ; } bibl, analytic, monogr, series, imprint, title, author, editor, sponsor, funder, principal, resp, name, edition, publisher, distributor, authority, pubPlace, biblScope, idno { display:block; } title { font-weight:bold; } title[type="sub"] { font-size:smaller; font-variant:small-caps; } title:before { padding-right: 2px; vertical-align: middle; -oxy-append-content: url('../images/title-16.png') oxy_label( text, oxy_concat("${i18n(type.label)}: ") styles, "@import 'labels_sub.css';" ) oxy_combobox( edit, "@type" values, "main, sub" ) " " ; } title[ref]:after { padding-left: 5px; vertical-align: middle; link: attr(ref, string, ""); content: url('../images/link_open-16.png'); } title:focus:after { padding:5px; -oxy-append-content: oxy_label( text, "${i18n(ref.label)}: " width, 40px styles, "@import 'labels_sub.css';" ) oxy_textfield( edit, "@ref" columns, 25 ) ; } availability:before { -oxy-append-content: " " oxy_label( text, oxy_concat("${i18n(status.label)}: ") styles, "@import 'labels_sub.css';" ) oxy_combobox( edit, "@status" ) " " ; } licence:before { -oxy-append-content: oxy_label( text, "${i18n(url.label)}: " width, 50px styles, "@import 'labels_sub.css';" ) oxy_textfield( edit, "@target" columns, 25 ) ; } licence[target]:after { padding-left: 5px; vertical-align: middle; link: attr(target, string, ""); content: url('../images/link_open-16.png'); } biblScope:before { -oxy-append-content: oxy_label( text, "${i18n(biblScope.label)}: " styles, "@import 'labels.css';" ) ; } biblScope[type]:before { content: oxy_label( text, oxy_concat("${i18n(biblScope.label.", attr(type, string, ""), ")}: ") styles, "@import 'labels.css';" ) ; } biblScope[unit]:before { content: oxy_label( text, oxy_concat("${i18n(biblScope.label.", attr(unit, string, ""), ")}: ") styles, "@import 'labels.css';" ) oxy_label( text, "${i18n(biblScope.label.from)}: " styles, "@import 'labels_sub.css';" ) oxy_textfield( edit, "@from" columns, 4 ) oxy_label( text, "${i18n(biblScope.label.to)}: " styles, "@import 'labels_sub.css';" ) oxy_textfield( edit, "@to" columns, 4 ) ; } idno[type]:before { content: oxy_label( text, oxy_concat("${i18n(idno.label.", attr(type, string, ""), ")}: ") styles, "@import 'labels.css';" ) ; } note[type="accessed"]:before { content: oxy_label( text, oxy_concat("${i18n(date.label.", attr(type, string, ""), ")}: ") styles, "@import 'labels.css';" ) ; } resp { -oxy-append-content: oxy_label( text, oxy_concat("${i18n(key.label)}: ") styles, "@import 'labels_sub.css';" ) oxy_combobox( edit, "@key" columns, 6 ) " " ; } respStmt > name { content: oxy_editor( rendererClassName, "info.histei.contextual_info.ContextualEditor", swingEditorClassName, "info.histei.contextual_info.ContextualEditor", edit, "@ref" fontInherit, true contextual_type, "psn" contextual_filter, "editor" ) ; }
frameworks/HisTEI/css/bibl.css
listBibl, biblStruct, biblFull, respStmt, editionStmt, availability, licence, seriesStmt { display:block; -oxy-display-tags:none; -oxy-foldable:true; } listBibl, biblStruct, biblFull, respStmt, editionStmt, availability, seriesStmt { -oxy-folded:true; } /* Section Labels */ listBibl:before, biblStruct:before, biblFull:before, respStmt:before, editionStmt:before, analytic:before, monogr:before, series:before, seriesStmt:before, availability:before, licence:before { display:block; color:white; background-color:rgba(0, 0, 128, 0.5); font-weight:bold; width:100%; margin:5px; content: oxy_concat("${i18n(", oxy_name(), ".label)}"); } listBibl:before { background-color:gray; } /* Field labels */ bibl:before, title:before, author:before, editor:before, sponsor:before, funder:before, principal:before, resp:before, name:before, edition:before, publisher:before, distributor:before, authority:before, pubPlace:before { content: oxy_label( text, oxy_concat("${i18n(", oxy_name(), ".label)}: ") styles, "@import 'labels.css';" ) ; } bibl, analytic, monogr, series, imprint, title, author, editor, sponsor, funder, principal, resp, name, edition, publisher, distributor, authority, pubPlace, biblScope, idno { display:block; } title { font-weight:bold; } title[type="sub"] { font-size:smaller; font-variant:small-caps; } title:before { padding-right: 2px; vertical-align: middle; -oxy-append-content: url('../images/title-16.png') oxy_label( text, oxy_concat("${i18n(type.label)}: ") styles, "@import 'labels_sub.css';" ) oxy_combobox( edit, "@type" values, "main, sub" ) " " ; } title[ref]:after { padding-left: 5px; vertical-align: middle; link: attr(ref, string, ""); content: url('../images/link_open-16.png'); } title:focus:after { padding:5px; -oxy-append-content: oxy_label( text, "${i18n(ref.label)}: " width, 40px styles, "@import 'labels_sub.css';" ) oxy_textfield( edit, "@ref" columns, 25 ) ; } availability:before { -oxy-append-content: " " oxy_label( text, oxy_concat("${i18n(status.label)}: ") styles, "@import 'labels_sub.css';" ) oxy_combobox( edit, "@status" ) " " ; } licence:before { -oxy-append-content: oxy_label( text, "${i18n(url.label)}: " width, 50px styles, "@import 'labels_sub.css';" ) oxy_textfield( edit, "@target" columns, 25 ) ; } licence[target]:after { padding-left: 5px; vertical-align: middle; link: attr(target, string, ""); content: url('../images/link_open-16.png'); } biblScope:before { -oxy-append-content: oxy_label( text, "${i18n(biblScope.label)}: " styles, "@import 'labels.css';" ) ; } biblScope[type]:before { content: oxy_label( text, oxy_concat("${i18n(biblScope.label.", attr(type, string, ""), ")}: ") styles, "@import 'labels.css';" ) ; } biblScope[unit]:before { content: oxy_label( text, oxy_concat("${i18n(biblScope.label.", attr(unit, string, ""), ")}: ") styles, "@import 'labels.css';" ) oxy_label( text, "${i18n(biblScope.label.from)}: " styles, "@import 'labels_sub.css';" ) oxy_textfield( edit, "@from" columns, 4 ) oxy_label( text, "${i18n(biblScope.label.to)}: " styles, "@import 'labels_sub.css';" ) oxy_textfield( edit, "@to" columns, 4 ) ; } idno[type]:before { content: oxy_label( text, oxy_concat("${i18n(idno.label.", attr(type, string, ""), ")}: ") styles, "@import 'labels.css';" ) ; } note[type="accessed"]:before { content: oxy_label( text, oxy_concat("${i18n(date.label.", attr(type, string, ""), ")}: ") styles, "@import 'labels.css';" ) ; } resp { -oxy-append-content: oxy_label( text, oxy_concat("${i18n(key.label)}: ") styles, "@import 'labels_sub.css';" ) oxy_combobox( edit, "@key" columns, 6 ) " " ; } respStmt > name { content: oxy_editor( rendererClassName, "info.histei.contextual_info.ContextualEditor", swingEditorClassName, "info.histei.contextual_info.ContextualEditor", edit, "@ref" fontInherit, true contextual_type, "psn" contextual_filter, "editor" ) ; }
0.256087
0.109087
div.ReactTags__tags { position: relative; } /* Styles for the input */ div.ReactTags__tagInput { width: 200px; border-radius: 2px; display: inline-block; } div.ReactTags__tagInput input.ReactTags__tagInputField, div.ReactTags__tagInput input.ReactTags__tagInputField:focus { display: block; width: 100%; height: 34px; padding: 6px 12px; font-size: 14px; line-height: 1.42857143; color: #555; background-color: #eeeeee; background-image: none; border: 1px solid #eee; border-radius: 4px; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075); box-shadow: inset 0 1px 1px rgb(238, 238, 238); -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s; -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s; transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s; } /* Styles for selected tags */ div.ReactTags__selected span.ReactTags__tag { border: 1px solid #2e6da4; background: #337ab7; color: white; font-size: 12px; display: inline-block; padding: 5px; margin: 6px 3px; cursor: pointer; border-radius: 15px; } div.ReactTags__selected a.ReactTags__remove { color: #aaa; margin-left: 5px; cursor: pointer; } /* Styles for suggestions */ div.ReactTags__suggestions { position: absolute; } div.ReactTags__suggestions ul { list-style-type: none; box-shadow: .05em .01em .5em rgba(0,0,0,.2); background: white; width: 200px; } div.ReactTags__suggestions li { border-bottom: 1px solid #ddd; padding: 5px 10px; margin: 0; } div.ReactTags__suggestions li mark { text-decoration: underline; background: none; font-weight: 600; } div.ReactTags__suggestions ul li.ReactTags__activeSuggestion { background: #b7cfe0; cursor: pointer; } span.tag-wrapper.ReactTags__tag { cursor: default!important; } .btn-default.active, .btn-default:active, .open>.dropdown-toggle.btn-default { color: #337ab7; } .has-success .form-control { border-color: #77d2a0a6; }
src/styles/inputTags.css
div.ReactTags__tags { position: relative; } /* Styles for the input */ div.ReactTags__tagInput { width: 200px; border-radius: 2px; display: inline-block; } div.ReactTags__tagInput input.ReactTags__tagInputField, div.ReactTags__tagInput input.ReactTags__tagInputField:focus { display: block; width: 100%; height: 34px; padding: 6px 12px; font-size: 14px; line-height: 1.42857143; color: #555; background-color: #eeeeee; background-image: none; border: 1px solid #eee; border-radius: 4px; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075); box-shadow: inset 0 1px 1px rgb(238, 238, 238); -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s; -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s; transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s; } /* Styles for selected tags */ div.ReactTags__selected span.ReactTags__tag { border: 1px solid #2e6da4; background: #337ab7; color: white; font-size: 12px; display: inline-block; padding: 5px; margin: 6px 3px; cursor: pointer; border-radius: 15px; } div.ReactTags__selected a.ReactTags__remove { color: #aaa; margin-left: 5px; cursor: pointer; } /* Styles for suggestions */ div.ReactTags__suggestions { position: absolute; } div.ReactTags__suggestions ul { list-style-type: none; box-shadow: .05em .01em .5em rgba(0,0,0,.2); background: white; width: 200px; } div.ReactTags__suggestions li { border-bottom: 1px solid #ddd; padding: 5px 10px; margin: 0; } div.ReactTags__suggestions li mark { text-decoration: underline; background: none; font-weight: 600; } div.ReactTags__suggestions ul li.ReactTags__activeSuggestion { background: #b7cfe0; cursor: pointer; } span.tag-wrapper.ReactTags__tag { cursor: default!important; } .btn-default.active, .btn-default:active, .open>.dropdown-toggle.btn-default { color: #337ab7; } .has-success .form-control { border-color: #77d2a0a6; }
0.31563
0.090695
@charset "utf-8"; /* CSS Document */ /* [ 本CSS 說明 ] 本CSS檔案內容通常使用在 a.連結其它CSS b.制定通用規則 */ /*----------[ 大項區塊 ]----------*/ @import url("header.css"); @import url("multimenu.css"); @import url("menu.css"); @import url("layout.css"); @import url("left_right.css"); @import url("footer.css"); /*----------[ 型態頁面控制 ]----------*/ @import url("mp.css"); @import url("cp.css"); @import url("lp.css"); @import url("np.css"); @import url("sp.css"); /*----------[ 特殊單一區塊 ]----------*/ @import url("googleMail.css"); /* google行事曆控制 */ @import url("lp_category.css"); @import url("scp_ui.css"); /* 13組特殊版型控制 */ @import url("more.css"); /* 更多內容按鈕控制 */ @import url("marquee.css"); /* 跑馬燈控制 */ @import url("headline.css"); @import url("form.css"); @import url("default.css"); @import url("search.css"); @import url("sitemap.css"); @import url("friendly.css"); @import url("page.css"); @import url("tabpanel1_class.css"); /* @import url("reset.css"); @import url("right.css"); */ /*--------------------------------------------------------------------------------[ 總面積控制 ]----------*/ body{ /*background:url(../images/bg.gif) left -5px repeat-x #6f6f6f;*/ margin:0px; background: #a5956c; padding: 0px; } .wrap { width: 1000px; background:#FFF; padding: 0px; position: relative; margin: 0px auto 0; } /*--------------------------------------------------------------------------------[ 所有圖片基礎控制 ]----------*/ img { border-width: 0px; border-style: none; } /*--------------------------------------------------------------------------------[ 隱藏物件 ]----------*/ .hidden { display: none; visibility: hidden; } /*--------------------------------------------------------------------------------[ 首頁之外的頁面共通設定 ]----------*/ .cp, .lp, .np, .qp, .sitemap, .qp, .sp, .fb, .form, .scp, cp_photo { line-height: 150%; color: #666666; text-align:left; clear:both; } /*--------------------------------------------------------------------------------[ 底下為字型可以統一控制的部分 ]----------*/ a { font-style: normal; line-height: normal; font-weight: normal; font-variant: normal; color: #666; text-decoration: none; } p { font-size: 80%; font-style: normal; line-height: normal; font-weight: normal; font-variant: normal; color: #666; text-decoration: none; } h2 { background-image: url(../images/headline_bg_001.gif); background-repeat: no-repeat; background-position: 3px 3px; font-size: 16px; font-weight: bold; text-decoration: none; width: 100%; color:#682a2b; padding-top: 4px; padding-right: 0px; padding-bottom: 1px; padding-left: 26px; margin-top: 0px; *margin-top: -1px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; } .center h2 { background-image: url(../images/center_h2bg.gif); background-repeat: no-repeat; background-position: left bottom; font-size: 16px; font-weight: bold; text-decoration: none; color:#682a2b; *margin-top: -1px; margin: 10px 0px; padding: 2px 0px 10px 30px; width: 93%; } h2 span,.center h2 span { font-size: 100%; font-style: normal; line-height: normal; font-weight: normal; font-variant: normal; color: #333; } h2 label,.center h2 label { font-style: normal; line-height: normal; font-weight: bold; font-variant: normal; color:#5F821E; } h2 span a,.center h2 span a { font-size: 16px; font-weight: bold; color:#682a2b; } h3 { font-size: 100%; font-style: normal; line-height: normal; font-weight: normal; font-variant: normal; color: #00F; text-decoration: none; } /*--------------------------------------------------------------------------------[ date ]----------*/ .side .date, .canter .date { font-size: 70%; color: #999; font-family: Arial, Helvetica, sans-serif; font-style: normal; line-height: normal; font-weight: normal; font-variant: normal; text-decoration: none; margin: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 15px; } /*--------------------------------------------------------------------------------[ source ]----------*/ .side .source, .canter .source { font-size: 70%; color: #666; font-family: Arial, Helvetica, sans-serif; font-style: normal; line-height: normal; font-weight: normal; font-variant: normal; text-decoration: none; margin: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 5px; } .news{ background:url(../images/news_note.gif) no-repeat left top; height:160px; }
css/design.css
@charset "utf-8"; /* CSS Document */ /* [ 本CSS 說明 ] 本CSS檔案內容通常使用在 a.連結其它CSS b.制定通用規則 */ /*----------[ 大項區塊 ]----------*/ @import url("header.css"); @import url("multimenu.css"); @import url("menu.css"); @import url("layout.css"); @import url("left_right.css"); @import url("footer.css"); /*----------[ 型態頁面控制 ]----------*/ @import url("mp.css"); @import url("cp.css"); @import url("lp.css"); @import url("np.css"); @import url("sp.css"); /*----------[ 特殊單一區塊 ]----------*/ @import url("googleMail.css"); /* google行事曆控制 */ @import url("lp_category.css"); @import url("scp_ui.css"); /* 13組特殊版型控制 */ @import url("more.css"); /* 更多內容按鈕控制 */ @import url("marquee.css"); /* 跑馬燈控制 */ @import url("headline.css"); @import url("form.css"); @import url("default.css"); @import url("search.css"); @import url("sitemap.css"); @import url("friendly.css"); @import url("page.css"); @import url("tabpanel1_class.css"); /* @import url("reset.css"); @import url("right.css"); */ /*--------------------------------------------------------------------------------[ 總面積控制 ]----------*/ body{ /*background:url(../images/bg.gif) left -5px repeat-x #6f6f6f;*/ margin:0px; background: #a5956c; padding: 0px; } .wrap { width: 1000px; background:#FFF; padding: 0px; position: relative; margin: 0px auto 0; } /*--------------------------------------------------------------------------------[ 所有圖片基礎控制 ]----------*/ img { border-width: 0px; border-style: none; } /*--------------------------------------------------------------------------------[ 隱藏物件 ]----------*/ .hidden { display: none; visibility: hidden; } /*--------------------------------------------------------------------------------[ 首頁之外的頁面共通設定 ]----------*/ .cp, .lp, .np, .qp, .sitemap, .qp, .sp, .fb, .form, .scp, cp_photo { line-height: 150%; color: #666666; text-align:left; clear:both; } /*--------------------------------------------------------------------------------[ 底下為字型可以統一控制的部分 ]----------*/ a { font-style: normal; line-height: normal; font-weight: normal; font-variant: normal; color: #666; text-decoration: none; } p { font-size: 80%; font-style: normal; line-height: normal; font-weight: normal; font-variant: normal; color: #666; text-decoration: none; } h2 { background-image: url(../images/headline_bg_001.gif); background-repeat: no-repeat; background-position: 3px 3px; font-size: 16px; font-weight: bold; text-decoration: none; width: 100%; color:#682a2b; padding-top: 4px; padding-right: 0px; padding-bottom: 1px; padding-left: 26px; margin-top: 0px; *margin-top: -1px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; } .center h2 { background-image: url(../images/center_h2bg.gif); background-repeat: no-repeat; background-position: left bottom; font-size: 16px; font-weight: bold; text-decoration: none; color:#682a2b; *margin-top: -1px; margin: 10px 0px; padding: 2px 0px 10px 30px; width: 93%; } h2 span,.center h2 span { font-size: 100%; font-style: normal; line-height: normal; font-weight: normal; font-variant: normal; color: #333; } h2 label,.center h2 label { font-style: normal; line-height: normal; font-weight: bold; font-variant: normal; color:#5F821E; } h2 span a,.center h2 span a { font-size: 16px; font-weight: bold; color:#682a2b; } h3 { font-size: 100%; font-style: normal; line-height: normal; font-weight: normal; font-variant: normal; color: #00F; text-decoration: none; } /*--------------------------------------------------------------------------------[ date ]----------*/ .side .date, .canter .date { font-size: 70%; color: #999; font-family: Arial, Helvetica, sans-serif; font-style: normal; line-height: normal; font-weight: normal; font-variant: normal; text-decoration: none; margin: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 15px; } /*--------------------------------------------------------------------------------[ source ]----------*/ .side .source, .canter .source { font-size: 70%; color: #666; font-family: Arial, Helvetica, sans-serif; font-style: normal; line-height: normal; font-weight: normal; font-variant: normal; text-decoration: none; margin: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 5px; } .news{ background:url(../images/news_note.gif) no-repeat left top; height:160px; }
0.15876
0.038829
.nav li { margin: 10px 0; } .widget-list { margin: 0 auto; } .widget-list.overflow { position: relative; height: 500px; overflow-y: scroll; -webkit-overflow-scrolling: touch; } .widget { position: relative; border: 1px #ccc solid; background: #eee; } .widget-counter { position: absolute; top: 0; left: 0; color: #ccc; font: 120px/1 Arial; } .widget-text, .widget p { line-height: 20px; width: 80%; text-align: right; margin: 0 auto; } .once code { color: #f40; } .loading { border: 1px #f40 dashed; } .loading, .widget { width: 100%; height: 200px; text-align: center; padding-top: 50px; margin: 10px 0; } .op { padding: 10px; width: 100%; border: 1px #eee dotted; } .button-secondary { color: white; border-radius: 4px; text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2); padding: .05rem .1rem; background: #167dfd; /* this is a light blue */ } .quick-jump { width: 800px; margin: 0 auto; } .quick-jump > a { display: inline-block; font-size: 14px; margin: 0 10px; text-decoration: underline; color: blue; cursor: pointer; } .overflow-wrapper h1 { margin-left: 290px; } .top-link { margin: 5px 0 20px; } .top-link a { color: #333; margin: 0 4px; } .image-container img { display: block; text-align: center; margin: 20px 0; height: 300px; max-width: 100%; } code { background: #eee; padding: 2px 3px; border-radius: 3px; color: #333; text-decoration: none; } .spinner { margin: 0 auto; width: 50px; height: 40px; text-align: center; font-size: 10px; } .spinner > div { background-color: #999; height: 100%; width: 6px; display: inline-block; -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out; animation: sk-stretchdelay 1.2s infinite ease-in-out; } .spinner .rect2 { -webkit-animation-delay: -1.1s; animation-delay: -1.1s; } .spinner .rect3 { -webkit-animation-delay: -1.0s; animation-delay: -1.0s; } .spinner .rect4 { -webkit-animation-delay: -0.9s; animation-delay: -0.9s; } .spinner .rect5 { -webkit-animation-delay: -0.8s; animation-delay: -0.8s; } @-webkit-keyframes sk-stretchdelay { 0%, 40%, 100% { -webkit-transform: scaleY(0.4) } 20% { -webkit-transform: scaleY(1.0) } } @keyframes sk-stretchdelay { 0%, 40%, 100% { transform: scaleY(0.4); -webkit-transform: scaleY(0.4); } 20% { transform: scaleY(1.0); -webkit-transform: scaleY(1.0); } } .placeholder { background: #f8f8f8; height: 200px; margin: 10px 0; padding-top: 80px; } .fade-appear { opacity: 0.01; } .fade-appear.fade-appear-active { opacity: 1; transition: opacity .5s ease-in; }
src/lazy-load/demo/demo.css
.nav li { margin: 10px 0; } .widget-list { margin: 0 auto; } .widget-list.overflow { position: relative; height: 500px; overflow-y: scroll; -webkit-overflow-scrolling: touch; } .widget { position: relative; border: 1px #ccc solid; background: #eee; } .widget-counter { position: absolute; top: 0; left: 0; color: #ccc; font: 120px/1 Arial; } .widget-text, .widget p { line-height: 20px; width: 80%; text-align: right; margin: 0 auto; } .once code { color: #f40; } .loading { border: 1px #f40 dashed; } .loading, .widget { width: 100%; height: 200px; text-align: center; padding-top: 50px; margin: 10px 0; } .op { padding: 10px; width: 100%; border: 1px #eee dotted; } .button-secondary { color: white; border-radius: 4px; text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2); padding: .05rem .1rem; background: #167dfd; /* this is a light blue */ } .quick-jump { width: 800px; margin: 0 auto; } .quick-jump > a { display: inline-block; font-size: 14px; margin: 0 10px; text-decoration: underline; color: blue; cursor: pointer; } .overflow-wrapper h1 { margin-left: 290px; } .top-link { margin: 5px 0 20px; } .top-link a { color: #333; margin: 0 4px; } .image-container img { display: block; text-align: center; margin: 20px 0; height: 300px; max-width: 100%; } code { background: #eee; padding: 2px 3px; border-radius: 3px; color: #333; text-decoration: none; } .spinner { margin: 0 auto; width: 50px; height: 40px; text-align: center; font-size: 10px; } .spinner > div { background-color: #999; height: 100%; width: 6px; display: inline-block; -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out; animation: sk-stretchdelay 1.2s infinite ease-in-out; } .spinner .rect2 { -webkit-animation-delay: -1.1s; animation-delay: -1.1s; } .spinner .rect3 { -webkit-animation-delay: -1.0s; animation-delay: -1.0s; } .spinner .rect4 { -webkit-animation-delay: -0.9s; animation-delay: -0.9s; } .spinner .rect5 { -webkit-animation-delay: -0.8s; animation-delay: -0.8s; } @-webkit-keyframes sk-stretchdelay { 0%, 40%, 100% { -webkit-transform: scaleY(0.4) } 20% { -webkit-transform: scaleY(1.0) } } @keyframes sk-stretchdelay { 0%, 40%, 100% { transform: scaleY(0.4); -webkit-transform: scaleY(0.4); } 20% { transform: scaleY(1.0); -webkit-transform: scaleY(1.0); } } .placeholder { background: #f8f8f8; height: 200px; margin: 10px 0; padding-top: 80px; } .fade-appear { opacity: 0.01; } .fade-appear.fade-appear-active { opacity: 1; transition: opacity .5s ease-in; }
0.403449
0.078289
@import url(https://fonts.googleapis.com/css?family=Anonymous+Pro); html,body{ width:100%; height: 100%; padding: 0; margin: 0; } p{ padding-left: 15px; color: #FFF; } .bg{ background: url("../img/bgss.jpg") no-repeat center center; background-size: 100% 100% ; top:40px !important; height: calc(100% - 40px) !important; } .now-open{ position: absolute; margin-left:60px; width:67.5px; height: 40px; } .title-bar{ z-index: 1; width:800px; height: 40px; color: #FFF; background-color: #353945; cursor: default; transition: .05s all ease; position: fixed; display: none; text-align: center; } .title-bar > div:nth-child(1){ margin:0 0 0 0; padding-top: 7.5px; width:100%; text-align: center; line-height: 24px; height: 40px; font-size: 20px; float:left; display: flex; justify-content: center; align-content: center; } .title-bar > div > i{ margin-right: 7.5px; text-align: center; float:left; } .title-bar > div > p{ width:auto; float:left; text-align: center; margin:0; padding:0; } .content{ z-index: 1; width:800px; height:400px; background-color: #FFF; transition: .05s all ease; position: absolute; display: none; } .sub-content{ z-index: 1; position: relative; width:800px; margin-top:40px; height:360px; background: transparent; } .current-folder-content{ position: absolute; background-color: #404552; top:0; right:0; float:right; width: calc(100% - 200px); height: 100%; display: flex; justify-content: space-around; align-content: center; z-index: 1; } .current-folder-content > div{ width:100%; height: 100%; display: flex; flex-direction: row; flex-wrap: wrap; } .current-folder-content > div > div{ height: 105px; margin:0 5px 0 5px; padding:0; width:110px; display: flex; align-items: center; justify-content: space-around; flex-direction: column; } .current-folder-content > div > div:hover{ transition: 0.25s all ease; color: #FFF; background-color: #242d34; transform: scale(0.75); } .current-folder-content > div > div > i { font-size:52px; color: #5294e2; margin-bottom: 8px; } .current-folder-content > div > div > p { color: #FFF; padding:0; margin:0; text-align: center; font-size: 15px; font-weight: 550; } .browser-btn{ position: absolute; right: 0; z-index: 9999; width:100px; height: 100%; display: flex; justify-content: space-around; align-content: center; } .same-cls{ display: flex; justify-content: space-around; align-content: center; margin-top:5px; width:25px; height: 25px; border-radius: 25px; } .minimize{ background-color: #000; background: url("../img/baseline_minimize_white_48dp.png") no-repeat center center; background-size: 20px 20px; cursor:default; } .maximize{ background-color: #222; background: url("../img/baseline_launch_white_48dp.png") no-repeat center center; background-size: 20px 20px; cursor:default; } .closed{ background-color: #222; background: url("../img/baseline_close_white_48dp.png") no-repeat center center; background-size: 20px 20px; cursor:default; } .title-bar.active{ width:100%; transition: .25s all ease; } .content.active{ width:100%; height: 100%; top:0 !important; left:0 !important; transition: .25s all ease; } .sub-content.active{ margin-top:40px; width:100%; height:100%; } .tree{ z-index: 1; width:200px; /* height: calc(100% - 10px);*/ height: 100%; padding-top:10px; text-align: left; background-color: #353945; } .tree > p{ z-index: 1; color: #FFF; width:100%; font-size: 12px; letter-spacing: 0.25px; padding:0 0 0 0 !important; line-height: 28px; height: 28px; } .tree > p:hover, .tree > p > i:hover, .tree > p.active{ background-color: #5294e2; color: #FFF; } .menu{ position: absolute; border-top-right-radius: 7.5px; border-bottom-right-radius: 7.5px; left:0; width:67.5px; height: 75%; background-color: #36474f; opacity: 0.95; display: flex; flex-direction: column; justify-content: space-around; align-items: center; } .menu-icon{ width:60px; height: 60px; } .menu-icon:hover{ transition: 0.25s all ease; background-color: #242d34; transform: scale(1.1); } .directory.active{ transition: 0.25s all ease; background-color: #242d34; } .terminal{ background:url("../img/terminal-icon.png") no-repeat center center; background-size: contain; } .directory{ background:url("../img/folder-blue-drag-accept-icon.png") no-repeat center center; background-size: contain; } .github-icon{ background:url("../img/Octocat.png") no-repeat center center; background-size: contain; } .tistory-icon{ background:url("../img/tistory-icon.png") no-repeat center center; background-size: contain; } .youtube-icon{ background:url("../img/youtube-icon.png") no-repeat center center; background-size: contain; } .gmail-icon{ background:url("../img/gmail.png") no-repeat center center; background-size: contain; } .desktop{ width:400px; height: 400px; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; } .desktop > div > i{ color:#5294e2; font-size: 72px; } .desktop > div > p{ margin:0; padding: 0; text-align: center; } .desktop >div:nth-child(n){ text-align: center; } .desktop > div{ width:108px; } .desktop > div:hover{ transition: 0.25s all ease; background-color: #242d34; transform: scale(1.2); }
css/home.css
@import url(https://fonts.googleapis.com/css?family=Anonymous+Pro); html,body{ width:100%; height: 100%; padding: 0; margin: 0; } p{ padding-left: 15px; color: #FFF; } .bg{ background: url("../img/bgss.jpg") no-repeat center center; background-size: 100% 100% ; top:40px !important; height: calc(100% - 40px) !important; } .now-open{ position: absolute; margin-left:60px; width:67.5px; height: 40px; } .title-bar{ z-index: 1; width:800px; height: 40px; color: #FFF; background-color: #353945; cursor: default; transition: .05s all ease; position: fixed; display: none; text-align: center; } .title-bar > div:nth-child(1){ margin:0 0 0 0; padding-top: 7.5px; width:100%; text-align: center; line-height: 24px; height: 40px; font-size: 20px; float:left; display: flex; justify-content: center; align-content: center; } .title-bar > div > i{ margin-right: 7.5px; text-align: center; float:left; } .title-bar > div > p{ width:auto; float:left; text-align: center; margin:0; padding:0; } .content{ z-index: 1; width:800px; height:400px; background-color: #FFF; transition: .05s all ease; position: absolute; display: none; } .sub-content{ z-index: 1; position: relative; width:800px; margin-top:40px; height:360px; background: transparent; } .current-folder-content{ position: absolute; background-color: #404552; top:0; right:0; float:right; width: calc(100% - 200px); height: 100%; display: flex; justify-content: space-around; align-content: center; z-index: 1; } .current-folder-content > div{ width:100%; height: 100%; display: flex; flex-direction: row; flex-wrap: wrap; } .current-folder-content > div > div{ height: 105px; margin:0 5px 0 5px; padding:0; width:110px; display: flex; align-items: center; justify-content: space-around; flex-direction: column; } .current-folder-content > div > div:hover{ transition: 0.25s all ease; color: #FFF; background-color: #242d34; transform: scale(0.75); } .current-folder-content > div > div > i { font-size:52px; color: #5294e2; margin-bottom: 8px; } .current-folder-content > div > div > p { color: #FFF; padding:0; margin:0; text-align: center; font-size: 15px; font-weight: 550; } .browser-btn{ position: absolute; right: 0; z-index: 9999; width:100px; height: 100%; display: flex; justify-content: space-around; align-content: center; } .same-cls{ display: flex; justify-content: space-around; align-content: center; margin-top:5px; width:25px; height: 25px; border-radius: 25px; } .minimize{ background-color: #000; background: url("../img/baseline_minimize_white_48dp.png") no-repeat center center; background-size: 20px 20px; cursor:default; } .maximize{ background-color: #222; background: url("../img/baseline_launch_white_48dp.png") no-repeat center center; background-size: 20px 20px; cursor:default; } .closed{ background-color: #222; background: url("../img/baseline_close_white_48dp.png") no-repeat center center; background-size: 20px 20px; cursor:default; } .title-bar.active{ width:100%; transition: .25s all ease; } .content.active{ width:100%; height: 100%; top:0 !important; left:0 !important; transition: .25s all ease; } .sub-content.active{ margin-top:40px; width:100%; height:100%; } .tree{ z-index: 1; width:200px; /* height: calc(100% - 10px);*/ height: 100%; padding-top:10px; text-align: left; background-color: #353945; } .tree > p{ z-index: 1; color: #FFF; width:100%; font-size: 12px; letter-spacing: 0.25px; padding:0 0 0 0 !important; line-height: 28px; height: 28px; } .tree > p:hover, .tree > p > i:hover, .tree > p.active{ background-color: #5294e2; color: #FFF; } .menu{ position: absolute; border-top-right-radius: 7.5px; border-bottom-right-radius: 7.5px; left:0; width:67.5px; height: 75%; background-color: #36474f; opacity: 0.95; display: flex; flex-direction: column; justify-content: space-around; align-items: center; } .menu-icon{ width:60px; height: 60px; } .menu-icon:hover{ transition: 0.25s all ease; background-color: #242d34; transform: scale(1.1); } .directory.active{ transition: 0.25s all ease; background-color: #242d34; } .terminal{ background:url("../img/terminal-icon.png") no-repeat center center; background-size: contain; } .directory{ background:url("../img/folder-blue-drag-accept-icon.png") no-repeat center center; background-size: contain; } .github-icon{ background:url("../img/Octocat.png") no-repeat center center; background-size: contain; } .tistory-icon{ background:url("../img/tistory-icon.png") no-repeat center center; background-size: contain; } .youtube-icon{ background:url("../img/youtube-icon.png") no-repeat center center; background-size: contain; } .gmail-icon{ background:url("../img/gmail.png") no-repeat center center; background-size: contain; } .desktop{ width:400px; height: 400px; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; } .desktop > div > i{ color:#5294e2; font-size: 72px; } .desktop > div > p{ margin:0; padding: 0; text-align: center; } .desktop >div:nth-child(n){ text-align: center; } .desktop > div{ width:108px; } .desktop > div:hover{ transition: 0.25s all ease; background-color: #242d34; transform: scale(1.2); }
0.340814
0.064506
html { scroll-behavior: smooth; } .parent-div1 { height: 100%; } .div2 { background-color: #fe552e; height: 650px; } #right-side { margin-top: 100px; margin-left: 20px; position: relative; padding-left: 50px; width: 600px; height: 450px; background-color: white; border-radius: 80px; } #leftarrow { position: absolute; top: 550px; left: 645px; border: solid orange; border-width: 0 0px 4px 0; display: inline-block; padding: 30px; } .up { transform: rotate(45deg); } #rightarrow { position: absolute; top: 550px; left: 645px; border: solid white; border-width: 0 4px 0px 0; display: inline-block; padding: 30px; } .down { transform: rotate(45deg); } #mentor-image { width: 50px; height: 100px; } #contributor-image { width: 50px; height: 100px; } #name { text-align: center; font-size: 25px; font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif; padding: 5px; } #right-side { font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif; } ::-webkit-scrollbar { width: 10px; } /* Track */ ::-webkit-scrollbar-track { background: #f1f1f1; } /* Handle */ ::-webkit-scrollbar-thumb { background: #ea3e22; border-radius: 3px; background-image: linear-gradient(to top, #4094fc, #c384e8, #ff7ab8, #ff8883, #ffa95c, #ffb049, #ffb831, #ffc100, #ffa300, #fb8400, #f46314, #ea3e22); } /* Handle on hover */ ::-webkit-scrollbar-thumb:hover { background-image: linear-gradient(to top, #4094fc, #c384e8, #ff7ab8, #ff8883, #ffa95c, #ffb049, #ffb831, #ffc100, #ffa300, #fb8400, #f46314, #ea3e22); } @media screen and (max-width: 360px) { .topbar .nav-item .nav-link{ padding: 0 .15rem!important; } .switch{ width: 3rem!important; height: 1.5rem!important; top: 22px!important; } .theme-dark .slider2:before{ transform: translateX(26px); height: 1px!important; width: 1px!important; background-color: lightgrey; bottom: 11px!important; left: 7px!important; } .slider2:before{ height: 1px!important; width: 1px!important; bottom: 11px!important; left: 7px!important; } }
static/css/style.css
html { scroll-behavior: smooth; } .parent-div1 { height: 100%; } .div2 { background-color: #fe552e; height: 650px; } #right-side { margin-top: 100px; margin-left: 20px; position: relative; padding-left: 50px; width: 600px; height: 450px; background-color: white; border-radius: 80px; } #leftarrow { position: absolute; top: 550px; left: 645px; border: solid orange; border-width: 0 0px 4px 0; display: inline-block; padding: 30px; } .up { transform: rotate(45deg); } #rightarrow { position: absolute; top: 550px; left: 645px; border: solid white; border-width: 0 4px 0px 0; display: inline-block; padding: 30px; } .down { transform: rotate(45deg); } #mentor-image { width: 50px; height: 100px; } #contributor-image { width: 50px; height: 100px; } #name { text-align: center; font-size: 25px; font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif; padding: 5px; } #right-side { font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif; } ::-webkit-scrollbar { width: 10px; } /* Track */ ::-webkit-scrollbar-track { background: #f1f1f1; } /* Handle */ ::-webkit-scrollbar-thumb { background: #ea3e22; border-radius: 3px; background-image: linear-gradient(to top, #4094fc, #c384e8, #ff7ab8, #ff8883, #ffa95c, #ffb049, #ffb831, #ffc100, #ffa300, #fb8400, #f46314, #ea3e22); } /* Handle on hover */ ::-webkit-scrollbar-thumb:hover { background-image: linear-gradient(to top, #4094fc, #c384e8, #ff7ab8, #ff8883, #ffa95c, #ffb049, #ffb831, #ffc100, #ffa300, #fb8400, #f46314, #ea3e22); } @media screen and (max-width: 360px) { .topbar .nav-item .nav-link{ padding: 0 .15rem!important; } .switch{ width: 3rem!important; height: 1.5rem!important; top: 22px!important; } .theme-dark .slider2:before{ transform: translateX(26px); height: 1px!important; width: 1px!important; background-color: lightgrey; bottom: 11px!important; left: 7px!important; } .slider2:before{ height: 1px!important; width: 1px!important; bottom: 11px!important; left: 7px!important; } }
0.470007
0.099121
.row{ background:skyblue; display: grid; grid-template-columns: repeat(12, 1fr); grid-template-rows: 50px; grid-auto-rows: 50px; } .row div{ background:pink; border:1px black solid; grid-area: auto/auto/auto/span 12; } .row .col-1{ grid-area: auto/auto/auto/span 1; } .row .col-2{ grid-area: auto/auto/auto/span 2; } .row .col-3{ grid-area: auto/auto/auto/span 3; } .row .col-4{ grid-area: auto/auto/auto/span 4; } .row .col-5{ grid-area: auto/auto/auto/span 5; } .row .col-6{ grid-area: auto/auto/auto/span 6; } .row .col-7{ grid-area: auto/auto/auto/span 7; } .row .col-8{ grid-area: auto/auto/auto/span 8; } .row .col-9{ grid-area: auto/auto/auto/span 9; } .row .col-10{ grid-area: auto/auto/auto/span 10; } .row .col-11{ grid-area: auto/auto/auto/span 11; } .row .col-12{ grid-area: auto/auto/auto/span 12; } @media (min-width: 576px){ .row .col-sm-1{ grid-area: auto/auto/auto/span 1; } .row .col-sm-2{ grid-area: auto/auto/auto/span 2; } .row .col-sm-3{ grid-area: auto/auto/auto/span 3; } .row .col-sm-4{ grid-area: auto/auto/auto/span 4; } .row .col-sm-5{ grid-area: auto/auto/auto/span 5; } .row .col-sm-6{ grid-area: auto/auto/auto/span 6; } .row .col-sm-7{ grid-area: auto/auto/auto/span 7; } .row .col-sm-8{ grid-area: auto/auto/auto/span 8; } .row .col-sm-9{ grid-area: auto/auto/auto/span 9; } .row .col-sm-10{ grid-area: auto/auto/auto/span 10; } .row .col-sm-11{ grid-area: auto/auto/auto/span 11; } .row .col-sm-12{ grid-area: auto/auto/auto/span 12; } } @media (min-width: 768px){ .row .col-md-1{ grid-area: auto/auto/auto/span 1; } .row .col-md-2{ grid-area: auto/auto/auto/span 2; } .row .col-md-3{ grid-area: auto/auto/auto/span 3; } .row .col-md-4{ grid-area: auto/auto/auto/span 4; } .row .col-md-5{ grid-area: auto/auto/auto/span 5; } .row .col-md-6{ grid-area: auto/auto/auto/span 6; } .row .col-md-7{ grid-area: auto/auto/auto/span 7; } .row .col-md-8{ grid-area: auto/auto/auto/span 8; } .row .col-md-9{ grid-area: auto/auto/auto/span 9; } .row .col-md-10{ grid-area: auto/auto/auto/span 10; } .row .col-md-11{ grid-area: auto/auto/auto/span 11; } .row .col-md-12{ grid-area: auto/auto/auto/span 12; } } @media (min-width: 992px){ .row .col-lg-1{ grid-area: auto/auto/auto/span 1; } .row .col-lg-2{ grid-area: auto/auto/auto/span 2; } .row .col-lg-3{ grid-area: auto/auto/auto/span 3; } .row .col-lg-4{ grid-area: auto/auto/auto/span 4; } .row .col-lg-5{ grid-area: auto/auto/auto/span 5; } .row .col-lg-6{ grid-area: auto/auto/auto/span 6; } .row .col-lg-7{ grid-area: auto/auto/auto/span 7; } .row .col-lg-8{ grid-area: auto/auto/auto/span 8; } .row .col-lg-9{ grid-area: auto/auto/auto/span 9; } .row .col-lg-10{ grid-area: auto/auto/auto/span 10; } .row .col-lg-11{ grid-area: auto/auto/auto/span 11; } .row .col-lg-12{ grid-area: auto/auto/auto/span 12; } } @media (min-width: 1200px){ .row .col-xl-1{ grid-area: auto/auto/auto/span 1; } .row .col-xl-2{ grid-area: auto/auto/auto/span 2; } .row .col-xl-3{ grid-area: auto/auto/auto/span 3; } .row .col-xl-4{ grid-area: auto/auto/auto/span 4; } .row .col-xl-5{ grid-area: auto/auto/auto/span 5; } .row .col-xl-6{ grid-area: auto/auto/auto/span 6; } .row .col-xl-7{ grid-area: auto/auto/auto/span 7; } .row .col-xl-8{ grid-area: auto/auto/auto/span 8; } .row .col-xl-9{ grid-area: auto/auto/auto/span 9; } .row .col-xl-10{ grid-area: auto/auto/auto/span 10; } .row .col-xl-11{ grid-area: auto/auto/auto/span 11; } .row .col-xl-12{ grid-area: auto/auto/auto/span 12; } } @media (min-width: 1400px){ .row .col-xxl-1{ grid-area: auto/auto/auto/span 1; } .row .col-xxl-2{ grid-area: auto/auto/auto/span 2; } .row .col-xxl-3{ grid-area: auto/auto/auto/span 3; } .row .col-xxl-4{ grid-area: auto/auto/auto/span 4; } .row .col-xxl-5{ grid-area: auto/auto/auto/span 5; } .row .col-xxl-6{ grid-area: auto/auto/auto/span 6; } .row .col-xxl-7{ grid-area: auto/auto/auto/span 7; } .row .col-xxl-8{ grid-area: auto/auto/auto/span 8; } .row .col-xxl-9{ grid-area: auto/auto/auto/span 9; } .row .col-xxl-10{ grid-area: auto/auto/auto/span 10; } .row .col-xxl-11{ grid-area: auto/auto/auto/span 11; } .row .col-xxl-12{ grid-area: auto/auto/auto/span 12; } }
src/asserts/css/chapter_7/7_5/1.css
.row{ background:skyblue; display: grid; grid-template-columns: repeat(12, 1fr); grid-template-rows: 50px; grid-auto-rows: 50px; } .row div{ background:pink; border:1px black solid; grid-area: auto/auto/auto/span 12; } .row .col-1{ grid-area: auto/auto/auto/span 1; } .row .col-2{ grid-area: auto/auto/auto/span 2; } .row .col-3{ grid-area: auto/auto/auto/span 3; } .row .col-4{ grid-area: auto/auto/auto/span 4; } .row .col-5{ grid-area: auto/auto/auto/span 5; } .row .col-6{ grid-area: auto/auto/auto/span 6; } .row .col-7{ grid-area: auto/auto/auto/span 7; } .row .col-8{ grid-area: auto/auto/auto/span 8; } .row .col-9{ grid-area: auto/auto/auto/span 9; } .row .col-10{ grid-area: auto/auto/auto/span 10; } .row .col-11{ grid-area: auto/auto/auto/span 11; } .row .col-12{ grid-area: auto/auto/auto/span 12; } @media (min-width: 576px){ .row .col-sm-1{ grid-area: auto/auto/auto/span 1; } .row .col-sm-2{ grid-area: auto/auto/auto/span 2; } .row .col-sm-3{ grid-area: auto/auto/auto/span 3; } .row .col-sm-4{ grid-area: auto/auto/auto/span 4; } .row .col-sm-5{ grid-area: auto/auto/auto/span 5; } .row .col-sm-6{ grid-area: auto/auto/auto/span 6; } .row .col-sm-7{ grid-area: auto/auto/auto/span 7; } .row .col-sm-8{ grid-area: auto/auto/auto/span 8; } .row .col-sm-9{ grid-area: auto/auto/auto/span 9; } .row .col-sm-10{ grid-area: auto/auto/auto/span 10; } .row .col-sm-11{ grid-area: auto/auto/auto/span 11; } .row .col-sm-12{ grid-area: auto/auto/auto/span 12; } } @media (min-width: 768px){ .row .col-md-1{ grid-area: auto/auto/auto/span 1; } .row .col-md-2{ grid-area: auto/auto/auto/span 2; } .row .col-md-3{ grid-area: auto/auto/auto/span 3; } .row .col-md-4{ grid-area: auto/auto/auto/span 4; } .row .col-md-5{ grid-area: auto/auto/auto/span 5; } .row .col-md-6{ grid-area: auto/auto/auto/span 6; } .row .col-md-7{ grid-area: auto/auto/auto/span 7; } .row .col-md-8{ grid-area: auto/auto/auto/span 8; } .row .col-md-9{ grid-area: auto/auto/auto/span 9; } .row .col-md-10{ grid-area: auto/auto/auto/span 10; } .row .col-md-11{ grid-area: auto/auto/auto/span 11; } .row .col-md-12{ grid-area: auto/auto/auto/span 12; } } @media (min-width: 992px){ .row .col-lg-1{ grid-area: auto/auto/auto/span 1; } .row .col-lg-2{ grid-area: auto/auto/auto/span 2; } .row .col-lg-3{ grid-area: auto/auto/auto/span 3; } .row .col-lg-4{ grid-area: auto/auto/auto/span 4; } .row .col-lg-5{ grid-area: auto/auto/auto/span 5; } .row .col-lg-6{ grid-area: auto/auto/auto/span 6; } .row .col-lg-7{ grid-area: auto/auto/auto/span 7; } .row .col-lg-8{ grid-area: auto/auto/auto/span 8; } .row .col-lg-9{ grid-area: auto/auto/auto/span 9; } .row .col-lg-10{ grid-area: auto/auto/auto/span 10; } .row .col-lg-11{ grid-area: auto/auto/auto/span 11; } .row .col-lg-12{ grid-area: auto/auto/auto/span 12; } } @media (min-width: 1200px){ .row .col-xl-1{ grid-area: auto/auto/auto/span 1; } .row .col-xl-2{ grid-area: auto/auto/auto/span 2; } .row .col-xl-3{ grid-area: auto/auto/auto/span 3; } .row .col-xl-4{ grid-area: auto/auto/auto/span 4; } .row .col-xl-5{ grid-area: auto/auto/auto/span 5; } .row .col-xl-6{ grid-area: auto/auto/auto/span 6; } .row .col-xl-7{ grid-area: auto/auto/auto/span 7; } .row .col-xl-8{ grid-area: auto/auto/auto/span 8; } .row .col-xl-9{ grid-area: auto/auto/auto/span 9; } .row .col-xl-10{ grid-area: auto/auto/auto/span 10; } .row .col-xl-11{ grid-area: auto/auto/auto/span 11; } .row .col-xl-12{ grid-area: auto/auto/auto/span 12; } } @media (min-width: 1400px){ .row .col-xxl-1{ grid-area: auto/auto/auto/span 1; } .row .col-xxl-2{ grid-area: auto/auto/auto/span 2; } .row .col-xxl-3{ grid-area: auto/auto/auto/span 3; } .row .col-xxl-4{ grid-area: auto/auto/auto/span 4; } .row .col-xxl-5{ grid-area: auto/auto/auto/span 5; } .row .col-xxl-6{ grid-area: auto/auto/auto/span 6; } .row .col-xxl-7{ grid-area: auto/auto/auto/span 7; } .row .col-xxl-8{ grid-area: auto/auto/auto/span 8; } .row .col-xxl-9{ grid-area: auto/auto/auto/span 9; } .row .col-xxl-10{ grid-area: auto/auto/auto/span 10; } .row .col-xxl-11{ grid-area: auto/auto/auto/span 11; } .row .col-xxl-12{ grid-area: auto/auto/auto/span 12; } }
0.39946
0.271264
.header { height: 350px; background: url("{{ path_for('images', {'filename': 'background.png'}) }}") center center fixed; background-size: cover; color: #fff; text-align: center; font-size: 16pt; text-shadow: 0 0 3px #000, 0 0 3px #000, 0 0 3px #000, 0 0 3px #000, 0 0 3px #000; } .logged-in .header { height: 250px; } .header .vert-text { display: block; text-align: center; margin-top: 75px; width: 100%; color: #fff; position: absolute; } .header h3 { margin-top: 0; padding-top: 0; font-size: 23pt; margin-top: 20px; margin-bottom: 10px; } .header .btn-circle { width: 70px; height: 70px; margin-top: 15px; padding: 2px 16px; border: 2px solid #fff; border-radius: 10%; font-size: 30px; color: #fff; line-height: 62px; text-shadow: none; transition: border 0.2s linear, color 0.2s linear; } .header .btn-circle:hover { border-color: #bbb; color: #bbb; } #about { color: #fff; position: relative; background: url("{{ path_for('images', {'filename': 'background.png'}) }}") center center fixed; background-size: cover; text-shadow: 0 0 3px #000, 0 0 3px #000, 0 0 3px #000, 0 0 3px #000, 0 0 3px #000; padding: 30px 0; margin-top: 30px; } #about p { font-size: 21px; max-width: 500px; margin: 0 auto; padding-bottom: 10px; } #players { background: #55B5DA; color: #fff; padding-bottom: 10px; } #modders { background: #409ABD; color: #fff; padding-bottom: 10px; } #modders a { color: #333; } #register { background: #3789A8; color: #fff; padding-bottom: 10px; } .btn-register { color: #fff; background-color: #77a240; border-color: #77a240; border-radius: 0; transition: background .3s ease-in-out; } .btn-register:hover, .btn-register:focus { background-color: #84ab53; color: #fff; } .service-icon { border: 3px solid #fff; border-radius: 10%; display: inline-block; font-size: 56px; width: 140px; height: 140px; line-height: 136px; vertical-align: middle; text-align: center; transition-duration: .3s; transition-property: transform; transform: translateZ(0); box-shadow: 0 0 1px transparent; } h2 small { color: #333; }
styles/index.css
.header { height: 350px; background: url("{{ path_for('images', {'filename': 'background.png'}) }}") center center fixed; background-size: cover; color: #fff; text-align: center; font-size: 16pt; text-shadow: 0 0 3px #000, 0 0 3px #000, 0 0 3px #000, 0 0 3px #000, 0 0 3px #000; } .logged-in .header { height: 250px; } .header .vert-text { display: block; text-align: center; margin-top: 75px; width: 100%; color: #fff; position: absolute; } .header h3 { margin-top: 0; padding-top: 0; font-size: 23pt; margin-top: 20px; margin-bottom: 10px; } .header .btn-circle { width: 70px; height: 70px; margin-top: 15px; padding: 2px 16px; border: 2px solid #fff; border-radius: 10%; font-size: 30px; color: #fff; line-height: 62px; text-shadow: none; transition: border 0.2s linear, color 0.2s linear; } .header .btn-circle:hover { border-color: #bbb; color: #bbb; } #about { color: #fff; position: relative; background: url("{{ path_for('images', {'filename': 'background.png'}) }}") center center fixed; background-size: cover; text-shadow: 0 0 3px #000, 0 0 3px #000, 0 0 3px #000, 0 0 3px #000, 0 0 3px #000; padding: 30px 0; margin-top: 30px; } #about p { font-size: 21px; max-width: 500px; margin: 0 auto; padding-bottom: 10px; } #players { background: #55B5DA; color: #fff; padding-bottom: 10px; } #modders { background: #409ABD; color: #fff; padding-bottom: 10px; } #modders a { color: #333; } #register { background: #3789A8; color: #fff; padding-bottom: 10px; } .btn-register { color: #fff; background-color: #77a240; border-color: #77a240; border-radius: 0; transition: background .3s ease-in-out; } .btn-register:hover, .btn-register:focus { background-color: #84ab53; color: #fff; } .service-icon { border: 3px solid #fff; border-radius: 10%; display: inline-block; font-size: 56px; width: 140px; height: 140px; line-height: 136px; vertical-align: middle; text-align: center; transition-duration: .3s; transition-property: transform; transform: translateZ(0); box-shadow: 0 0 1px transparent; } h2 small { color: #333; }
0.441432
0.16398
html { overflow: hidden; } p { margin: 0 !important; } .top1 { display:flex; width: 100%; height: 45px; background-color: rgb(0, 0, 0); } .top2 { display:flex; width: 100%; height: 5px; background-color: rgb(161, 52, 52); } .bottom1 { display:flex; width: 100%; height: 5px; position: fixed; bottom: 55; background-color: rgb(161, 52, 52); } .bottom2 { display:flex; width: 100%; height: 55px; position: fixed; bottom: 0; background-color: rgb(0, 0, 0); } .main { background-color: rgba(1, 9, 30, 0.0); font-size: 18px; background-size: cover; position: absolute; width: 100%; height: 90%; top: 10%; overflow: hidden; } .main-container { display:none; width: 100%; position: relative; top: 0%; } .welcome-container { width: 90%; height: 54%; top: 50%; left: 50%; margin-left: 5%; display: flex; justify-content: center; } .welcome-box { background: rgba(44, 51, 69, 0.6); padding: 10px; top: 50%; left: 50%; text-align: center; border: 2px solid transparent; border-radius: 2px; margin-top: 15%; width: 17.5%; } .welcome-box:hover { background-color: rgb(34, 31, 39); color: #fff; } .welcome-box:active { background-color: rgb(42, 42, 52); color: #fff; } .welcome-fullname { border-bottom: 3px solid; border-color: rgba(161, 52, 52, 0.8); padding-bottom: 5px; color: rgb(113, 234, 255); } .h3 .fas fa-plus { color: #fff; } .welcome-info { text-align: left!important; color: rgb(255, 255, 255); } .welcome-buttons { display: none; width: 70vw; margin:15px auto; } .btn-delete { float: left; font-size: 24px; letter-spacing: 2px; text-transform: uppercase; display: inline-block; background-color: rgba(0,0,0,0); color: #fff; text-align: center; width: 270px; font-weight: bold; padding: 20px 10px; border: 3px solid #fe8b30; color: #2c3345; border-radius: 2px; position: relative; z-index: 2; margin-top: 4%; } .btn-delete:before { -webkit-transition: 0.5s all ease; transition: 0.5s all ease; position: absolute; top: 0; left: 50%; right: 50%; bottom: 0; opacity: 0; content: ''; background-color: #fe8b30; color: #fff; z-index: -1; } .btn-delete:hover:before { -webkit-transition: 0.5s all ease; transition: 0.5s all ease; left: 0; right: 0; opacity: 1; } .btn-delete:focus:before { -webkit-transition: 0.5s all ease; transition: 0.5s all ease; left: 0; right: 0; opacity: 1; } .btn-play { float: left; background-color: rgba(0, 0, 0, 0.3); font-size: 24px; letter-spacing: 2px; text-transform: uppercase; display: inline-block; text-align: center; width: 270px; font-weight: bold; padding: 2 0px 10px; border: 3px solid #4ED84C; color: #ffffff; border-radius: 2px; position: relative; z-index: 2; margin-right: 7.5%; margin-left: 32%; margin-top: 4%; } .btn-play:before { -webkit-transition: 0.5s all ease; transition: 0.5s all ease; position: absolute; top: 0; left: 50%; right: 50%; bottom: 0; opacity: 0; content: ''; background-color: #4ED84C; color: #fff; z-index: -1; } .btn-play:hover:before { -webkit-transition: 0.5s all ease; transition: 0.5s all ease; left: 0; right: 0; opacity: 1; } .btn-play:focus:before { -webkit-transition: 0.5s all ease; transition: 0.5s all ease; left: 0; right: 0; opacity: 1; } .active-char { border: 3px solid #a13434; }
ZombiesBaseClient/UI/css/main.css
html { overflow: hidden; } p { margin: 0 !important; } .top1 { display:flex; width: 100%; height: 45px; background-color: rgb(0, 0, 0); } .top2 { display:flex; width: 100%; height: 5px; background-color: rgb(161, 52, 52); } .bottom1 { display:flex; width: 100%; height: 5px; position: fixed; bottom: 55; background-color: rgb(161, 52, 52); } .bottom2 { display:flex; width: 100%; height: 55px; position: fixed; bottom: 0; background-color: rgb(0, 0, 0); } .main { background-color: rgba(1, 9, 30, 0.0); font-size: 18px; background-size: cover; position: absolute; width: 100%; height: 90%; top: 10%; overflow: hidden; } .main-container { display:none; width: 100%; position: relative; top: 0%; } .welcome-container { width: 90%; height: 54%; top: 50%; left: 50%; margin-left: 5%; display: flex; justify-content: center; } .welcome-box { background: rgba(44, 51, 69, 0.6); padding: 10px; top: 50%; left: 50%; text-align: center; border: 2px solid transparent; border-radius: 2px; margin-top: 15%; width: 17.5%; } .welcome-box:hover { background-color: rgb(34, 31, 39); color: #fff; } .welcome-box:active { background-color: rgb(42, 42, 52); color: #fff; } .welcome-fullname { border-bottom: 3px solid; border-color: rgba(161, 52, 52, 0.8); padding-bottom: 5px; color: rgb(113, 234, 255); } .h3 .fas fa-plus { color: #fff; } .welcome-info { text-align: left!important; color: rgb(255, 255, 255); } .welcome-buttons { display: none; width: 70vw; margin:15px auto; } .btn-delete { float: left; font-size: 24px; letter-spacing: 2px; text-transform: uppercase; display: inline-block; background-color: rgba(0,0,0,0); color: #fff; text-align: center; width: 270px; font-weight: bold; padding: 20px 10px; border: 3px solid #fe8b30; color: #2c3345; border-radius: 2px; position: relative; z-index: 2; margin-top: 4%; } .btn-delete:before { -webkit-transition: 0.5s all ease; transition: 0.5s all ease; position: absolute; top: 0; left: 50%; right: 50%; bottom: 0; opacity: 0; content: ''; background-color: #fe8b30; color: #fff; z-index: -1; } .btn-delete:hover:before { -webkit-transition: 0.5s all ease; transition: 0.5s all ease; left: 0; right: 0; opacity: 1; } .btn-delete:focus:before { -webkit-transition: 0.5s all ease; transition: 0.5s all ease; left: 0; right: 0; opacity: 1; } .btn-play { float: left; background-color: rgba(0, 0, 0, 0.3); font-size: 24px; letter-spacing: 2px; text-transform: uppercase; display: inline-block; text-align: center; width: 270px; font-weight: bold; padding: 2 0px 10px; border: 3px solid #4ED84C; color: #ffffff; border-radius: 2px; position: relative; z-index: 2; margin-right: 7.5%; margin-left: 32%; margin-top: 4%; } .btn-play:before { -webkit-transition: 0.5s all ease; transition: 0.5s all ease; position: absolute; top: 0; left: 50%; right: 50%; bottom: 0; opacity: 0; content: ''; background-color: #4ED84C; color: #fff; z-index: -1; } .btn-play:hover:before { -webkit-transition: 0.5s all ease; transition: 0.5s all ease; left: 0; right: 0; opacity: 1; } .btn-play:focus:before { -webkit-transition: 0.5s all ease; transition: 0.5s all ease; left: 0; right: 0; opacity: 1; } .active-char { border: 3px solid #a13434; }
0.61855
0.099164
.user-content-body .aftersale-type .items-align { width: 49%; border: 1px solid #eee; padding: 10px; cursor: pointer; -webkit-transition: border-color .2s ease-in; -moz-transition: border-color .2s ease-in; -ms-transition: border-color .2s ease-in; -o-transition: border-color .2s ease-in; transition: border-color .2s ease-in; } .user-content-body .aftersale-type .items-align.selected, .user-content-body .aftersale-type .items-align:hover { border: 1px solid #d2364c; box-shadow: 0px 0 0px 1px #d2364c; } .user-content-body .aftersale-type .items-middle { width: 100%; position: relative; } .user-content-body .aftersale-type .items-align .icon { height: 70px; line-height: 70px; } .user-content-body .aftersale-type .items-align .icon i { font-size: 38px; color: #d2354c; } .user-content-body .aftersale-type .items-align p { position: absolute; left: 50px; } .user-content-body .aftersale-type .items-align .name { font-size: 16px; font-weight: 500; top: 12px; } .user-content-body .aftersale-type .items-align .desc { color: #888; top: 37px; } @media only screen and (max-width:460px) { .user-content-body .aftersale-type .items-align .icon i { font-size: 30px; } .user-content-body .aftersale-type .items-align p { left: 38px; } .user-content-body .aftersale-type .items-align .name { top: 0px; } .user-content-body .aftersale-type .items-align .desc { top: 25px; } } /** * 步骤 */ .aftersale-step { margin: 10px 0px; overflow: hidden; height: 29px; } .aftersale-step li { float: left; padding: 5px 0; position: relative; overflow: hidden; background: #e1e1e1; } .aftersale-step li .number { font-weight: 700; background: #fff; color: #b4b4b4; } .aftersale-step li .text { color: #666; margin-left: 2px; } .aftersale-step li i.am-icon-angle-right { float: right; font-size: 66px; line-height: 0px; position: absolute; top: -21px; right: 0; color: #fff; } .aftersale-step li.selected { background: #4CAF50; } .aftersale-step li.selected .number { color: #4CAF50; } .aftersale-step li.selected .text { color: #fff; } .aftersale-step li.selected i.am-icon-caret-right { position: absolute; top: -31px; right: 5px; z-index: 1; font-size: 56px; color: #4CAF50; } .aftersale-step li.selected-end i.am-icon-angle-right { background: #e1e1e1; } .return-only-money-step li { width: 33.33%; } .return-money-goods-step li { width: 20%; } /** * 表单 */ form.form-validation .number-container .am-input-group-label { cursor: pointer; } /** * 详情信息 */ .user-content-body .detail .am-u-md-6 .am-panel { box-shadow: none; -webkit-box-shadow: none; } .user-content-body .detail .am-u-md-6 .am-panel-bd { padding: 10px; } @media only screen and (min-width:641px) { .user-content-body .apply-container { padding-left: 0; padding-right: 10px; } .user-content-body .express-container, .user-content-body .voucher-container { padding-left: 10px; padding-right: 0; } } @media only screen and (max-width:641px) { .user-content-body .detail .am-u-md-6 { padding: 0; } }
public/static/index/default/css/orderaftersale.detail.css
.user-content-body .aftersale-type .items-align { width: 49%; border: 1px solid #eee; padding: 10px; cursor: pointer; -webkit-transition: border-color .2s ease-in; -moz-transition: border-color .2s ease-in; -ms-transition: border-color .2s ease-in; -o-transition: border-color .2s ease-in; transition: border-color .2s ease-in; } .user-content-body .aftersale-type .items-align.selected, .user-content-body .aftersale-type .items-align:hover { border: 1px solid #d2364c; box-shadow: 0px 0 0px 1px #d2364c; } .user-content-body .aftersale-type .items-middle { width: 100%; position: relative; } .user-content-body .aftersale-type .items-align .icon { height: 70px; line-height: 70px; } .user-content-body .aftersale-type .items-align .icon i { font-size: 38px; color: #d2354c; } .user-content-body .aftersale-type .items-align p { position: absolute; left: 50px; } .user-content-body .aftersale-type .items-align .name { font-size: 16px; font-weight: 500; top: 12px; } .user-content-body .aftersale-type .items-align .desc { color: #888; top: 37px; } @media only screen and (max-width:460px) { .user-content-body .aftersale-type .items-align .icon i { font-size: 30px; } .user-content-body .aftersale-type .items-align p { left: 38px; } .user-content-body .aftersale-type .items-align .name { top: 0px; } .user-content-body .aftersale-type .items-align .desc { top: 25px; } } /** * 步骤 */ .aftersale-step { margin: 10px 0px; overflow: hidden; height: 29px; } .aftersale-step li { float: left; padding: 5px 0; position: relative; overflow: hidden; background: #e1e1e1; } .aftersale-step li .number { font-weight: 700; background: #fff; color: #b4b4b4; } .aftersale-step li .text { color: #666; margin-left: 2px; } .aftersale-step li i.am-icon-angle-right { float: right; font-size: 66px; line-height: 0px; position: absolute; top: -21px; right: 0; color: #fff; } .aftersale-step li.selected { background: #4CAF50; } .aftersale-step li.selected .number { color: #4CAF50; } .aftersale-step li.selected .text { color: #fff; } .aftersale-step li.selected i.am-icon-caret-right { position: absolute; top: -31px; right: 5px; z-index: 1; font-size: 56px; color: #4CAF50; } .aftersale-step li.selected-end i.am-icon-angle-right { background: #e1e1e1; } .return-only-money-step li { width: 33.33%; } .return-money-goods-step li { width: 20%; } /** * 表单 */ form.form-validation .number-container .am-input-group-label { cursor: pointer; } /** * 详情信息 */ .user-content-body .detail .am-u-md-6 .am-panel { box-shadow: none; -webkit-box-shadow: none; } .user-content-body .detail .am-u-md-6 .am-panel-bd { padding: 10px; } @media only screen and (min-width:641px) { .user-content-body .apply-container { padding-left: 0; padding-right: 10px; } .user-content-body .express-container, .user-content-body .voucher-container { padding-left: 10px; padding-right: 0; } } @media only screen and (max-width:641px) { .user-content-body .detail .am-u-md-6 { padding: 0; } }
0.373762
0.060502
.add_new_btn { background-color: #ff0027; border: 1px solid #ff0027; color: #fff !important; display: inline-block; padding: 8px 30px; text-transform: capitalize; line-height: 16px; font-size: 13px; font-weight: 500; margin-left: 10px; } #basic_info { background-color: #f4f7f9; } #basic_info:last-child { padding: 80px 36px 80px; } .nc_select:after { top: 5px !important; } .dashboard_part .nice-select { height: 40px; line-height: 40px; } .attach_plus_btn { margin-top: 33px; padding: 7px 12px; position: relative; top:-4px; } .primary_file_uploader input { width: 100%; background-color: #fff !important; } .primary_file_uploader button { position: absolute; right: 0; border: 0; top: 33px; right: 35px; padding: 1px 10px; background: #ff0027; z-index: 99; color: #fff; } .mt-15 { margin-top: 15px; } .mt-10 { margin-top: 10px; } .msg_subject p { color: red; font-size: 16px; text-transform: capitalize; font-weight: 400; padding: 10px 0px; } .msg_detail { padding: 5px 0px; font-size: 14px; text-align: justify; } .file_list a { width: 100%; background: #f4f7f9; padding-left: 15px; padding: 7px 0px 7px 10px; color: #222; display: inline-block; } .created_time_div {} .profile_img { padding: 10px !important; max-width: 60px !important; border-radius: 100% !important; margin: 0px 0px 0px -15px !important; } .admin_message_div { background-color: #d7dbe3; } .admin_name { font-size: 16px; line-height: 0.3; } .user-text-right { text-align: right; } .customer_img { padding: 10px !important; width: 80px; border-radius: 100%; } .ml-35 { margin-left: 35px; } .customer_attach { background-color: #d7dbe3; } .userThumbImg { height: auto; width: 100px; border-radius: 100%; } .fs-18 { font-size: 18px; } .badge_2 { background: rgba(255, 109, 104, 0.1); font-size: 13px !important; font-weight: 500 !important; color: #FF6D68 !important; border: 0; display: inline-block; border-radius: 10px; padding: 7px 21px; white-space: nowrap; line-height: 1.2; text-transform: capitalize; } .badge_1 { background: rgba(255, 109, 104, 0.1); font-size: 13px !important; font-weight: 500 !important; color: #FF6D68 !important; border: 0; display: inline-block; border-radius: 2px; padding: 7px 21px; white-space: nowrap; line-height: 1.2; text-transform: capitalize; } .list-group-item p { font-size: 15px; font-weight: 400; } .customerThmubName { line-height: 15px !important; } .last_update { font-size: 14px; } .reply_btn { background-color: #ff0027; border: 1px solid #ff0027; color: #fff !important; display: inline-block; padding: 10px 30px; text-transform: capitalize; line-height: 16px; font-size: 13px; font-weight: 500; } .ticket_browse{ margin-bottom: 5px; padding-top: 5px; padding-bottom: 0px; margin-top: 3px; } .mb_15{ margin-bottom: 15px; }
public/frontend/default/css/page_css/ticket/show.css
.add_new_btn { background-color: #ff0027; border: 1px solid #ff0027; color: #fff !important; display: inline-block; padding: 8px 30px; text-transform: capitalize; line-height: 16px; font-size: 13px; font-weight: 500; margin-left: 10px; } #basic_info { background-color: #f4f7f9; } #basic_info:last-child { padding: 80px 36px 80px; } .nc_select:after { top: 5px !important; } .dashboard_part .nice-select { height: 40px; line-height: 40px; } .attach_plus_btn { margin-top: 33px; padding: 7px 12px; position: relative; top:-4px; } .primary_file_uploader input { width: 100%; background-color: #fff !important; } .primary_file_uploader button { position: absolute; right: 0; border: 0; top: 33px; right: 35px; padding: 1px 10px; background: #ff0027; z-index: 99; color: #fff; } .mt-15 { margin-top: 15px; } .mt-10 { margin-top: 10px; } .msg_subject p { color: red; font-size: 16px; text-transform: capitalize; font-weight: 400; padding: 10px 0px; } .msg_detail { padding: 5px 0px; font-size: 14px; text-align: justify; } .file_list a { width: 100%; background: #f4f7f9; padding-left: 15px; padding: 7px 0px 7px 10px; color: #222; display: inline-block; } .created_time_div {} .profile_img { padding: 10px !important; max-width: 60px !important; border-radius: 100% !important; margin: 0px 0px 0px -15px !important; } .admin_message_div { background-color: #d7dbe3; } .admin_name { font-size: 16px; line-height: 0.3; } .user-text-right { text-align: right; } .customer_img { padding: 10px !important; width: 80px; border-radius: 100%; } .ml-35 { margin-left: 35px; } .customer_attach { background-color: #d7dbe3; } .userThumbImg { height: auto; width: 100px; border-radius: 100%; } .fs-18 { font-size: 18px; } .badge_2 { background: rgba(255, 109, 104, 0.1); font-size: 13px !important; font-weight: 500 !important; color: #FF6D68 !important; border: 0; display: inline-block; border-radius: 10px; padding: 7px 21px; white-space: nowrap; line-height: 1.2; text-transform: capitalize; } .badge_1 { background: rgba(255, 109, 104, 0.1); font-size: 13px !important; font-weight: 500 !important; color: #FF6D68 !important; border: 0; display: inline-block; border-radius: 2px; padding: 7px 21px; white-space: nowrap; line-height: 1.2; text-transform: capitalize; } .list-group-item p { font-size: 15px; font-weight: 400; } .customerThmubName { line-height: 15px !important; } .last_update { font-size: 14px; } .reply_btn { background-color: #ff0027; border: 1px solid #ff0027; color: #fff !important; display: inline-block; padding: 10px 30px; text-transform: capitalize; line-height: 16px; font-size: 13px; font-weight: 500; } .ticket_browse{ margin-bottom: 5px; padding-top: 5px; padding-bottom: 0px; margin-top: 3px; } .mb_15{ margin-bottom: 15px; }
0.38827
0.095307
@import url('open-iconic/font/css/open-iconic-bootstrap.min.css'); body { background-image: url('../images/BlueWaterBackground.png'); width: 100%; height: 100%; background-size: 100%; background-repeat: no-repeat; background-color: black; overflow: hidden; } .logincontainer { background-image: url('../Images/LoginScreen.png'); width: 80%; height: 64vh; background-size: 100% 100%; background-repeat: no-repeat; overflow-y: auto; overflow-x: hidden; position: fixed; top: 20vh; left: 24%; } .progresscontainer { position: fixed; left: 24%; top: 50vh; transform: scale(.8); transform-origin: left; } .progresscontainer2 { position: fixed; left: 20%; top: 64vh; transform: scale(1); transform-origin: left; } .progresscontainer3 { position: fixed; left: 67.2%; top: 72.8vh; width: 8%; height: 12vh; transform: scale(1); transform-origin: left; } .redbutton { background-image: url('../images/redbutton.png'); display: inline; outline: none; border: none; background-size: 100% 100%; width: 48%; height: 5.28vh; display: inline; color: ghostwhite; background-repeat: no-repeat; background-color: transparent; text-align: center; font-family: Arial; line-height: 2.4vh; vertical-align: central; font-size: 2vh; position: relative; top: 1.2vh; left: 6%; } .redbutton:focus { outline: none; } .redbutton:hover { text-decoration: none; } .redbutton2 { background-image: url('../images/redbutton.png'); display: inline; outline: none; border: none; background-size: 100% 100%; width: 12%; height: 5.28vh; display: inline; color: ghostwhite; background-repeat: no-repeat; background-color: transparent; text-align: center; font-family: Arial; line-height: 2.4vh; vertical-align: central; font-size: 2vh; position: relative; top: 3.6vh; left: 24.8%; } .redbutton2:focus { outline: none; } .redbutton2:hover { text-decoration: none; } .redbutton3 { background-image: url('../images/redbutton.png'); display: inline; outline: none; border: none; background-size: 100% 100%; width: 10%; height: 5.28vh; display: inline; color: ghostwhite; background-repeat: no-repeat; background-color: transparent; text-align: center; font-family: Arial; line-height: 2.4vh; vertical-align: central; font-size: 2vh; position: fixed; top: 9.6vh; right: 2%; } .redbutton3:focus { outline: none; } .redbutton3:hover { text-decoration: none; } .rightpanel { float: right; margin-right: 1%; margin-top: 1%; width: 24%; height: 92vh; } .rightpanelsignup { float: right; margin-right: 1%; margin-top: 1%; width: 40%; height: 24vh; position: fixed; left: 54%; top: 20vh; line-height: 2.4vh; font-size: 1.8vh; color: ghostwhite; } .signupbuttons { position: relative; left: -11%; } .signupcontainer { width: 80%; height: 64vh; background-size: 100% 100%; background-repeat: no-repeat; overflow-y: auto; overflow-x: hidden; position: fixed; top: 20vh; left: 16%; } .signupcontrols { line-height: 3.2vh; font-size: 2.4vh; font-family: Arial, Verdana; color: ghostwhite; margin-top: 2vh; margin-left: 2%; } .validationmessage { position: fixed; top: 60vh; width: 60%; left: 50%; margin-left: -30%; color: red; height: 4vh; line-height: 4vh; font-size: 1.6em; text-align: center; } .validationmessage2 { position: fixed; bottom: 10vh; width: 80%; left: 4%; color: red; height: 4vh; line-height: 4vh; font-size: 1.6em; text-align: center; color: darkorange; } .version { float: right; color: ghostwhite; position: fixed; right: 2.4%; top: 1vh; text-align: right; font-size: 1em; } .welcome { display: inline-block; color: ghostwhite; height: 2vh; width: 30%; line-height: 2vh; font-size: 1.2em; text-align: right; position: fixed; top: 6vh; right: 2.4%; white-space: nowrap; } html, { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; color: ghostwhite; font-size: 1em; } a, .btn-link { color: #0366d6; } .btn-primary { color: #fff; background-color: #1b6ec2; border-color: #1861ac; } .content { padding-top: 1.1rem; } .valid.modified:not([type=checkbox]) { outline: 1px solid #26b050; } .invalid { outline: 1px solid red; } .validation-message { color: red; } #blazor-error-ui { background: lightyellow; bottom: 0; box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2); display: none; left: 0; padding: 0.6rem 1.25rem 0.7rem 1.25rem; position: fixed; width: 100%; z-index: 1000; } #blazor-error-ui .dismiss { cursor: pointer; position: absolute; right: 0.75rem; top: 0.5rem; }
wwwroot/css/site.css
@import url('open-iconic/font/css/open-iconic-bootstrap.min.css'); body { background-image: url('../images/BlueWaterBackground.png'); width: 100%; height: 100%; background-size: 100%; background-repeat: no-repeat; background-color: black; overflow: hidden; } .logincontainer { background-image: url('../Images/LoginScreen.png'); width: 80%; height: 64vh; background-size: 100% 100%; background-repeat: no-repeat; overflow-y: auto; overflow-x: hidden; position: fixed; top: 20vh; left: 24%; } .progresscontainer { position: fixed; left: 24%; top: 50vh; transform: scale(.8); transform-origin: left; } .progresscontainer2 { position: fixed; left: 20%; top: 64vh; transform: scale(1); transform-origin: left; } .progresscontainer3 { position: fixed; left: 67.2%; top: 72.8vh; width: 8%; height: 12vh; transform: scale(1); transform-origin: left; } .redbutton { background-image: url('../images/redbutton.png'); display: inline; outline: none; border: none; background-size: 100% 100%; width: 48%; height: 5.28vh; display: inline; color: ghostwhite; background-repeat: no-repeat; background-color: transparent; text-align: center; font-family: Arial; line-height: 2.4vh; vertical-align: central; font-size: 2vh; position: relative; top: 1.2vh; left: 6%; } .redbutton:focus { outline: none; } .redbutton:hover { text-decoration: none; } .redbutton2 { background-image: url('../images/redbutton.png'); display: inline; outline: none; border: none; background-size: 100% 100%; width: 12%; height: 5.28vh; display: inline; color: ghostwhite; background-repeat: no-repeat; background-color: transparent; text-align: center; font-family: Arial; line-height: 2.4vh; vertical-align: central; font-size: 2vh; position: relative; top: 3.6vh; left: 24.8%; } .redbutton2:focus { outline: none; } .redbutton2:hover { text-decoration: none; } .redbutton3 { background-image: url('../images/redbutton.png'); display: inline; outline: none; border: none; background-size: 100% 100%; width: 10%; height: 5.28vh; display: inline; color: ghostwhite; background-repeat: no-repeat; background-color: transparent; text-align: center; font-family: Arial; line-height: 2.4vh; vertical-align: central; font-size: 2vh; position: fixed; top: 9.6vh; right: 2%; } .redbutton3:focus { outline: none; } .redbutton3:hover { text-decoration: none; } .rightpanel { float: right; margin-right: 1%; margin-top: 1%; width: 24%; height: 92vh; } .rightpanelsignup { float: right; margin-right: 1%; margin-top: 1%; width: 40%; height: 24vh; position: fixed; left: 54%; top: 20vh; line-height: 2.4vh; font-size: 1.8vh; color: ghostwhite; } .signupbuttons { position: relative; left: -11%; } .signupcontainer { width: 80%; height: 64vh; background-size: 100% 100%; background-repeat: no-repeat; overflow-y: auto; overflow-x: hidden; position: fixed; top: 20vh; left: 16%; } .signupcontrols { line-height: 3.2vh; font-size: 2.4vh; font-family: Arial, Verdana; color: ghostwhite; margin-top: 2vh; margin-left: 2%; } .validationmessage { position: fixed; top: 60vh; width: 60%; left: 50%; margin-left: -30%; color: red; height: 4vh; line-height: 4vh; font-size: 1.6em; text-align: center; } .validationmessage2 { position: fixed; bottom: 10vh; width: 80%; left: 4%; color: red; height: 4vh; line-height: 4vh; font-size: 1.6em; text-align: center; color: darkorange; } .version { float: right; color: ghostwhite; position: fixed; right: 2.4%; top: 1vh; text-align: right; font-size: 1em; } .welcome { display: inline-block; color: ghostwhite; height: 2vh; width: 30%; line-height: 2vh; font-size: 1.2em; text-align: right; position: fixed; top: 6vh; right: 2.4%; white-space: nowrap; } html, { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; color: ghostwhite; font-size: 1em; } a, .btn-link { color: #0366d6; } .btn-primary { color: #fff; background-color: #1b6ec2; border-color: #1861ac; } .content { padding-top: 1.1rem; } .valid.modified:not([type=checkbox]) { outline: 1px solid #26b050; } .invalid { outline: 1px solid red; } .validation-message { color: red; } #blazor-error-ui { background: lightyellow; bottom: 0; box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2); display: none; left: 0; padding: 0.6rem 1.25rem 0.7rem 1.25rem; position: fixed; width: 100%; z-index: 1000; } #blazor-error-ui .dismiss { cursor: pointer; position: absolute; right: 0.75rem; top: 0.5rem; }
0.482673
0.069321
.mep__container { position: relative; width: 100%; max-width: 720px; color: #fff; font-size: 12px; box-sizing: border-box; border-radius: 2px; background-color: #fff; box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2); } .mep__container:hover .mep__controls { opacity: 1; transform: translateY(0); } .mep__container * { margin: 0; padding: 0; box-sizing: inherit; border: none; outline: none; -webkit-appearance: none; } .mep__video-box { position: relative; width: 100%; height: 0; padding-top: 56.25%; } .mep__video { position: absolute; top: 0; left: 0; width: 100%; } .mep__preview { position: absolute; left: 0; bottom: 30px; width: 50px; height: 28px; background-color: #fff; } .mep__controls { position: absolute; bottom: 0; left: 0; width: 100%; height: 30px; display: flex; justify-content: flex-start; align-items: center; padding: 0 10px; opacity: 1; transform: translateY(0); transition: all 0.3s linear; background-color: rgba(0, 0, 0, 0.15); /* background: hsla(0, 0%, 100%, .2); */ } .mep__controls.is-hide { opacity: 0; transform: translateY(100%); } .mep__button { position: relative; display: inline-block; width: 30px; height: 30px; margin-right: 6px; color: #fff; font-size: 14px; cursor: pointer; border: none; outline: none; opacity: 0.9; background-color: transparent; } .mep-button:hover { opacity: 1; } .mep__svg { width: 100%; height: 100%; } .mep-svg-fill { fill: #fff; } .mep__progress { position: relative; flex: 1; height: 5px; margin-right: 6px; background: hsla(0, 0%, 100%, 0.2); } .mep__progress-mask { position: absolute; top: -100%; left: 0; width: 100%; height: 300%; z-index: 10; } .mep__progress:hover .mep__progress-indicator { opacity: 1; visibility: visible; } .mep__progress-indicator { position: absolute; top: -100%; left: 0; width: 2px; height: 15px; opacity: 0; visibility: hidden; background-color: #fff; } .mep__progress-bar { width: 100%; height: 100%; transform: scaleX(0); transform-origin: 0 0; background-color: #fff; /* background-color: #00beff; */ } .mep__time-display { margin-right: 6px; vertical-align: top; } .mep__mute-button:hover .mep__volume-container { opacity: 1; visibility: visible; } .mep__volume-container { position: absolute; left: 0; bottom: 100%; display: flex; flex-flow: column wrap; justify-content: flex-start; align-items: center; width: 100%; text-align: center; opacity: 0; visibility: hidden; transition: all 0.3s ease-in; background-color: rgba(0, 0, 0, 0.15); } .mep__volume-num { margin: 6px 0; } .mep__volume { position: relative; width: 5px; height: 100px; background: hsla(0, 0%, 100%, 0.2); } .mep__volume-mask { position: absolute; top: 0; left: 0; z-index: 10; width: 300%; height: 100%; transform: translateX(-33.3%); } .mep__volume-bar { position: relative; display: inline-block; width: 100%; height: 100%; transform: scaleY(1); transform-origin: center bottom; background-color: #fff; } /* .mep__volume-bar::before { content: ""; position: absolute; top: -5px; left: -2.5px; width: 10px; height: 10px; transform: translate(-25%, -50%); border-radius: 50%; background-color: inherit; } */ .mep__fullscreen-button { margin-right: 0; } .mep__container video::-webkit-media-controls { display: none; }
src/me-player.css
.mep__container { position: relative; width: 100%; max-width: 720px; color: #fff; font-size: 12px; box-sizing: border-box; border-radius: 2px; background-color: #fff; box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2); } .mep__container:hover .mep__controls { opacity: 1; transform: translateY(0); } .mep__container * { margin: 0; padding: 0; box-sizing: inherit; border: none; outline: none; -webkit-appearance: none; } .mep__video-box { position: relative; width: 100%; height: 0; padding-top: 56.25%; } .mep__video { position: absolute; top: 0; left: 0; width: 100%; } .mep__preview { position: absolute; left: 0; bottom: 30px; width: 50px; height: 28px; background-color: #fff; } .mep__controls { position: absolute; bottom: 0; left: 0; width: 100%; height: 30px; display: flex; justify-content: flex-start; align-items: center; padding: 0 10px; opacity: 1; transform: translateY(0); transition: all 0.3s linear; background-color: rgba(0, 0, 0, 0.15); /* background: hsla(0, 0%, 100%, .2); */ } .mep__controls.is-hide { opacity: 0; transform: translateY(100%); } .mep__button { position: relative; display: inline-block; width: 30px; height: 30px; margin-right: 6px; color: #fff; font-size: 14px; cursor: pointer; border: none; outline: none; opacity: 0.9; background-color: transparent; } .mep-button:hover { opacity: 1; } .mep__svg { width: 100%; height: 100%; } .mep-svg-fill { fill: #fff; } .mep__progress { position: relative; flex: 1; height: 5px; margin-right: 6px; background: hsla(0, 0%, 100%, 0.2); } .mep__progress-mask { position: absolute; top: -100%; left: 0; width: 100%; height: 300%; z-index: 10; } .mep__progress:hover .mep__progress-indicator { opacity: 1; visibility: visible; } .mep__progress-indicator { position: absolute; top: -100%; left: 0; width: 2px; height: 15px; opacity: 0; visibility: hidden; background-color: #fff; } .mep__progress-bar { width: 100%; height: 100%; transform: scaleX(0); transform-origin: 0 0; background-color: #fff; /* background-color: #00beff; */ } .mep__time-display { margin-right: 6px; vertical-align: top; } .mep__mute-button:hover .mep__volume-container { opacity: 1; visibility: visible; } .mep__volume-container { position: absolute; left: 0; bottom: 100%; display: flex; flex-flow: column wrap; justify-content: flex-start; align-items: center; width: 100%; text-align: center; opacity: 0; visibility: hidden; transition: all 0.3s ease-in; background-color: rgba(0, 0, 0, 0.15); } .mep__volume-num { margin: 6px 0; } .mep__volume { position: relative; width: 5px; height: 100px; background: hsla(0, 0%, 100%, 0.2); } .mep__volume-mask { position: absolute; top: 0; left: 0; z-index: 10; width: 300%; height: 100%; transform: translateX(-33.3%); } .mep__volume-bar { position: relative; display: inline-block; width: 100%; height: 100%; transform: scaleY(1); transform-origin: center bottom; background-color: #fff; } /* .mep__volume-bar::before { content: ""; position: absolute; top: -5px; left: -2.5px; width: 10px; height: 10px; transform: translate(-25%, -50%); border-radius: 50%; background-color: inherit; } */ .mep__fullscreen-button { margin-right: 0; } .mep__container video::-webkit-media-controls { display: none; }
0.513668
0.06256
.login *{ padding: 0; margin: 0; box-sizing: border-box;/* border: 1px dashed red;*/ color: #666666; text-decoration:none ; } .login{ width: 1500px; margin: 60px auto; } .login .header .left{ float: left; padding: 5px 30px; } .login .header .right{ float: right; padding: 5px 30px; } .login .header .right p{ display:inline-block; vertical-align: middle; border: solid 0.3px #666; padding: 3px; margin-left:10px ; } .login .header .right img{ vertical-align: middle; } .header:after{ content: " "; display: block; clear: both; } hr{ border: 1px solid #000; box-shadow: 0 2px 6px #666666; } .section{ height: 500px; margin:20px 0; } .section .left ,.section .right{ display: inline-block; width: 730px; margin: 6px; vertical-align: middle; } .section .left img{ width: 600px; margin: 60px; } .section .right form{ width: 500px; margin:0 80px ; } .section .right form p{ margin :10px 0; } .section .right form .p7 a{ vertical-align: middle; } .section .right form .p7 .a1{background: url(../img/l_1.png) ; } .section .right form .p7 .a1:hover{background: url(../img/l_1_h.png) ; } .section .right form .p7 .a2{background: url(../img/l_2.png) ; } .section .right form .p7 .a2:hover{background: url(../img/l_2_h.png) ; } .section .right form .p7 .a3{background: url(../img/l_3.png) ; } .section .right form .p7 .a3:hover{background: url(../img/l_3_h.png) ; } .section .right form .p7 .a4{background: url(../img/l_4.png) ; } .section .right form .p7 .a4:hover{background: url(../img/l_4_h.png) ; } .section .right form .p7 .aimg, .section .right form .p7 .aimg:hover{ display: inline-block; width: 45px; height: 45px; margin: 3px 6px; background-repeat:no-repeat ; background-size:36px; background-position: center; } .section .right form .p1 a,.section .right form .p4 a{ float: right; } .section .right form .p2 input{ background:url(../img/userHead.png) ; } .section .right form .p3 input{ background: url(../img/lock.png); } .section .right form .p2 input,.section .right form .p3 input,.section .right form .p5 input { width: 490px; height: 60px; margin: 3px; text-indent: 4em; font-size: 20px; background-repeat: no-repeat ; background-position:25px center ; background-size:35px; } .section .right form .p5 input{ background: #FF0000; color: #Fff; text-indent: 0; text-align: center; } .section .right form .p7 .a5{ display: inline-block; width: 150px; padding-right:30px ; text-align: right; background:url(../img/loadMore.png) no-repeat right ; margin: 18px; float: right; } .footer p{ text-align:center ; font-size: 10px; }
MyShop/WebRoot/statics/localcss/Login.css
.login *{ padding: 0; margin: 0; box-sizing: border-box;/* border: 1px dashed red;*/ color: #666666; text-decoration:none ; } .login{ width: 1500px; margin: 60px auto; } .login .header .left{ float: left; padding: 5px 30px; } .login .header .right{ float: right; padding: 5px 30px; } .login .header .right p{ display:inline-block; vertical-align: middle; border: solid 0.3px #666; padding: 3px; margin-left:10px ; } .login .header .right img{ vertical-align: middle; } .header:after{ content: " "; display: block; clear: both; } hr{ border: 1px solid #000; box-shadow: 0 2px 6px #666666; } .section{ height: 500px; margin:20px 0; } .section .left ,.section .right{ display: inline-block; width: 730px; margin: 6px; vertical-align: middle; } .section .left img{ width: 600px; margin: 60px; } .section .right form{ width: 500px; margin:0 80px ; } .section .right form p{ margin :10px 0; } .section .right form .p7 a{ vertical-align: middle; } .section .right form .p7 .a1{background: url(../img/l_1.png) ; } .section .right form .p7 .a1:hover{background: url(../img/l_1_h.png) ; } .section .right form .p7 .a2{background: url(../img/l_2.png) ; } .section .right form .p7 .a2:hover{background: url(../img/l_2_h.png) ; } .section .right form .p7 .a3{background: url(../img/l_3.png) ; } .section .right form .p7 .a3:hover{background: url(../img/l_3_h.png) ; } .section .right form .p7 .a4{background: url(../img/l_4.png) ; } .section .right form .p7 .a4:hover{background: url(../img/l_4_h.png) ; } .section .right form .p7 .aimg, .section .right form .p7 .aimg:hover{ display: inline-block; width: 45px; height: 45px; margin: 3px 6px; background-repeat:no-repeat ; background-size:36px; background-position: center; } .section .right form .p1 a,.section .right form .p4 a{ float: right; } .section .right form .p2 input{ background:url(../img/userHead.png) ; } .section .right form .p3 input{ background: url(../img/lock.png); } .section .right form .p2 input,.section .right form .p3 input,.section .right form .p5 input { width: 490px; height: 60px; margin: 3px; text-indent: 4em; font-size: 20px; background-repeat: no-repeat ; background-position:25px center ; background-size:35px; } .section .right form .p5 input{ background: #FF0000; color: #Fff; text-indent: 0; text-align: center; } .section .right form .p7 .a5{ display: inline-block; width: 150px; padding-right:30px ; text-align: right; background:url(../img/loadMore.png) no-repeat right ; margin: 18px; float: right; } .footer p{ text-align:center ; font-size: 10px; }
0.185947
0.053182
.background_glassyPaleTurquoise4, .hover_background_glassyPaleTurquoise4:hover, .active_background_glassyPaleTurquoise4:active:hover { background: #2cd1d1; background-image: -moz-linear-gradient(top, rgb(40, 188, 188) 0%, rgb(36, 167, 167) 50%, rgb(31, 146, 146) 55%, rgb(44, 209, 209) 100%); background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(40, 188, 188)), color-stop(50%, rgb(36, 167, 167)), color-stop(55%, rgb(31, 146, 146)), color-stop(100%, rgb(44, 209, 209))); background-image: -webkit-linear-gradient(top, rgb(40, 188, 188) 0%, rgb(36, 167, 167) 50%, rgb(31, 146, 146) 55%, rgb(44, 209, 209) 100%); background-image: -o-linear-gradient(top, rgb(40, 188, 188) 0%, rgb(36, 167, 167) 50%, rgb(31, 146, 146) 55%, rgb(44, 209, 209) 100%); background-image: -ms-linear-gradient(top, rgb(40, 188, 188) 0%, rgb(36, 167, 167) 50%, rgb(31, 146, 146) 55%, rgb(44, 209, 209) 100%); background-image: linear-gradient(to bottom, rgb(40, 188, 188) 0%, rgb(36, 167, 167) 50%, rgb(31, 146, 146) 55%, rgb(44, 209, 209) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#28bcbc', endColorstr='#2cd1d1',GradientType=0 ); } .background_glassyPaleTurquoise4h, .hover_background_glassyPaleTurquoise4h:hover, .active_background_glassyPaleTurquoise4h:active:hover { background: #2cd1d1; background-image: -moz-linear-gradient(top, rgb(60, 214, 214) 0%, rgb(43, 201, 201) 50%, rgb(37, 176, 176) 55%, rgb(85, 219, 219) 100%); background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(60, 214, 214)), color-stop(50%, rgb(43, 201, 201)), color-stop(55%, rgb(37, 176, 176)), color-stop(100%, rgb(85, 219, 219))); background-image: -webkit-linear-gradient(top, rgb(60, 214, 214) 0%, rgb(43, 201, 201) 50%, rgb(37, 176, 176) 55%, rgb(85, 219, 219) 100%); background-image: -o-linear-gradient(top, rgb(60, 214, 214) 0%, rgb(43, 201, 201) 50%, rgb(37, 176, 176) 55%, rgb(85, 219, 219) 100%); background-image: -ms-linear-gradient(top, rgb(60, 214, 214) 0%, rgb(43, 201, 201) 50%, rgb(37, 176, 176) 55%, rgb(85, 219, 219) 100%); background-image: linear-gradient(to bottom, rgb(60, 214, 214) 0%, rgb(43, 201, 201) 50%, rgb(37, 176, 176) 55%, rgb(85, 219, 219) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3cd6d6', endColorstr='#55dbdb',GradientType=0 ); } .background_glassyPaleTurquoise4a, .hover_background_glassyPaleTurquoise4a:hover, .active_background_glassyPaleTurquoise4a:active:hover { background: #2cd1d1; background-image: -moz-linear-gradient(top, rgb(85, 219, 219) 0%, rgb(37, 176, 176) 50%, rgb(43, 201, 201) 55%, rgb(60, 214, 214) 100%); background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(85, 219, 219)), color-stop(50%, rgb(37, 176, 176)), color-stop(55%, rgb(43, 201, 201)), color-stop(100%, rgb(60, 214, 214))); background-image: -webkit-linear-gradient(top, rgb(85, 219, 219) 0%, rgb(37, 176, 176) 50%, rgb(43, 201, 201) 55%, rgb(60, 214, 214) 100%); background-image: -o-linear-gradient(top, rgb(85, 219, 219) 0%, rgb(37, 176, 176) 50%, rgb(43, 201, 201) 55%, rgb(60, 214, 214) 100%); background-image: -ms-linear-gradient(top, rgb(85, 219, 219) 0%, rgb(37, 176, 176) 50%, rgb(43, 201, 201) 55%, rgb(60, 214, 214) 100%); background-image: linear-gradient(to bottom, rgb(85, 219, 219) 0%, rgb(37, 176, 176) 50%, rgb(43, 201, 201) 55%, rgb(60, 214, 214) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#55dbdb', endColorstr='#3cd6d6',GradientType=0 ); } .background_glassyPaleTurquoise4s, .hover_background_glassyPaleTurquoise4s:hover, .active_background_glassyPaleTurquoise4s:active:hover { background: #2cd1d1; background-image: -moz-linear-gradient(top, rgb(117, 226, 226) 0%, rgb(85, 219, 219) 50%, rgb(54, 212, 212) 55%, rgb(148, 232, 232) 100%); background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(117, 226, 226)), color-stop(50%, rgb(85, 219, 219)), color-stop(55%, rgb(54, 212, 212)), color-stop(100%, rgb(148, 232, 232))); background-image: -webkit-linear-gradient(top, rgb(117, 226, 226) 0%, rgb(85, 219, 219) 50%, rgb(54, 212, 212) 55%, rgb(148, 232, 232) 100%); background-image: -o-linear-gradient(top, rgb(117, 226, 226) 0%, rgb(85, 219, 219) 50%, rgb(54, 212, 212) 55%, rgb(148, 232, 232) 100%); background-image: -ms-linear-gradient(top, rgb(117, 226, 226) 0%, rgb(85, 219, 219) 50%, rgb(54, 212, 212) 55%, rgb(148, 232, 232) 100%); background-image: linear-gradient(to bottom, rgb(117, 226, 226) 0%, rgb(85, 219, 219) 50%, rgb(54, 212, 212) 55%, rgb(148, 232, 232) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#75e2e2', endColorstr='#94e8e8',GradientType=0 ); } .background_color_glassyPaleTurquoise4, .hover_background_color_glassyPaleTurquoise4:hover, .active_background_color_glassyPaleTurquoise4:active:hover { background-color:#2cd1d1; } .background_first_color_glassyPaleTurquoise4, .hover_background_first_color_glassyPaleTurquoise4:hover, .active_background_first_color_glassyPaleTurquoise4:active:hover { background-color:#28bcbc; } .background_last_color_glassyPaleTurquoise4, .hover_background_last_color_glassyPaleTurquoise4:hover, .active_background_color_last_glassyPaleTurquoise4:active:hover { background-color:#2cd1d1; } /* ------------------------------ color settings -------------------------------*/ .color_glassyPaleTurquoise4, .hover_color_glassyPaleTurquoise4:hover, .active_color_glassyPaleTurquoise4:active:hover { color: #282828; } .color_glassyPaleTurquoise4h, .hover_color_glassyPaleTurquoise4h:hover, .active_color_glassyPaleTurquoise4h:active:hover { color: #282828; } .color_glassyPaleTurquoise4a, .hover_color_glassyPaleTurquoise4a:hover, .active_color_glassyPaleTurquoise4a:active:hover { color: #ff0; } .color_glassyPaleTurquoise4s, .hover_color_glassyPaleTurquoise4s:hover, .active_color_glassyPaleTurquoise4s:active:hover { color: #dd0; } /* -------------------------- border color settings -----------------------------*/ .border_glassyPaleTurquoise4, .hover_border_glassyPaleTurquoise4:hover, .active_border_glassyPaleTurquoise4:active:hover { border-color: #209797 #1b7e7e #1b7e7e #209797; } .border_glassyPaleTurquoise4h, .hover_border_glassyPaleTurquoise4h:hover, .active_border_glassyPaleTurquoise4h:active:hover { border-color: #209797 #1b7e7e #1b7e7e #209797; } .border_glassyPaleTurquoise4a, .hover_border_glassyPaleTurquoise4a:hover, .active_border_glassyPaleTurquoise4a:active:hover { border-color: #197575 #197575 #197575 #197575; } .border_glassyPaleTurquoise4s, .hover_border_glassyPaleTurquoise4s:hover, .active_border_glassyPaleTurquoise4s:active:hover { border-color: #197575 #197575 #197575 #197575; } /* -------------------------- shadow expand settings --------------------------------*/ .shadow_expand_glassyPaleTurquoise4, .hover_shadow_expand_glassyPaleTurquoise4:hover, .active_shadow_expand_glassyPaleTurquoise4:active:hover { -webkit-box-shadow: 0em 0em 1em 0.25em rgba(44, 209, 209, .39); -moz-box-shadow: 0em 0em 1em 0.25em rgba(44, 209, 209, .39); box-shadow: 0em 0em 1em 0.25em rgba(44, 209, 209, .39); } .shadow_expand_glassyPaleTurquoise4h, .hover_shadow_expand_glassyPaleTurquoise4h:hover, .active_shadow_expand_glassyPaleTurquoise4h:active:hover { -webkit-box-shadow: 0em 0em 1em 0.25em rgba(85, 219, 219, .50); -moz-box-shadow: 0em 0em 1em 0.25em rgba(85, 219, 219, .50); box-shadow: 0em 0em 1em 0.25em rgba(85, 219, 219, .50); } .shadow_expand_glassyPaleTurquoise4a, .hover_shadow_expand_glassyPaleTurquoise4a:hover, .active_shadow_expand_glassyPaleTurquoise4a:active:hover { -webkit-box-shadow: 0em 0em 1em 0.25em rgba(60, 214, 214, .63); -moz-box-shadow: 0em 0em 1em 0.25em rgba(60, 214, 214, .63); box-shadow: 0em 0em 1em 0.25em rgba(60, 214, 214, .63); } .shadow_expand_glassyPaleTurquoise4s, .hover_shadow_expand_glassyPaleTurquoise4s:hover, .active_shadow_expand_glassyPaleTurquoise4s:active:hover { -webkit-box-shadow: 0em 0em 1em 0.25em rgba(60, 214, 214, .78); -moz-box-shadow: 0em 0em 1em 0.25em rgba(60, 214, 214, .78); box-shadow: 0em 0em 1em 0.25em rgba(60, 214, 214, .78); } /* -------------------------- shadow left settings --------------------------------*/ .shadow_left_glassyPaleTurquoise4, .hover_shadow_left_glassyPaleTurquoise4:hover, .active_shadow_left_glassyPaleTurquoise4:active:hover { -webkit-box-shadow: -0.5em -0.5em 1em rgba(44, 209, 209, .39); -moz-box-shadow: -0.5em -0.5em 1em rgba(44, 209, 209, .39); box-shadow: -0.5em -0.5em 1em rgba(44, 209, 209, .39); } .shadow_left_glassyPaleTurquoise4h, .hover_shadow_left_glassyPaleTurquoise4h:hover, .active_shadow_left_glassyPaleTurquoise4h:active:hover { -webkit-box-shadow: -0.5em -0.5em 1em rgba(85, 219, 219, .50); -moz-box-shadow: -0.5em -0.5em 1em rgba(85, 219, 219, .50); box-shadow: -0.5em -0.5em 1em rgba(85, 219, 219, .50); } .shadow_left_glassyPaleTurquoise4a, .hover_shadow_left_glassyPaleTurquoise4a:hover, .active_shadow_left_glassyPaleTurquoise4a:active:hover { -webkit-box-shadow: -0.5em -0.5em 1em rgba(60, 214, 214, .63); -moz-box-shadow: -0.5em -0.5em 1em rgba(60, 214, 214, .63); box-shadow: -0.5em -0.5em 1em rgba(60, 214, 214, .63); } .shadow_left_glassyPaleTurquoise4s, .hover_shadow_left_glassyPaleTurquoise4s:hover, .active_shadow_left_glassyPaleTurquoise4s:active:hover { -webkit-box-shadow: -0.5em -0.5em 1em rgba(60, 214, 214, .78); -moz-box-shadow: -0.5em -0.5em 1em rgba(60, 214, 214, .78); box-shadow: -0.5em -0.5em 1em rgba(60, 214, 214, .78); } /* -------------------------- shadow right settings --------------------------------*/ .shadow_right_glassyPaleTurquoise4, .hover_shadow_right_glassyPaleTurquoise4:hover, .active_shadow_right_glassyPaleTurquoise4:active:hover { -webkit-box-shadow: 0.5em 0em 1em rgba(44, 209, 209, .39); -moz-box-shadow: 0.5em 0em 1em rgba(44, 209, 209, .39); box-shadow: 0.5em 0em 1em rgba(44, 209, 209, .39); } .shadow_right_glassyPaleTurquoise4h, .hover_shadow_right_glassyPaleTurquoise4h:hover, .active_shadow_right_glassyPaleTurquoise4h:active:hover { -webkit-box-shadow: 0.5em 0em 1em rgba(85, 219, 219, .50); -moz-box-shadow: 0.5em 0em 1em rgba(85, 219, 219, .50); box-shadow: 0.5em 0em 1em rgba(85, 219, 219, .50); } .shadow_right_glassyPaleTurquoise4a, .hover_shadow_right_glassyPaleTurquoise4a:hover, .active_shadow_right_glassyPaleTurquoise4a:active:hover { -webkit-box-shadow: 0.5em 0em 1em rgba(60, 214, 214, .63); -moz-box-shadow: 0.5em 0em 1em rgba(60, 214, 214, .63); box-shadow: 0.5em 0em 1em rgba(60, 214, 214, .63); } .shadow_right_glassyPaleTurquoise4s, .hover_shadow_right_glassyPaleTurquoise4s:hover, .active_shadow_right_glassyPaleTurquoise4s:active:hover { -webkit-box-shadow: 0.5em 0em 1em rgba(60, 214, 214, .78); -moz-box-shadow: 0.5em 0em 1em rgba(60, 214, 214, .78); box-shadow: 0.5em 0em 1em rgba(60, 214, 214, .78); } /* -------------------------- shadow top settings --------------------------------*/ .shadow_top_glassyPaleTurquoise4, .hover_shadow_top_glassyPaleTurquoise4:hover, .active_shadow_top_glassyPaleTurquoise4:active:hover { -webkit-box-shadow: 0em -0.5em 1em rgba(44, 209, 209, .39); -moz-box-shadow: 0em -0.5em 1em rgba(44, 209, 209, .39); box-shadow: 0em -0.5em 1em rgba(44, 209, 209, .39); } .shadow_top_glassyPaleTurquoise4h, .hover_shadow_top_glassyPaleTurquoise4h:hover, .active_shadow_top_glassyPaleTurquoise4h:active:hover { -webkit-box-shadow: 0em -0.5em 1em rgba(85, 219, 219, .50); -moz-box-shadow: 0em -0.5em 1em rgba(85, 219, 219, .50); box-shadow: 0em -0.5em 1em rgba(85, 219, 219, .50); } .shadow_top_glassyPaleTurquoise4a, .hover_shadow_top_glassyPaleTurquoise4a:hover, .active_shadow_top_glassyPaleTurquoise4a:active:hover { -webkit-box-shadow: 0em -0.5em 1em rgba(60, 214, 214, .63); -moz-box-shadow: 0em -0.5em 1em rgba(60, 214, 214, .63); box-shadow: 0em -0.5em 1em rgba(60, 214, 214, .63); } .shadow_top_glassyPaleTurquoise4s, .hover_shadow_top_glassyPaleTurquoise4s:hover, .active_shadow_top_glassyPaleTurquoise4s:active:hover { -webkit-box-shadow: 0em -0.5em 1em rgba(60, 214, 214, .78); -moz-box-shadow: 0em -0.5em 1em rgba(60, 214, 214, .78); box-shadow: 0em -0.5em 1em rgba(60, 214, 214, .78); } /* -------------------------- shadow bottom settings --------------------------------*/ .shadow_bottom_glassyPaleTurquoise4, .hover_shadow_bottom_glassyPaleTurquoise4:hover, .active_shadow_bottom_glassyPaleTurquoise4:active:hover { -webkit-box-shadow: 0em 0.5em 1em rgba(44, 209, 209, .39); -moz-box-shadow: 0em 0.5em 1em rgba(44, 209, 209, .39); box-shadow: 0em 0.5em 1em rgba(44, 209, 209, .39); } .shadow_bottom_glassyPaleTurquoise4h, .hover_shadow_bottom_glassyPaleTurquoise4h:hover, .active_shadow_bottom_glassyPaleTurquoise4h:active:hover { -webkit-box-shadow: 0em 0.5em 1em rgba(85, 219, 219, .50); -moz-box-shadow: 0em 0.5em 1em rgba(85, 219, 219, .50); box-shadow: 0em 0.5em 1em rgba(85, 219, 219, .50); } .shadow_bottom_glassyPaleTurquoise4a, .hover_shadow_bottom_glassyPaleTurquoise4a:hover, .active_shadow_bottom_glassyPaleTurquoise4a:active:hover { -webkit-box-shadow: 0em 0.5em 1em rgba(60, 214, 214, .63); -moz-box-shadow: 0em 0.5em 1em rgba(60, 214, 214, .63); box-shadow: 0em 0.5em 1em rgba(60, 214, 214, .63); } .shadow_bottom_glassyPaleTurquoise4s, .hover_shadow_bottom_glassyPaleTurquoise4s:hover, .active_shadow_bottom_glassyPaleTurquoise4s:active:hover { -webkit-box-shadow: 0em 0.5em 1em rgba(60, 214, 214, .78); -moz-box-shadow: 0em 0.5em 1em rgba(60, 214, 214, .78); box-shadow: 0em 0.5em 1em rgba(60, 214, 214, .78); } /* -------------------------- shadow top_left settings --------------------------------*/ .shadow_top_left_glassyPaleTurquoise4, .hover_shadow_top_left_glassyPaleTurquoise4:hover, .active_shadow_top_left_glassyPaleTurquoise4:active:hover { -webkit-box-shadow: -0.5em -0.5em 1em rgba(44, 209, 209, .39); -moz-box-shadow: -0.5em -0.5em 1em rgba(44, 209, 209, .39); box-shadow: -0.5em -0.5em 1em rgba(44, 209, 209, .39); } .shadow_top_left_glassyPaleTurquoise4h, .hover_shadow_top_left_glassyPaleTurquoise4h:hover, .active_shadow_top_left_glassyPaleTurquoise4h:active:hover { -webkit-box-shadow: -0.5em -0.5em 1em rgba(85, 219, 219, .50); -moz-box-shadow: -0.5em -0.5em 1em rgba(85, 219, 219, .50); box-shadow: -0.5em -0.5em 1em rgba(85, 219, 219, .50); } .shadow_top_left_glassyPaleTurquoise4a, .hover_shadow_top_left_glassyPaleTurquoise4a:hover, .active_shadow_top_left_glassyPaleTurquoise4a:active:hover { -webkit-box-shadow: -0.5em -0.5em 1em rgba(60, 214, 214, .63); -moz-box-shadow: -0.5em -0.5em 1em rgba(60, 214, 214, .63); box-shadow: -0.5em -0.5em 1em rgba(60, 214, 214, .63); } .shadow_top_left_glassyPaleTurquoise4s, .hover_shadow_top_left_glassyPaleTurquoise4s:hover, .active_shadow_top_left_glassyPaleTurquoise4s:active:hover { -webkit-box-shadow: -0.5em -0.5em 1em rgba(60, 214, 214, .78); -moz-box-shadow: -0.5em -0.5em 1em rgba(60, 214, 214, .78); box-shadow: -0.5em -0.5em 1em rgba(60, 214, 214, .78); } /* -------------------------- shadow top_right settings --------------------------------*/ .shadow_top_right_glassyPaleTurquoise4, .hover_shadow_top_right_glassyPaleTurquoise4:hover, .active_shadow_top_right_glassyPaleTurquoise4:active:hover { -webkit-box-shadow: 0.5em -0.5em 1em rgba(44, 209, 209, .39); -moz-box-shadow: 0.5em -0.5em 1em rgba(44, 209, 209, .39); box-shadow: 0.5em -0.5em 1em rgba(44, 209, 209, .39); } .shadow_top_right_glassyPaleTurquoise4h, .hover_shadow_top_right_glassyPaleTurquoise4h:hover, .active_shadow_top_right_glassyPaleTurquoise4h:active:hover { -webkit-box-shadow: 0.5em -0.5em 1em rgba(85, 219, 219, .50); -moz-box-shadow: 0.5em -0.5em 1em rgba(85, 219, 219, .50); box-shadow: 0.5em -0.5em 1em rgba(85, 219, 219, .50); } .shadow_top_right_glassyPaleTurquoise4a, .hover_shadow_top_right_glassyPaleTurquoise4a:hover, .active_shadow_top_right_glassyPaleTurquoise4a:active:hover { -webkit-box-shadow: 0.5em -0.5em 1em rgba(60, 214, 214, .63); -moz-box-shadow: 0.5em -0.5em 1em rgba(60, 214, 214, .63); box-shadow: 0.5em -0.5em 1em rgba(60, 214, 214, .63); } .shadow_top_right_glassyPaleTurquoise4s, .hover_shadow_top_right_glassyPaleTurquoise4s:hover, .active_shadow_top_right_glassyPaleTurquoise4s:active:hover { -webkit-box-shadow: 0.5em -0.5em 1em rgba(60, 214, 214, .78); -moz-box-shadow: 0.5em -0.5em 1em rgba(60, 214, 214, .78); box-shadow: 0.5em -0.5em 1em rgba(60, 214, 214, .78); } /* -------------------------- shadow bottom_left settings --------------------------------*/ .shadow_bottom_left_glassyPaleTurquoise4, .hover_shadow_bottom_left_glassyPaleTurquoise4:hover, .active_shadow_bottom_left_glassyPaleTurquoise4:active:hover { -webkit-box-shadow: -0.5em 0.5em 1em rgba(44, 209, 209, .39); -moz-box-shadow: -0.5em 0.5em 1em rgba(44, 209, 209, .39); box-shadow: -0.5em 0.5em 1em rgba(44, 209, 209, .39); } .shadow_bottom_left_glassyPaleTurquoise4h, .hover_shadow_bottom_left_glassyPaleTurquoise4h:hover, .active_shadow_bottom_left_glassyPaleTurquoise4h:active:hover { -webkit-box-shadow: -0.5em 0.5em 1em rgba(85, 219, 219, .50); -moz-box-shadow: -0.5em 0.5em 1em rgba(85, 219, 219, .50); box-shadow: -0.5em 0.5em 1em rgba(85, 219, 219, .50); } .shadow_bottom_left_glassyPaleTurquoise4a, .hover_shadow_bottom_left_glassyPaleTurquoise4a:hover, .active_shadow_bottom_left_glassyPaleTurquoise4a:active:hover { -webkit-box-shadow: -0.5em 0.5em 1em rgba(60, 214, 214, .63); -moz-box-shadow: -0.5em 0.5em 1em rgba(60, 214, 214, .63); box-shadow: -0.5em 0.5em 1em rgba(60, 214, 214, .63); } .shadow_bottom_left_glassyPaleTurquoise4s, .hover_shadow_bottom_left_glassyPaleTurquoise4s:hover, .active_shadow_bottom_left_glassyPaleTurquoise4s:active:hover { -webkit-box-shadow: -0.5em 0.5em 1em rgba(60, 214, 214, .78); -moz-box-shadow: -0.5em 0.5em 1em rgba(60, 214, 214, .78); box-shadow: -0.5em 0.5em 1em rgba(60, 214, 214, .78); } /* -------------------------- shadow bottom_right settings --------------------------------*/ .shadow_bottom_right_glassyPaleTurquoise4, .hover_shadow_bottom_right_glassyPaleTurquoise4:hover, .active_shadow_bottom_right_glassyPaleTurquoise4:active:hover { -webkit-box-shadow: 0.5em 0.5em 1em rgba(44, 209, 209, .39); -moz-box-shadow: 0.5em 0.5em 1em rgba(44, 209, 209, .39); box-shadow: 0.5em 0.5em 1em rgba(44, 209, 209, .39); } .shadow_bottom_right_glassyPaleTurquoise4h, .hover_shadow_bottom_right_glassyPaleTurquoise4h:hover, .active_shadow_bottom_right_glassyPaleTurquoise4h:active:hover { -webkit-box-shadow: 0.5em 0.5em 1em rgba(85, 219, 219, .50); -moz-box-shadow: 0.5em 0.5em 1em rgba(85, 219, 219, .50); box-shadow: 0.5em 0.5em 1em rgba(85, 219, 219, .50); } .shadow_bottom_right_glassyPaleTurquoise4a, .hover_shadow_bottom_right_glassyPaleTurquoise4a:hover, .active_shadow_bottom_right_glassyPaleTurquoise4a:active:hover { -webkit-box-shadow: 0.5em 0.5em 1em rgba(60, 214, 214, .63); -moz-box-shadow: 0.5em 0.5em 1em rgba(60, 214, 214, .63); box-shadow: 0.5em 0.5em 1em rgba(60, 214, 214, .63); } .shadow_bottom_right_glassyPaleTurquoise4s, .hover_shadow_bottom_right_glassyPaleTurquoise4s:hover, .active_shadow_bottom_right_glassyPaleTurquoise4s:active:hover { -webkit-box-shadow: 0.5em 0.5em 1em rgba(60, 214, 214, .78); -moz-box-shadow: 0.5em 0.5em 1em rgba(60, 214, 214, .78); box-shadow: 0.5em 0.5em 1em rgba(60, 214, 214, .78); }
widgets/common/assets/gradients/glassy/glassyPaleTurquoise/glassyPaleTurquoise4.css
.background_glassyPaleTurquoise4, .hover_background_glassyPaleTurquoise4:hover, .active_background_glassyPaleTurquoise4:active:hover { background: #2cd1d1; background-image: -moz-linear-gradient(top, rgb(40, 188, 188) 0%, rgb(36, 167, 167) 50%, rgb(31, 146, 146) 55%, rgb(44, 209, 209) 100%); background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(40, 188, 188)), color-stop(50%, rgb(36, 167, 167)), color-stop(55%, rgb(31, 146, 146)), color-stop(100%, rgb(44, 209, 209))); background-image: -webkit-linear-gradient(top, rgb(40, 188, 188) 0%, rgb(36, 167, 167) 50%, rgb(31, 146, 146) 55%, rgb(44, 209, 209) 100%); background-image: -o-linear-gradient(top, rgb(40, 188, 188) 0%, rgb(36, 167, 167) 50%, rgb(31, 146, 146) 55%, rgb(44, 209, 209) 100%); background-image: -ms-linear-gradient(top, rgb(40, 188, 188) 0%, rgb(36, 167, 167) 50%, rgb(31, 146, 146) 55%, rgb(44, 209, 209) 100%); background-image: linear-gradient(to bottom, rgb(40, 188, 188) 0%, rgb(36, 167, 167) 50%, rgb(31, 146, 146) 55%, rgb(44, 209, 209) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#28bcbc', endColorstr='#2cd1d1',GradientType=0 ); } .background_glassyPaleTurquoise4h, .hover_background_glassyPaleTurquoise4h:hover, .active_background_glassyPaleTurquoise4h:active:hover { background: #2cd1d1; background-image: -moz-linear-gradient(top, rgb(60, 214, 214) 0%, rgb(43, 201, 201) 50%, rgb(37, 176, 176) 55%, rgb(85, 219, 219) 100%); background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(60, 214, 214)), color-stop(50%, rgb(43, 201, 201)), color-stop(55%, rgb(37, 176, 176)), color-stop(100%, rgb(85, 219, 219))); background-image: -webkit-linear-gradient(top, rgb(60, 214, 214) 0%, rgb(43, 201, 201) 50%, rgb(37, 176, 176) 55%, rgb(85, 219, 219) 100%); background-image: -o-linear-gradient(top, rgb(60, 214, 214) 0%, rgb(43, 201, 201) 50%, rgb(37, 176, 176) 55%, rgb(85, 219, 219) 100%); background-image: -ms-linear-gradient(top, rgb(60, 214, 214) 0%, rgb(43, 201, 201) 50%, rgb(37, 176, 176) 55%, rgb(85, 219, 219) 100%); background-image: linear-gradient(to bottom, rgb(60, 214, 214) 0%, rgb(43, 201, 201) 50%, rgb(37, 176, 176) 55%, rgb(85, 219, 219) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3cd6d6', endColorstr='#55dbdb',GradientType=0 ); } .background_glassyPaleTurquoise4a, .hover_background_glassyPaleTurquoise4a:hover, .active_background_glassyPaleTurquoise4a:active:hover { background: #2cd1d1; background-image: -moz-linear-gradient(top, rgb(85, 219, 219) 0%, rgb(37, 176, 176) 50%, rgb(43, 201, 201) 55%, rgb(60, 214, 214) 100%); background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(85, 219, 219)), color-stop(50%, rgb(37, 176, 176)), color-stop(55%, rgb(43, 201, 201)), color-stop(100%, rgb(60, 214, 214))); background-image: -webkit-linear-gradient(top, rgb(85, 219, 219) 0%, rgb(37, 176, 176) 50%, rgb(43, 201, 201) 55%, rgb(60, 214, 214) 100%); background-image: -o-linear-gradient(top, rgb(85, 219, 219) 0%, rgb(37, 176, 176) 50%, rgb(43, 201, 201) 55%, rgb(60, 214, 214) 100%); background-image: -ms-linear-gradient(top, rgb(85, 219, 219) 0%, rgb(37, 176, 176) 50%, rgb(43, 201, 201) 55%, rgb(60, 214, 214) 100%); background-image: linear-gradient(to bottom, rgb(85, 219, 219) 0%, rgb(37, 176, 176) 50%, rgb(43, 201, 201) 55%, rgb(60, 214, 214) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#55dbdb', endColorstr='#3cd6d6',GradientType=0 ); } .background_glassyPaleTurquoise4s, .hover_background_glassyPaleTurquoise4s:hover, .active_background_glassyPaleTurquoise4s:active:hover { background: #2cd1d1; background-image: -moz-linear-gradient(top, rgb(117, 226, 226) 0%, rgb(85, 219, 219) 50%, rgb(54, 212, 212) 55%, rgb(148, 232, 232) 100%); background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(117, 226, 226)), color-stop(50%, rgb(85, 219, 219)), color-stop(55%, rgb(54, 212, 212)), color-stop(100%, rgb(148, 232, 232))); background-image: -webkit-linear-gradient(top, rgb(117, 226, 226) 0%, rgb(85, 219, 219) 50%, rgb(54, 212, 212) 55%, rgb(148, 232, 232) 100%); background-image: -o-linear-gradient(top, rgb(117, 226, 226) 0%, rgb(85, 219, 219) 50%, rgb(54, 212, 212) 55%, rgb(148, 232, 232) 100%); background-image: -ms-linear-gradient(top, rgb(117, 226, 226) 0%, rgb(85, 219, 219) 50%, rgb(54, 212, 212) 55%, rgb(148, 232, 232) 100%); background-image: linear-gradient(to bottom, rgb(117, 226, 226) 0%, rgb(85, 219, 219) 50%, rgb(54, 212, 212) 55%, rgb(148, 232, 232) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#75e2e2', endColorstr='#94e8e8',GradientType=0 ); } .background_color_glassyPaleTurquoise4, .hover_background_color_glassyPaleTurquoise4:hover, .active_background_color_glassyPaleTurquoise4:active:hover { background-color:#2cd1d1; } .background_first_color_glassyPaleTurquoise4, .hover_background_first_color_glassyPaleTurquoise4:hover, .active_background_first_color_glassyPaleTurquoise4:active:hover { background-color:#28bcbc; } .background_last_color_glassyPaleTurquoise4, .hover_background_last_color_glassyPaleTurquoise4:hover, .active_background_color_last_glassyPaleTurquoise4:active:hover { background-color:#2cd1d1; } /* ------------------------------ color settings -------------------------------*/ .color_glassyPaleTurquoise4, .hover_color_glassyPaleTurquoise4:hover, .active_color_glassyPaleTurquoise4:active:hover { color: #282828; } .color_glassyPaleTurquoise4h, .hover_color_glassyPaleTurquoise4h:hover, .active_color_glassyPaleTurquoise4h:active:hover { color: #282828; } .color_glassyPaleTurquoise4a, .hover_color_glassyPaleTurquoise4a:hover, .active_color_glassyPaleTurquoise4a:active:hover { color: #ff0; } .color_glassyPaleTurquoise4s, .hover_color_glassyPaleTurquoise4s:hover, .active_color_glassyPaleTurquoise4s:active:hover { color: #dd0; } /* -------------------------- border color settings -----------------------------*/ .border_glassyPaleTurquoise4, .hover_border_glassyPaleTurquoise4:hover, .active_border_glassyPaleTurquoise4:active:hover { border-color: #209797 #1b7e7e #1b7e7e #209797; } .border_glassyPaleTurquoise4h, .hover_border_glassyPaleTurquoise4h:hover, .active_border_glassyPaleTurquoise4h:active:hover { border-color: #209797 #1b7e7e #1b7e7e #209797; } .border_glassyPaleTurquoise4a, .hover_border_glassyPaleTurquoise4a:hover, .active_border_glassyPaleTurquoise4a:active:hover { border-color: #197575 #197575 #197575 #197575; } .border_glassyPaleTurquoise4s, .hover_border_glassyPaleTurquoise4s:hover, .active_border_glassyPaleTurquoise4s:active:hover { border-color: #197575 #197575 #197575 #197575; } /* -------------------------- shadow expand settings --------------------------------*/ .shadow_expand_glassyPaleTurquoise4, .hover_shadow_expand_glassyPaleTurquoise4:hover, .active_shadow_expand_glassyPaleTurquoise4:active:hover { -webkit-box-shadow: 0em 0em 1em 0.25em rgba(44, 209, 209, .39); -moz-box-shadow: 0em 0em 1em 0.25em rgba(44, 209, 209, .39); box-shadow: 0em 0em 1em 0.25em rgba(44, 209, 209, .39); } .shadow_expand_glassyPaleTurquoise4h, .hover_shadow_expand_glassyPaleTurquoise4h:hover, .active_shadow_expand_glassyPaleTurquoise4h:active:hover { -webkit-box-shadow: 0em 0em 1em 0.25em rgba(85, 219, 219, .50); -moz-box-shadow: 0em 0em 1em 0.25em rgba(85, 219, 219, .50); box-shadow: 0em 0em 1em 0.25em rgba(85, 219, 219, .50); } .shadow_expand_glassyPaleTurquoise4a, .hover_shadow_expand_glassyPaleTurquoise4a:hover, .active_shadow_expand_glassyPaleTurquoise4a:active:hover { -webkit-box-shadow: 0em 0em 1em 0.25em rgba(60, 214, 214, .63); -moz-box-shadow: 0em 0em 1em 0.25em rgba(60, 214, 214, .63); box-shadow: 0em 0em 1em 0.25em rgba(60, 214, 214, .63); } .shadow_expand_glassyPaleTurquoise4s, .hover_shadow_expand_glassyPaleTurquoise4s:hover, .active_shadow_expand_glassyPaleTurquoise4s:active:hover { -webkit-box-shadow: 0em 0em 1em 0.25em rgba(60, 214, 214, .78); -moz-box-shadow: 0em 0em 1em 0.25em rgba(60, 214, 214, .78); box-shadow: 0em 0em 1em 0.25em rgba(60, 214, 214, .78); } /* -------------------------- shadow left settings --------------------------------*/ .shadow_left_glassyPaleTurquoise4, .hover_shadow_left_glassyPaleTurquoise4:hover, .active_shadow_left_glassyPaleTurquoise4:active:hover { -webkit-box-shadow: -0.5em -0.5em 1em rgba(44, 209, 209, .39); -moz-box-shadow: -0.5em -0.5em 1em rgba(44, 209, 209, .39); box-shadow: -0.5em -0.5em 1em rgba(44, 209, 209, .39); } .shadow_left_glassyPaleTurquoise4h, .hover_shadow_left_glassyPaleTurquoise4h:hover, .active_shadow_left_glassyPaleTurquoise4h:active:hover { -webkit-box-shadow: -0.5em -0.5em 1em rgba(85, 219, 219, .50); -moz-box-shadow: -0.5em -0.5em 1em rgba(85, 219, 219, .50); box-shadow: -0.5em -0.5em 1em rgba(85, 219, 219, .50); } .shadow_left_glassyPaleTurquoise4a, .hover_shadow_left_glassyPaleTurquoise4a:hover, .active_shadow_left_glassyPaleTurquoise4a:active:hover { -webkit-box-shadow: -0.5em -0.5em 1em rgba(60, 214, 214, .63); -moz-box-shadow: -0.5em -0.5em 1em rgba(60, 214, 214, .63); box-shadow: -0.5em -0.5em 1em rgba(60, 214, 214, .63); } .shadow_left_glassyPaleTurquoise4s, .hover_shadow_left_glassyPaleTurquoise4s:hover, .active_shadow_left_glassyPaleTurquoise4s:active:hover { -webkit-box-shadow: -0.5em -0.5em 1em rgba(60, 214, 214, .78); -moz-box-shadow: -0.5em -0.5em 1em rgba(60, 214, 214, .78); box-shadow: -0.5em -0.5em 1em rgba(60, 214, 214, .78); } /* -------------------------- shadow right settings --------------------------------*/ .shadow_right_glassyPaleTurquoise4, .hover_shadow_right_glassyPaleTurquoise4:hover, .active_shadow_right_glassyPaleTurquoise4:active:hover { -webkit-box-shadow: 0.5em 0em 1em rgba(44, 209, 209, .39); -moz-box-shadow: 0.5em 0em 1em rgba(44, 209, 209, .39); box-shadow: 0.5em 0em 1em rgba(44, 209, 209, .39); } .shadow_right_glassyPaleTurquoise4h, .hover_shadow_right_glassyPaleTurquoise4h:hover, .active_shadow_right_glassyPaleTurquoise4h:active:hover { -webkit-box-shadow: 0.5em 0em 1em rgba(85, 219, 219, .50); -moz-box-shadow: 0.5em 0em 1em rgba(85, 219, 219, .50); box-shadow: 0.5em 0em 1em rgba(85, 219, 219, .50); } .shadow_right_glassyPaleTurquoise4a, .hover_shadow_right_glassyPaleTurquoise4a:hover, .active_shadow_right_glassyPaleTurquoise4a:active:hover { -webkit-box-shadow: 0.5em 0em 1em rgba(60, 214, 214, .63); -moz-box-shadow: 0.5em 0em 1em rgba(60, 214, 214, .63); box-shadow: 0.5em 0em 1em rgba(60, 214, 214, .63); } .shadow_right_glassyPaleTurquoise4s, .hover_shadow_right_glassyPaleTurquoise4s:hover, .active_shadow_right_glassyPaleTurquoise4s:active:hover { -webkit-box-shadow: 0.5em 0em 1em rgba(60, 214, 214, .78); -moz-box-shadow: 0.5em 0em 1em rgba(60, 214, 214, .78); box-shadow: 0.5em 0em 1em rgba(60, 214, 214, .78); } /* -------------------------- shadow top settings --------------------------------*/ .shadow_top_glassyPaleTurquoise4, .hover_shadow_top_glassyPaleTurquoise4:hover, .active_shadow_top_glassyPaleTurquoise4:active:hover { -webkit-box-shadow: 0em -0.5em 1em rgba(44, 209, 209, .39); -moz-box-shadow: 0em -0.5em 1em rgba(44, 209, 209, .39); box-shadow: 0em -0.5em 1em rgba(44, 209, 209, .39); } .shadow_top_glassyPaleTurquoise4h, .hover_shadow_top_glassyPaleTurquoise4h:hover, .active_shadow_top_glassyPaleTurquoise4h:active:hover { -webkit-box-shadow: 0em -0.5em 1em rgba(85, 219, 219, .50); -moz-box-shadow: 0em -0.5em 1em rgba(85, 219, 219, .50); box-shadow: 0em -0.5em 1em rgba(85, 219, 219, .50); } .shadow_top_glassyPaleTurquoise4a, .hover_shadow_top_glassyPaleTurquoise4a:hover, .active_shadow_top_glassyPaleTurquoise4a:active:hover { -webkit-box-shadow: 0em -0.5em 1em rgba(60, 214, 214, .63); -moz-box-shadow: 0em -0.5em 1em rgba(60, 214, 214, .63); box-shadow: 0em -0.5em 1em rgba(60, 214, 214, .63); } .shadow_top_glassyPaleTurquoise4s, .hover_shadow_top_glassyPaleTurquoise4s:hover, .active_shadow_top_glassyPaleTurquoise4s:active:hover { -webkit-box-shadow: 0em -0.5em 1em rgba(60, 214, 214, .78); -moz-box-shadow: 0em -0.5em 1em rgba(60, 214, 214, .78); box-shadow: 0em -0.5em 1em rgba(60, 214, 214, .78); } /* -------------------------- shadow bottom settings --------------------------------*/ .shadow_bottom_glassyPaleTurquoise4, .hover_shadow_bottom_glassyPaleTurquoise4:hover, .active_shadow_bottom_glassyPaleTurquoise4:active:hover { -webkit-box-shadow: 0em 0.5em 1em rgba(44, 209, 209, .39); -moz-box-shadow: 0em 0.5em 1em rgba(44, 209, 209, .39); box-shadow: 0em 0.5em 1em rgba(44, 209, 209, .39); } .shadow_bottom_glassyPaleTurquoise4h, .hover_shadow_bottom_glassyPaleTurquoise4h:hover, .active_shadow_bottom_glassyPaleTurquoise4h:active:hover { -webkit-box-shadow: 0em 0.5em 1em rgba(85, 219, 219, .50); -moz-box-shadow: 0em 0.5em 1em rgba(85, 219, 219, .50); box-shadow: 0em 0.5em 1em rgba(85, 219, 219, .50); } .shadow_bottom_glassyPaleTurquoise4a, .hover_shadow_bottom_glassyPaleTurquoise4a:hover, .active_shadow_bottom_glassyPaleTurquoise4a:active:hover { -webkit-box-shadow: 0em 0.5em 1em rgba(60, 214, 214, .63); -moz-box-shadow: 0em 0.5em 1em rgba(60, 214, 214, .63); box-shadow: 0em 0.5em 1em rgba(60, 214, 214, .63); } .shadow_bottom_glassyPaleTurquoise4s, .hover_shadow_bottom_glassyPaleTurquoise4s:hover, .active_shadow_bottom_glassyPaleTurquoise4s:active:hover { -webkit-box-shadow: 0em 0.5em 1em rgba(60, 214, 214, .78); -moz-box-shadow: 0em 0.5em 1em rgba(60, 214, 214, .78); box-shadow: 0em 0.5em 1em rgba(60, 214, 214, .78); } /* -------------------------- shadow top_left settings --------------------------------*/ .shadow_top_left_glassyPaleTurquoise4, .hover_shadow_top_left_glassyPaleTurquoise4:hover, .active_shadow_top_left_glassyPaleTurquoise4:active:hover { -webkit-box-shadow: -0.5em -0.5em 1em rgba(44, 209, 209, .39); -moz-box-shadow: -0.5em -0.5em 1em rgba(44, 209, 209, .39); box-shadow: -0.5em -0.5em 1em rgba(44, 209, 209, .39); } .shadow_top_left_glassyPaleTurquoise4h, .hover_shadow_top_left_glassyPaleTurquoise4h:hover, .active_shadow_top_left_glassyPaleTurquoise4h:active:hover { -webkit-box-shadow: -0.5em -0.5em 1em rgba(85, 219, 219, .50); -moz-box-shadow: -0.5em -0.5em 1em rgba(85, 219, 219, .50); box-shadow: -0.5em -0.5em 1em rgba(85, 219, 219, .50); } .shadow_top_left_glassyPaleTurquoise4a, .hover_shadow_top_left_glassyPaleTurquoise4a:hover, .active_shadow_top_left_glassyPaleTurquoise4a:active:hover { -webkit-box-shadow: -0.5em -0.5em 1em rgba(60, 214, 214, .63); -moz-box-shadow: -0.5em -0.5em 1em rgba(60, 214, 214, .63); box-shadow: -0.5em -0.5em 1em rgba(60, 214, 214, .63); } .shadow_top_left_glassyPaleTurquoise4s, .hover_shadow_top_left_glassyPaleTurquoise4s:hover, .active_shadow_top_left_glassyPaleTurquoise4s:active:hover { -webkit-box-shadow: -0.5em -0.5em 1em rgba(60, 214, 214, .78); -moz-box-shadow: -0.5em -0.5em 1em rgba(60, 214, 214, .78); box-shadow: -0.5em -0.5em 1em rgba(60, 214, 214, .78); } /* -------------------------- shadow top_right settings --------------------------------*/ .shadow_top_right_glassyPaleTurquoise4, .hover_shadow_top_right_glassyPaleTurquoise4:hover, .active_shadow_top_right_glassyPaleTurquoise4:active:hover { -webkit-box-shadow: 0.5em -0.5em 1em rgba(44, 209, 209, .39); -moz-box-shadow: 0.5em -0.5em 1em rgba(44, 209, 209, .39); box-shadow: 0.5em -0.5em 1em rgba(44, 209, 209, .39); } .shadow_top_right_glassyPaleTurquoise4h, .hover_shadow_top_right_glassyPaleTurquoise4h:hover, .active_shadow_top_right_glassyPaleTurquoise4h:active:hover { -webkit-box-shadow: 0.5em -0.5em 1em rgba(85, 219, 219, .50); -moz-box-shadow: 0.5em -0.5em 1em rgba(85, 219, 219, .50); box-shadow: 0.5em -0.5em 1em rgba(85, 219, 219, .50); } .shadow_top_right_glassyPaleTurquoise4a, .hover_shadow_top_right_glassyPaleTurquoise4a:hover, .active_shadow_top_right_glassyPaleTurquoise4a:active:hover { -webkit-box-shadow: 0.5em -0.5em 1em rgba(60, 214, 214, .63); -moz-box-shadow: 0.5em -0.5em 1em rgba(60, 214, 214, .63); box-shadow: 0.5em -0.5em 1em rgba(60, 214, 214, .63); } .shadow_top_right_glassyPaleTurquoise4s, .hover_shadow_top_right_glassyPaleTurquoise4s:hover, .active_shadow_top_right_glassyPaleTurquoise4s:active:hover { -webkit-box-shadow: 0.5em -0.5em 1em rgba(60, 214, 214, .78); -moz-box-shadow: 0.5em -0.5em 1em rgba(60, 214, 214, .78); box-shadow: 0.5em -0.5em 1em rgba(60, 214, 214, .78); } /* -------------------------- shadow bottom_left settings --------------------------------*/ .shadow_bottom_left_glassyPaleTurquoise4, .hover_shadow_bottom_left_glassyPaleTurquoise4:hover, .active_shadow_bottom_left_glassyPaleTurquoise4:active:hover { -webkit-box-shadow: -0.5em 0.5em 1em rgba(44, 209, 209, .39); -moz-box-shadow: -0.5em 0.5em 1em rgba(44, 209, 209, .39); box-shadow: -0.5em 0.5em 1em rgba(44, 209, 209, .39); } .shadow_bottom_left_glassyPaleTurquoise4h, .hover_shadow_bottom_left_glassyPaleTurquoise4h:hover, .active_shadow_bottom_left_glassyPaleTurquoise4h:active:hover { -webkit-box-shadow: -0.5em 0.5em 1em rgba(85, 219, 219, .50); -moz-box-shadow: -0.5em 0.5em 1em rgba(85, 219, 219, .50); box-shadow: -0.5em 0.5em 1em rgba(85, 219, 219, .50); } .shadow_bottom_left_glassyPaleTurquoise4a, .hover_shadow_bottom_left_glassyPaleTurquoise4a:hover, .active_shadow_bottom_left_glassyPaleTurquoise4a:active:hover { -webkit-box-shadow: -0.5em 0.5em 1em rgba(60, 214, 214, .63); -moz-box-shadow: -0.5em 0.5em 1em rgba(60, 214, 214, .63); box-shadow: -0.5em 0.5em 1em rgba(60, 214, 214, .63); } .shadow_bottom_left_glassyPaleTurquoise4s, .hover_shadow_bottom_left_glassyPaleTurquoise4s:hover, .active_shadow_bottom_left_glassyPaleTurquoise4s:active:hover { -webkit-box-shadow: -0.5em 0.5em 1em rgba(60, 214, 214, .78); -moz-box-shadow: -0.5em 0.5em 1em rgba(60, 214, 214, .78); box-shadow: -0.5em 0.5em 1em rgba(60, 214, 214, .78); } /* -------------------------- shadow bottom_right settings --------------------------------*/ .shadow_bottom_right_glassyPaleTurquoise4, .hover_shadow_bottom_right_glassyPaleTurquoise4:hover, .active_shadow_bottom_right_glassyPaleTurquoise4:active:hover { -webkit-box-shadow: 0.5em 0.5em 1em rgba(44, 209, 209, .39); -moz-box-shadow: 0.5em 0.5em 1em rgba(44, 209, 209, .39); box-shadow: 0.5em 0.5em 1em rgba(44, 209, 209, .39); } .shadow_bottom_right_glassyPaleTurquoise4h, .hover_shadow_bottom_right_glassyPaleTurquoise4h:hover, .active_shadow_bottom_right_glassyPaleTurquoise4h:active:hover { -webkit-box-shadow: 0.5em 0.5em 1em rgba(85, 219, 219, .50); -moz-box-shadow: 0.5em 0.5em 1em rgba(85, 219, 219, .50); box-shadow: 0.5em 0.5em 1em rgba(85, 219, 219, .50); } .shadow_bottom_right_glassyPaleTurquoise4a, .hover_shadow_bottom_right_glassyPaleTurquoise4a:hover, .active_shadow_bottom_right_glassyPaleTurquoise4a:active:hover { -webkit-box-shadow: 0.5em 0.5em 1em rgba(60, 214, 214, .63); -moz-box-shadow: 0.5em 0.5em 1em rgba(60, 214, 214, .63); box-shadow: 0.5em 0.5em 1em rgba(60, 214, 214, .63); } .shadow_bottom_right_glassyPaleTurquoise4s, .hover_shadow_bottom_right_glassyPaleTurquoise4s:hover, .active_shadow_bottom_right_glassyPaleTurquoise4s:active:hover { -webkit-box-shadow: 0.5em 0.5em 1em rgba(60, 214, 214, .78); -moz-box-shadow: 0.5em 0.5em 1em rgba(60, 214, 214, .78); box-shadow: 0.5em 0.5em 1em rgba(60, 214, 214, .78); }
0.53777
0.131396
body { font-size: 16px; line-height: 1.6; color: #333; overflow-x: hidden; } .main-container { margin: 0 auto; max-width: 1200px; padding: 0 10px 0 25px; } .ant-layout { background: #fff !important; } .mainLayout .ant-layout-header { background: #fff; padding: 0 10px 0 10px; height: auto; line-height: 1.6; } p { font-size: 16px; line-height: 1.6; } .bgGray { background: #fafafa; } /* title Container ------------ */ .titleContainer { text-align: center; position: relative; padding: 0 0 20px; margin: 0 0 40px; } .titleContainer:after { transform: translateX(-50%); content: ''; background: #1890ff; position: absolute; bottom: 0; left: 50%; height: 3px; width: 10px; } .titleContainer h2 { font-size: 28px; margin: 0; } /* header ------ */ .ant-layout-header { position: fixed; left: 0; right: 0; z-index: 999; } .header { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; } .header .logo { font-size: 22px; text-transform: uppercase; font-weight: 400; } .header .logo .fas { color: #1890ff; margin: 0 5px 0 0; font-size: 28px; } .header .logo a { color: #333; } .header .ant-anchor-wrapper { background: none; } .header .ant-anchor { display: flex; } .header .ant-anchor-ink { display: none; } .header .ant-anchor-link { padding: 0 20px; line-height: 1.4; position: relative; } .header .ant-anchor-link:before, .header .ant-anchor-link:after { content: ''; background: #1890ff; width: 1px; position: absolute; top: 2px; bottom: 2px; left: 30%; opacity: 0; transition: all 0.3s linear; } .header .ant-anchor-link:after { left: auto; right: 30%; } .header .ant-anchor-link.ant-anchor-link-active:before, .header .ant-anchor-link:hover:before { left: 5%; opacity: 1; } .header .ant-anchor-link.ant-anchor-link-active:after, .header .ant-anchor-link:hover:after { right: 5%; opacity: 1; } /* ant menu */ .header .ant-menu { border: 0; background: none !important; } .header .ant-menu li.ant-menu-item { position: relative; color: #333; } .header .ant-menu li.ant-menu-item:before, .header .ant-menu li.ant-menu-item:after { content: ''; background: #1890ff; width: 1px; position: absolute; top: 2px; bottom: 2px; left: 30%; opacity: 0; transition: all 0.3s linear; } .header .ant-menu li.ant-menu-item:after { left: auto; right: 30%; } .header .ant-menu li.ant-menu-item, .header .ant-menu li.ant-menu-item-selected { border: 0 !important; padding-left: 10px; padding-right: 10px; } .header .ant-menu li.ant-menu-item-selected, .header .ant-menu li.ant-menu-item:hover { color: #1890ff; background: none; } .header .ant-menu li.ant-menu-item-selected:before, .header .ant-menu li.ant-menu-item:hover:before { left: 5%; opacity: 1; } .header .ant-menu li.ant-menu-item-selected:after, .header .ant-menu li.ant-menu-item:hover:after { right: 5%; opacity: 1; } /* hero ---- */ .heroBlock { background: url('../assets/imgs/cityscape.png'); background-repeat: no-repeat; background-position: 40% 40%; background-size: cover; height: 95vh; } .heroBlock .main-container { display: block !important; } .heroBlock .ant-carousel, .heroBlock .ant-carousel div { height: 100%; padding-left: 2%; } .heroBlock .content { max-width: 800px; display: flex; flex-direction: column; justify-content: center; padding: 0 0 50px; } .heroBlock h3 { font-size: 30px; line-height: 1.2; margin: 0 0 30px; } .heroBlock p { margin: 0 0 30px; } .heroBlock .heroBtn { height: auto !important; } .heroBlock .heroBtn button, .heroBlock .heroBtn .fas { margin: 0 10px 0 0; } /* block ----- */ .block { padding: 60px 0; border-bottom: 1px solid #d9d9d9; } /* factors ----- */ .factorBlock .contentContainer { text-align: center; margin: 0 0 0px; padding: 0 20px 0 5px; } .factorBlock .icon { font-size: 40px; color: #1890ff; margin: 0 0 10px; } .factorBlock .content { text-align: center; } /* footer ------ */ .ant-layout-footer { background: rgb(12, 16, 54) !important; color: #fff !important; padding: 20px 0; text-align: center; } .footer-container { margin: 0 auto; max-width: 1200px; padding: 0 10px 0 25px; } .footer .logo { font-size: 22px; text-transform: uppercase; margin: 0 0 20px; } .footer .fas { color: #1890ff; font-size: 28px; margin: 0 5px 0 0; } .footer .logo a { color: #fff; } .footer .socials { list-style: none; display: flex; align-items: center; justify-content: center; padding: 0; font-size: 24px; } .footer .socials li { margin: 0 20px; } .footer .socials a { color: #fff; } .footer .socials a:hover { color: #1890ff; } .footer .goTop:hover { opacity: 0.7; }
src/components/App.css
body { font-size: 16px; line-height: 1.6; color: #333; overflow-x: hidden; } .main-container { margin: 0 auto; max-width: 1200px; padding: 0 10px 0 25px; } .ant-layout { background: #fff !important; } .mainLayout .ant-layout-header { background: #fff; padding: 0 10px 0 10px; height: auto; line-height: 1.6; } p { font-size: 16px; line-height: 1.6; } .bgGray { background: #fafafa; } /* title Container ------------ */ .titleContainer { text-align: center; position: relative; padding: 0 0 20px; margin: 0 0 40px; } .titleContainer:after { transform: translateX(-50%); content: ''; background: #1890ff; position: absolute; bottom: 0; left: 50%; height: 3px; width: 10px; } .titleContainer h2 { font-size: 28px; margin: 0; } /* header ------ */ .ant-layout-header { position: fixed; left: 0; right: 0; z-index: 999; } .header { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; } .header .logo { font-size: 22px; text-transform: uppercase; font-weight: 400; } .header .logo .fas { color: #1890ff; margin: 0 5px 0 0; font-size: 28px; } .header .logo a { color: #333; } .header .ant-anchor-wrapper { background: none; } .header .ant-anchor { display: flex; } .header .ant-anchor-ink { display: none; } .header .ant-anchor-link { padding: 0 20px; line-height: 1.4; position: relative; } .header .ant-anchor-link:before, .header .ant-anchor-link:after { content: ''; background: #1890ff; width: 1px; position: absolute; top: 2px; bottom: 2px; left: 30%; opacity: 0; transition: all 0.3s linear; } .header .ant-anchor-link:after { left: auto; right: 30%; } .header .ant-anchor-link.ant-anchor-link-active:before, .header .ant-anchor-link:hover:before { left: 5%; opacity: 1; } .header .ant-anchor-link.ant-anchor-link-active:after, .header .ant-anchor-link:hover:after { right: 5%; opacity: 1; } /* ant menu */ .header .ant-menu { border: 0; background: none !important; } .header .ant-menu li.ant-menu-item { position: relative; color: #333; } .header .ant-menu li.ant-menu-item:before, .header .ant-menu li.ant-menu-item:after { content: ''; background: #1890ff; width: 1px; position: absolute; top: 2px; bottom: 2px; left: 30%; opacity: 0; transition: all 0.3s linear; } .header .ant-menu li.ant-menu-item:after { left: auto; right: 30%; } .header .ant-menu li.ant-menu-item, .header .ant-menu li.ant-menu-item-selected { border: 0 !important; padding-left: 10px; padding-right: 10px; } .header .ant-menu li.ant-menu-item-selected, .header .ant-menu li.ant-menu-item:hover { color: #1890ff; background: none; } .header .ant-menu li.ant-menu-item-selected:before, .header .ant-menu li.ant-menu-item:hover:before { left: 5%; opacity: 1; } .header .ant-menu li.ant-menu-item-selected:after, .header .ant-menu li.ant-menu-item:hover:after { right: 5%; opacity: 1; } /* hero ---- */ .heroBlock { background: url('../assets/imgs/cityscape.png'); background-repeat: no-repeat; background-position: 40% 40%; background-size: cover; height: 95vh; } .heroBlock .main-container { display: block !important; } .heroBlock .ant-carousel, .heroBlock .ant-carousel div { height: 100%; padding-left: 2%; } .heroBlock .content { max-width: 800px; display: flex; flex-direction: column; justify-content: center; padding: 0 0 50px; } .heroBlock h3 { font-size: 30px; line-height: 1.2; margin: 0 0 30px; } .heroBlock p { margin: 0 0 30px; } .heroBlock .heroBtn { height: auto !important; } .heroBlock .heroBtn button, .heroBlock .heroBtn .fas { margin: 0 10px 0 0; } /* block ----- */ .block { padding: 60px 0; border-bottom: 1px solid #d9d9d9; } /* factors ----- */ .factorBlock .contentContainer { text-align: center; margin: 0 0 0px; padding: 0 20px 0 5px; } .factorBlock .icon { font-size: 40px; color: #1890ff; margin: 0 0 10px; } .factorBlock .content { text-align: center; } /* footer ------ */ .ant-layout-footer { background: rgb(12, 16, 54) !important; color: #fff !important; padding: 20px 0; text-align: center; } .footer-container { margin: 0 auto; max-width: 1200px; padding: 0 10px 0 25px; } .footer .logo { font-size: 22px; text-transform: uppercase; margin: 0 0 20px; } .footer .fas { color: #1890ff; font-size: 28px; margin: 0 5px 0 0; } .footer .logo a { color: #fff; } .footer .socials { list-style: none; display: flex; align-items: center; justify-content: center; padding: 0; font-size: 24px; } .footer .socials li { margin: 0 20px; } .footer .socials a { color: #fff; } .footer .socials a:hover { color: #1890ff; } .footer .goTop:hover { opacity: 0.7; }
0.403567
0.081337
html, body { margin: 0; font-size: 14px; font-family: system-ui, sans-serif; } .app { box-sizing: border-box; width: 100vw; height: 100vh; background: #f8f8f8; overflow: hidden; display: flex; flex-direction: column; --paper-accent: #37598c; } header.accent.paper { font-size: 18px; display: flex; flex-direction: row; text-align: center; justify-content: space-between; } header a { color: #fff; } .dashboard { display: flex; flex-direction: row; justify-content: space-between; height: 0; width: 100%; flex-grow: 1; flex-shrink: 1; } .sidebar { width: 500px; flex-shrink: 0; flex-grow: 0; display: flex; flex-direction: column; } .searchbar input { font-size: 18px; padding: .5em .8em; width: calc(100% - 16px); margin: 8px; } .heatmap { width: 0; flex-shrink: 1; flex-grow: 1; height: 100%; } .heatmap canvas { background: #fff; height: calc(100% - 16px); width: calc(100% - 8px); margin: 8px 0 8px 8px; box-shadow: 0 5px 12px -2px rgb(0 0 0 / 40%); } .visits { overflow-y: auto; padding: 0 8px 8px 8px; } .visits:empty::after { content: 'No matches'; display: block; text-align: center; margin: 2em 0; font-weight: bold; color: var(--paper-accent); } .visit { margin-bottom: 6px; position: relative; } .visit-title { width: calc(100% - 2em); margin-bottom: 6px; } .visit .visit-url { font-size: .8em; word-break: break-all; } .visit .visit-url a { color: #777; text-decoration: none; } .visit .visit-url a:hover { text-decoration: underline; } .visit-count { position: absolute; top: .5em; right: 1em; font-weight: bold; color: var(--paper-accent); } .visit-histogram { height: 8px; display: flex; flex-direction: row; margin-top: 6px; } .visit-histogram .histo { width: 0; flex-grow: 1; background: var(--paper-accent); } .datetimecount { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 1000; padding: .4em .8em; background: rgba(255, 255, 255, .75); border-radius: 4px; box-shadow: 0 2px 6px rgba(0, 0, 0, .2); } .dashboard:not(.hover) .datetimecount { display: none; } .dtc-visits { color: var(--paper-accent); font-weight: bold; }
static/css/main.css
html, body { margin: 0; font-size: 14px; font-family: system-ui, sans-serif; } .app { box-sizing: border-box; width: 100vw; height: 100vh; background: #f8f8f8; overflow: hidden; display: flex; flex-direction: column; --paper-accent: #37598c; } header.accent.paper { font-size: 18px; display: flex; flex-direction: row; text-align: center; justify-content: space-between; } header a { color: #fff; } .dashboard { display: flex; flex-direction: row; justify-content: space-between; height: 0; width: 100%; flex-grow: 1; flex-shrink: 1; } .sidebar { width: 500px; flex-shrink: 0; flex-grow: 0; display: flex; flex-direction: column; } .searchbar input { font-size: 18px; padding: .5em .8em; width: calc(100% - 16px); margin: 8px; } .heatmap { width: 0; flex-shrink: 1; flex-grow: 1; height: 100%; } .heatmap canvas { background: #fff; height: calc(100% - 16px); width: calc(100% - 8px); margin: 8px 0 8px 8px; box-shadow: 0 5px 12px -2px rgb(0 0 0 / 40%); } .visits { overflow-y: auto; padding: 0 8px 8px 8px; } .visits:empty::after { content: 'No matches'; display: block; text-align: center; margin: 2em 0; font-weight: bold; color: var(--paper-accent); } .visit { margin-bottom: 6px; position: relative; } .visit-title { width: calc(100% - 2em); margin-bottom: 6px; } .visit .visit-url { font-size: .8em; word-break: break-all; } .visit .visit-url a { color: #777; text-decoration: none; } .visit .visit-url a:hover { text-decoration: underline; } .visit-count { position: absolute; top: .5em; right: 1em; font-weight: bold; color: var(--paper-accent); } .visit-histogram { height: 8px; display: flex; flex-direction: row; margin-top: 6px; } .visit-histogram .histo { width: 0; flex-grow: 1; background: var(--paper-accent); } .datetimecount { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 1000; padding: .4em .8em; background: rgba(255, 255, 255, .75); border-radius: 4px; box-shadow: 0 2px 6px rgba(0, 0, 0, .2); } .dashboard:not(.hover) .datetimecount { display: none; } .dtc-visits { color: var(--paper-accent); font-weight: bold; }
0.54819
0.095434
@-moz-document domain("weblio.jp") { /* The weblio pages that I primarily use are ejje.weblio.jp (意味 & 例文 tabs) www.weblio.jp (用語解説, 動画, 本・雑誌, 文献 & 全文検索 tabs) thesaurus.weblio.jp (類語辞典 & 対義語・反対語 tabs) and so these are the specific URLs (and tabs) on which I have tested this custom style. I use uBlock origin as well as a global css supplied by www.floppymoose.com so it is possible that some advertising that is successfully eliminated by either of those filters is not hidden by this custom style sheet when used on its own. (I did test with those disabled however, ad insertion tactics change so frequently that global filters seem to work better than css.) As with any user style this one may grow less effective if the target web pages are tweaked by the author. In the (unlikely) event that I stop frequenting the target web site then I am less likely to update the style. My approach is to use the lowest specificity that satisfies my goal. To be honest, I get confused trying to construct selectors at higher levels of specificity and I have yet to find a decent tutorial on the subject to cure me of that handicap! And besides, the precedence of user !important rules over author !important rules should make specificity an unnecessary refinement except in those unusual cases where useful content is mixed in with "less-useful" content. Usually my goal is to eliminate distractions, whether those be ads or click bait for related content regardless of how tenuous that "relationship" might be. I reluctantly hide copyright and other footer blocks because I only ever refer to them when I first start using a site or if I feel the need to provide feedback to the site admin. When that need arises it is easiest to simply disable stylish to gain visibility of whatever I've hidden. */ #pinned-content-placeholder, #outerSideRight, #outerSideLeft, #footBottomWrp, #footFixBar, #footWrp, #footBox, #formBoxR, #logoBarR, #headTC, #headTR, #footCr, #topicR, #turbo, #tpcTR, #adFt, #side, .addToSlBtnCntner, .outsideLlTable, .outerSideBlock, .pin-icon-cell, .mainLeftAdWrp, .proBkLinkBox, .cntDadScWww, .adsbygoogle, .formBoxRGHT, .formBoxRd, .sideBlock, .hlt_CPRHT, .linkTagMR, .linkTagR, .copyRtWrp, .copyRtTbl, .copyRtHrB, .copyRtHr, .copyRt, .summaryR, .summaryC, .adHIWrp, .topicR {display: none !important;} #base, #main {width: 100% !important;} .mainBlock, .wrp {width: 98% !important;} #cont {width: 87% !important;} }
data/usercss/157518.user.css
@-moz-document domain("weblio.jp") { /* The weblio pages that I primarily use are ejje.weblio.jp (意味 & 例文 tabs) www.weblio.jp (用語解説, 動画, 本・雑誌, 文献 & 全文検索 tabs) thesaurus.weblio.jp (類語辞典 & 対義語・反対語 tabs) and so these are the specific URLs (and tabs) on which I have tested this custom style. I use uBlock origin as well as a global css supplied by www.floppymoose.com so it is possible that some advertising that is successfully eliminated by either of those filters is not hidden by this custom style sheet when used on its own. (I did test with those disabled however, ad insertion tactics change so frequently that global filters seem to work better than css.) As with any user style this one may grow less effective if the target web pages are tweaked by the author. In the (unlikely) event that I stop frequenting the target web site then I am less likely to update the style. My approach is to use the lowest specificity that satisfies my goal. To be honest, I get confused trying to construct selectors at higher levels of specificity and I have yet to find a decent tutorial on the subject to cure me of that handicap! And besides, the precedence of user !important rules over author !important rules should make specificity an unnecessary refinement except in those unusual cases where useful content is mixed in with "less-useful" content. Usually my goal is to eliminate distractions, whether those be ads or click bait for related content regardless of how tenuous that "relationship" might be. I reluctantly hide copyright and other footer blocks because I only ever refer to them when I first start using a site or if I feel the need to provide feedback to the site admin. When that need arises it is easiest to simply disable stylish to gain visibility of whatever I've hidden. */ #pinned-content-placeholder, #outerSideRight, #outerSideLeft, #footBottomWrp, #footFixBar, #footWrp, #footBox, #formBoxR, #logoBarR, #headTC, #headTR, #footCr, #topicR, #turbo, #tpcTR, #adFt, #side, .addToSlBtnCntner, .outsideLlTable, .outerSideBlock, .pin-icon-cell, .mainLeftAdWrp, .proBkLinkBox, .cntDadScWww, .adsbygoogle, .formBoxRGHT, .formBoxRd, .sideBlock, .hlt_CPRHT, .linkTagMR, .linkTagR, .copyRtWrp, .copyRtTbl, .copyRtHrB, .copyRtHr, .copyRt, .summaryR, .summaryC, .adHIWrp, .topicR {display: none !important;} #base, #main {width: 100% !important;} .mainBlock, .wrp {width: 98% !important;} #cont {width: 87% !important;} }
0.235284
0.295112
background: #ffffff none repeat scroll 0 0; padding: 15px; } #settings-content { clear: both; content: ""; display: table; } #add_on_title { margin-bottom: 20px; } .add-on a { text-decoration: none; } .add-on h2 { color: #229DBF; font-size: 16px; margin-bottom: 9px; padding: 0 0 7px; line-height: 1.2; } .addon-descr { font-size: 13px; line-height: 18px; height: 100%; width: 53%; opacity: 0; position: absolute; top: 0; left: 0; padding: 8px 10px 10px; background: #23282D; color: #D1DDE0; -webkit-backface-visibility: hidden; -moz-backface-visibility: hidden; backface-visibility: hidden; -webkit-transform-origin: 0 0; -moz-transform-origin: 0 0; transform-origin: 0 0; -webkit-transform: rotateY(-90deg); -moz-transform: rotateY(-90deg); transform: rotateY(-90deg); -webkit-transition: -webkit-transform 0.4s, opacity 0.1s 0.3s; -moz-transition: -moz-transform 0.4s, opacity 0.1s 0.3s; transition: transform 0.4s, opacity 0.1s 0.3s; box-sizing: border-box; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; } .grid figcaption { position: absolute; top: 0; left: 0; padding: 20px; background: #2c3f52; color: #ed4e6e; } .addon, .addon-price { display: inline-block; margin-top: 15px; font-size: 15px; border: 1px solid #DCDCDC; font-weight: bold; } .addon { /*background: #FFFFFF url("images/Add_Ons.jpg") no-repeat 6px center;*/ color: #66686B; padding: 9px 12px 9px 45px; width: 100%; box-sizing: border-box; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; } .addon-price { background: #FFFFFF; color: #229CBF; padding: 9px 12px; } .add-on:hover .addon-price, .addon-price:hover { background: #229CBF; color: #DDECF1; } .add-on:hover .addon, .addon:hover { /*background: #23282D url("images/Add_Ons_hover.jpg") no-repeat 6px center;*/ color: #DDDEDE; } .addon span { border-left: 1px solid #A7A9AB; padding: 4px 10px 4px 10px; } .addon-descr span { padding: 5px 0 5px 10px; border-left: 1px solid #93CEE0; } a:focus { outline: none; box-shadow: none; } .add-on { width: 310px; height: 320px; float: left; margin-right: 40px; margin-bottom: 40px; -webkit-perspective: 1700px; -moz-perspective: 1700px; perspective: 1700px; -webkit-perspective-origin: 0 50%; -moz-perspective-origin: 0 50%; perspective-origin: 0 50%; position: relative; } .main-plugin .add-on { float: left; margin-right: 25px; height: auto; } #settings-content .addons_updates::after, #settings-content .main-plugin::after, #settings-content::after { clear: both; content: ""; display: table; } .figure { -webkit-transform-style: preserve-3d; -moz-transform-style: preserve-3d; transform-style: preserve-3d; position: relative; width: 100%; height: 232px; margin: 0; } .figure-img { overflow: hidden; } .figure-img img { -webkit-transition: -webkit-transform 0.4s; -moz-transition: -moz-transform 0.4s; transition: transform 0.4s; } .figure:hover img { -webkit-transform: translateX(25%); -moz-transform: translateX(25%); -ms-transform: translateX(25%); transform: translateX(25%); } .figure:hover figcaption { opacity: 1; -webkit-transform: rotateY(0deg); -moz-transform: rotateY(0deg); transform: rotateY(0deg); -webkit-transition: -webkit-transform 0.4s, opacity 0.1s; -moz-transition: -moz-transform 0.4s, opacity 0.1s; transition: transform 0.4s, opacity 0.1s; } .addon-subtitle { font-size: 25px; border-bottom: 1px solid #C1C4C7; padding-bottom: 23px; } .main-plugin .main-plugin-img { float: left; margin-right: 2%; width: 26%; } .main-plugin .main-plugin-img img { max-width: 100%; } .main-plugin .main-plugin-info { float: left; } .main-plugin { margin-bottom: 25px; } .main-plugin_desc-cont p, .main-plugin_desc-cont { font-size: 14px; } .main-plugin-desc-info p { margin: 2px 0 13px; } .addons_updates .main-plugin-desc-info p { margin: 2px 0 4px; } .main-plugin-desc { margin-bottom: 12px; } .main-plugin-info h2 { padding: 0; line-height: 1; margin-bottom: 14px; } .main-plugin-info h2 a { color: #323A45; text-decoration: none; font-weight: bold; } .main-plugin-desc-info { border-bottom: 1px solid #C0C4C7; width: 71%; } .addons_updates .main-plugin-desc-info { border-bottom: 0; width: 100%; } .update-info { background: url("images/updates-icon.png") no-repeat; background-size: 15px 15px; background-position: center left; padding-left: 25px; color: #bc0b0b; } .update-info-a, .update-info-a:hover, .update-info-a:focus, .update-info-a:active { color: #bc0b0b; } .addons_updates .figure { margin-bottom: 10px; } .addons_updates .addon-descr-update { border-top: 1px solid #898989; padding-top: 6px; } .addons_updates h2 { color: #323A45; text-decoration: none; font-weight: bold; border-bottom: 0; padding-bottom: 0; margin-bottom: 0; } .more_updates { display: none; }
wp-content/plugins/gallery-ecommerce/update/style.css
background: #ffffff none repeat scroll 0 0; padding: 15px; } #settings-content { clear: both; content: ""; display: table; } #add_on_title { margin-bottom: 20px; } .add-on a { text-decoration: none; } .add-on h2 { color: #229DBF; font-size: 16px; margin-bottom: 9px; padding: 0 0 7px; line-height: 1.2; } .addon-descr { font-size: 13px; line-height: 18px; height: 100%; width: 53%; opacity: 0; position: absolute; top: 0; left: 0; padding: 8px 10px 10px; background: #23282D; color: #D1DDE0; -webkit-backface-visibility: hidden; -moz-backface-visibility: hidden; backface-visibility: hidden; -webkit-transform-origin: 0 0; -moz-transform-origin: 0 0; transform-origin: 0 0; -webkit-transform: rotateY(-90deg); -moz-transform: rotateY(-90deg); transform: rotateY(-90deg); -webkit-transition: -webkit-transform 0.4s, opacity 0.1s 0.3s; -moz-transition: -moz-transform 0.4s, opacity 0.1s 0.3s; transition: transform 0.4s, opacity 0.1s 0.3s; box-sizing: border-box; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; } .grid figcaption { position: absolute; top: 0; left: 0; padding: 20px; background: #2c3f52; color: #ed4e6e; } .addon, .addon-price { display: inline-block; margin-top: 15px; font-size: 15px; border: 1px solid #DCDCDC; font-weight: bold; } .addon { /*background: #FFFFFF url("images/Add_Ons.jpg") no-repeat 6px center;*/ color: #66686B; padding: 9px 12px 9px 45px; width: 100%; box-sizing: border-box; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; } .addon-price { background: #FFFFFF; color: #229CBF; padding: 9px 12px; } .add-on:hover .addon-price, .addon-price:hover { background: #229CBF; color: #DDECF1; } .add-on:hover .addon, .addon:hover { /*background: #23282D url("images/Add_Ons_hover.jpg") no-repeat 6px center;*/ color: #DDDEDE; } .addon span { border-left: 1px solid #A7A9AB; padding: 4px 10px 4px 10px; } .addon-descr span { padding: 5px 0 5px 10px; border-left: 1px solid #93CEE0; } a:focus { outline: none; box-shadow: none; } .add-on { width: 310px; height: 320px; float: left; margin-right: 40px; margin-bottom: 40px; -webkit-perspective: 1700px; -moz-perspective: 1700px; perspective: 1700px; -webkit-perspective-origin: 0 50%; -moz-perspective-origin: 0 50%; perspective-origin: 0 50%; position: relative; } .main-plugin .add-on { float: left; margin-right: 25px; height: auto; } #settings-content .addons_updates::after, #settings-content .main-plugin::after, #settings-content::after { clear: both; content: ""; display: table; } .figure { -webkit-transform-style: preserve-3d; -moz-transform-style: preserve-3d; transform-style: preserve-3d; position: relative; width: 100%; height: 232px; margin: 0; } .figure-img { overflow: hidden; } .figure-img img { -webkit-transition: -webkit-transform 0.4s; -moz-transition: -moz-transform 0.4s; transition: transform 0.4s; } .figure:hover img { -webkit-transform: translateX(25%); -moz-transform: translateX(25%); -ms-transform: translateX(25%); transform: translateX(25%); } .figure:hover figcaption { opacity: 1; -webkit-transform: rotateY(0deg); -moz-transform: rotateY(0deg); transform: rotateY(0deg); -webkit-transition: -webkit-transform 0.4s, opacity 0.1s; -moz-transition: -moz-transform 0.4s, opacity 0.1s; transition: transform 0.4s, opacity 0.1s; } .addon-subtitle { font-size: 25px; border-bottom: 1px solid #C1C4C7; padding-bottom: 23px; } .main-plugin .main-plugin-img { float: left; margin-right: 2%; width: 26%; } .main-plugin .main-plugin-img img { max-width: 100%; } .main-plugin .main-plugin-info { float: left; } .main-plugin { margin-bottom: 25px; } .main-plugin_desc-cont p, .main-plugin_desc-cont { font-size: 14px; } .main-plugin-desc-info p { margin: 2px 0 13px; } .addons_updates .main-plugin-desc-info p { margin: 2px 0 4px; } .main-plugin-desc { margin-bottom: 12px; } .main-plugin-info h2 { padding: 0; line-height: 1; margin-bottom: 14px; } .main-plugin-info h2 a { color: #323A45; text-decoration: none; font-weight: bold; } .main-plugin-desc-info { border-bottom: 1px solid #C0C4C7; width: 71%; } .addons_updates .main-plugin-desc-info { border-bottom: 0; width: 100%; } .update-info { background: url("images/updates-icon.png") no-repeat; background-size: 15px 15px; background-position: center left; padding-left: 25px; color: #bc0b0b; } .update-info-a, .update-info-a:hover, .update-info-a:focus, .update-info-a:active { color: #bc0b0b; } .addons_updates .figure { margin-bottom: 10px; } .addons_updates .addon-descr-update { border-top: 1px solid #898989; padding-top: 6px; } .addons_updates h2 { color: #323A45; text-decoration: none; font-weight: bold; border-bottom: 0; padding-bottom: 0; margin-bottom: 0; } .more_updates { display: none; }
0.335895
0.066539
.container, .container-fluid, .container-xxl, .container-xl, .container-lg, .container-md, .container-sm { width: 100%; padding-right: var(--bs-gutter-x, 0.75rem); padding-left: var(--bs-gutter-x, 0.75rem); margin-right: auto; margin-left: auto; } .mb-4{ margin-bottom: 2.5em; } .mb-2{ margin-bottom: 1.5em; } .mt-4{ margin-top: 2.5em; } .mr-4{ margin-top: 2.5em; } .ml-4{ margin-left: 2.5em; } .flex{ display: flex; } /* Vertical Navbar */ * { box-sizing: border-box; } .row { --bs-gutter-x: 1.5rem; --bs-gutter-y: 0; display: flex; flex-wrap: wrap; margin-top: calc(-1 * var(--bs-gutter-y)); margin-right: calc(-0.5 * var(--bs-gutter-x)); margin-left: calc(-0.5 * var(--bs-gutter-x)); } .row::after { content: ""; clear: both; display: table; } [class*="col-"] { float: left; padding: 15px; } .col-1 {width: 8.33%;} .col-2 {width: 16.66%;} .col-3 {width: 25%;} .col-4 {width: 33.33%;} .col-5 {width: 41.66%;} .col-6 {width: 50%;} .col-7 {width: 58.33%;} .col-8 {width: 66.66%;} .col-9 {width: 75%;} .col-10 {width: 83.33%;} .col-11 {width: 91.66%;} .col-12 {width: 100%;} html { font-family: "Lucida Sans", sans-serif; } .menu { height: 900px; background-color: #ddd; } .menu ul { list-style-type: none; margin: 0; padding: 0; } .menu li { padding: 8px; margin-bottom: 7px; background-color: #6be533; color: #ffffff; box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24); } .menu li:hover { background-color: #70f035; } /* Table */ .table { width: 100%; margin-bottom: 1rem; color: #212529; vertical-align: top; border-color: #dee2e6; } /* Anchor */ a { padding: 2px 4px 4px 2px; text-decoration: none; color: #bbb; } a:hover{ color: #ddd; } /* Navbar */ * { box-sizing: border-box; } body { margin: 0px; font-family: 'segoe ui'; } .nav { height: 50px; width: 100%; background-color: #4d4d4d; position: relative; } .nav > .nav-header { display: inline; } .nav > .nav-header > .nav-title { display: inline-block; font-size: 22px; color: #fff; padding: 10px 10px 10px 10px; } .nav > .nav-btn { display: none; } .nav > .nav-links { display: inline; float: right; font-size: 18px; } .nav > .nav-links > a { display: inline-block; padding: 13px 10px 13px 10px; text-decoration: none; color: #efefef; } .nav > .nav-links > a:hover { background-color: rgba(0, 0, 0, 0.3); } .nav > #nav-check { display: none; } @media (max-width:600px) { .nav > .nav-btn { display: inline-block; position: absolute; right: 0px; top: 0px; } .nav > .nav-btn > label { display: inline-block; width: 50px; height: 50px; padding: 13px; } .nav > .nav-btn > label:hover,.nav #nav-check:checked ~ .nav-btn > label { background-color: rgba(0, 0, 0, 0.3); } .nav > .nav-btn > label > span { display: block; width: 25px; height: 10px; border-top: 2px solid #eee; } .nav > .nav-links { position: absolute; display: block; width: 100%; background-color: #333; height: 0px; transition: all 0.3s ease-in; overflow-y: hidden; top: 50px; left: 0px; } .nav > .nav-links > a { display: block; width: 100%; } .nav > #nav-check:not(:checked) ~ .nav-links { height: 0px; } .nav > #nav-check:checked ~ .nav-links { height: calc(100vh - 50px); overflow-y: auto; } } /* Login / Register */ .card { position: relative; display: flex; flex-direction: column; min-width: 0; word-wrap: break-word; background-color: #fff; background-clip: border-box; border: 1px solid rgba(0, 0, 0, 0.125); border-radius: 0.25rem; } .card-header { padding: 0.5rem 1rem; margin-bottom: 0; background-color: rgba(0, 0, 0, 0.03); border-bottom: 1px solid rgba(0, 0, 0, 0.125); } .card-body { flex: 1 1 auto; padding: 1rem 1rem; } /* Input */ input, button, select, optgroup, textarea { margin: 0; font-family: inherit; font-size: inherit; line-height: inherit; } .btn-success { color: #fff; background-color: #198754; border-color: #198754; } .btn { border: 1px solid transparent; padding: 0.375rem 0.75rem; font-size: 0.9rem; border-radius: 0.25rem; } .btn-success:hover{ background-color: #20a768; } .content-center { justify-content: center !important; }
public/css/app.css
.container, .container-fluid, .container-xxl, .container-xl, .container-lg, .container-md, .container-sm { width: 100%; padding-right: var(--bs-gutter-x, 0.75rem); padding-left: var(--bs-gutter-x, 0.75rem); margin-right: auto; margin-left: auto; } .mb-4{ margin-bottom: 2.5em; } .mb-2{ margin-bottom: 1.5em; } .mt-4{ margin-top: 2.5em; } .mr-4{ margin-top: 2.5em; } .ml-4{ margin-left: 2.5em; } .flex{ display: flex; } /* Vertical Navbar */ * { box-sizing: border-box; } .row { --bs-gutter-x: 1.5rem; --bs-gutter-y: 0; display: flex; flex-wrap: wrap; margin-top: calc(-1 * var(--bs-gutter-y)); margin-right: calc(-0.5 * var(--bs-gutter-x)); margin-left: calc(-0.5 * var(--bs-gutter-x)); } .row::after { content: ""; clear: both; display: table; } [class*="col-"] { float: left; padding: 15px; } .col-1 {width: 8.33%;} .col-2 {width: 16.66%;} .col-3 {width: 25%;} .col-4 {width: 33.33%;} .col-5 {width: 41.66%;} .col-6 {width: 50%;} .col-7 {width: 58.33%;} .col-8 {width: 66.66%;} .col-9 {width: 75%;} .col-10 {width: 83.33%;} .col-11 {width: 91.66%;} .col-12 {width: 100%;} html { font-family: "Lucida Sans", sans-serif; } .menu { height: 900px; background-color: #ddd; } .menu ul { list-style-type: none; margin: 0; padding: 0; } .menu li { padding: 8px; margin-bottom: 7px; background-color: #6be533; color: #ffffff; box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24); } .menu li:hover { background-color: #70f035; } /* Table */ .table { width: 100%; margin-bottom: 1rem; color: #212529; vertical-align: top; border-color: #dee2e6; } /* Anchor */ a { padding: 2px 4px 4px 2px; text-decoration: none; color: #bbb; } a:hover{ color: #ddd; } /* Navbar */ * { box-sizing: border-box; } body { margin: 0px; font-family: 'segoe ui'; } .nav { height: 50px; width: 100%; background-color: #4d4d4d; position: relative; } .nav > .nav-header { display: inline; } .nav > .nav-header > .nav-title { display: inline-block; font-size: 22px; color: #fff; padding: 10px 10px 10px 10px; } .nav > .nav-btn { display: none; } .nav > .nav-links { display: inline; float: right; font-size: 18px; } .nav > .nav-links > a { display: inline-block; padding: 13px 10px 13px 10px; text-decoration: none; color: #efefef; } .nav > .nav-links > a:hover { background-color: rgba(0, 0, 0, 0.3); } .nav > #nav-check { display: none; } @media (max-width:600px) { .nav > .nav-btn { display: inline-block; position: absolute; right: 0px; top: 0px; } .nav > .nav-btn > label { display: inline-block; width: 50px; height: 50px; padding: 13px; } .nav > .nav-btn > label:hover,.nav #nav-check:checked ~ .nav-btn > label { background-color: rgba(0, 0, 0, 0.3); } .nav > .nav-btn > label > span { display: block; width: 25px; height: 10px; border-top: 2px solid #eee; } .nav > .nav-links { position: absolute; display: block; width: 100%; background-color: #333; height: 0px; transition: all 0.3s ease-in; overflow-y: hidden; top: 50px; left: 0px; } .nav > .nav-links > a { display: block; width: 100%; } .nav > #nav-check:not(:checked) ~ .nav-links { height: 0px; } .nav > #nav-check:checked ~ .nav-links { height: calc(100vh - 50px); overflow-y: auto; } } /* Login / Register */ .card { position: relative; display: flex; flex-direction: column; min-width: 0; word-wrap: break-word; background-color: #fff; background-clip: border-box; border: 1px solid rgba(0, 0, 0, 0.125); border-radius: 0.25rem; } .card-header { padding: 0.5rem 1rem; margin-bottom: 0; background-color: rgba(0, 0, 0, 0.03); border-bottom: 1px solid rgba(0, 0, 0, 0.125); } .card-body { flex: 1 1 auto; padding: 1rem 1rem; } /* Input */ input, button, select, optgroup, textarea { margin: 0; font-family: inherit; font-size: inherit; line-height: inherit; } .btn-success { color: #fff; background-color: #198754; border-color: #198754; } .btn { border: 1px solid transparent; padding: 0.375rem 0.75rem; font-size: 0.9rem; border-radius: 0.25rem; } .btn-success:hover{ background-color: #20a768; } .content-center { justify-content: center !important; }
0.334807
0.084833
@media (min-width:480px){ .inner{ overflow: hidden; } .inner img{ transition: all .5s ease; } .inner:hover img{ transform: scale(1.15); } } /* Uprava containeru */ @media (min-width: 1200px) { .container{ max-width: 1100px; } } .narrowContainer{ max-width: 600px; } .narrowerContainer{ max-width: 250px; } /* Linky */ a{ color: black !important; } body{ font-family: 'Roboto', sans-serif; } a:hover{ color: black; } .fancyLink{ font-size: 110%; text-decoration: none; position: relative; } .fancyLink::after{ content: ""; position: absolute; left:4%; bottom: 1px; width: 92%; height: 1px; background-color: grey; transform: scaleX(0.0); transform-origin: right; transition: transform 0.3s ease-in; } .fancyLink:hover::after{ transform-origin: left; transform: scaleX(1); } .fancyHeadline{ text-decoration: none; position: relative; } .fancyHeadline::after{ content: ""; position: absolute; left: 0%; bottom: 0px; width: 100%; height: 2px; background-color: #000000; transform: scaleY(0.0); transform-origin: right; transition: transform 0.5s ease-in-out; } .fancyHeadline:hover::after{ transform-origin: left; transform: scaleY(1); } /* Scrollbar */ ::-webkit-scrollbar{ width: 1.em; border-radius: 100vw; } ::-webkit-scrollbar-track{ background: rgb(255, 255, 255); border-radius: 100vw; margin-block: .25em; } ::-webkit-scrollbar-thumb{ background: rgb(0, 0, 0, .3); border-radius: 100vw; border: .25em solid rgb(255, 255, 255); } ::-webkit-scrollbar-thumb:hover{ background: rgba(0, 0, 0, 0.45); } @supports (scrollbar-color: rgba(0, 0, 0, 0.3) white){ *{ scrollbar-color: rgba(0, 0, 0, 0.3) white; scrollbar-width: thin; } } .bg-image-wrap{ position: absolute; top: 0; left: 0; height: 100%; width: 100%; } .bg-image{ position: fixed; width: 100%; height: 100%; left:0; } .card{ opacity: 100%; border-radius: 25px; }
flask/uld/static/main.css
@media (min-width:480px){ .inner{ overflow: hidden; } .inner img{ transition: all .5s ease; } .inner:hover img{ transform: scale(1.15); } } /* Uprava containeru */ @media (min-width: 1200px) { .container{ max-width: 1100px; } } .narrowContainer{ max-width: 600px; } .narrowerContainer{ max-width: 250px; } /* Linky */ a{ color: black !important; } body{ font-family: 'Roboto', sans-serif; } a:hover{ color: black; } .fancyLink{ font-size: 110%; text-decoration: none; position: relative; } .fancyLink::after{ content: ""; position: absolute; left:4%; bottom: 1px; width: 92%; height: 1px; background-color: grey; transform: scaleX(0.0); transform-origin: right; transition: transform 0.3s ease-in; } .fancyLink:hover::after{ transform-origin: left; transform: scaleX(1); } .fancyHeadline{ text-decoration: none; position: relative; } .fancyHeadline::after{ content: ""; position: absolute; left: 0%; bottom: 0px; width: 100%; height: 2px; background-color: #000000; transform: scaleY(0.0); transform-origin: right; transition: transform 0.5s ease-in-out; } .fancyHeadline:hover::after{ transform-origin: left; transform: scaleY(1); } /* Scrollbar */ ::-webkit-scrollbar{ width: 1.em; border-radius: 100vw; } ::-webkit-scrollbar-track{ background: rgb(255, 255, 255); border-radius: 100vw; margin-block: .25em; } ::-webkit-scrollbar-thumb{ background: rgb(0, 0, 0, .3); border-radius: 100vw; border: .25em solid rgb(255, 255, 255); } ::-webkit-scrollbar-thumb:hover{ background: rgba(0, 0, 0, 0.45); } @supports (scrollbar-color: rgba(0, 0, 0, 0.3) white){ *{ scrollbar-color: rgba(0, 0, 0, 0.3) white; scrollbar-width: thin; } } .bg-image-wrap{ position: absolute; top: 0; left: 0; height: 100%; width: 100%; } .bg-image{ position: fixed; width: 100%; height: 100%; left:0; } .card{ opacity: 100%; border-radius: 25px; }
0.415492
0.075961
* { box-sizing: border-box; padding: 0px; margin: 0px; } #board, figure.image-tile .overlay, figure.image-tile figcaption { display: flex; } figure.image-tile input, figure.image-tile .overlay, figure.image-tile figcaption { position: absolute; height: 100%; width: 100%; left: 0px; } .close-button > i, .display-format p, #display-info { font-family: arial; } .close-button > span, figure.image-tile figcaption { font-family: "aldrich", arial; } #board { min-height: 55%; flex-direction: row; flex-wrap: wrap; } figure.image-tile { position: relative; width: 25%; } figure.image-tile input { z-index: 2000; top: 0px; } figure.image-tile figcaption { background: no-repeat center center; background-size: 145%; border-bottom: solid 1px #000; } figure.image-tile .overlay { background-color: rgba(0,0,0, .25); text-shadow: 2px 2px 1px #000; padding-bottom: 5px; justify-content: center; align-items: flex-end; text-align: center; font-size: 1.09em; bottom: 0px; } figure.image-tile:not(:nth-child(1)):not(:nth-child(5)) figcaption { border-left: solid 1px #000; } figure.image-tile input { opacity: 0; } figure.image-tile .overlay, .close-button > span:hover { color: white; } #dropdown { background-color: #b9b089; overflow: hidden; height: 0px; } .close-button { padding: 8px 8px 0px; text-align: right; } .close-button > span.button-text { text-transform: uppercase; font-weight: bolder; line-height: 15px; font-size: 9px; cursor: pointer; } .close-button > span i.button-arrow { font-style: normal; font-size: 13px; } .display-format { padding: 15px 12px 5px; } .display-info p { border-left: solid 2px white; padding: 0px 0px /*5px*/ 0px 8px; margin-bottom: 18px; line-height: 17px; font-size: 14px; color: #000; } figure.active figcaption, figure.image-tile:hover figcaption { transition: background-size .5s linear; background-color: rgba(0,0,0, .35); border-bottom: solid 3px green; background-size: 155%; } figure.active figcaption .overlay, figure.image-tile:hover figcaption .overlay { transition: background-color .5s linear; background-color: rgba(0,0,0, 0); padding-bottom: 3px; color: orange; opacity: 1; }
info-image-board/css/main.css
* { box-sizing: border-box; padding: 0px; margin: 0px; } #board, figure.image-tile .overlay, figure.image-tile figcaption { display: flex; } figure.image-tile input, figure.image-tile .overlay, figure.image-tile figcaption { position: absolute; height: 100%; width: 100%; left: 0px; } .close-button > i, .display-format p, #display-info { font-family: arial; } .close-button > span, figure.image-tile figcaption { font-family: "aldrich", arial; } #board { min-height: 55%; flex-direction: row; flex-wrap: wrap; } figure.image-tile { position: relative; width: 25%; } figure.image-tile input { z-index: 2000; top: 0px; } figure.image-tile figcaption { background: no-repeat center center; background-size: 145%; border-bottom: solid 1px #000; } figure.image-tile .overlay { background-color: rgba(0,0,0, .25); text-shadow: 2px 2px 1px #000; padding-bottom: 5px; justify-content: center; align-items: flex-end; text-align: center; font-size: 1.09em; bottom: 0px; } figure.image-tile:not(:nth-child(1)):not(:nth-child(5)) figcaption { border-left: solid 1px #000; } figure.image-tile input { opacity: 0; } figure.image-tile .overlay, .close-button > span:hover { color: white; } #dropdown { background-color: #b9b089; overflow: hidden; height: 0px; } .close-button { padding: 8px 8px 0px; text-align: right; } .close-button > span.button-text { text-transform: uppercase; font-weight: bolder; line-height: 15px; font-size: 9px; cursor: pointer; } .close-button > span i.button-arrow { font-style: normal; font-size: 13px; } .display-format { padding: 15px 12px 5px; } .display-info p { border-left: solid 2px white; padding: 0px 0px /*5px*/ 0px 8px; margin-bottom: 18px; line-height: 17px; font-size: 14px; color: #000; } figure.active figcaption, figure.image-tile:hover figcaption { transition: background-size .5s linear; background-color: rgba(0,0,0, .35); border-bottom: solid 3px green; background-size: 155%; } figure.active figcaption .overlay, figure.image-tile:hover figcaption .overlay { transition: background-color .5s linear; background-color: rgba(0,0,0, 0); padding-bottom: 3px; color: orange; opacity: 1; }
0.523177
0.21686
@font-face { font-family: "Agustina"; src: url(../fonts/Agustina.woff); } /*CSS variable declaration for light/dark mode*/ html[data-theme="light"] { --bg-mybtn: red; --bg-nav:black; --bg-nav-img: black; --bg-footer:#DDE1EC; --bg: #ffffff; --text: #191919; --text-color: #6c757d; --col-icon: black; --col-bd-radius:rgb(2, 2, 2); --col-box-shadow:#000000 2px 2px 4px, #4D4D4D -2px -2px 4px; --col-box-shadow-hover:inset #8a7373 2px 2px 4px, inset #4D4D4D -2px -2px 4px; --col-bd-icon:transparent; --bg-icon: #fff; --col-icon-twitter: #1da1f2; --col-icon-dribbble: #ea4c89; --col-icon-linkedin: #0e76a8; --col-icon-medium: #00ab6c; --col-icon-kaggle: #41aff3; --col-icon-github:#24292e; --col-icon-instagram: rgb(201, 94, 174); --col-icon-mail:rgb(209, 82, 82); --col-icon-google-scholar:#3cba54; --col-icon-codeforces:rgb(19, 145, 184); --col-icon-leetcode:rgb(255, 181, 62); --shadow-col: rgba(0, 0, 0, 0.3); } html[data-theme="dark"] { --bg-mybtn: rgb(230, 109, 129); --bg-nav: #6617cb; --bg-nav-img: linear-gradient(315deg, #6617cb 0%, #882463 74%); --bg-footer:linear-gradient(315deg, #6617cb 0%, #882463 74%); --bg: #191919; --text: #ffffff; --text-color: #fff; --bg-txt-img: linear-gradient(315deg, #d5adc8 0%, #ff8489 74%); --txt-fill: transparent; --col-icon:white; --col-bd-radius:black; --col-bd-icon:transparent; --col-box-shadow: 5px 5px 10px rgba(22, 21, 21, 0.7) , -5px -5px 10px rgba(255,255,255,0.1); --col-box-shadow-hover:inset rgba(255, 255, 255, 1) 2px 2px 4px, inset rgba(255, 255, 255, 0.5) -2px -2px 4px; --col-icon-twitter: #1da1f2; --col-icon-dribbble: #ea4c89; --col-icon-linkedin: #0e76a8; --col-icon-medium: #00ab6c; --col-icon-kaggle: #41aff3; --col-icon-github: #24292e; --col-icon-instagram: rgb(201, 94, 174); --col-icon-mail:rgb(209, 82, 82); --col-icon-google-scholar:#3cba54; --col-icon-codeforces:rgb(19, 145, 184); --col-icon-leetcode:rgb(255, 181, 62); --col-white: #fff; } body { height: 100vh; margin: 0; overflow-x: hidden; color: var(--text); font-family: "Poppins", sans-serif; background-color: var(--bg); } /* Top button */ /* smooth scrolling to top */ html { scroll-behavior: smooth; } /*starting part of every page*/ .navbar-brand{ font-family: Agustina; font-size: 30px; font-weight: bold; } .navbar{ color:#000000; background-color: #fff; }
assets/css/style.css
@font-face { font-family: "Agustina"; src: url(../fonts/Agustina.woff); } /*CSS variable declaration for light/dark mode*/ html[data-theme="light"] { --bg-mybtn: red; --bg-nav:black; --bg-nav-img: black; --bg-footer:#DDE1EC; --bg: #ffffff; --text: #191919; --text-color: #6c757d; --col-icon: black; --col-bd-radius:rgb(2, 2, 2); --col-box-shadow:#000000 2px 2px 4px, #4D4D4D -2px -2px 4px; --col-box-shadow-hover:inset #8a7373 2px 2px 4px, inset #4D4D4D -2px -2px 4px; --col-bd-icon:transparent; --bg-icon: #fff; --col-icon-twitter: #1da1f2; --col-icon-dribbble: #ea4c89; --col-icon-linkedin: #0e76a8; --col-icon-medium: #00ab6c; --col-icon-kaggle: #41aff3; --col-icon-github:#24292e; --col-icon-instagram: rgb(201, 94, 174); --col-icon-mail:rgb(209, 82, 82); --col-icon-google-scholar:#3cba54; --col-icon-codeforces:rgb(19, 145, 184); --col-icon-leetcode:rgb(255, 181, 62); --shadow-col: rgba(0, 0, 0, 0.3); } html[data-theme="dark"] { --bg-mybtn: rgb(230, 109, 129); --bg-nav: #6617cb; --bg-nav-img: linear-gradient(315deg, #6617cb 0%, #882463 74%); --bg-footer:linear-gradient(315deg, #6617cb 0%, #882463 74%); --bg: #191919; --text: #ffffff; --text-color: #fff; --bg-txt-img: linear-gradient(315deg, #d5adc8 0%, #ff8489 74%); --txt-fill: transparent; --col-icon:white; --col-bd-radius:black; --col-bd-icon:transparent; --col-box-shadow: 5px 5px 10px rgba(22, 21, 21, 0.7) , -5px -5px 10px rgba(255,255,255,0.1); --col-box-shadow-hover:inset rgba(255, 255, 255, 1) 2px 2px 4px, inset rgba(255, 255, 255, 0.5) -2px -2px 4px; --col-icon-twitter: #1da1f2; --col-icon-dribbble: #ea4c89; --col-icon-linkedin: #0e76a8; --col-icon-medium: #00ab6c; --col-icon-kaggle: #41aff3; --col-icon-github: #24292e; --col-icon-instagram: rgb(201, 94, 174); --col-icon-mail:rgb(209, 82, 82); --col-icon-google-scholar:#3cba54; --col-icon-codeforces:rgb(19, 145, 184); --col-icon-leetcode:rgb(255, 181, 62); --col-white: #fff; } body { height: 100vh; margin: 0; overflow-x: hidden; color: var(--text); font-family: "Poppins", sans-serif; background-color: var(--bg); } /* Top button */ /* smooth scrolling to top */ html { scroll-behavior: smooth; } /*starting part of every page*/ .navbar-brand{ font-family: Agustina; font-size: 30px; font-weight: bold; } .navbar{ color:#000000; background-color: #fff; }
0.29931
0.067209
footer { height: 190px; background-color: #313538; padding: 0 20px 50px; display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-evenly; align-items: center; margin-top: auto; } .links { height: 80%; } .links ul { font-size: 0.9em; height: 100%; margin: 0; padding: 23px 0 0 0; display: flex; flex-wrap: wrap; flex-direction: column; list-style-type: none; } .links li { color: white; margin-bottom: 8px; margin-right: 36px; white-space: nowrap; } .links li:hover { color: #c49871; } .social-medias { min-width: 88px; display: flex; flex-direction: row; justify-content: space-evenly; background-color: transparent; } .social-media { display: inline-block; width: 20px; height: 20px; border-radius: 50%; background-size: contain; background-repeat: no-repeat; background-position: center; } #line { background-image: url('../../images/line.png'); } #line:hover { background-color: #07b301; } #twitter { background-image: url('../../images/twitter.png'); } #twitter:hover { background-color: rgb(42, 149, 250); } #facebook { background-image: url('../../images/facebook.png'); } #facebook:hover { background-color: #0070c5; } #footnote { font-size: 10pt; text-align: center; margin: 0; color: #828282; flex-basis: 100%; } @media screen and (min-width: 768px) { footer { flex-direction: row; justify-content: center; align-items: center; } .links ul { width: 200px; } .social-medias { margin-right: 20px; } #footnote { flex-basis: unset; } } @media screen and (min-width: 1024px) { footer { height: 115px; padding: 0 5%; font-size: 1.2em; justify-content: space-evenly; } .links { max-width: 754px; flex-grow: 1; justify-content: space-between; } .links ul { width: 100%; padding-top: 0; flex-direction: row; align-items: center; justify-content: center; } .links li { margin: 0; flex-grow: 1; text-align: center; } .links a { display: block; } .link { border-right: 1px solid white; } .link:hover { color: #c49871; } .social-medias { width: 300px; } .social-media { width: 50px; height: 50px; } #footnote { text-align: left; } } @media screen and (max-width: 480px) { footer { justify-content: space-between; } }
shanpig/css/components/footer.css
footer { height: 190px; background-color: #313538; padding: 0 20px 50px; display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-evenly; align-items: center; margin-top: auto; } .links { height: 80%; } .links ul { font-size: 0.9em; height: 100%; margin: 0; padding: 23px 0 0 0; display: flex; flex-wrap: wrap; flex-direction: column; list-style-type: none; } .links li { color: white; margin-bottom: 8px; margin-right: 36px; white-space: nowrap; } .links li:hover { color: #c49871; } .social-medias { min-width: 88px; display: flex; flex-direction: row; justify-content: space-evenly; background-color: transparent; } .social-media { display: inline-block; width: 20px; height: 20px; border-radius: 50%; background-size: contain; background-repeat: no-repeat; background-position: center; } #line { background-image: url('../../images/line.png'); } #line:hover { background-color: #07b301; } #twitter { background-image: url('../../images/twitter.png'); } #twitter:hover { background-color: rgb(42, 149, 250); } #facebook { background-image: url('../../images/facebook.png'); } #facebook:hover { background-color: #0070c5; } #footnote { font-size: 10pt; text-align: center; margin: 0; color: #828282; flex-basis: 100%; } @media screen and (min-width: 768px) { footer { flex-direction: row; justify-content: center; align-items: center; } .links ul { width: 200px; } .social-medias { margin-right: 20px; } #footnote { flex-basis: unset; } } @media screen and (min-width: 1024px) { footer { height: 115px; padding: 0 5%; font-size: 1.2em; justify-content: space-evenly; } .links { max-width: 754px; flex-grow: 1; justify-content: space-between; } .links ul { width: 100%; padding-top: 0; flex-direction: row; align-items: center; justify-content: center; } .links li { margin: 0; flex-grow: 1; text-align: center; } .links a { display: block; } .link { border-right: 1px solid white; } .link:hover { color: #c49871; } .social-medias { width: 300px; } .social-media { width: 50px; height: 50px; } #footnote { text-align: left; } } @media screen and (max-width: 480px) { footer { justify-content: space-between; } }
0.459804
0.073497
.navbar-inverse .navbar-inner { /*background-image: url("../bundles/backend/img/bg_header.png") !important;*/ background-repeat: no-repeat; background-size: 183px 40px; background-color: #08c; background-image: -webkit-linear-gradient(bottom, #08c 45%, #04c 55%); background-image: -moz-linear-gradient(bottom, #08c 45%, #04c 55%); background-image: -ms-linear-gradient(bottom, #08c 45%, #04c 55%); background-image: -o-linear-gradient(bottom, #08c 45%, #04c 55%); background-image: linear-gradient(bottom, #08c 45%, #04c 55%); background-image: linear-gradient(to bottom, #08c, #04c); /* Standard syntax; must be last */ } .navbar-inverse .btn-navbar { background-color: #08c; background-image: -webkit-linear-gradient(bottom, #08c 45%, #04c 55%); background-image: -moz-linear-gradient(bottom, #08c 45%, #04c 55%); background-image: -ms-linear-gradient(bottom, #08c 45%, #04c 55%); background-image: -o-linear-gradient(bottom, #08c 45%, #04c 55%); background-image: linear-gradient(bottom, #08c 45%, #04c 55%); background-image: linear-gradient(to bottom, #08c, #04c); /* Standard syntax; must be last */ } .navbar-inverse .navbar-link { color: #fff; } .navbar-inverse .navbar-link:hover { color: #333; } .navbar-inverse .brand, .navbar-inverse .nav > li > a { color: #fff; } .navbar-inverse .brand, .navbar-inverse .nav > li > a:hover { color: #333; } .navbar-inverse .nav > li > a:focus, .navbar-inverse .nav > li > a:hover { color: #333; } .flash-notice { width: 400px; display: inline-block; margin-left: 100px; } .row-fluid { position: relative; display: table; border-top: 4px #e4e4e4 solid; } .sidebar { padding: 19px; width: 20%; min-width: 188px; } .sidebar a { font-size: 1.3em; margin: 0; color: #0069d6; text-decoration: none; } .sidebar a:hover { text-decoration: underline; } .content { width: 100%; } .brand { /*background-image: url("/bundles/backend/img/bg_header.png") !important;*/ background-repeat: no-repeat; background-size: 348px 40px; display: inline-block; height: 20px; width: 348px; } #imagenpedidomaterial { width: 200px; } .grande { border: 1px none #000000; height: 500px; margin: 10px auto; width: 849px; } .divpuestos { background-color: #CCCCCC; border: 1px none #000000; height: 100%; position: relative; } .puestoseleccionado { background-color: yellowgreen; } .cajapuesto { border: 1px dotted #442F34; height: 125px; position: absolute; /*width: 120px;*/ width: 100px; } .divmesa { background-color: #FFFFFF; height: 60px; left: 120px; margin: 0 auto; position: absolute; top: 200px; width: 70%; z-index: 1; } .kuadro-gorria { /*border-color: red !important;*/ border: 8px solid red !important; } .kuadro-urdina { /*border-color: blue !important;*/ border: 8px solid blue !important; } .kuadro-berdea { /*border-color: green !important;*/ border: 8px solid green !important; } .kuadro-beltza { /*border-color: black !important;*/ border: 8px solid black !important; } .kuadro { border:1px solid; } .dropinstruccion { height: 22px; margin: 0px auto 0px auto; text-align: center; width: 70px; } .droptablet { height: 74px; margin: 2px auto 0px auto; text-align: center; width: 80px; } .caja { display: inline-block; height: 70px; margin: 1px auto 0px auto; text-align: center; width: 80px; } .mitablet { background-image: url('/bundles/backend/img/tablet.jpeg'); background-position: center bottom; background-repeat: no-repeat; } .dropusuario { height: 10px; margin: 2px auto 0px; width: 70px; } .imagenincorrecto { background-image: url('/bundles/backend/img/1triste-rojo.jpg'); background-position: center bottom; background-repeat: no-repeat; width: 151px; height: 151px; } .imagencorrecto { background-image: url('/bundles/backend/img/1sonrie-verde.jpg'); background-position: center bottom; background-repeat: no-repeat; width: 150px; height: 150px; }
src/Gitek/BackendBundle/Resources/public/css/estiloa_isla.css
.navbar-inverse .navbar-inner { /*background-image: url("../bundles/backend/img/bg_header.png") !important;*/ background-repeat: no-repeat; background-size: 183px 40px; background-color: #08c; background-image: -webkit-linear-gradient(bottom, #08c 45%, #04c 55%); background-image: -moz-linear-gradient(bottom, #08c 45%, #04c 55%); background-image: -ms-linear-gradient(bottom, #08c 45%, #04c 55%); background-image: -o-linear-gradient(bottom, #08c 45%, #04c 55%); background-image: linear-gradient(bottom, #08c 45%, #04c 55%); background-image: linear-gradient(to bottom, #08c, #04c); /* Standard syntax; must be last */ } .navbar-inverse .btn-navbar { background-color: #08c; background-image: -webkit-linear-gradient(bottom, #08c 45%, #04c 55%); background-image: -moz-linear-gradient(bottom, #08c 45%, #04c 55%); background-image: -ms-linear-gradient(bottom, #08c 45%, #04c 55%); background-image: -o-linear-gradient(bottom, #08c 45%, #04c 55%); background-image: linear-gradient(bottom, #08c 45%, #04c 55%); background-image: linear-gradient(to bottom, #08c, #04c); /* Standard syntax; must be last */ } .navbar-inverse .navbar-link { color: #fff; } .navbar-inverse .navbar-link:hover { color: #333; } .navbar-inverse .brand, .navbar-inverse .nav > li > a { color: #fff; } .navbar-inverse .brand, .navbar-inverse .nav > li > a:hover { color: #333; } .navbar-inverse .nav > li > a:focus, .navbar-inverse .nav > li > a:hover { color: #333; } .flash-notice { width: 400px; display: inline-block; margin-left: 100px; } .row-fluid { position: relative; display: table; border-top: 4px #e4e4e4 solid; } .sidebar { padding: 19px; width: 20%; min-width: 188px; } .sidebar a { font-size: 1.3em; margin: 0; color: #0069d6; text-decoration: none; } .sidebar a:hover { text-decoration: underline; } .content { width: 100%; } .brand { /*background-image: url("/bundles/backend/img/bg_header.png") !important;*/ background-repeat: no-repeat; background-size: 348px 40px; display: inline-block; height: 20px; width: 348px; } #imagenpedidomaterial { width: 200px; } .grande { border: 1px none #000000; height: 500px; margin: 10px auto; width: 849px; } .divpuestos { background-color: #CCCCCC; border: 1px none #000000; height: 100%; position: relative; } .puestoseleccionado { background-color: yellowgreen; } .cajapuesto { border: 1px dotted #442F34; height: 125px; position: absolute; /*width: 120px;*/ width: 100px; } .divmesa { background-color: #FFFFFF; height: 60px; left: 120px; margin: 0 auto; position: absolute; top: 200px; width: 70%; z-index: 1; } .kuadro-gorria { /*border-color: red !important;*/ border: 8px solid red !important; } .kuadro-urdina { /*border-color: blue !important;*/ border: 8px solid blue !important; } .kuadro-berdea { /*border-color: green !important;*/ border: 8px solid green !important; } .kuadro-beltza { /*border-color: black !important;*/ border: 8px solid black !important; } .kuadro { border:1px solid; } .dropinstruccion { height: 22px; margin: 0px auto 0px auto; text-align: center; width: 70px; } .droptablet { height: 74px; margin: 2px auto 0px auto; text-align: center; width: 80px; } .caja { display: inline-block; height: 70px; margin: 1px auto 0px auto; text-align: center; width: 80px; } .mitablet { background-image: url('/bundles/backend/img/tablet.jpeg'); background-position: center bottom; background-repeat: no-repeat; } .dropusuario { height: 10px; margin: 2px auto 0px; width: 70px; } .imagenincorrecto { background-image: url('/bundles/backend/img/1triste-rojo.jpg'); background-position: center bottom; background-repeat: no-repeat; width: 151px; height: 151px; } .imagencorrecto { background-image: url('/bundles/backend/img/1sonrie-verde.jpg'); background-position: center bottom; background-repeat: no-repeat; width: 150px; height: 150px; }
0.331661
0.054024
:root { --blue: #007bff; --indigo: #6610f2; --purple: #6f42c1; --pink: #e83e8c; --red: #dc3545; --orange: #fd7e14; --yellow: #fed136; --green: #28a745; --teal: #20c997; --cyan: #17a2b8; --white: #fff; --gray: #6c757d; --gray-dark: #343a40; --primary: #fed136; --secondary: #6c757d; --success: #28a745; --info: #17a2b8; --warning: #fed136; --danger: #dc3545; --light: #f8f9fa; --dark: #343a40; --breakpoint-xs: 0; --breakpoint-sm: 576px; --breakpoint-md: 768px; --breakpoint-lg: 992px; --breakpoint-xl: 1200px; --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; } * { margin: 0; padding: 0; list-style: none; text-decoration: none; box-sizing: border-box; font-family: "Nunito", sans-serif; } body { background: #fff; } .wrapper .header { z-index: 2; background: #22242a; position: fixed; top: 0; width: calc(100% - 0%); height: 60px; display: flex; box-shadow: 0px 0px 15px black; } .wrapper .header .header-menu { width: calc(100% - 0%); height: 100%; display: flex; justify-content: space-between; align-items: center; padding: 0px 20px; } .wrapper .header .header-menu #sidebar_btn { color: white; font-size: 24px; margin-top: 10px; margin-left: 10px; font-weight: 900; cursor: pointer; transition: 0.3s; -webkit-transition: 0.3s; -moz-transition: 0.3s; -ms-transition: 0.3s; -o-transition: 0.3s; transition-property: color; } .wrapper .header .header-menu #sidebar_btn:hover { color: cyan; } .wrapper .header .header-menu .title { color: white; position: absolute; left: 80px; top: 12px; font-size: 25px; font-weight: 900; text-transform: uppercase; } .wrapper .header .header-menu .title span { color: var(--info); } .wrapper .header .header-menu .btn-group .dropdown-menu .dropdown-item:hover { background: var(--blue); color: white; } .wrapper .header .header-menu .btn-group .dropdown-menu .logout:hover { background: var(--danger); color: white; } .wrapper .sidebar { z-index: 1; background: var(--dark); position: fixed; left: 0; top: 60px; width: 200px; height: calc(100% - 0%); overflow-y: auto; transition: 0.75s; -webkit-transition: 0.75s; -moz-transition: 0.75s; -ms-transition: 0.75s; -o-transition: 0.75s; transition-property: width; } .wrapper .sidebar .sidebar-menu { overflow: hidden; } .wrapper .sidebar .sidebar-menu .profile img { margin: 20px 0px; width: 90px; height: 90px; border-radius: 50%; -webkit-border-radius: 50%; -moz-border-radius: 50%; -ms-border-radius: 50%; -o-border-radius: 50%; } .wrapper .sidebar .sidebar-menu .profile p { color: white; font-weight: 600; margin-bottom: 1vh; padding: 0; } .wrapper .sidebar .sidebar-menu .profile span { color: var(--blue); font-weight: 700; } .wrapper .sidebar .sidebar-menu ul { margin-top: 30px; } .wrapper .sidebar .sidebar-menu .item { width: 250px; overflow: hidden; } .wrapper .sidebar .sidebar-menu .item .menu-btn { display: block; color: white; position: relative; padding: 25px 20px; text-decoration: none; transition: 0.5s; -webkit-transition: 0.5s; -moz-transition: 0.5s; -ms-transition: 0.5s; -o-transition: 0.5s; transition-property: color, background; } .wrapper .sidebar .sidebar-menu .item .menu-btn:hover { color: var(--white); background: var(--blue); } .wrapper .sidebar .sidebar-menu .item .menu-btn span { margin-left: 10px; } .wrapper .content { width: calc(100% - 200px); margin-top: 60px; margin-left: 200px; margin-bottom: 15px; overflow-x: hidden; overflow-y: auto; transition: 0.5s; -webkit-transition: 0.5s; -moz-transition: 0.5s; -ms-transition: 0.5s; -o-transition: 0.5s; transition-property: width; } #bars:checked ~ .sidebar .profile, #bars:checked ~ .sidebar .sidebar-menu .item span, #bars:checked ~ .sidebar .sub-menu span, #bars:checked ~ .sidebar .sidebar-menu .item .menu-btn .drop-down { display: none; } #bars:checked ~ .sidebar { left: -145px; } #bars:checked ~ .sidebar .sidebar-menu .item .menu-btn, #bars:checked ~ .sidebar .sidebar-menu .item .sub-menu a { margin-left: 140px; font-size: 20px; } #bars:checked ~ .content { width: calc(100% - 50px); margin-left: 50px; } @media only screen and (max-width: 768px) { .wrapper .header { z-index: 2; background: #22242a; position: fixed; top: 0; width: calc(100% - 0%); height: 50px; display: flex; box-shadow: 0px 0px 15px black; } .wrapper .sidebar { z-index: 1; background: var(--dark); position: fixed; left: 0; top: 50px; width: 200px; height: calc(100% - 0%); overflow-y: auto; transition: 0.75s; -webkit-transition: 0.75s; -moz-transition: 0.75s; -ms-transition: 0.75s; -o-transition: 0.75s; transition-property: width; } .sidebar .profile, .sidebar .sidebar-menu .item span, .sidebar .sub-menu span, .sidebar .sidebar-menu .item .menu-btn .drop-down { display: none; } .wrapper .sidebar { left: -140px; } .sidebar .sidebar-menu .item .menu-btn, .sidebar .sidebar-menu .item .sub-menu { margin-left: 140px; font-size: 20px; } .wrapper .content { position: relative; width: calc(100% - 55px); left: -140px; } #sidebar_btn { display: none; } .wrapper .header .header-menu .title { left: 15px; } }
public/assets/css/sidebar.css
:root { --blue: #007bff; --indigo: #6610f2; --purple: #6f42c1; --pink: #e83e8c; --red: #dc3545; --orange: #fd7e14; --yellow: #fed136; --green: #28a745; --teal: #20c997; --cyan: #17a2b8; --white: #fff; --gray: #6c757d; --gray-dark: #343a40; --primary: #fed136; --secondary: #6c757d; --success: #28a745; --info: #17a2b8; --warning: #fed136; --danger: #dc3545; --light: #f8f9fa; --dark: #343a40; --breakpoint-xs: 0; --breakpoint-sm: 576px; --breakpoint-md: 768px; --breakpoint-lg: 992px; --breakpoint-xl: 1200px; --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; } * { margin: 0; padding: 0; list-style: none; text-decoration: none; box-sizing: border-box; font-family: "Nunito", sans-serif; } body { background: #fff; } .wrapper .header { z-index: 2; background: #22242a; position: fixed; top: 0; width: calc(100% - 0%); height: 60px; display: flex; box-shadow: 0px 0px 15px black; } .wrapper .header .header-menu { width: calc(100% - 0%); height: 100%; display: flex; justify-content: space-between; align-items: center; padding: 0px 20px; } .wrapper .header .header-menu #sidebar_btn { color: white; font-size: 24px; margin-top: 10px; margin-left: 10px; font-weight: 900; cursor: pointer; transition: 0.3s; -webkit-transition: 0.3s; -moz-transition: 0.3s; -ms-transition: 0.3s; -o-transition: 0.3s; transition-property: color; } .wrapper .header .header-menu #sidebar_btn:hover { color: cyan; } .wrapper .header .header-menu .title { color: white; position: absolute; left: 80px; top: 12px; font-size: 25px; font-weight: 900; text-transform: uppercase; } .wrapper .header .header-menu .title span { color: var(--info); } .wrapper .header .header-menu .btn-group .dropdown-menu .dropdown-item:hover { background: var(--blue); color: white; } .wrapper .header .header-menu .btn-group .dropdown-menu .logout:hover { background: var(--danger); color: white; } .wrapper .sidebar { z-index: 1; background: var(--dark); position: fixed; left: 0; top: 60px; width: 200px; height: calc(100% - 0%); overflow-y: auto; transition: 0.75s; -webkit-transition: 0.75s; -moz-transition: 0.75s; -ms-transition: 0.75s; -o-transition: 0.75s; transition-property: width; } .wrapper .sidebar .sidebar-menu { overflow: hidden; } .wrapper .sidebar .sidebar-menu .profile img { margin: 20px 0px; width: 90px; height: 90px; border-radius: 50%; -webkit-border-radius: 50%; -moz-border-radius: 50%; -ms-border-radius: 50%; -o-border-radius: 50%; } .wrapper .sidebar .sidebar-menu .profile p { color: white; font-weight: 600; margin-bottom: 1vh; padding: 0; } .wrapper .sidebar .sidebar-menu .profile span { color: var(--blue); font-weight: 700; } .wrapper .sidebar .sidebar-menu ul { margin-top: 30px; } .wrapper .sidebar .sidebar-menu .item { width: 250px; overflow: hidden; } .wrapper .sidebar .sidebar-menu .item .menu-btn { display: block; color: white; position: relative; padding: 25px 20px; text-decoration: none; transition: 0.5s; -webkit-transition: 0.5s; -moz-transition: 0.5s; -ms-transition: 0.5s; -o-transition: 0.5s; transition-property: color, background; } .wrapper .sidebar .sidebar-menu .item .menu-btn:hover { color: var(--white); background: var(--blue); } .wrapper .sidebar .sidebar-menu .item .menu-btn span { margin-left: 10px; } .wrapper .content { width: calc(100% - 200px); margin-top: 60px; margin-left: 200px; margin-bottom: 15px; overflow-x: hidden; overflow-y: auto; transition: 0.5s; -webkit-transition: 0.5s; -moz-transition: 0.5s; -ms-transition: 0.5s; -o-transition: 0.5s; transition-property: width; } #bars:checked ~ .sidebar .profile, #bars:checked ~ .sidebar .sidebar-menu .item span, #bars:checked ~ .sidebar .sub-menu span, #bars:checked ~ .sidebar .sidebar-menu .item .menu-btn .drop-down { display: none; } #bars:checked ~ .sidebar { left: -145px; } #bars:checked ~ .sidebar .sidebar-menu .item .menu-btn, #bars:checked ~ .sidebar .sidebar-menu .item .sub-menu a { margin-left: 140px; font-size: 20px; } #bars:checked ~ .content { width: calc(100% - 50px); margin-left: 50px; } @media only screen and (max-width: 768px) { .wrapper .header { z-index: 2; background: #22242a; position: fixed; top: 0; width: calc(100% - 0%); height: 50px; display: flex; box-shadow: 0px 0px 15px black; } .wrapper .sidebar { z-index: 1; background: var(--dark); position: fixed; left: 0; top: 50px; width: 200px; height: calc(100% - 0%); overflow-y: auto; transition: 0.75s; -webkit-transition: 0.75s; -moz-transition: 0.75s; -ms-transition: 0.75s; -o-transition: 0.75s; transition-property: width; } .sidebar .profile, .sidebar .sidebar-menu .item span, .sidebar .sub-menu span, .sidebar .sidebar-menu .item .menu-btn .drop-down { display: none; } .wrapper .sidebar { left: -140px; } .sidebar .sidebar-menu .item .menu-btn, .sidebar .sidebar-menu .item .sub-menu { margin-left: 140px; font-size: 20px; } .wrapper .content { position: relative; width: calc(100% - 55px); left: -140px; } #sidebar_btn { display: none; } .wrapper .header .header-menu .title { left: 15px; } }
0.461259
0.100437
.table-containerAll{ position: relative; width: 100%; height: 100%; } .table-container--paged{ /*表格父容器div样式有分页*/ position: absolute; top:0; bottom: 40px; left: 0; right: 0; /*overflow:auto;*/ } .table-container--nonpaged{ /*表格父容器div样式无分页*/ position: absolute; top:0; bottom: 0; left: 0; right: 0; /*overflow:auto;*/ } .table-header-container{ position: absolute; top: 0; left: 0; right: 0; height: 32px; overflow: hidden; } .table-body-container{ position: absolute; top: 31px; left:0; right:0; bottom: 0; overflow-y:auto; } .table-class .table-scrollTh{ border-left-width: 0px; } .table-class{ /*表格样式*/ width: 100%; height: auto; border-collapse: collapse; table-layout: fixed; } /*.table-headTr{*/ /*background: rgba(2,156,255,0.5); !*表头背景色*!*/ /*}*/ .table-body-container .table-class tr:hover{ background: rgba(2,156,255,0.2); } .table-class td,.table-class th{ padding: 0; font-weight: normal; line-height: 30px; text-align: center; box-sizing: content-box; border: 1px solid rgba(0,0,0,0.1); } .table-class th{ position: relative; white-space: nowrap; text-overflow: ellipsis; } .table-sortSign { display: inline-block; height: 15px; width: 15px; background-image: url(table-sort.gif); background-repeat: no-repeat; background-position: 5px -112px; position: absolute; top:6px; right:10px; cursor: pointer; } .table-class td{ overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .table-paginationContainer{ /*表格分页容器div样式*/ height: 30px; position: absolute; right: 0; left:0; bottom: 0; } .table-selectContainer{ /*表格当前页下拉框容器div样式*/ position: relative; vertical-align: middle; display: inline-block; float: right; margin-left: 5px; } .table-selectStyle{ /*表格当前页下拉框样式*/ /*background:rgba(0,41,93,0.6);*/ border:1px solid rgb(50, 115, 222); height: 18px; color: #000; padding-left: 10px; width: 60px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .table-skipButton{ /*表格跳转按钮样式*/ position: relative; float: right; padding: 2px 6px; color: #ffffff; text-decoration:none; background-color: #26B; border: 1px solid #014889; margin-left:5px; } .table-skipPage{ /*表格跳转页文本框样式*/ /*background:rgba(0,41,93,0.6);*/ border:1px solid rgb(50, 115, 222); height: 20px; color: #000; margin-left: 5px; margin-right: 5px; padding-left:5px; padding-right:5px; width: 40px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .table-hoverShow{ width: 100%; min-height: 30px; } .table-class .table-hoverShow-th{ width: 120px; border-left-width: 0; border-right-width: 0; } .tableFade-enter-active, .tableFade-leave-active { transition: opacity .3s } .tableFade-enter, .tableFade-leave-active { opacity: 0 }
package/TableComponent.css
.table-containerAll{ position: relative; width: 100%; height: 100%; } .table-container--paged{ /*表格父容器div样式有分页*/ position: absolute; top:0; bottom: 40px; left: 0; right: 0; /*overflow:auto;*/ } .table-container--nonpaged{ /*表格父容器div样式无分页*/ position: absolute; top:0; bottom: 0; left: 0; right: 0; /*overflow:auto;*/ } .table-header-container{ position: absolute; top: 0; left: 0; right: 0; height: 32px; overflow: hidden; } .table-body-container{ position: absolute; top: 31px; left:0; right:0; bottom: 0; overflow-y:auto; } .table-class .table-scrollTh{ border-left-width: 0px; } .table-class{ /*表格样式*/ width: 100%; height: auto; border-collapse: collapse; table-layout: fixed; } /*.table-headTr{*/ /*background: rgba(2,156,255,0.5); !*表头背景色*!*/ /*}*/ .table-body-container .table-class tr:hover{ background: rgba(2,156,255,0.2); } .table-class td,.table-class th{ padding: 0; font-weight: normal; line-height: 30px; text-align: center; box-sizing: content-box; border: 1px solid rgba(0,0,0,0.1); } .table-class th{ position: relative; white-space: nowrap; text-overflow: ellipsis; } .table-sortSign { display: inline-block; height: 15px; width: 15px; background-image: url(table-sort.gif); background-repeat: no-repeat; background-position: 5px -112px; position: absolute; top:6px; right:10px; cursor: pointer; } .table-class td{ overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .table-paginationContainer{ /*表格分页容器div样式*/ height: 30px; position: absolute; right: 0; left:0; bottom: 0; } .table-selectContainer{ /*表格当前页下拉框容器div样式*/ position: relative; vertical-align: middle; display: inline-block; float: right; margin-left: 5px; } .table-selectStyle{ /*表格当前页下拉框样式*/ /*background:rgba(0,41,93,0.6);*/ border:1px solid rgb(50, 115, 222); height: 18px; color: #000; padding-left: 10px; width: 60px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .table-skipButton{ /*表格跳转按钮样式*/ position: relative; float: right; padding: 2px 6px; color: #ffffff; text-decoration:none; background-color: #26B; border: 1px solid #014889; margin-left:5px; } .table-skipPage{ /*表格跳转页文本框样式*/ /*background:rgba(0,41,93,0.6);*/ border:1px solid rgb(50, 115, 222); height: 20px; color: #000; margin-left: 5px; margin-right: 5px; padding-left:5px; padding-right:5px; width: 40px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .table-hoverShow{ width: 100%; min-height: 30px; } .table-class .table-hoverShow-th{ width: 120px; border-left-width: 0; border-right-width: 0; } .tableFade-enter-active, .tableFade-leave-active { transition: opacity .3s } .tableFade-enter, .tableFade-leave-active { opacity: 0 }
0.373533
0.079926
/* Always show vertical scroll bar to avoid the screen shifting when flipping between long and short pages. */ html { overflow-y: scroll; } /* section spacing and heading sizes */ ewfSectionNormalStyleBothStates { margin-top: 2em; margin-bottom: 2em; } ewfSectionNormalStyleBothStates > ewfSectionHeadingContainer > ewfSectionHeading { font-size: 1.2em; margin-top: 0; margin-bottom: 1em; font-weight: 600; } ewfSectionAllStylesBothStates ewfSectionNormalStyleBothStates { margin-top: 1.75em; margin-bottom: 1.75em; } ewfSectionAllStylesBothStates ewfSectionNormalStyleBothStates > ewfSectionHeadingContainer > ewfSectionHeading { font-size: 1.1em; margin-bottom: 1em; } ewfSectionAllStylesBothStates ewfSectionAllStylesBothStates ewfSectionNormalStyleBothStates { margin-top: 1.5em; margin-bottom: 1.5em; } ewfSectionAllStylesBothStates ewfSectionAllStylesBothStates ewfSectionNormalStyleBothStates > ewfSectionHeadingContainer > ewfSectionHeading { font-size: 1em; margin-bottom: 1em; } ewfSectionNormalStyleBothStates:first-child, ewfSectionAllStylesBothStates ewfSectionNormalStyleBothStates:first-child, ewfSectionAllStylesBothStates ewfSectionAllStylesBothStates ewfSectionNormalStyleBothStates:first-child { margin-top: 0; } ewfSectionNormalStyleBothStates:last-child, ewfSectionAllStylesBothStates ewfSectionNormalStyleBothStates:last-child, ewfSectionAllStylesBothStates ewfSectionAllStylesBothStates ewfSectionNormalStyleBothStates:last-child { margin-bottom: 0; } ewfSectionBoxStyleBothStates { margin-top: 1em; } ewfSectionBoxStyleBothStates:first-child { margin-top: 0; } ewfSectionBoxStyleBothStates + ewfSectionBoxStyleBothStates { margin-top: 1.5em; } /* other spacing */ /* top */ p, ewfUnorderedLineList, ewfUnorderedStackList, ewfHtmlBlock ul, ewfFormItemList, ewfFormItem, ewfTableStandardAndStandardLayoutOnlyStyles, ewfFlowCheckboxAllStates > ewfFlowCheckboxNestedContentContainer, ewfCheckboxList, ewfHtmlBlockEditor, ewfMergeFieldTreeContainer, ewfMergeRowTreeContainer, ewfMergeRowTreeChildContainer, ewfChart, ewfHtmlBlock { margin-top: 1em; } p:first-child, ewfUnorderedLineList:first-child, ewfUnorderedStackList:first-child, ewfHtmlBlock ul:first-child, ewfFormItemList:first-child, ewfFormItem:first-child, ewfTableStandardAndStandardLayoutOnlyStyles:first-child, ewfCheckboxList:first-child, ewfHtmlBlockEditor:first-child, ewfMergeFieldTreeContainer:first-child, ewfMergeRowTreeContainer:first-child, ewfMergeRowTreeChildContainer:first-child, ewfChart:first-child, ewfHtmlBlock:first-child { margin-top: 0; } ewfUnorderedWrappingList { margin-top: calc( 1em - .25em ); } ewfUnorderedWrappingList:first-child { margin-top: calc( 0em - .25em ); } ewfWrappingFormItemList { margin-top: calc( 1em - .5em ); } ewfWrappingFormItemList:first-child { margin-top: calc( 0em - .5em ); } /* bottom */ p, ewfUnorderedLineList, ewfUnorderedStackList, ewfHtmlBlock ul { margin-bottom: 0; } ewfFlowCheckboxAllStates > ewfFlowCheckboxNestedContentContainer { margin-bottom: 1em; } /* lists */ ewfUnorderedLineList > ewfComponentListItem { margin-left: .5em; } ewfUnorderedLineList > ewfComponentListItem:first-child { margin-left: 0; } ewfUnorderedStackList > ewfComponentListItem, ewfOrderedStackList > ewfComponentListItem, ewfHtmlBlock li { margin-top: .5em; } ewfUnorderedStackList > ewfComponentListItem:first-child, ewfOrderedStackList > ewfComponentListItem:first-child, ewfHtmlBlock li:first-child { margin-top: 0; } ewfUnorderedWrappingList { margin-right: -.25em; margin-bottom: -.25em; margin-left: -.25em; } ewfUnorderedWrappingList > ewfComponentListItem { margin: .25em; } ewfStackFormItemList > ewfFormItemListItem, ewfStackFormItemList > ewfFormItemListButtonItem, ewfMergeRowTreeContainer ewfUnorderedStackList > ewfComponentListItem { margin-top: 0; margin-bottom: 0; border-top-width: 1px; border-top-style: solid; padding-top: .75em; padding-bottom: .75em; } ewfStackFormItemList > ewfFormItemListItem:first-child, ewfStackFormItemList > ewfFormItemListButtonItem:first-child, ewfMergeRowTreeContainer ewfUnorderedStackList > ewfComponentListItem:first-child { border-top: 0; padding-top: 0; } ewfStackFormItemList > ewfFormItemListItem:last-child, ewfStackFormItemList > ewfFormItemListButtonItem:last-child, ewfMergeRowTreeContainer ewfUnorderedStackList > ewfComponentListItem:last-child { padding-bottom: 0; } ewfStackFormItemList > ewfFormItemListItem, ewfStackFormItemList > ewfFormItemListButtonItem { margin-left: -.5em; margin-right: -.5em; } ewfStackFormItemList > ewfFormItemListItem > ewfFormItemListItemLabel, ewfStackFormItemList > ewfFormItemListItem > ewfFormItemListItemContent, ewfStackFormItemList > ewfFormItemListButtonItem > ewfFormItemListItemLabel, ewfStackFormItemList > ewfFormItemListButtonItem > ewfFormItemListItemContent { margin-left: .5em; margin-right: .5em; } ewfWrappingFormItemList { margin-right: -.5em; margin-bottom: -.5em; margin-left: -.5em; } ewfWrappingFormItemList > ewfFormItemListItem, ewfWrappingFormItemList > ewfFormItemListButtonItem { margin: .5em; } ewfGridFormItemList { grid-gap: 1em; } /* form items */ ewfWrappingFormItemList > ewfFormItemListItem > ewfFormItemListItemLabel, ewfGridFormItemList > ewfFormItemListItem > ewfFormItemListItemLabel, ewfFormItem > ewfFormItemLabel { margin-bottom: .1em; } ewfFormItemList > ewfFormItemListItem > ewfFormItemListItemContent > ewfErrorMessageListContainer > ewfUnorderedStackList > ewfComponentListItem, ewfFormItem > ewfErrorMessageListContainer > ewfUnorderedStackList > ewfComponentListItem { margin-top: .1em; } ewfTableStandardAndStandardLayoutOnlyStyles > ewfTheadAndTfootAndTbody > ewfTrAllStates > ewfTd > ewfTableItemSelectionAndActionContainer > ewfTableItemSelectionLabelAndControlContainer > ewfTableItemSelectionLabel { margin-right: .5em; } ewfFlowCheckboxAllStates > ewfFlowCheckboxNestedContentContainer { margin-left: 3em; } ewfModalBox > ewfModalBoxCloseButtonContainer { padding: .5em; } /* border colors */ ewfSectionBoxStyleBothStates > ewfSectionHeadingContainer, ewfStackFormItemList > ewfFormItemListItem, ewfStackFormItemList > ewfFormItemListButtonItem, ewfMergeRowTreeContainer ewfUnorderedStackList > ewfComponentListItem { border-color: rgba( 0, 0, 0, 0.1 ); } ewfSingleLineTextControlAllStates, ewfMultilineTextControlAllStates, ewfModalBox > ewfModalBoxCloseButtonContainer { border-color: hsla( 0, 0%, 58%, 1 ); } /* focus */ ewfHyperlinkStandardStyleStatesWithFocus, ewfActionComponentAllStylesStatesWithFocus.icon { outline: 2px solid hsl( 209, 91%, 47% ); } ewfActionComponentAllButtonStylesStatesWithFocus { outline: 2px solid hsl( 209, 91%, 47% ); outline-offset: 1px; } ewfSingleLineTextControlFocusState, ewfMultilineTextControlFocusState { box-shadow: 0 0 8px hsla( 209, 91%, 47%, 0.3 ); border-color: hsla( 209, 91%, 47%, 1 ); outline: none; } /* sections */ ewfSectionAllStylesBothStates { clear: both; } ewfSectionAllStylesBothStates > ewfSectionHeadingContainer > ewfSectionExpandLabel, ewfSectionAllStylesBothStates > ewfSectionHeadingContainer > ewfSectionCloseLabel { float: right; } ewfSectionAllStylesClosedState > ewfSectionHeadingContainer > ewfSectionCloseLabel, ewfSectionAllStylesExpandedState > ewfSectionHeadingContainer > ewfSectionExpandLabel { display: none; } ewfSectionAllStylesClosedState > ewfSectionContentContainer { display: none; } /* lists */ ewfUnorderedLineList, ewfUnorderedStackList, ewfUnorderedWrappingList, ewfUnorderedInlineList { padding: 0; list-style-type: none; } ewfUnorderedLineList, ewfUnorderedStackList, ewfUnorderedWrappingList, ewfStackFormItemList > ewfFormItemListItem, ewfStackFormItemList > ewfFormItemListButtonItem, ewfWrappingFormItemList { display: flex; } ewfUnorderedLineList:not( .ewfFvaT ):not( .ewfFvaB ):not( .ewfFvaC ):not( .ewfFvaBl ), ewfUnorderedWrappingList:not( .ewfFvaT ):not( .ewfFvaB ):not( .ewfFvaC ):not( .ewfFvaBl ), ewfStackFormItemList > ewfFormItemListItem, ewfStackFormItemList > ewfFormItemListButtonItem { align-items: center; } ewfUnorderedLineList { flex-flow: row nowrap; } ewfUnorderedStackList { flex-flow: column nowrap; } ewfUnorderedWrappingList, ewfStackFormItemList > ewfFormItemListItem, ewfStackFormItemList > ewfFormItemListButtonItem, ewfWrappingFormItemList { flex-flow: row wrap; } ewfStackFormItemList, ewfGridFormItemList { clear: both; } ewfGridFormItemList { display: grid; } ewfUnorderedInlineList, ewfUnorderedInlineList > ewfComponentListItem, ewfInlineListItemContentContainer { display: inline; } ewfUnorderedInlineList > ewfComponentListItem + ewfComponentListItem::before { content: " | "; } ewfStackFormItemList > ewfFormItemListItem > ewfFormItemListItemLabel, ewfStackFormItemList > ewfFormItemListItem > ewfFormItemListItemContent, ewfStackFormItemList > ewfFormItemListButtonItem > ewfFormItemListItemLabel, ewfStackFormItemList > ewfFormItemListButtonItem > ewfFormItemListItemContent { min-width: 0; flex-grow: 1; } ewfStackFormItemList > ewfFormItemListItem > ewfFormItemListItemContent, ewfStackFormItemList > ewfFormItemListButtonItem > ewfFormItemListItemContent { align-self: stretch; } ewfGridFormItemList > ewfFormItemListItem, ewfGridFormItemList > ewfFormItemListButtonItem { min-width: 0; } ewfGridFormItemList > ewfFormItemListButtonItem { grid-column-end: -1; } .ewfFaL { justify-content: flex-start; } .ewfFaR { justify-content: flex-end; } .ewfFaC { justify-content: center; } .ewfFaJ { justify-content: space-between; } .ewfFvaT { align-items: flex-start; align-self: flex-start; } .ewfFvaB { align-items: flex-end; align-self: flex-end; } .ewfFvaC { align-items: center; align-self: center; } .ewfFvaBl { align-items: baseline; align-self: baseline; } .ewfGaL { justify-items: start; justify-self: start; } .ewfGaR { justify-items: end; justify-self: end; } .ewfGaC { justify-items: center; justify-self: center; } .ewfGaS { justify-items: stretch; justify-self: stretch; } .ewfGvaT { align-items: start; align-self: start; } .ewfGvaB { align-items: end; align-self: end; } .ewfGvaC { align-items: center; align-self: center; } .ewfGvaS { align-items: stretch; align-self: stretch; } /* action components */ ewfActionComponentAllStylesAllStates { margin: 0; border-style: none; background-color: Transparent; padding: 0; } ewfActionComponentAllStylesAllStates::-moz-focus-inner { border-style: none; padding: 0; } ewfActionComponentAllStylesAllStates > ewfIcon { padding-left: .4em; padding-right: .4em; } ewfActionComponentAllStylesAllStates > ewfIcon:first-child { padding-left: 0; } ewfActionComponentAllStylesAllStates > ewfIcon:last-child { padding-right: 0; } ewfActionComponentAllButtonStylesAllStates, ewfTopWarningContainer ewfActionComponentAllButtonStylesAllStates { display: inline-block; font-weight: initial; white-space: nowrap; } ewfActionComponentShrinkWrapButtonStyleAllStates, ewfTopWarningContainer ewfActionComponentShrinkWrapButtonStyleAllStates { border-radius: .25em; padding: .1em .3em; } ewfActionComponentNormalButtonStyleAllStates { border-radius: .4em; padding: .6em; } ewfActionComponentLargeButtonStyleAllStates { font-size: 1.4em; border-radius: .5em; padding: 1em; font-weight: 600; } button { font: inherit; } /* images */ img { border-width: 0; /* Remove default borders around images when they are inside anchor tags. */ } img.ewfAutoSizer { display: block; width: 100%; } /* tables */ table { border-width: 0; padding: 0; border-spacing: 0; } ewfTableStandardAndStandardLayoutOnlyStyles { width: 100%; table-layout: fixed; clear: both; } th { padding: 0; text-align: left; } td { padding: 0; } th.ewfTcTop, td.ewfTcTop { vertical-align: top; } th.ewfTcMiddle, td.ewfTcMiddle { vertical-align: middle; } th.ewfTcBottom, td.ewfTcBottom { vertical-align: bottom; } th.ewfTcBaseLine, td.ewfTcBaseLine { vertical-align: baseline; } .ewfOverflowedCell { overflow: hidden; } ewfTableActionListContainer { flex-grow: 1; } ewfTableActionListContainer > ewfUnorderedWrappingList { justify-content: flex-end; } ewfTableItemLimitingAndGeneralActionContainer, ewfTableItemSelectionAndActionContainer, ewfTableItemSelectionLabelAndControlContainer, ewfTableItemGroupNameAndGeneralActionContainer { display: flex; flex-flow: row wrap; } ewfTableItemSelectionLabelAndControlContainer { align-items: baseline; } ewfTableItemGroupNameAndGeneralActionContainer > ewfTableActionListContainer { font-weight: initial; } /* text control */ ewfSingleLineTextControlAllStates, ewfMultilineTextControlAllStates { font-size: inherit; font-family: inherit; box-sizing: border-box; max-width: 100%; border-width: 1px; border-style: solid; border-radius: .4em; padding: .5em .75em; color: hsla( 215, 11%, 22%, 1 ); } ewfMultilineTextControlAllStates { width: 35em; resize: vertical; } /* This prevents Chrome and Safari from allowing the user to resize textareas. */ textarea { resize: none; } ewfSingleLineTextControlAllStates[type="password"], ewfSingleLineTextControlAllStates[type="email"], ewfSingleLineTextControlAllStates[type="tel"] { width: 20em; } /* checkboxes */ ewfFlowCheckboxAllStates > ewfCheckbox { display: block; } /* list controls */ .select-css { display: inline-block; width: auto; padding-top: .5em; padding-bottom: .5em; line-height: unset; font-family: unset; font-weight: unset; } ewfDropDownListContainer > ewfDropDownList { text-align: start; } ewfStackFormItemList > ewfFormItemListItem > ewfFormItemListItemContent > ewfDropDownListContainer > ewfDropDownList, ewfGridFormItemList > ewfFormItemListItem > ewfFormItemListItemContent > ewfDropDownListContainer > ewfDropDownList, ewfTableStandardAndStandardLayoutOnlyStyles > ewfTheadAndTfootAndTbody > ewfTrAllStates > ewfThAndTd > ewfFormItem > ewfFormItemContent > ewfDropDownListContainer > ewfDropDownList { width: 100%; } ewfCheckboxList > ewfCheckboxListContentContainer > ewfUnorderedComponentList { margin: 0; padding: 0; list-style-type: none; } /* date pickers, time pickers, and date and time pickers */ ewfDateControl, ewfTimeControl, ewfDateAndTimeControl { display: flex; } ewfDateControl ewfIcon, ewfTimeControl ewfIcon { font-size: 1.4em; } ewfDateControl > ewfSingleLineTextControlAllStates { margin-right: .5em; width: 100%; max-width: 8em; } ewfTimeControl > ewfSingleLineTextControlAllStates { margin-right: .5em; width: 100%; max-width: 5em; } ewfTimeControl > ewfDropDownListContainer { width: 100%; max-width: 6em; } ewfTimeControl > ewfDropDownListContainer > ewfDropDownList { width: 100%; } ewfDateAndTimeControl > ewfSingleLineTextControlAllStates { margin-right: .5em; width: 100%; max-width: 12em; } ewfDateAndTimeControl .fa-stack { font-size: .7em; } ewfDateAndTimeControl ewfIcon.fa-clock-o { position: relative; top: .20em; } ewfDurationControlContainer > ewfSingleLineTextControlAllStates { width: 100%; max-width: 6em; } /* Text alignment. NOTE: The classes ewfCurrencyCell, ewfRightAlignCell, and ewfCenterCell are deprecated. Eliminate them from all systems and then remove them from these rules. */ .ewfTaL { text-align: left; } .ewfTaR, .ewfCurrencyCell, .ewfCurrencyCell input[type="text"], .ewfRightAlignCell, .ewfRightAlignCell input[type="text"] { text-align: right; } .ewfTaC, .ewfCenterCell { text-align: center; } .ewfTaJ { text-align: justify; } /* cursors */ ewfActionComponentAllStylesAllActionStates, .ewfAc { cursor: pointer; } ewfActionComponentAllStylesActionlessState, .ewfAec { cursor: default; } /* tool tips */ .qtip-content { max-height: 80vh; overflow-y: auto; } /* modal boxes */ ewfModalBoxContainer { border-style: none; padding: 0; } ewfModalBox { display: flex; max-width: 80vw; max-height: 80vh; flex-direction: column; } ewfModalBox > ewfModalBoxCloseButtonContainer { flex: none; border-bottom-width: 1px; border-bottom-style: solid; padding-bottom: .5em; text-align: right; } ewfModalBox > ewfModalBoxContentContainer { padding: 1em; max-width: 35em; overflow: auto; -webkit-overflow-scrolling: touch; } ewfModalBox > iframe { flex: auto; border-style: none; width: 35em; max-width: 100%; height: 35em; min-height: 0; } ewfModalBoxBackdrop { background-color: hsla( 0, 0%, 0%, .65 ); } /* user management */ ewfFormItemList.newPassword ewfSingleLineTextControlAllStates { width: 200px; } /* mail merging */ ewfMergeFieldTreeChildContainer, ewfMergeRowTreeChildContainer { margin-left: 2em; } /* chart */ ewfChart > div:first-child { position: relative; } /* error messages */ *[tabindex="-1"]:focus { outline: none; } /* EwfPage and master page */ ewfTopWarningContainer { z-index: 9998; } ewfNotificationSectionContainerBothStates { z-index: 9999; } ewfClickBlockerBothStates { z-index: 10000; } ewfProcessingDialogBlockAllStates { z-index: 10001; } ewfTopWarningContainer { position: relative; font-size: 1rem; margin-bottom: .5em; border: 1px solid #464646; border-radius: .5em; background-color: hsla( 43, 100%, 54%, 0.75 ); padding: .5em; text-align: center; font-weight: bold; color: black; } @media print { ewfTopWarningContainer { display: none; } } ewfTopWarningContainer ewfActionComponentAllButtonStylesAllStates { color: white; } ewfTopWarningContainer ewfActionComponentAllButtonStylesAllNormalStates, ewfTopWarningContainer ewfActionComponentAllButtonStylesAllVisitedStates { background-color: hsla( 4, 100%, 32%, 1 ); } ewfTopWarningContainer ewfActionComponentAllButtonStylesStatesWithHover, ewfTopWarningContainer ewfActionComponentAllButtonStylesStatesWithFocus { background-color: hsla( 4, 100%, 45%, 1 ); } span.ewfIntermediateUrl { word-break: break-all; } ewfClickBlockerBothStates { position: fixed; top: 0; right: 0; bottom: 0; left: 0; background-color: gray; } ewfClickBlockerInactiveState { visibility: hidden; opacity: 0; transition: visibility 400ms, opacity 400ms; } ewfClickBlockerActiveState { opacity: 0.3; transition: opacity 400ms; } ewfProcessingDialogBlockAllStates { position: fixed; font-size: .8rem; top: 50%; left: 50%; margin-top: -4.5rem; margin-left: -9rem; box-shadow: 0 0 15px black; border-radius: 15px; background-color: white; padding: .5rem; width: 17rem; text-align: center; color: black; } ewfProcessingDialogBlockInactiveState, ewfProcessingDialogBlockActiveState { height: 4rem; } ewfProcessingDialogBlockInactiveState { visibility: hidden; opacity: 0; transition: height 0 400ms, visibility 400ms, opacity 400ms; } ewfProcessingDialogBlockActiveState { transition: opacity 400ms; } ewfProcessingDialogBlockTimeOutState { height: 8rem; transition: height 200ms; } ewfProcessingDialogProcessingParagraph { font-size: 2em; display: flex; margin: 0; height: 4rem; justify-content: center; align-items: center; cursor: default; } ewfProcessingDialogProcessingParagraph > .ewfProcessingEllipsis1, ewfProcessingDialogProcessingParagraph > .ewfProcessingEllipsis2, ewfProcessingDialogProcessingParagraph > .ewfProcessingEllipsis3 { animation: pulse 2s infinite; } @keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0; } 100% { opacity: 1; } } ewfProcessingDialogProcessingParagraph > .ewfProcessingEllipsis1 { animation-delay: 0; } ewfProcessingDialogProcessingParagraph > .ewfProcessingEllipsis2 { animation-delay: 200ms; } ewfProcessingDialogProcessingParagraph > .ewfProcessingEllipsis3 { animation-delay: 300ms; } ewfProcessingDialogTimeOutParagraphBothStates { display: flex; margin: 0; height: 4rem; justify-content: center; align-items: center; } ewfProcessingDialogTimeOutParagraphInactiveState { visibility: hidden; transition: visibility 400ms; } ewfProcessingDialogTimeOutParagraphActiveState { transition: visibility 0 200ms; } ewfProcessingDialogTimeOutParagraphBothStates > ewfActionComponentAllButtonStylesAllStates { white-space: unset; } ewfNotificationSectionContainerBothStates { position: fixed; font-size: 1rem; top: 0; left: 50%; width: 80%; min-width: 10rem; max-width: 40rem; } ewfNotificationSectionContainerNotificationState { transform: translateX( -50% ) translateY( 50vh ) translateY( -50% ); } ewfNotificationSectionContainerDockedState { transform: translateX( -50% ); animation-name: notificationSectionPosition; } ewfNotificationSectionContainerBothStates > ewfSectionBoxStyleBothStates { background-color: white; color: black; } ewfNotificationSectionContainerNotificationState > ewfSectionBoxStyleBothStates { font-size: 1.2em; box-shadow: 0 0 15px black; border-radius: 1em; padding: 2em; } ewfNotificationSectionContainerDockedState > ewfSectionBoxStyleBothStates { font-size: 1rem; box-shadow: 0 2px 6px rgba( 0, 0, 0, .5 ); border-radius: 0 0 .5em .5em; padding: .2rem 1em; transition-property: font-size, box-shadow, border-radius, padding; } ewfNotificationSectionContainerBothStates > ewfSectionBoxStyleBothStates > ewfSectionHeadingContainer { border-style: none; overflow: hidden; /* See http://stackoverflow.com/a/4407335/35349. */ -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } ewfNotificationSectionContainerNotificationState > ewfSectionBoxStyleBothStates > ewfSectionHeadingContainer { margin: 0; padding: 0; height: 0; } ewfNotificationSectionContainerDockedState > ewfSectionBoxStyleBothStates > ewfSectionHeadingContainer { margin-top: -.2rem; margin-left: -1em; margin-right: -1em; background-color: rgba( 0, 0, 0, .05 ); padding: .2rem 1em; animation-name: notificationSectionDisplay; } ewfNotificationSectionContainerDockedState > ewfSectionBoxStyleClosedState > ewfSectionHeadingContainer { margin-bottom: -.2rem; } ewfNotificationSectionContainerDockedState > ewfSectionBoxStyleExpandedState > ewfSectionHeadingContainer { margin-bottom: .2rem; } ewfNotificationSectionContainerBothStates > ewfSectionBoxStyleBothStates > ewfSectionHeadingContainer > ewfSectionHeading { font-size: 1em; margin: 0; } ewfNotificationSectionContainerBothStates > ewfSectionBoxStyleBothStates > ewfSectionContentContainer { display: block; overflow: hidden; } /* Using max-height in these two rules is a hack. We'd like to remove the first rule and use height in the second, but height doesn't transition properly when "auto" is involved. */ ewfNotificationSectionContainerNotificationState > ewfSectionBoxStyleClosedState > ewfSectionContentContainer { max-height: 100em; } ewfNotificationSectionContainerDockedState > ewfSectionBoxStyleClosedState > ewfSectionContentContainer { max-height: 0; transition-property: max-height; } ewfNotificationSpacer { height: 1.8rem; } ewfInfoMessageContainer > ewfIcon { color: rgb( 120, 160, 195 ); } ewfWarningMessageContainer > ewfIcon { color: #E69017; } ewfWarningMessageContainer > ewfStatusMessageText { font-weight: bold; } ewfNotificationSectionContainerDockedState { animation-duration: 800ms; } ewfNotificationSectionContainerDockedState > ewfSectionBoxStyleBothStates, ewfNotificationSectionContainerDockedState > ewfSectionBoxStyleClosedState > ewfSectionContentContainer { transition-delay: 400ms; } ewfNotificationSectionContainerDockedState > ewfSectionBoxStyleBothStates > ewfSectionHeadingContainer { animation-duration: 400ms; } @keyframes notificationSectionPosition { 0% { transform: translateX( -50% ) translateY( 50vh ) translateY( -50% ); animation-timing-function: ease-in; } 50% { transform: translateX( -50% ) translateY( -50vh ) translateY( -50% ); } 75% { transform: translateX( -50% ) translateY( -1.7em ); animation-timing-function: ease-out; } } @keyframes notificationSectionDisplay { 0% { margin: 0; padding: 0; height: 0; } 99.9% { margin: 0; padding: 0; height: 0; } } .mp-results { opacity: .4; } .mp-results:hover { opacity: 1; } @media print { .mp-results { display: none; } } /* SelectUser and error pages */ ewfSelectUserPageBody, ewfErrorPageBody { font-size: 1rem; margin-left: auto; margin-right: auto; background-color: white; max-width: 60em; color: black; } ewfSelectUserPageBody ewfHyperlinkStandardStyleAllNormalStates, ewfSelectUserPageBody ewfHyperlinkStandardStyleAllVisitedStates, ewfErrorPageBody ewfHyperlinkStandardStyleAllNormalStates, ewfErrorPageBody ewfHyperlinkStandardStyleAllVisitedStates { color: hsla( 4, 100%, 32%, 1 ); } ewfSelectUserPageBody ewfActionComponentAllButtonStylesAllNormalStates, ewfSelectUserPageBody ewfActionComponentAllButtonStylesAllVisitedStates, ewfErrorPageBody ewfActionComponentAllButtonStylesAllNormalStates, ewfErrorPageBody ewfActionComponentAllButtonStylesAllVisitedStates { background-color: hsla( 4, 100%, 32%, 1 ); } ewfSelectUserPageBody ewfHyperlinkStandardStyleStatesWithHover, ewfSelectUserPageBody ewfHyperlinkStandardStyleStatesWithFocus, ewfErrorPageBody ewfHyperlinkStandardStyleStatesWithHover, ewfErrorPageBody ewfHyperlinkStandardStyleStatesWithFocus { color: hsla( 4, 100%, 45%, 1 ); } ewfSelectUserPageBody ewfActionComponentAllButtonStylesStatesWithHover, ewfSelectUserPageBody ewfActionComponentAllButtonStylesStatesWithFocus, ewfErrorPageBody ewfActionComponentAllButtonStylesStatesWithHover, ewfErrorPageBody ewfActionComponentAllButtonStylesStatesWithFocus { background-color: hsla( 4, 100%, 45%, 1 ); } ewfSelectUserPageBody ewfHyperlinkStandardStyleAllStates, ewfErrorPageBody ewfHyperlinkStandardStyleAllStates { text-decoration: underline; } ewfSelectUserPageBody ewfActionComponentAllButtonStylesAllStates, ewfErrorPageBody ewfActionComponentAllButtonStylesAllStates { display: inline-block; color: white; } ewfSelectUserPageBody ewfActionComponentLargeButtonStyleAllStates, ewfErrorPageBody ewfActionComponentLargeButtonStyleAllStates { font-size: 1.4em; border-radius: .5em; padding: 1em; font-weight: 600; } /* fonts */ ewfTopWarningContainer, ewfProcessingDialogBlockAllStates, ewfNotificationSectionContainerBothStates, ewfSelectUserPageBody, ewfErrorPageBody { font-family: 'Open Sans', sans-serif; } ewfSelectUserPageBody h1, ewfErrorPageBody h1 { font-family: 'Libre Franklin', sans-serif; }
Core/EnterpriseWebFramework/StaticFiles/styles/basic.css
/* Always show vertical scroll bar to avoid the screen shifting when flipping between long and short pages. */ html { overflow-y: scroll; } /* section spacing and heading sizes */ ewfSectionNormalStyleBothStates { margin-top: 2em; margin-bottom: 2em; } ewfSectionNormalStyleBothStates > ewfSectionHeadingContainer > ewfSectionHeading { font-size: 1.2em; margin-top: 0; margin-bottom: 1em; font-weight: 600; } ewfSectionAllStylesBothStates ewfSectionNormalStyleBothStates { margin-top: 1.75em; margin-bottom: 1.75em; } ewfSectionAllStylesBothStates ewfSectionNormalStyleBothStates > ewfSectionHeadingContainer > ewfSectionHeading { font-size: 1.1em; margin-bottom: 1em; } ewfSectionAllStylesBothStates ewfSectionAllStylesBothStates ewfSectionNormalStyleBothStates { margin-top: 1.5em; margin-bottom: 1.5em; } ewfSectionAllStylesBothStates ewfSectionAllStylesBothStates ewfSectionNormalStyleBothStates > ewfSectionHeadingContainer > ewfSectionHeading { font-size: 1em; margin-bottom: 1em; } ewfSectionNormalStyleBothStates:first-child, ewfSectionAllStylesBothStates ewfSectionNormalStyleBothStates:first-child, ewfSectionAllStylesBothStates ewfSectionAllStylesBothStates ewfSectionNormalStyleBothStates:first-child { margin-top: 0; } ewfSectionNormalStyleBothStates:last-child, ewfSectionAllStylesBothStates ewfSectionNormalStyleBothStates:last-child, ewfSectionAllStylesBothStates ewfSectionAllStylesBothStates ewfSectionNormalStyleBothStates:last-child { margin-bottom: 0; } ewfSectionBoxStyleBothStates { margin-top: 1em; } ewfSectionBoxStyleBothStates:first-child { margin-top: 0; } ewfSectionBoxStyleBothStates + ewfSectionBoxStyleBothStates { margin-top: 1.5em; } /* other spacing */ /* top */ p, ewfUnorderedLineList, ewfUnorderedStackList, ewfHtmlBlock ul, ewfFormItemList, ewfFormItem, ewfTableStandardAndStandardLayoutOnlyStyles, ewfFlowCheckboxAllStates > ewfFlowCheckboxNestedContentContainer, ewfCheckboxList, ewfHtmlBlockEditor, ewfMergeFieldTreeContainer, ewfMergeRowTreeContainer, ewfMergeRowTreeChildContainer, ewfChart, ewfHtmlBlock { margin-top: 1em; } p:first-child, ewfUnorderedLineList:first-child, ewfUnorderedStackList:first-child, ewfHtmlBlock ul:first-child, ewfFormItemList:first-child, ewfFormItem:first-child, ewfTableStandardAndStandardLayoutOnlyStyles:first-child, ewfCheckboxList:first-child, ewfHtmlBlockEditor:first-child, ewfMergeFieldTreeContainer:first-child, ewfMergeRowTreeContainer:first-child, ewfMergeRowTreeChildContainer:first-child, ewfChart:first-child, ewfHtmlBlock:first-child { margin-top: 0; } ewfUnorderedWrappingList { margin-top: calc( 1em - .25em ); } ewfUnorderedWrappingList:first-child { margin-top: calc( 0em - .25em ); } ewfWrappingFormItemList { margin-top: calc( 1em - .5em ); } ewfWrappingFormItemList:first-child { margin-top: calc( 0em - .5em ); } /* bottom */ p, ewfUnorderedLineList, ewfUnorderedStackList, ewfHtmlBlock ul { margin-bottom: 0; } ewfFlowCheckboxAllStates > ewfFlowCheckboxNestedContentContainer { margin-bottom: 1em; } /* lists */ ewfUnorderedLineList > ewfComponentListItem { margin-left: .5em; } ewfUnorderedLineList > ewfComponentListItem:first-child { margin-left: 0; } ewfUnorderedStackList > ewfComponentListItem, ewfOrderedStackList > ewfComponentListItem, ewfHtmlBlock li { margin-top: .5em; } ewfUnorderedStackList > ewfComponentListItem:first-child, ewfOrderedStackList > ewfComponentListItem:first-child, ewfHtmlBlock li:first-child { margin-top: 0; } ewfUnorderedWrappingList { margin-right: -.25em; margin-bottom: -.25em; margin-left: -.25em; } ewfUnorderedWrappingList > ewfComponentListItem { margin: .25em; } ewfStackFormItemList > ewfFormItemListItem, ewfStackFormItemList > ewfFormItemListButtonItem, ewfMergeRowTreeContainer ewfUnorderedStackList > ewfComponentListItem { margin-top: 0; margin-bottom: 0; border-top-width: 1px; border-top-style: solid; padding-top: .75em; padding-bottom: .75em; } ewfStackFormItemList > ewfFormItemListItem:first-child, ewfStackFormItemList > ewfFormItemListButtonItem:first-child, ewfMergeRowTreeContainer ewfUnorderedStackList > ewfComponentListItem:first-child { border-top: 0; padding-top: 0; } ewfStackFormItemList > ewfFormItemListItem:last-child, ewfStackFormItemList > ewfFormItemListButtonItem:last-child, ewfMergeRowTreeContainer ewfUnorderedStackList > ewfComponentListItem:last-child { padding-bottom: 0; } ewfStackFormItemList > ewfFormItemListItem, ewfStackFormItemList > ewfFormItemListButtonItem { margin-left: -.5em; margin-right: -.5em; } ewfStackFormItemList > ewfFormItemListItem > ewfFormItemListItemLabel, ewfStackFormItemList > ewfFormItemListItem > ewfFormItemListItemContent, ewfStackFormItemList > ewfFormItemListButtonItem > ewfFormItemListItemLabel, ewfStackFormItemList > ewfFormItemListButtonItem > ewfFormItemListItemContent { margin-left: .5em; margin-right: .5em; } ewfWrappingFormItemList { margin-right: -.5em; margin-bottom: -.5em; margin-left: -.5em; } ewfWrappingFormItemList > ewfFormItemListItem, ewfWrappingFormItemList > ewfFormItemListButtonItem { margin: .5em; } ewfGridFormItemList { grid-gap: 1em; } /* form items */ ewfWrappingFormItemList > ewfFormItemListItem > ewfFormItemListItemLabel, ewfGridFormItemList > ewfFormItemListItem > ewfFormItemListItemLabel, ewfFormItem > ewfFormItemLabel { margin-bottom: .1em; } ewfFormItemList > ewfFormItemListItem > ewfFormItemListItemContent > ewfErrorMessageListContainer > ewfUnorderedStackList > ewfComponentListItem, ewfFormItem > ewfErrorMessageListContainer > ewfUnorderedStackList > ewfComponentListItem { margin-top: .1em; } ewfTableStandardAndStandardLayoutOnlyStyles > ewfTheadAndTfootAndTbody > ewfTrAllStates > ewfTd > ewfTableItemSelectionAndActionContainer > ewfTableItemSelectionLabelAndControlContainer > ewfTableItemSelectionLabel { margin-right: .5em; } ewfFlowCheckboxAllStates > ewfFlowCheckboxNestedContentContainer { margin-left: 3em; } ewfModalBox > ewfModalBoxCloseButtonContainer { padding: .5em; } /* border colors */ ewfSectionBoxStyleBothStates > ewfSectionHeadingContainer, ewfStackFormItemList > ewfFormItemListItem, ewfStackFormItemList > ewfFormItemListButtonItem, ewfMergeRowTreeContainer ewfUnorderedStackList > ewfComponentListItem { border-color: rgba( 0, 0, 0, 0.1 ); } ewfSingleLineTextControlAllStates, ewfMultilineTextControlAllStates, ewfModalBox > ewfModalBoxCloseButtonContainer { border-color: hsla( 0, 0%, 58%, 1 ); } /* focus */ ewfHyperlinkStandardStyleStatesWithFocus, ewfActionComponentAllStylesStatesWithFocus.icon { outline: 2px solid hsl( 209, 91%, 47% ); } ewfActionComponentAllButtonStylesStatesWithFocus { outline: 2px solid hsl( 209, 91%, 47% ); outline-offset: 1px; } ewfSingleLineTextControlFocusState, ewfMultilineTextControlFocusState { box-shadow: 0 0 8px hsla( 209, 91%, 47%, 0.3 ); border-color: hsla( 209, 91%, 47%, 1 ); outline: none; } /* sections */ ewfSectionAllStylesBothStates { clear: both; } ewfSectionAllStylesBothStates > ewfSectionHeadingContainer > ewfSectionExpandLabel, ewfSectionAllStylesBothStates > ewfSectionHeadingContainer > ewfSectionCloseLabel { float: right; } ewfSectionAllStylesClosedState > ewfSectionHeadingContainer > ewfSectionCloseLabel, ewfSectionAllStylesExpandedState > ewfSectionHeadingContainer > ewfSectionExpandLabel { display: none; } ewfSectionAllStylesClosedState > ewfSectionContentContainer { display: none; } /* lists */ ewfUnorderedLineList, ewfUnorderedStackList, ewfUnorderedWrappingList, ewfUnorderedInlineList { padding: 0; list-style-type: none; } ewfUnorderedLineList, ewfUnorderedStackList, ewfUnorderedWrappingList, ewfStackFormItemList > ewfFormItemListItem, ewfStackFormItemList > ewfFormItemListButtonItem, ewfWrappingFormItemList { display: flex; } ewfUnorderedLineList:not( .ewfFvaT ):not( .ewfFvaB ):not( .ewfFvaC ):not( .ewfFvaBl ), ewfUnorderedWrappingList:not( .ewfFvaT ):not( .ewfFvaB ):not( .ewfFvaC ):not( .ewfFvaBl ), ewfStackFormItemList > ewfFormItemListItem, ewfStackFormItemList > ewfFormItemListButtonItem { align-items: center; } ewfUnorderedLineList { flex-flow: row nowrap; } ewfUnorderedStackList { flex-flow: column nowrap; } ewfUnorderedWrappingList, ewfStackFormItemList > ewfFormItemListItem, ewfStackFormItemList > ewfFormItemListButtonItem, ewfWrappingFormItemList { flex-flow: row wrap; } ewfStackFormItemList, ewfGridFormItemList { clear: both; } ewfGridFormItemList { display: grid; } ewfUnorderedInlineList, ewfUnorderedInlineList > ewfComponentListItem, ewfInlineListItemContentContainer { display: inline; } ewfUnorderedInlineList > ewfComponentListItem + ewfComponentListItem::before { content: " | "; } ewfStackFormItemList > ewfFormItemListItem > ewfFormItemListItemLabel, ewfStackFormItemList > ewfFormItemListItem > ewfFormItemListItemContent, ewfStackFormItemList > ewfFormItemListButtonItem > ewfFormItemListItemLabel, ewfStackFormItemList > ewfFormItemListButtonItem > ewfFormItemListItemContent { min-width: 0; flex-grow: 1; } ewfStackFormItemList > ewfFormItemListItem > ewfFormItemListItemContent, ewfStackFormItemList > ewfFormItemListButtonItem > ewfFormItemListItemContent { align-self: stretch; } ewfGridFormItemList > ewfFormItemListItem, ewfGridFormItemList > ewfFormItemListButtonItem { min-width: 0; } ewfGridFormItemList > ewfFormItemListButtonItem { grid-column-end: -1; } .ewfFaL { justify-content: flex-start; } .ewfFaR { justify-content: flex-end; } .ewfFaC { justify-content: center; } .ewfFaJ { justify-content: space-between; } .ewfFvaT { align-items: flex-start; align-self: flex-start; } .ewfFvaB { align-items: flex-end; align-self: flex-end; } .ewfFvaC { align-items: center; align-self: center; } .ewfFvaBl { align-items: baseline; align-self: baseline; } .ewfGaL { justify-items: start; justify-self: start; } .ewfGaR { justify-items: end; justify-self: end; } .ewfGaC { justify-items: center; justify-self: center; } .ewfGaS { justify-items: stretch; justify-self: stretch; } .ewfGvaT { align-items: start; align-self: start; } .ewfGvaB { align-items: end; align-self: end; } .ewfGvaC { align-items: center; align-self: center; } .ewfGvaS { align-items: stretch; align-self: stretch; } /* action components */ ewfActionComponentAllStylesAllStates { margin: 0; border-style: none; background-color: Transparent; padding: 0; } ewfActionComponentAllStylesAllStates::-moz-focus-inner { border-style: none; padding: 0; } ewfActionComponentAllStylesAllStates > ewfIcon { padding-left: .4em; padding-right: .4em; } ewfActionComponentAllStylesAllStates > ewfIcon:first-child { padding-left: 0; } ewfActionComponentAllStylesAllStates > ewfIcon:last-child { padding-right: 0; } ewfActionComponentAllButtonStylesAllStates, ewfTopWarningContainer ewfActionComponentAllButtonStylesAllStates { display: inline-block; font-weight: initial; white-space: nowrap; } ewfActionComponentShrinkWrapButtonStyleAllStates, ewfTopWarningContainer ewfActionComponentShrinkWrapButtonStyleAllStates { border-radius: .25em; padding: .1em .3em; } ewfActionComponentNormalButtonStyleAllStates { border-radius: .4em; padding: .6em; } ewfActionComponentLargeButtonStyleAllStates { font-size: 1.4em; border-radius: .5em; padding: 1em; font-weight: 600; } button { font: inherit; } /* images */ img { border-width: 0; /* Remove default borders around images when they are inside anchor tags. */ } img.ewfAutoSizer { display: block; width: 100%; } /* tables */ table { border-width: 0; padding: 0; border-spacing: 0; } ewfTableStandardAndStandardLayoutOnlyStyles { width: 100%; table-layout: fixed; clear: both; } th { padding: 0; text-align: left; } td { padding: 0; } th.ewfTcTop, td.ewfTcTop { vertical-align: top; } th.ewfTcMiddle, td.ewfTcMiddle { vertical-align: middle; } th.ewfTcBottom, td.ewfTcBottom { vertical-align: bottom; } th.ewfTcBaseLine, td.ewfTcBaseLine { vertical-align: baseline; } .ewfOverflowedCell { overflow: hidden; } ewfTableActionListContainer { flex-grow: 1; } ewfTableActionListContainer > ewfUnorderedWrappingList { justify-content: flex-end; } ewfTableItemLimitingAndGeneralActionContainer, ewfTableItemSelectionAndActionContainer, ewfTableItemSelectionLabelAndControlContainer, ewfTableItemGroupNameAndGeneralActionContainer { display: flex; flex-flow: row wrap; } ewfTableItemSelectionLabelAndControlContainer { align-items: baseline; } ewfTableItemGroupNameAndGeneralActionContainer > ewfTableActionListContainer { font-weight: initial; } /* text control */ ewfSingleLineTextControlAllStates, ewfMultilineTextControlAllStates { font-size: inherit; font-family: inherit; box-sizing: border-box; max-width: 100%; border-width: 1px; border-style: solid; border-radius: .4em; padding: .5em .75em; color: hsla( 215, 11%, 22%, 1 ); } ewfMultilineTextControlAllStates { width: 35em; resize: vertical; } /* This prevents Chrome and Safari from allowing the user to resize textareas. */ textarea { resize: none; } ewfSingleLineTextControlAllStates[type="password"], ewfSingleLineTextControlAllStates[type="email"], ewfSingleLineTextControlAllStates[type="tel"] { width: 20em; } /* checkboxes */ ewfFlowCheckboxAllStates > ewfCheckbox { display: block; } /* list controls */ .select-css { display: inline-block; width: auto; padding-top: .5em; padding-bottom: .5em; line-height: unset; font-family: unset; font-weight: unset; } ewfDropDownListContainer > ewfDropDownList { text-align: start; } ewfStackFormItemList > ewfFormItemListItem > ewfFormItemListItemContent > ewfDropDownListContainer > ewfDropDownList, ewfGridFormItemList > ewfFormItemListItem > ewfFormItemListItemContent > ewfDropDownListContainer > ewfDropDownList, ewfTableStandardAndStandardLayoutOnlyStyles > ewfTheadAndTfootAndTbody > ewfTrAllStates > ewfThAndTd > ewfFormItem > ewfFormItemContent > ewfDropDownListContainer > ewfDropDownList { width: 100%; } ewfCheckboxList > ewfCheckboxListContentContainer > ewfUnorderedComponentList { margin: 0; padding: 0; list-style-type: none; } /* date pickers, time pickers, and date and time pickers */ ewfDateControl, ewfTimeControl, ewfDateAndTimeControl { display: flex; } ewfDateControl ewfIcon, ewfTimeControl ewfIcon { font-size: 1.4em; } ewfDateControl > ewfSingleLineTextControlAllStates { margin-right: .5em; width: 100%; max-width: 8em; } ewfTimeControl > ewfSingleLineTextControlAllStates { margin-right: .5em; width: 100%; max-width: 5em; } ewfTimeControl > ewfDropDownListContainer { width: 100%; max-width: 6em; } ewfTimeControl > ewfDropDownListContainer > ewfDropDownList { width: 100%; } ewfDateAndTimeControl > ewfSingleLineTextControlAllStates { margin-right: .5em; width: 100%; max-width: 12em; } ewfDateAndTimeControl .fa-stack { font-size: .7em; } ewfDateAndTimeControl ewfIcon.fa-clock-o { position: relative; top: .20em; } ewfDurationControlContainer > ewfSingleLineTextControlAllStates { width: 100%; max-width: 6em; } /* Text alignment. NOTE: The classes ewfCurrencyCell, ewfRightAlignCell, and ewfCenterCell are deprecated. Eliminate them from all systems and then remove them from these rules. */ .ewfTaL { text-align: left; } .ewfTaR, .ewfCurrencyCell, .ewfCurrencyCell input[type="text"], .ewfRightAlignCell, .ewfRightAlignCell input[type="text"] { text-align: right; } .ewfTaC, .ewfCenterCell { text-align: center; } .ewfTaJ { text-align: justify; } /* cursors */ ewfActionComponentAllStylesAllActionStates, .ewfAc { cursor: pointer; } ewfActionComponentAllStylesActionlessState, .ewfAec { cursor: default; } /* tool tips */ .qtip-content { max-height: 80vh; overflow-y: auto; } /* modal boxes */ ewfModalBoxContainer { border-style: none; padding: 0; } ewfModalBox { display: flex; max-width: 80vw; max-height: 80vh; flex-direction: column; } ewfModalBox > ewfModalBoxCloseButtonContainer { flex: none; border-bottom-width: 1px; border-bottom-style: solid; padding-bottom: .5em; text-align: right; } ewfModalBox > ewfModalBoxContentContainer { padding: 1em; max-width: 35em; overflow: auto; -webkit-overflow-scrolling: touch; } ewfModalBox > iframe { flex: auto; border-style: none; width: 35em; max-width: 100%; height: 35em; min-height: 0; } ewfModalBoxBackdrop { background-color: hsla( 0, 0%, 0%, .65 ); } /* user management */ ewfFormItemList.newPassword ewfSingleLineTextControlAllStates { width: 200px; } /* mail merging */ ewfMergeFieldTreeChildContainer, ewfMergeRowTreeChildContainer { margin-left: 2em; } /* chart */ ewfChart > div:first-child { position: relative; } /* error messages */ *[tabindex="-1"]:focus { outline: none; } /* EwfPage and master page */ ewfTopWarningContainer { z-index: 9998; } ewfNotificationSectionContainerBothStates { z-index: 9999; } ewfClickBlockerBothStates { z-index: 10000; } ewfProcessingDialogBlockAllStates { z-index: 10001; } ewfTopWarningContainer { position: relative; font-size: 1rem; margin-bottom: .5em; border: 1px solid #464646; border-radius: .5em; background-color: hsla( 43, 100%, 54%, 0.75 ); padding: .5em; text-align: center; font-weight: bold; color: black; } @media print { ewfTopWarningContainer { display: none; } } ewfTopWarningContainer ewfActionComponentAllButtonStylesAllStates { color: white; } ewfTopWarningContainer ewfActionComponentAllButtonStylesAllNormalStates, ewfTopWarningContainer ewfActionComponentAllButtonStylesAllVisitedStates { background-color: hsla( 4, 100%, 32%, 1 ); } ewfTopWarningContainer ewfActionComponentAllButtonStylesStatesWithHover, ewfTopWarningContainer ewfActionComponentAllButtonStylesStatesWithFocus { background-color: hsla( 4, 100%, 45%, 1 ); } span.ewfIntermediateUrl { word-break: break-all; } ewfClickBlockerBothStates { position: fixed; top: 0; right: 0; bottom: 0; left: 0; background-color: gray; } ewfClickBlockerInactiveState { visibility: hidden; opacity: 0; transition: visibility 400ms, opacity 400ms; } ewfClickBlockerActiveState { opacity: 0.3; transition: opacity 400ms; } ewfProcessingDialogBlockAllStates { position: fixed; font-size: .8rem; top: 50%; left: 50%; margin-top: -4.5rem; margin-left: -9rem; box-shadow: 0 0 15px black; border-radius: 15px; background-color: white; padding: .5rem; width: 17rem; text-align: center; color: black; } ewfProcessingDialogBlockInactiveState, ewfProcessingDialogBlockActiveState { height: 4rem; } ewfProcessingDialogBlockInactiveState { visibility: hidden; opacity: 0; transition: height 0 400ms, visibility 400ms, opacity 400ms; } ewfProcessingDialogBlockActiveState { transition: opacity 400ms; } ewfProcessingDialogBlockTimeOutState { height: 8rem; transition: height 200ms; } ewfProcessingDialogProcessingParagraph { font-size: 2em; display: flex; margin: 0; height: 4rem; justify-content: center; align-items: center; cursor: default; } ewfProcessingDialogProcessingParagraph > .ewfProcessingEllipsis1, ewfProcessingDialogProcessingParagraph > .ewfProcessingEllipsis2, ewfProcessingDialogProcessingParagraph > .ewfProcessingEllipsis3 { animation: pulse 2s infinite; } @keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0; } 100% { opacity: 1; } } ewfProcessingDialogProcessingParagraph > .ewfProcessingEllipsis1 { animation-delay: 0; } ewfProcessingDialogProcessingParagraph > .ewfProcessingEllipsis2 { animation-delay: 200ms; } ewfProcessingDialogProcessingParagraph > .ewfProcessingEllipsis3 { animation-delay: 300ms; } ewfProcessingDialogTimeOutParagraphBothStates { display: flex; margin: 0; height: 4rem; justify-content: center; align-items: center; } ewfProcessingDialogTimeOutParagraphInactiveState { visibility: hidden; transition: visibility 400ms; } ewfProcessingDialogTimeOutParagraphActiveState { transition: visibility 0 200ms; } ewfProcessingDialogTimeOutParagraphBothStates > ewfActionComponentAllButtonStylesAllStates { white-space: unset; } ewfNotificationSectionContainerBothStates { position: fixed; font-size: 1rem; top: 0; left: 50%; width: 80%; min-width: 10rem; max-width: 40rem; } ewfNotificationSectionContainerNotificationState { transform: translateX( -50% ) translateY( 50vh ) translateY( -50% ); } ewfNotificationSectionContainerDockedState { transform: translateX( -50% ); animation-name: notificationSectionPosition; } ewfNotificationSectionContainerBothStates > ewfSectionBoxStyleBothStates { background-color: white; color: black; } ewfNotificationSectionContainerNotificationState > ewfSectionBoxStyleBothStates { font-size: 1.2em; box-shadow: 0 0 15px black; border-radius: 1em; padding: 2em; } ewfNotificationSectionContainerDockedState > ewfSectionBoxStyleBothStates { font-size: 1rem; box-shadow: 0 2px 6px rgba( 0, 0, 0, .5 ); border-radius: 0 0 .5em .5em; padding: .2rem 1em; transition-property: font-size, box-shadow, border-radius, padding; } ewfNotificationSectionContainerBothStates > ewfSectionBoxStyleBothStates > ewfSectionHeadingContainer { border-style: none; overflow: hidden; /* See http://stackoverflow.com/a/4407335/35349. */ -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } ewfNotificationSectionContainerNotificationState > ewfSectionBoxStyleBothStates > ewfSectionHeadingContainer { margin: 0; padding: 0; height: 0; } ewfNotificationSectionContainerDockedState > ewfSectionBoxStyleBothStates > ewfSectionHeadingContainer { margin-top: -.2rem; margin-left: -1em; margin-right: -1em; background-color: rgba( 0, 0, 0, .05 ); padding: .2rem 1em; animation-name: notificationSectionDisplay; } ewfNotificationSectionContainerDockedState > ewfSectionBoxStyleClosedState > ewfSectionHeadingContainer { margin-bottom: -.2rem; } ewfNotificationSectionContainerDockedState > ewfSectionBoxStyleExpandedState > ewfSectionHeadingContainer { margin-bottom: .2rem; } ewfNotificationSectionContainerBothStates > ewfSectionBoxStyleBothStates > ewfSectionHeadingContainer > ewfSectionHeading { font-size: 1em; margin: 0; } ewfNotificationSectionContainerBothStates > ewfSectionBoxStyleBothStates > ewfSectionContentContainer { display: block; overflow: hidden; } /* Using max-height in these two rules is a hack. We'd like to remove the first rule and use height in the second, but height doesn't transition properly when "auto" is involved. */ ewfNotificationSectionContainerNotificationState > ewfSectionBoxStyleClosedState > ewfSectionContentContainer { max-height: 100em; } ewfNotificationSectionContainerDockedState > ewfSectionBoxStyleClosedState > ewfSectionContentContainer { max-height: 0; transition-property: max-height; } ewfNotificationSpacer { height: 1.8rem; } ewfInfoMessageContainer > ewfIcon { color: rgb( 120, 160, 195 ); } ewfWarningMessageContainer > ewfIcon { color: #E69017; } ewfWarningMessageContainer > ewfStatusMessageText { font-weight: bold; } ewfNotificationSectionContainerDockedState { animation-duration: 800ms; } ewfNotificationSectionContainerDockedState > ewfSectionBoxStyleBothStates, ewfNotificationSectionContainerDockedState > ewfSectionBoxStyleClosedState > ewfSectionContentContainer { transition-delay: 400ms; } ewfNotificationSectionContainerDockedState > ewfSectionBoxStyleBothStates > ewfSectionHeadingContainer { animation-duration: 400ms; } @keyframes notificationSectionPosition { 0% { transform: translateX( -50% ) translateY( 50vh ) translateY( -50% ); animation-timing-function: ease-in; } 50% { transform: translateX( -50% ) translateY( -50vh ) translateY( -50% ); } 75% { transform: translateX( -50% ) translateY( -1.7em ); animation-timing-function: ease-out; } } @keyframes notificationSectionDisplay { 0% { margin: 0; padding: 0; height: 0; } 99.9% { margin: 0; padding: 0; height: 0; } } .mp-results { opacity: .4; } .mp-results:hover { opacity: 1; } @media print { .mp-results { display: none; } } /* SelectUser and error pages */ ewfSelectUserPageBody, ewfErrorPageBody { font-size: 1rem; margin-left: auto; margin-right: auto; background-color: white; max-width: 60em; color: black; } ewfSelectUserPageBody ewfHyperlinkStandardStyleAllNormalStates, ewfSelectUserPageBody ewfHyperlinkStandardStyleAllVisitedStates, ewfErrorPageBody ewfHyperlinkStandardStyleAllNormalStates, ewfErrorPageBody ewfHyperlinkStandardStyleAllVisitedStates { color: hsla( 4, 100%, 32%, 1 ); } ewfSelectUserPageBody ewfActionComponentAllButtonStylesAllNormalStates, ewfSelectUserPageBody ewfActionComponentAllButtonStylesAllVisitedStates, ewfErrorPageBody ewfActionComponentAllButtonStylesAllNormalStates, ewfErrorPageBody ewfActionComponentAllButtonStylesAllVisitedStates { background-color: hsla( 4, 100%, 32%, 1 ); } ewfSelectUserPageBody ewfHyperlinkStandardStyleStatesWithHover, ewfSelectUserPageBody ewfHyperlinkStandardStyleStatesWithFocus, ewfErrorPageBody ewfHyperlinkStandardStyleStatesWithHover, ewfErrorPageBody ewfHyperlinkStandardStyleStatesWithFocus { color: hsla( 4, 100%, 45%, 1 ); } ewfSelectUserPageBody ewfActionComponentAllButtonStylesStatesWithHover, ewfSelectUserPageBody ewfActionComponentAllButtonStylesStatesWithFocus, ewfErrorPageBody ewfActionComponentAllButtonStylesStatesWithHover, ewfErrorPageBody ewfActionComponentAllButtonStylesStatesWithFocus { background-color: hsla( 4, 100%, 45%, 1 ); } ewfSelectUserPageBody ewfHyperlinkStandardStyleAllStates, ewfErrorPageBody ewfHyperlinkStandardStyleAllStates { text-decoration: underline; } ewfSelectUserPageBody ewfActionComponentAllButtonStylesAllStates, ewfErrorPageBody ewfActionComponentAllButtonStylesAllStates { display: inline-block; color: white; } ewfSelectUserPageBody ewfActionComponentLargeButtonStyleAllStates, ewfErrorPageBody ewfActionComponentLargeButtonStyleAllStates { font-size: 1.4em; border-radius: .5em; padding: 1em; font-weight: 600; } /* fonts */ ewfTopWarningContainer, ewfProcessingDialogBlockAllStates, ewfNotificationSectionContainerBothStates, ewfSelectUserPageBody, ewfErrorPageBody { font-family: 'Open Sans', sans-serif; } ewfSelectUserPageBody h1, ewfErrorPageBody h1 { font-family: 'Libre Franklin', sans-serif; }
0.284278
0.049843
@-moz-document url-prefix("https://app.plex.tv/"), url-prefix("https://app.plex.tv"), regexp("https?://.*:32400/.*"), regexp(".*:32400/.*") { a { color: #B3B3B3 !important; } a:hover { color: white !important; } /* First visible loading ring */ .loading { border-color: grey transparent transparent grey; } /* other */ .MetadataPosterCardOverlay-unplayedBadge-2hKHo5 { background-color: grey !important; } .Badge-primary-3suJx3 { background-color: grey !important; } .SelectedMenuItem-isSelected-178xe1 { color: white !important; } .SelectedMenuItem-isSelected-178xe1 .SelectedMenuItem-selectedIcon-20Yx1_{ color: white !important; } [role="menu"] { color: hsla(0, 0%, 100%, .45) !important; } .ServerMenuItem-serverMenuFriendlyName-37Gt74 { color: white !important; } .ServerMenuItem-selectedIcon-dhK05 { color: white !important; } .Link-primary-1vcAGA { color: grey !important; } .Link-isActiveRoute-2N5cg, .Link-isSelected-IRm9uM { color: white !important; } .btn-gray.selected { color: white !important; } /* More black */ .background-container > div > div > div:nth-child(2) { background: rgba(0, 0, 0, .6) !important; } .FullPage-container-17Y0cs > div > div > div { background-size: 0px !important; } .FullPlayerBackground-backgroundContainer-2UnXoW > div > div { background: rgba(0, 0, 0, .6) !important; } .AudioVideoFullPlayer-isVideo-1aASwH .AudioVideoFullPlayer-topBar-2XUGM { background: rgba(0, 0, 0, .6) !important; } .AudioVideoFullPlayer-content-37T7O7 { background: rgb(50, 50, 50) !important; } /* Navigation Bar */ .NavBarActivityButton-activityIcon-1Db2GP { background-color: grey !important; } .NavBarActivityButton-activityIcon-1Db2GP:hover { background-color: white !important; } .NavBarActivityButton-label-2ZN0gQ { color: grey !important; } .NavBarActivityButton-label-2ZN0gQ:hover { color: white !important; } .NavBarActivityMenuStatusItem-statusButtonIndicator-3D2d1i { color: white !important; } /* Drop down menu arrow */ .DisclosureArrow-isSelected-QMJhDY { border-color: white; } .btn-primary { background-color: grey !important; } .btn-primary:hover { background-color: grey !important; } .card-home-user .admin-icon { color: white !important; } .card-home-user .selected-user-icon { background-color: white !important; } .user-select-list-item .user-select-top .user-icon.admin-icon { color: white !important; } .btn-link { color: darkgrey !important; } .btn-link:hover { color: white !important; } /* Playing next circle */ .AudioVideoUpNext-playCircle-RTuurg PlayButton-playCircle-3Evfdw { background-color: transparent !important; border-color: #C3C3C3 !important; color: #C3C3C3 !important; box-shadow: none !important; } .video-player.buffering{ border-color: #C3C3C3 !important; color: #C3C3C3 !important;} /* Autoplay text color */ .AudioVideoUpNext-autoPlayOn-2tSBYt { color: white; } /* Orange borders gone */ :hover { box-shadow: none !important; } /* New version alert bar */ .alert-bar.notify { background-color: transparent !important; } .alert-bar.notify .message { color: #C3C3C3 !important; } .server-update-alert-bar .message .server-update-message-version { color: #C3C3C3 !important; } /* rest */ .VolumeSlider-fill-3XkYyD { background-color: #C3C3C3 !important; } .Spinner-spinner-Niere { border-top-color: #C3C3C3 !important; border-left-color: #C3C3C3 !important; } .SeekBar-seekBarBuffer-3bUz95 { background-color: rgba(194, 194, 194, 0.4) !important; } .SeekBar-seekBarFill-1Lcu0w { background-color: rgba(255, 255, 255, .4) !important; } div[class='EqualizerIcon-bar-1nPotE'] { background-color: white !important; } .PlayPauseOverlay-playCircle-3ydPYX { background-color: transparent !important; border-color: #C3C3C3 !important; /* color: #C3C3C3 !important; */ box-shadow: none !important; } .MetadataPosterCardOverlay-centerCircle-1Mg-s- { background-color: transparent !important; border-color: #C3C3C3 !important; /* color: #C3C3C3 !important; */ box-shadow: none !important; } .PlayButton-playCircle-3Evfdw { background-color: transparent !important; border-color: #C3C3C3 !important; /* color: #C3C3C3 !important; */ box-shadow: none !important; } .Spinner-spinner-Niere7 { border-color: #C3C3C3 transparent transparent #C3C3C3; } div[class^='FullPlayerTopControls-topControls-'] { background-color: transparent !important; } div[class^='AudioVideoPlayerControls-controls-'] { background-color: transparent !important; } div[class^='AudioVideoPostPlay-container-'] { background: rgba(0, 0, 0, 0.5) !important; } /* other */ .AudioVideoFullPlayer-topBar-2XUGMf { background-color: transparent !important; } .PosterCardOverlayProgress-progressBar-3k291O { background-color: #9A9A9A !important; } .MetadataPosterCardOverlay-badge-1FU-pf{ color: #13191D !important; } /* No spoilers */ div[class^='PrePlaySummary-summary-'] { display: none !important; } /* No premium button on Navigation Bar and Account Page */ .NavBarPlexPassButton-button-2zlgP_, .AccountSummary-container-2EbPg2 > div:nth-of-type(1) > div > .Link-default-2XA2bN.Button-medium-3g45_.Button-primary-3fwLzo.Link-link-2Aq9Xs.Button-button-2kT68l { display: none !important; } }
data/usercss/166337.user.css
@-moz-document url-prefix("https://app.plex.tv/"), url-prefix("https://app.plex.tv"), regexp("https?://.*:32400/.*"), regexp(".*:32400/.*") { a { color: #B3B3B3 !important; } a:hover { color: white !important; } /* First visible loading ring */ .loading { border-color: grey transparent transparent grey; } /* other */ .MetadataPosterCardOverlay-unplayedBadge-2hKHo5 { background-color: grey !important; } .Badge-primary-3suJx3 { background-color: grey !important; } .SelectedMenuItem-isSelected-178xe1 { color: white !important; } .SelectedMenuItem-isSelected-178xe1 .SelectedMenuItem-selectedIcon-20Yx1_{ color: white !important; } [role="menu"] { color: hsla(0, 0%, 100%, .45) !important; } .ServerMenuItem-serverMenuFriendlyName-37Gt74 { color: white !important; } .ServerMenuItem-selectedIcon-dhK05 { color: white !important; } .Link-primary-1vcAGA { color: grey !important; } .Link-isActiveRoute-2N5cg, .Link-isSelected-IRm9uM { color: white !important; } .btn-gray.selected { color: white !important; } /* More black */ .background-container > div > div > div:nth-child(2) { background: rgba(0, 0, 0, .6) !important; } .FullPage-container-17Y0cs > div > div > div { background-size: 0px !important; } .FullPlayerBackground-backgroundContainer-2UnXoW > div > div { background: rgba(0, 0, 0, .6) !important; } .AudioVideoFullPlayer-isVideo-1aASwH .AudioVideoFullPlayer-topBar-2XUGM { background: rgba(0, 0, 0, .6) !important; } .AudioVideoFullPlayer-content-37T7O7 { background: rgb(50, 50, 50) !important; } /* Navigation Bar */ .NavBarActivityButton-activityIcon-1Db2GP { background-color: grey !important; } .NavBarActivityButton-activityIcon-1Db2GP:hover { background-color: white !important; } .NavBarActivityButton-label-2ZN0gQ { color: grey !important; } .NavBarActivityButton-label-2ZN0gQ:hover { color: white !important; } .NavBarActivityMenuStatusItem-statusButtonIndicator-3D2d1i { color: white !important; } /* Drop down menu arrow */ .DisclosureArrow-isSelected-QMJhDY { border-color: white; } .btn-primary { background-color: grey !important; } .btn-primary:hover { background-color: grey !important; } .card-home-user .admin-icon { color: white !important; } .card-home-user .selected-user-icon { background-color: white !important; } .user-select-list-item .user-select-top .user-icon.admin-icon { color: white !important; } .btn-link { color: darkgrey !important; } .btn-link:hover { color: white !important; } /* Playing next circle */ .AudioVideoUpNext-playCircle-RTuurg PlayButton-playCircle-3Evfdw { background-color: transparent !important; border-color: #C3C3C3 !important; color: #C3C3C3 !important; box-shadow: none !important; } .video-player.buffering{ border-color: #C3C3C3 !important; color: #C3C3C3 !important;} /* Autoplay text color */ .AudioVideoUpNext-autoPlayOn-2tSBYt { color: white; } /* Orange borders gone */ :hover { box-shadow: none !important; } /* New version alert bar */ .alert-bar.notify { background-color: transparent !important; } .alert-bar.notify .message { color: #C3C3C3 !important; } .server-update-alert-bar .message .server-update-message-version { color: #C3C3C3 !important; } /* rest */ .VolumeSlider-fill-3XkYyD { background-color: #C3C3C3 !important; } .Spinner-spinner-Niere { border-top-color: #C3C3C3 !important; border-left-color: #C3C3C3 !important; } .SeekBar-seekBarBuffer-3bUz95 { background-color: rgba(194, 194, 194, 0.4) !important; } .SeekBar-seekBarFill-1Lcu0w { background-color: rgba(255, 255, 255, .4) !important; } div[class='EqualizerIcon-bar-1nPotE'] { background-color: white !important; } .PlayPauseOverlay-playCircle-3ydPYX { background-color: transparent !important; border-color: #C3C3C3 !important; /* color: #C3C3C3 !important; */ box-shadow: none !important; } .MetadataPosterCardOverlay-centerCircle-1Mg-s- { background-color: transparent !important; border-color: #C3C3C3 !important; /* color: #C3C3C3 !important; */ box-shadow: none !important; } .PlayButton-playCircle-3Evfdw { background-color: transparent !important; border-color: #C3C3C3 !important; /* color: #C3C3C3 !important; */ box-shadow: none !important; } .Spinner-spinner-Niere7 { border-color: #C3C3C3 transparent transparent #C3C3C3; } div[class^='FullPlayerTopControls-topControls-'] { background-color: transparent !important; } div[class^='AudioVideoPlayerControls-controls-'] { background-color: transparent !important; } div[class^='AudioVideoPostPlay-container-'] { background: rgba(0, 0, 0, 0.5) !important; } /* other */ .AudioVideoFullPlayer-topBar-2XUGMf { background-color: transparent !important; } .PosterCardOverlayProgress-progressBar-3k291O { background-color: #9A9A9A !important; } .MetadataPosterCardOverlay-badge-1FU-pf{ color: #13191D !important; } /* No spoilers */ div[class^='PrePlaySummary-summary-'] { display: none !important; } /* No premium button on Navigation Bar and Account Page */ .NavBarPlexPassButton-button-2zlgP_, .AccountSummary-container-2EbPg2 > div:nth-of-type(1) > div > .Link-default-2XA2bN.Button-medium-3g45_.Button-primary-3fwLzo.Link-link-2Aq9Xs.Button-button-2kT68l { display: none !important; } }
0.287368
0.070017
========================================================================== */ /** * 1. Correct the line height in all browsers. * 2. Prevent adjustments of font size after orientation changes in iOS. */ html { line-height: 1.15; /* 1 */ -webkit-text-size-adjust: 100%; /* 2 */ } /* Sections ========================================================================== */ /** * Remove the margin in all browsers. */ body { margin: 0; } /** * Render the `main` element consistently in IE. */ main { display: block; } /** * Correct the font size and margin on `h1` elements within `section` and * `article` contexts in Chrome, Firefox, and Safari. */ h1 { font-size: 2em; margin: 0.67em 0; } /* Grouping content ========================================================================== */ /** * 1. Add the correct box sizing in Firefox. * 2. Show the overflow in Edge and IE. */ hr { box-sizing: content-box; /* 1 */ height: 0; /* 1 */ overflow: visible; /* 2 */ } /** * 1. Correct the inheritance and scaling of font size in all browsers. * 2. Correct the odd `em` font sizing in all browsers. */ pre { font-family: monospace, monospace; /* 1 */ font-size: 1em; /* 2 */ } /* Text-level semantics ========================================================================== */ /** * Remove the gray background on active links in IE 10. */ a { background-color: transparent; } /** * 1. Remove the bottom border in Chrome 57- * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. */ abbr[title] { border-bottom: none; /* 1 */ text-decoration: underline; /* 2 */ -webkit-text-decoration: underline dotted; text-decoration: underline dotted; /* 2 */ } /** * Add the correct font weight in Chrome, Edge, and Safari. */ b, strong { font-weight: bolder; } /** * 1. Correct the inheritance and scaling of font size in all browsers. * 2. Correct the odd `em` font sizing in all browsers. */ code, kbd, samp { font-family: monospace, monospace; /* 1 */ font-size: 1em; /* 2 */ } /** * Add the correct font size in all browsers. */ small { font-size: 80%; } /** * Prevent `sub` and `sup` elements from affecting the line height in * all browsers. */ sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } sub { bottom: -0.25em; } sup { top: -0.5em; } /* Embedded content ========================================================================== */ /** * Remove the border on images inside links in IE 10. */ img { border-style: none; } /* Forms ========================================================================== */ /** * 1. Change the font styles in all browsers. * 2. Remove the margin in Firefox and Safari. */ button, input, optgroup, select, textarea { font-family: inherit; /* 1 */ font-size: 100%; /* 1 */ line-height: 1.15; /* 1 */ margin: 0; /* 2 */ } /** * Show the overflow in IE. * 1. Show the overflow in Edge. */ button, input { /* 1 */ overflow: visible; } /** * Remove the inheritance of text transform in Edge, Firefox, and IE. * 1. Remove the inheritance of text transform in Firefox. */ button, select { /* 1 */ text-transform: none; } /** * Correct the inability to style clickable types in iOS and Safari. */ button, [type="button"], [type="reset"], [type="submit"] { -webkit-appearance: button; } /** * Remove the inner border and padding in Firefox. */ button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner { border-style: none; padding: 0; } /** * Restore the focus styles unset by the previous rule. */ button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring { outline: 1px dotted ButtonText; } /** * Correct the padding in Firefox. */ fieldset { padding: 0.35em 0.75em 0.625em; } /** * 1. Correct the text wrapping in Edge and IE. * 2. Correct the color inheritance from `fieldset` elements in IE. * 3. Remove the padding so developers are not caught out when they zero out * `fieldset` elements in all browsers. */ legend { box-sizing: border-box; /* 1 */ color: inherit; /* 2 */ display: table; /* 1 */ max-width: 100%; /* 1 */ padding: 0; /* 3 */ white-space: normal; /* 1 */ } /** * Add the correct vertical alignment in Chrome, Firefox, and Opera. */ progress { vertical-align: baseline; } /** * Remove the default vertical scrollbar in IE 10+. */ textarea { overflow: auto; } /** * 1. Add the correct box sizing in IE 10. * 2. Remove the padding in IE 10. */ [type="checkbox"], [type="radio"] { box-sizing: border-box; /* 1 */ padding: 0; /* 2 */ } /** * Correct the cursor style of increment and decrement buttons in Chrome. */ [type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button { height: auto; } /** * 1. Correct the odd appearance in Chrome and Safari. * 2. Correct the outline style in Safari. */ [type="search"] { -webkit-appearance: textfield; /* 1 */ outline-offset: -2px; /* 2 */ } /** * Remove the inner padding in Chrome and Safari on macOS. */ [type="search"]::-webkit-search-decoration { -webkit-appearance: none; } /** * 1. Correct the inability to style clickable types in iOS and Safari. * 2. Change font properties to `inherit` in Safari. */ ::-webkit-file-upload-button { -webkit-appearance: button; /* 1 */ font: inherit; /* 2 */ } /* Interactive ========================================================================== */ /* * Add the correct display in Edge, IE 10+, and Firefox. */ details { display: block; } /* * Add the correct display in all browsers. */ summary { display: list-item; } /* Misc ========================================================================== */ /** * Add the correct display in IE 10+. */ template { display: none; } /** * Add the correct display in IE 10. */ [hidden] { display: none; } html { box-sizing: border-box; } *, *::before, *::after { box-sizing: inherit; } audio, canvas, iframe, img, svg, video { vertical-align: middle; } canvas, img, video { max-width: 100%; height: auto; } audio { max-width: 100%; } iframe { border: 0; } button, input, optgroup, select, textarea { font: inherit; line-height: inherit; } optgroup { font-weight: bold; } fieldset { min-width: 0; padding: 0; border: 0; } [type="button"]:not(:disabled), [type="reset"]:not(:disabled), [type="submit"]:not(:disabled), button:not(:disabled) { cursor: pointer; } address { font-style: inherit; } pre { overflow: auto; } hr { border: 0; border-top: 1px solid; color: inherit; opacity: 0.2; } :focus:not(:focus-visible) { outline: none; } body { font-family: "Helvetica Neue", Helvetica, sans-serif; font-size: 1rem; font-weight: 400; line-height: 1.5; background-color: #fff; color: #333; } blockquote, figure, fieldset { margin: 0; } address, blockquote, table, figure, form, fieldset, legend, pre, dl, ul, ol, hr, p { margin-top: 0; margin-bottom: 1.5rem; } address:last-child, blockquote:last-child, table:last-child, figure:last-child, form:last-child, fieldset:last-child, legend:last-child, pre:last-child, dl:last-child, ul:last-child, ol:last-child, hr:last-child, p:last-child { margin-bottom: 0; } h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 { margin-top: 0.8em; margin-bottom: 0.4em; font-family: inherit; font-weight: 700; line-height: 1.2; color: inherit; } h6:first-child, .h6:first-child, h5:first-child, .h5:first-child, h4:first-child, .h4:first-child, h3:first-child, .h3:first-child, h2:first-child, .h2:first-child, h1:first-child, .h1:first-child { margin-top: 0; } h6:last-child, .h6:last-child, h5:last-child, .h5:last-child, h4:last-child, .h4:last-child, h3:last-child, .h3:last-child, h2:last-child, .h2:last-child, h1:last-child, .h1:last-child { margin-bottom: 0; } h6, .h6 { font-size: 1rem; } h5, .h5 { font-size: 1.25rem; } h4, .h4 { font-size: 1.5625rem; } h3, .h3 { font-size: 1.953125rem; } h2, .h2 { font-size: 2.44140625rem; } h1, .h1 { font-size: 3.05175781rem; } a { color: #0283f1; text-decoration: none; } a:hover, a:focus { color: #0283f1; text-decoration: underline; } @media print { *, *::before, *::after { color: #000 !important; box-shadow: none !important; text-shadow: none !important; } a, a:visited { text-decoration: underline; } abbr[title]::after { content: " (" attr(title) ")"; } pre { white-space: pre-wrap !important; } pre, blockquote { border: 1px solid #999; page-break-inside: avoid; } thead { display: table-header-group; } tr, img { page-break-inside: avoid; } p, h2, h3 { orphans: 3; widows: 3; } h2, h3 { page-break-after: avoid; } } .list-unstyled { padding-left: 0; list-style: none; } .list-inline { padding-left: 0; list-style: none; display: flex; flex-wrap: wrap; margin-left: -1rem; } .list-inline > li { margin-left: 1rem; } .media { display: flex; align-items: flex-start; } .media-body { flex: 0 1 auto; } .media-left, .media-right { flex: 0 0 auto; } .media-left { padding-right: 1rem; } .media-right { order: 1; padding-left: 1rem; } .media-middle { align-self: center; } .media-bottom { align-self: flex-end; } .embed-responsive { position: relative; overflow: hidden; } .embed-responsive::before { content: ''; display: block; padding-bottom: 56.25%; } .embed-responsive iframe, .embed-responsive embed, .embed-responsive object, .embed-responsive video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } .container { padding-left: 0.9375rem; padding-right: 0.9375rem; margin-left: auto; margin-right: auto; width: 100%; max-width: 73.125rem; } .row { margin-left: -0.9375rem; margin-right: -0.9375rem; display: flex; flex-wrap: wrap; } .col { padding-left: 0.9375rem; padding-right: 0.9375rem; width: 100%; position: relative; } .col-xs-pull-0 { right: auto; } .col-xs-push-0 { left: auto; } .col-xs-offset-0 { margin-left: 0%; } .col-xs-1 { width: 8.33333333%; } .col-xs-pull-1 { right: 8.33333333%; } .col-xs-push-1 { left: 8.33333333%; } .col-xs-offset-1 { margin-left: 8.33333333%; } .col-xs-2 { width: 16.66666667%; } .col-xs-pull-2 { right: 16.66666667%; } .col-xs-push-2 { left: 16.66666667%; } .col-xs-offset-2 { margin-left: 16.66666667%; } .col-xs-3 { width: 25%; } .col-xs-pull-3 { right: 25%; } .col-xs-push-3 { left: 25%; } .col-xs-offset-3 { margin-left: 25%; } .col-xs-4 { width: 33.33333333%; } .col-xs-pull-4 { right: 33.33333333%; } .col-xs-push-4 { left: 33.33333333%; } .col-xs-offset-4 { margin-left: 33.33333333%; } .col-xs-5 { width: 41.66666667%; } .col-xs-pull-5 { right: 41.66666667%; } .col-xs-push-5 { left: 41.66666667%; } .col-xs-offset-5 { margin-left: 41.66666667%; } .col-xs-6 { width: 50%; } .col-xs-pull-6 { right: 50%; } .col-xs-push-6 { left: 50%; } .col-xs-offset-6 { margin-left: 50%; } .col-xs-7 { width: 58.33333333%; } .col-xs-pull-7 { right: 58.33333333%; } .col-xs-push-7 { left: 58.33333333%; } .col-xs-offset-7 { margin-left: 58.33333333%; } .col-xs-8 { width: 66.66666667%; } .col-xs-pull-8 { right: 66.66666667%; } .col-xs-push-8 { left: 66.66666667%; } .col-xs-offset-8 { margin-left: 66.66666667%; } .col-xs-9 { width: 75%; } .col-xs-pull-9 { right: 75%; } .col-xs-push-9 { left: 75%; } .col-xs-offset-9 { margin-left: 75%; } .col-xs-10 { width: 83.33333333%; } .col-xs-pull-10 { right: 83.33333333%; } .col-xs-push-10 { left: 83.33333333%; } .col-xs-offset-10 { margin-left: 83.33333333%; } .col-xs-11 { width: 91.66666667%; } .col-xs-pull-11 { right: 91.66666667%; } .col-xs-push-11 { left: 91.66666667%; } .col-xs-offset-11 { margin-left: 91.66666667%; } .col-xs-12 { width: 100%; } .col-xs-pull-12 { right: 100%; } .col-xs-push-12 { left: 100%; } @media (min-width: 25em) { .col-sm-pull-0 { right: auto; } .col-sm-push-0 { left: auto; } .col-sm-offset-0 { margin-left: 0%; } .col-sm-1 { width: 8.33333333%; } .col-sm-pull-1 { right: 8.33333333%; } .col-sm-push-1 { left: 8.33333333%; } .col-sm-offset-1 { margin-left: 8.33333333%; } .col-sm-2 { width: 16.66666667%; } .col-sm-pull-2 { right: 16.66666667%; } .col-sm-push-2 { left: 16.66666667%; } .col-sm-offset-2 { margin-left: 16.66666667%; } .col-sm-3 { width: 25%; } .col-sm-pull-3 { right: 25%; } .col-sm-push-3 { left: 25%; } .col-sm-offset-3 { margin-left: 25%; } .col-sm-4 { width: 33.33333333%; } .col-sm-pull-4 { right: 33.33333333%; } .col-sm-push-4 { left: 33.33333333%; } .col-sm-offset-4 { margin-left: 33.33333333%; } .col-sm-5 { width: 41.66666667%; } .col-sm-pull-5 { right: 41.66666667%; } .col-sm-push-5 { left: 41.66666667%; } .col-sm-offset-5 { margin-left: 41.66666667%; } .col-sm-6 { width: 50%; } .col-sm-pull-6 { right: 50%; } .col-sm-push-6 { left: 50%; } .col-sm-offset-6 { margin-left: 50%; } .col-sm-7 { width: 58.33333333%; } .col-sm-pull-7 { right: 58.33333333%; } .col-sm-push-7 { left: 58.33333333%; } .col-sm-offset-7 { margin-left: 58.33333333%; } .col-sm-8 { width: 66.66666667%; } .col-sm-pull-8 { right: 66.66666667%; } .col-sm-push-8 { left: 66.66666667%; } .col-sm-offset-8 { margin-left: 66.66666667%; } .col-sm-9 { width: 75%; } .col-sm-pull-9 { right: 75%; } .col-sm-push-9 { left: 75%; } .col-sm-offset-9 { margin-left: 75%; } .col-sm-10 { width: 83.33333333%; } .col-sm-pull-10 { right: 83.33333333%; } .col-sm-push-10 { left: 83.33333333%; } .col-sm-offset-10 { margin-left: 83.33333333%; } .col-sm-11 { width: 91.66666667%; } .col-sm-pull-11 { right: 91.66666667%; } .col-sm-push-11 { left: 91.66666667%; } .col-sm-offset-11 { margin-left: 91.66666667%; } .col-sm-12 { width: 100%; } .col-sm-pull-12 { right: 100%; } .col-sm-push-12 { left: 100%; } } @media (min-width: 42.5em) { .col-md-pull-0 { right: auto; } .col-md-push-0 { left: auto; } .col-md-offset-0 { margin-left: 0%; } .col-md-1 { width: 8.33333333%; } .col-md-pull-1 { right: 8.33333333%; } .col-md-push-1 { left: 8.33333333%; } .col-md-offset-1 { margin-left: 8.33333333%; } .col-md-2 { width: 16.66666667%; } .col-md-pull-2 { right: 16.66666667%; } .col-md-push-2 { left: 16.66666667%; } .col-md-offset-2 { margin-left: 16.66666667%; } .col-md-3 { width: 25%; } .col-md-pull-3 { right: 25%; } .col-md-push-3 { left: 25%; } .col-md-offset-3 { margin-left: 25%; } .col-md-4 { width: 33.33333333%; } .col-md-pull-4 { right: 33.33333333%; } .col-md-push-4 { left: 33.33333333%; } .col-md-offset-4 { margin-left: 33.33333333%; } .col-md-5 { width: 41.66666667%; } .col-md-pull-5 { right: 41.66666667%; } .col-md-push-5 { left: 41.66666667%; } .col-md-offset-5 { margin-left: 41.66666667%; } .col-md-6 { width: 50%; } .col-md-pull-6 { right: 50%; } .col-md-push-6 { left: 50%; } .col-md-offset-6 { margin-left: 50%; } .col-md-7 { width: 58.33333333%; } .col-md-pull-7 { right: 58.33333333%; } .col-md-push-7 { left: 58.33333333%; } .col-md-offset-7 { margin-left: 58.33333333%; } .col-md-8 { width: 66.66666667%; } .col-md-pull-8 { right: 66.66666667%; } .col-md-push-8 { left: 66.66666667%; } .col-md-offset-8 { margin-left: 66.66666667%; } .col-md-9 { width: 75%; } .col-md-pull-9 { right: 75%; } .col-md-push-9 { left: 75%; } .col-md-offset-9 { margin-left: 75%; } .col-md-10 { width: 83.33333333%; } .col-md-pull-10 { right: 83.33333333%; } .col-md-push-10 { left: 83.33333333%; } .col-md-offset-10 { margin-left: 83.33333333%; } .col-md-11 { width: 91.66666667%; } .col-md-pull-11 { right: 91.66666667%; } .col-md-push-11 { left: 91.66666667%; } .col-md-offset-11 { margin-left: 91.66666667%; } .col-md-12 { width: 100%; } .col-md-pull-12 { right: 100%; } .col-md-push-12 { left: 100%; } } @media (min-width: 60em) { .col-lg-pull-0 { right: auto; } .col-lg-push-0 { left: auto; } .col-lg-offset-0 { margin-left: 0%; } .col-lg-1 { width: 8.33333333%; } .col-lg-pull-1 { right: 8.33333333%; } .col-lg-push-1 { left: 8.33333333%; } .col-lg-offset-1 { margin-left: 8.33333333%; } .col-lg-2 { width: 16.66666667%; } .col-lg-pull-2 { right: 16.66666667%; } .col-lg-push-2 { left: 16.66666667%; } .col-lg-offset-2 { margin-left: 16.66666667%; } .col-lg-3 { width: 25%; } .col-lg-pull-3 { right: 25%; } .col-lg-push-3 { left: 25%; } .col-lg-offset-3 { margin-left: 25%; } .col-lg-4 { width: 33.33333333%; } .col-lg-pull-4 { right: 33.33333333%; } .col-lg-push-4 { left: 33.33333333%; } .col-lg-offset-4 { margin-left: 33.33333333%; } .col-lg-5 { width: 41.66666667%; } .col-lg-pull-5 { right: 41.66666667%; } .col-lg-push-5 { left: 41.66666667%; } .col-lg-offset-5 { margin-left: 41.66666667%; } .col-lg-6 { width: 50%; } .col-lg-pull-6 { right: 50%; } .col-lg-push-6 { left: 50%; } .col-lg-offset-6 { margin-left: 50%; } .col-lg-7 { width: 58.33333333%; } .col-lg-pull-7 { right: 58.33333333%; } .col-lg-push-7 { left: 58.33333333%; } .col-lg-offset-7 { margin-left: 58.33333333%; } .col-lg-8 { width: 66.66666667%; } .col-lg-pull-8 { right: 66.66666667%; } .col-lg-push-8 { left: 66.66666667%; } .col-lg-offset-8 { margin-left: 66.66666667%; } .col-lg-9 { width: 75%; } .col-lg-pull-9 { right: 75%; } .col-lg-push-9 { left: 75%; } .col-lg-offset-9 { margin-left: 75%; } .col-lg-10 { width: 83.33333333%; } .col-lg-pull-10 { right: 83.33333333%; } .col-lg-push-10 { left: 83.33333333%; } .col-lg-offset-10 { margin-left: 83.33333333%; } .col-lg-11 { width: 91.66666667%; } .col-lg-pull-11 { right: 91.66666667%; } .col-lg-push-11 { left: 91.66666667%; } .col-lg-offset-11 { margin-left: 91.66666667%; } .col-lg-12 { width: 100%; } .col-lg-pull-12 { right: 100%; } .col-lg-push-12 { left: 100%; } } @media (min-width: 75em) { .col-xl-pull-0 { right: auto; } .col-xl-push-0 { left: auto; } .col-xl-offset-0 { margin-left: 0%; } .col-xl-1 { width: 8.33333333%; } .col-xl-pull-1 { right: 8.33333333%; } .col-xl-push-1 { left: 8.33333333%; } .col-xl-offset-1 { margin-left: 8.33333333%; } .col-xl-2 { width: 16.66666667%; } .col-xl-pull-2 { right: 16.66666667%; } .col-xl-push-2 { left: 16.66666667%; } .col-xl-offset-2 { margin-left: 16.66666667%; } .col-xl-3 { width: 25%; } .col-xl-pull-3 { right: 25%; } .col-xl-push-3 { left: 25%; } .col-xl-offset-3 { margin-left: 25%; } .col-xl-4 { width: 33.33333333%; } .col-xl-pull-4 { right: 33.33333333%; } .col-xl-push-4 { left: 33.33333333%; } .col-xl-offset-4 { margin-left: 33.33333333%; } .col-xl-5 { width: 41.66666667%; } .col-xl-pull-5 { right: 41.66666667%; } .col-xl-push-5 { left: 41.66666667%; } .col-xl-offset-5 { margin-left: 41.66666667%; } .col-xl-6 { width: 50%; } .col-xl-pull-6 { right: 50%; } .col-xl-push-6 { left: 50%; } .col-xl-offset-6 { margin-left: 50%; } .col-xl-7 { width: 58.33333333%; } .col-xl-pull-7 { right: 58.33333333%; } .col-xl-push-7 { left: 58.33333333%; } .col-xl-offset-7 { margin-left: 58.33333333%; } .col-xl-8 { width: 66.66666667%; } .col-xl-pull-8 { right: 66.66666667%; } .col-xl-push-8 { left: 66.66666667%; } .col-xl-offset-8 { margin-left: 66.66666667%; } .col-xl-9 { width: 75%; } .col-xl-pull-9 { right: 75%; } .col-xl-push-9 { left: 75%; } .col-xl-offset-9 { margin-left: 75%; } .col-xl-10 { width: 83.33333333%; } .col-xl-pull-10 { right: 83.33333333%; } .col-xl-push-10 { left: 83.33333333%; } .col-xl-offset-10 { margin-left: 83.33333333%; } .col-xl-11 { width: 91.66666667%; } .col-xl-pull-11 { right: 91.66666667%; } .col-xl-push-11 { left: 91.66666667%; } .col-xl-offset-11 { margin-left: 91.66666667%; } .col-xl-12 { width: 100%; } .col-xl-pull-12 { right: 100%; } .col-xl-push-12 { left: 100%; } } label { display: inline-block; margin-bottom: 0.3rem; } .label-inline { margin-top: 1px; padding-top: 0.375em; } .form-group { margin-bottom: 1rem; } [type="email"], [type="number"], [type="password"], [type="search"], [type="tel"], [type="text"], [type="url"], textarea, select { display: block; width: 100%; height: 2.375em; border: 1px solid #b6b6b6; border-radius: 0.125em; padding: 0.375em 0.75em; background-clip: padding-box; background-color: #fff; color: #333; transition: border-color 0.15s ease; } [type="email"]:focus, [type="number"]:focus, [type="password"]:focus, [type="search"]:focus, [type="tel"]:focus, [type="text"]:focus, [type="url"]:focus, textarea:focus, select:focus { border-color: #838383; outline: 0; } [type="email"]:disabled, [type="number"]:disabled, [type="password"]:disabled, [type="search"]:disabled, [type="tel"]:disabled, [type="text"]:disabled, [type="url"]:disabled, textarea:disabled, select:disabled { border-color: #ccc; background-color: #eee; color: #555; cursor: not-allowed; } select { overflow-x: hidden; } select:focus::-ms-value { background: transparent; color: currentColor; } select[multiple], select[size] { height: auto; } textarea { resize: vertical; } textarea[rows] { height: auto; } textarea:not([rows]) { height: 4.75em; } input[type="radio"]:not(:only-child), input[type="checkbox"]:not(:only-child) { position: absolute; margin-top: 0.35em; } input[type="radio"] ~ label, input[type="checkbox"] ~ label { margin-bottom: 0; padding-left: 20px; font-weight: inherit; } input[type="radio"]:disabled ~ label, input[type="checkbox"]:disabled ~ label { color: #555; cursor: not-allowed; } input[type="file"] { display: block; max-width: 100%; } ::-moz-placeholder { color: #b3b2b2; opacity: 1; } :-ms-input-placeholder { color: #b3b2b2; opacity: 1; } ::placeholder { color: #b3b2b2; opacity: 1; } @supports ((-webkit-appearance: none) or (-moz-appearance: none) or (appearance: none)) { .select select:not([multiple]) { -webkit-appearance: none; -moz-appearance: none; appearance: none; padding-right: 2em; background-repeat: no-repeat; background-position: right center; background-position: right 0.75em center; background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' height='8' width='12' viewBox='0 0 12 8'%3E%3Cpath fill='%23333' d='m1.41 0 4.59 4.58 4.59-4.58 1.41 1.41l-6 6-6-6z'/%3E%3C/svg%3E"); } } .radio input[type="radio"]:not(:only-child), .checkbox input[type="checkbox"]:not(:only-child) { opacity: 0; } .radio input[type="radio"] ~ label, .checkbox input[type="checkbox"] ~ label { position: relative; padding-left: 1.4em; line-height: 1.5; } .radio input[type="radio"] ~ label::before, .radio input[type="radio"] ~ label::after, .checkbox input[type="checkbox"] ~ label::before, .checkbox input[type="checkbox"] ~ label::after { content: ''; position: absolute; top: 0.25em; left: 0; width: 1em; height: 1em; } .radio input[type="radio"] ~ label::before, .checkbox input[type="checkbox"] ~ label::before { border: 1px solid #b6b6b6; background-color: #fff; } .radio input[type="radio"] ~ label::after, .checkbox input[type="checkbox"] ~ label::after { background-repeat: no-repeat; background-position: center center; } .radio input[type="radio"]:hover:not(:disabled) ~ label:hover::before, .radio input[type="radio"]:focus ~ label::before, .checkbox input[type="checkbox"]:hover:not(:disabled) ~ label:hover::before, .checkbox input[type="checkbox"]:focus ~ label::before { border-color: #838383; } .radio input[type="radio"]:active ~ label::before, .checkbox input[type="checkbox"]:active ~ label::before { background-color: #e6e5e5; } .radio input[type="radio"]:disabled ~ label::before, .checkbox input[type="checkbox"]:disabled ~ label::before { border-color: #ccc; background-color: #eee; } .radio input[type="radio"] ~ label::before { border-radius: 50%; } .radio input[type="radio"]:checked ~ label::after { background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3E%3Cpath fill='%23333' d='M4 1C2.3 1 1 2.3 1 4s1.3 3 3 3 3-1.3 3-3S5.7 1 4 1z'/%3E%3C/svg%3E"); } .checkbox input[type="checkbox"] ~ label::before { border-radius: 0.125em; } .checkbox input[type="checkbox"]:checked ~ label::after { background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3E%3Cpath fill='%23333' d='M6.4 1L5.7 1.7 2.9 4.5 2.1 3.7 1.4 3 0 4.4l0.7 0.7 1.5 1.5 0.7 0.7 0.7-0.7 3.5-3.5 0.7-0.7L6.4 1 6.4 1z'/%3E%3C/svg%3E"); } .btn { display: inline-block; vertical-align: middle; padding: 0.375em 1em; transition: background-color 0.15s ease, color 0.15s ease; text-align: center; text-decoration: none; white-space: normal; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; touch-action: manipulation; cursor: pointer; border: 1px solid transparent; border-radius: 0.125em; background-color: #0275d8; color: #fff; } .btn:hover, .btn:focus { outline: 0; text-decoration: none; border-color: transparent; background-color: #025aa5; color: #fff; } .btn:active { background-color: #025aa5; color: #fff; } .btn.disabled, .btn:disabled { opacity: 0.65; cursor: default; pointer-events: none; } .table { width: 100%; max-width: 100%; border-collapse: collapse; border-spacing: 0; } .table th, .table td { padding: 0.4em 0.6em; border-bottom: 1px solid #dedede; vertical-align: top; } .table th { text-align: left; } .table thead th { border-bottom-width: 2px; vertical-align: bottom; } .table tbody tr:nth-child(2n+1) { background-color: #efefef; } .table-responsive { display: block; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; -ms-overflow-style: -ms-autohiding-scrollbar; } .nospace { margin-bottom: 0 !important; } @media (max-width: 24.99em) { .nospace-xs { margin-bottom: 0 !important; } } @media (min-width: 25em) and (max-width: 42.49em) { .nospace-sm { margin-bottom: 0 !important; } } @media (min-width: 42.5em) and (max-width: 59.99em) { .nospace-md { margin-bottom: 0 !important; } } @media (min-width: 60em) and (max-width: 74.99em) { .nospace-lg { margin-bottom: 0 !important; } } @media (min-width: 75em) { .nospace-xl { margin-bottom: 0 !important; } } .nospace-xs-up { margin-bottom: 0 !important; } @media (min-width: 25em) { .nospace-sm-up { margin-bottom: 0 !important; } } @media (min-width: 42.5em) { .nospace-md-up { margin-bottom: 0 !important; } } @media (min-width: 60em) { .nospace-lg-up { margin-bottom: 0 !important; } } .space { margin-bottom: 1.875rem !important; } @media (max-width: 24.99em) { .space-xs { margin-bottom: 1.875rem !important; } } @media (min-width: 25em) and (max-width: 42.49em) { .space-sm { margin-bottom: 1.875rem !important; } } @media (min-width: 42.5em) and (max-width: 59.99em) { .space-md { margin-bottom: 1.875rem !important; } } @media (min-width: 60em) and (max-width: 74.99em) { .space-lg { margin-bottom: 1.875rem !important; } } @media (min-width: 75em) { .space-xl { margin-bottom: 1.875rem !important; } } .space-xs-up { margin-bottom: 1.875rem !important; } @media (min-width: 25em) { .space-sm-up { margin-bottom: 1.875rem !important; } } @media (min-width: 42.5em) { .space-md-up { margin-bottom: 1.875rem !important; } } @media (min-width: 60em) { .space-lg-up { margin-bottom: 1.875rem !important; } } .block-center { display: block; margin-left: auto; margin-right: auto; } .pull-left { float: left !important; } .pull-right { float: right !important; } .clearfix::after { content: ''; display: block; clear: both; } .small { font-size: 0.8rem !important; } .text-left { text-align: left !important; } .text-center { text-align: center !important; } .text-right { text-align: right !important; } .text-hide { text-indent: 110%; white-space: nowrap; overflow: hidden; color: transparent; text-shadow: none; } .text-truncate { text-overflow: ellipsis; white-space: nowrap; overflow: hidden; } .text-hyphenate { overflow-wrap: break-word; word-wrap: break-word; -webkit-hyphens: auto; -ms-hyphens: auto; hyphens: auto; } .invisible { visibility: hidden !important; } .hidden { display: none !important; } @media print { .hidden-print { display: none !important; } } .visible-xs { display: none !important; } .visible-sm { display: none !important; } .visible-sm-up { display: none !important; } .visible-md { display: none !important; } .visible-md-up { display: none !important; } .visible-lg { display: none !important; } .visible-lg-up { display: none !important; } .visible-xl { display: none !important; } @media (max-width: 24.99em) { .hidden-xs { display: none !important; } .visible-xs { display: block !important; } } @media (min-width: 25em) and (max-width: 42.49em) { .hidden-sm { display: none !important; } .visible-sm { display: block !important; } } @media (min-width: 42.5em) and (max-width: 59.99em) { .hidden-md { display: none !important; } .visible-md { display: block !important; } } @media (min-width: 60em) and (max-width: 74.99em) { .hidden-lg { display: none !important; } .visible-lg { display: block !important; } } @media (min-width: 75em) { .hidden-xl { display: none !important; } .visible-xl { display: block !important; } } @media (min-width: 25em) { .hidden-sm-up { display: none !important; } .visible-sm-up { display: block !important; } } @media (min-width: 42.5em) { .hidden-md-up { display: none !important; } .visible-md-up { display: block !important; } } @media (min-width: 60em) { .hidden-lg-up { display: none !important; } .visible-lg-up { display: block !important; } } .sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; } .sr-only-focusable:active, .sr-only-focusable:focus { position: static; width: auto; height: auto; overflow: visible; clip: auto; white-space: inherit; }
dist/css/baseguide.css
========================================================================== */ /** * 1. Correct the line height in all browsers. * 2. Prevent adjustments of font size after orientation changes in iOS. */ html { line-height: 1.15; /* 1 */ -webkit-text-size-adjust: 100%; /* 2 */ } /* Sections ========================================================================== */ /** * Remove the margin in all browsers. */ body { margin: 0; } /** * Render the `main` element consistently in IE. */ main { display: block; } /** * Correct the font size and margin on `h1` elements within `section` and * `article` contexts in Chrome, Firefox, and Safari. */ h1 { font-size: 2em; margin: 0.67em 0; } /* Grouping content ========================================================================== */ /** * 1. Add the correct box sizing in Firefox. * 2. Show the overflow in Edge and IE. */ hr { box-sizing: content-box; /* 1 */ height: 0; /* 1 */ overflow: visible; /* 2 */ } /** * 1. Correct the inheritance and scaling of font size in all browsers. * 2. Correct the odd `em` font sizing in all browsers. */ pre { font-family: monospace, monospace; /* 1 */ font-size: 1em; /* 2 */ } /* Text-level semantics ========================================================================== */ /** * Remove the gray background on active links in IE 10. */ a { background-color: transparent; } /** * 1. Remove the bottom border in Chrome 57- * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. */ abbr[title] { border-bottom: none; /* 1 */ text-decoration: underline; /* 2 */ -webkit-text-decoration: underline dotted; text-decoration: underline dotted; /* 2 */ } /** * Add the correct font weight in Chrome, Edge, and Safari. */ b, strong { font-weight: bolder; } /** * 1. Correct the inheritance and scaling of font size in all browsers. * 2. Correct the odd `em` font sizing in all browsers. */ code, kbd, samp { font-family: monospace, monospace; /* 1 */ font-size: 1em; /* 2 */ } /** * Add the correct font size in all browsers. */ small { font-size: 80%; } /** * Prevent `sub` and `sup` elements from affecting the line height in * all browsers. */ sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } sub { bottom: -0.25em; } sup { top: -0.5em; } /* Embedded content ========================================================================== */ /** * Remove the border on images inside links in IE 10. */ img { border-style: none; } /* Forms ========================================================================== */ /** * 1. Change the font styles in all browsers. * 2. Remove the margin in Firefox and Safari. */ button, input, optgroup, select, textarea { font-family: inherit; /* 1 */ font-size: 100%; /* 1 */ line-height: 1.15; /* 1 */ margin: 0; /* 2 */ } /** * Show the overflow in IE. * 1. Show the overflow in Edge. */ button, input { /* 1 */ overflow: visible; } /** * Remove the inheritance of text transform in Edge, Firefox, and IE. * 1. Remove the inheritance of text transform in Firefox. */ button, select { /* 1 */ text-transform: none; } /** * Correct the inability to style clickable types in iOS and Safari. */ button, [type="button"], [type="reset"], [type="submit"] { -webkit-appearance: button; } /** * Remove the inner border and padding in Firefox. */ button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner { border-style: none; padding: 0; } /** * Restore the focus styles unset by the previous rule. */ button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring { outline: 1px dotted ButtonText; } /** * Correct the padding in Firefox. */ fieldset { padding: 0.35em 0.75em 0.625em; } /** * 1. Correct the text wrapping in Edge and IE. * 2. Correct the color inheritance from `fieldset` elements in IE. * 3. Remove the padding so developers are not caught out when they zero out * `fieldset` elements in all browsers. */ legend { box-sizing: border-box; /* 1 */ color: inherit; /* 2 */ display: table; /* 1 */ max-width: 100%; /* 1 */ padding: 0; /* 3 */ white-space: normal; /* 1 */ } /** * Add the correct vertical alignment in Chrome, Firefox, and Opera. */ progress { vertical-align: baseline; } /** * Remove the default vertical scrollbar in IE 10+. */ textarea { overflow: auto; } /** * 1. Add the correct box sizing in IE 10. * 2. Remove the padding in IE 10. */ [type="checkbox"], [type="radio"] { box-sizing: border-box; /* 1 */ padding: 0; /* 2 */ } /** * Correct the cursor style of increment and decrement buttons in Chrome. */ [type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button { height: auto; } /** * 1. Correct the odd appearance in Chrome and Safari. * 2. Correct the outline style in Safari. */ [type="search"] { -webkit-appearance: textfield; /* 1 */ outline-offset: -2px; /* 2 */ } /** * Remove the inner padding in Chrome and Safari on macOS. */ [type="search"]::-webkit-search-decoration { -webkit-appearance: none; } /** * 1. Correct the inability to style clickable types in iOS and Safari. * 2. Change font properties to `inherit` in Safari. */ ::-webkit-file-upload-button { -webkit-appearance: button; /* 1 */ font: inherit; /* 2 */ } /* Interactive ========================================================================== */ /* * Add the correct display in Edge, IE 10+, and Firefox. */ details { display: block; } /* * Add the correct display in all browsers. */ summary { display: list-item; } /* Misc ========================================================================== */ /** * Add the correct display in IE 10+. */ template { display: none; } /** * Add the correct display in IE 10. */ [hidden] { display: none; } html { box-sizing: border-box; } *, *::before, *::after { box-sizing: inherit; } audio, canvas, iframe, img, svg, video { vertical-align: middle; } canvas, img, video { max-width: 100%; height: auto; } audio { max-width: 100%; } iframe { border: 0; } button, input, optgroup, select, textarea { font: inherit; line-height: inherit; } optgroup { font-weight: bold; } fieldset { min-width: 0; padding: 0; border: 0; } [type="button"]:not(:disabled), [type="reset"]:not(:disabled), [type="submit"]:not(:disabled), button:not(:disabled) { cursor: pointer; } address { font-style: inherit; } pre { overflow: auto; } hr { border: 0; border-top: 1px solid; color: inherit; opacity: 0.2; } :focus:not(:focus-visible) { outline: none; } body { font-family: "Helvetica Neue", Helvetica, sans-serif; font-size: 1rem; font-weight: 400; line-height: 1.5; background-color: #fff; color: #333; } blockquote, figure, fieldset { margin: 0; } address, blockquote, table, figure, form, fieldset, legend, pre, dl, ul, ol, hr, p { margin-top: 0; margin-bottom: 1.5rem; } address:last-child, blockquote:last-child, table:last-child, figure:last-child, form:last-child, fieldset:last-child, legend:last-child, pre:last-child, dl:last-child, ul:last-child, ol:last-child, hr:last-child, p:last-child { margin-bottom: 0; } h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 { margin-top: 0.8em; margin-bottom: 0.4em; font-family: inherit; font-weight: 700; line-height: 1.2; color: inherit; } h6:first-child, .h6:first-child, h5:first-child, .h5:first-child, h4:first-child, .h4:first-child, h3:first-child, .h3:first-child, h2:first-child, .h2:first-child, h1:first-child, .h1:first-child { margin-top: 0; } h6:last-child, .h6:last-child, h5:last-child, .h5:last-child, h4:last-child, .h4:last-child, h3:last-child, .h3:last-child, h2:last-child, .h2:last-child, h1:last-child, .h1:last-child { margin-bottom: 0; } h6, .h6 { font-size: 1rem; } h5, .h5 { font-size: 1.25rem; } h4, .h4 { font-size: 1.5625rem; } h3, .h3 { font-size: 1.953125rem; } h2, .h2 { font-size: 2.44140625rem; } h1, .h1 { font-size: 3.05175781rem; } a { color: #0283f1; text-decoration: none; } a:hover, a:focus { color: #0283f1; text-decoration: underline; } @media print { *, *::before, *::after { color: #000 !important; box-shadow: none !important; text-shadow: none !important; } a, a:visited { text-decoration: underline; } abbr[title]::after { content: " (" attr(title) ")"; } pre { white-space: pre-wrap !important; } pre, blockquote { border: 1px solid #999; page-break-inside: avoid; } thead { display: table-header-group; } tr, img { page-break-inside: avoid; } p, h2, h3 { orphans: 3; widows: 3; } h2, h3 { page-break-after: avoid; } } .list-unstyled { padding-left: 0; list-style: none; } .list-inline { padding-left: 0; list-style: none; display: flex; flex-wrap: wrap; margin-left: -1rem; } .list-inline > li { margin-left: 1rem; } .media { display: flex; align-items: flex-start; } .media-body { flex: 0 1 auto; } .media-left, .media-right { flex: 0 0 auto; } .media-left { padding-right: 1rem; } .media-right { order: 1; padding-left: 1rem; } .media-middle { align-self: center; } .media-bottom { align-self: flex-end; } .embed-responsive { position: relative; overflow: hidden; } .embed-responsive::before { content: ''; display: block; padding-bottom: 56.25%; } .embed-responsive iframe, .embed-responsive embed, .embed-responsive object, .embed-responsive video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } .container { padding-left: 0.9375rem; padding-right: 0.9375rem; margin-left: auto; margin-right: auto; width: 100%; max-width: 73.125rem; } .row { margin-left: -0.9375rem; margin-right: -0.9375rem; display: flex; flex-wrap: wrap; } .col { padding-left: 0.9375rem; padding-right: 0.9375rem; width: 100%; position: relative; } .col-xs-pull-0 { right: auto; } .col-xs-push-0 { left: auto; } .col-xs-offset-0 { margin-left: 0%; } .col-xs-1 { width: 8.33333333%; } .col-xs-pull-1 { right: 8.33333333%; } .col-xs-push-1 { left: 8.33333333%; } .col-xs-offset-1 { margin-left: 8.33333333%; } .col-xs-2 { width: 16.66666667%; } .col-xs-pull-2 { right: 16.66666667%; } .col-xs-push-2 { left: 16.66666667%; } .col-xs-offset-2 { margin-left: 16.66666667%; } .col-xs-3 { width: 25%; } .col-xs-pull-3 { right: 25%; } .col-xs-push-3 { left: 25%; } .col-xs-offset-3 { margin-left: 25%; } .col-xs-4 { width: 33.33333333%; } .col-xs-pull-4 { right: 33.33333333%; } .col-xs-push-4 { left: 33.33333333%; } .col-xs-offset-4 { margin-left: 33.33333333%; } .col-xs-5 { width: 41.66666667%; } .col-xs-pull-5 { right: 41.66666667%; } .col-xs-push-5 { left: 41.66666667%; } .col-xs-offset-5 { margin-left: 41.66666667%; } .col-xs-6 { width: 50%; } .col-xs-pull-6 { right: 50%; } .col-xs-push-6 { left: 50%; } .col-xs-offset-6 { margin-left: 50%; } .col-xs-7 { width: 58.33333333%; } .col-xs-pull-7 { right: 58.33333333%; } .col-xs-push-7 { left: 58.33333333%; } .col-xs-offset-7 { margin-left: 58.33333333%; } .col-xs-8 { width: 66.66666667%; } .col-xs-pull-8 { right: 66.66666667%; } .col-xs-push-8 { left: 66.66666667%; } .col-xs-offset-8 { margin-left: 66.66666667%; } .col-xs-9 { width: 75%; } .col-xs-pull-9 { right: 75%; } .col-xs-push-9 { left: 75%; } .col-xs-offset-9 { margin-left: 75%; } .col-xs-10 { width: 83.33333333%; } .col-xs-pull-10 { right: 83.33333333%; } .col-xs-push-10 { left: 83.33333333%; } .col-xs-offset-10 { margin-left: 83.33333333%; } .col-xs-11 { width: 91.66666667%; } .col-xs-pull-11 { right: 91.66666667%; } .col-xs-push-11 { left: 91.66666667%; } .col-xs-offset-11 { margin-left: 91.66666667%; } .col-xs-12 { width: 100%; } .col-xs-pull-12 { right: 100%; } .col-xs-push-12 { left: 100%; } @media (min-width: 25em) { .col-sm-pull-0 { right: auto; } .col-sm-push-0 { left: auto; } .col-sm-offset-0 { margin-left: 0%; } .col-sm-1 { width: 8.33333333%; } .col-sm-pull-1 { right: 8.33333333%; } .col-sm-push-1 { left: 8.33333333%; } .col-sm-offset-1 { margin-left: 8.33333333%; } .col-sm-2 { width: 16.66666667%; } .col-sm-pull-2 { right: 16.66666667%; } .col-sm-push-2 { left: 16.66666667%; } .col-sm-offset-2 { margin-left: 16.66666667%; } .col-sm-3 { width: 25%; } .col-sm-pull-3 { right: 25%; } .col-sm-push-3 { left: 25%; } .col-sm-offset-3 { margin-left: 25%; } .col-sm-4 { width: 33.33333333%; } .col-sm-pull-4 { right: 33.33333333%; } .col-sm-push-4 { left: 33.33333333%; } .col-sm-offset-4 { margin-left: 33.33333333%; } .col-sm-5 { width: 41.66666667%; } .col-sm-pull-5 { right: 41.66666667%; } .col-sm-push-5 { left: 41.66666667%; } .col-sm-offset-5 { margin-left: 41.66666667%; } .col-sm-6 { width: 50%; } .col-sm-pull-6 { right: 50%; } .col-sm-push-6 { left: 50%; } .col-sm-offset-6 { margin-left: 50%; } .col-sm-7 { width: 58.33333333%; } .col-sm-pull-7 { right: 58.33333333%; } .col-sm-push-7 { left: 58.33333333%; } .col-sm-offset-7 { margin-left: 58.33333333%; } .col-sm-8 { width: 66.66666667%; } .col-sm-pull-8 { right: 66.66666667%; } .col-sm-push-8 { left: 66.66666667%; } .col-sm-offset-8 { margin-left: 66.66666667%; } .col-sm-9 { width: 75%; } .col-sm-pull-9 { right: 75%; } .col-sm-push-9 { left: 75%; } .col-sm-offset-9 { margin-left: 75%; } .col-sm-10 { width: 83.33333333%; } .col-sm-pull-10 { right: 83.33333333%; } .col-sm-push-10 { left: 83.33333333%; } .col-sm-offset-10 { margin-left: 83.33333333%; } .col-sm-11 { width: 91.66666667%; } .col-sm-pull-11 { right: 91.66666667%; } .col-sm-push-11 { left: 91.66666667%; } .col-sm-offset-11 { margin-left: 91.66666667%; } .col-sm-12 { width: 100%; } .col-sm-pull-12 { right: 100%; } .col-sm-push-12 { left: 100%; } } @media (min-width: 42.5em) { .col-md-pull-0 { right: auto; } .col-md-push-0 { left: auto; } .col-md-offset-0 { margin-left: 0%; } .col-md-1 { width: 8.33333333%; } .col-md-pull-1 { right: 8.33333333%; } .col-md-push-1 { left: 8.33333333%; } .col-md-offset-1 { margin-left: 8.33333333%; } .col-md-2 { width: 16.66666667%; } .col-md-pull-2 { right: 16.66666667%; } .col-md-push-2 { left: 16.66666667%; } .col-md-offset-2 { margin-left: 16.66666667%; } .col-md-3 { width: 25%; } .col-md-pull-3 { right: 25%; } .col-md-push-3 { left: 25%; } .col-md-offset-3 { margin-left: 25%; } .col-md-4 { width: 33.33333333%; } .col-md-pull-4 { right: 33.33333333%; } .col-md-push-4 { left: 33.33333333%; } .col-md-offset-4 { margin-left: 33.33333333%; } .col-md-5 { width: 41.66666667%; } .col-md-pull-5 { right: 41.66666667%; } .col-md-push-5 { left: 41.66666667%; } .col-md-offset-5 { margin-left: 41.66666667%; } .col-md-6 { width: 50%; } .col-md-pull-6 { right: 50%; } .col-md-push-6 { left: 50%; } .col-md-offset-6 { margin-left: 50%; } .col-md-7 { width: 58.33333333%; } .col-md-pull-7 { right: 58.33333333%; } .col-md-push-7 { left: 58.33333333%; } .col-md-offset-7 { margin-left: 58.33333333%; } .col-md-8 { width: 66.66666667%; } .col-md-pull-8 { right: 66.66666667%; } .col-md-push-8 { left: 66.66666667%; } .col-md-offset-8 { margin-left: 66.66666667%; } .col-md-9 { width: 75%; } .col-md-pull-9 { right: 75%; } .col-md-push-9 { left: 75%; } .col-md-offset-9 { margin-left: 75%; } .col-md-10 { width: 83.33333333%; } .col-md-pull-10 { right: 83.33333333%; } .col-md-push-10 { left: 83.33333333%; } .col-md-offset-10 { margin-left: 83.33333333%; } .col-md-11 { width: 91.66666667%; } .col-md-pull-11 { right: 91.66666667%; } .col-md-push-11 { left: 91.66666667%; } .col-md-offset-11 { margin-left: 91.66666667%; } .col-md-12 { width: 100%; } .col-md-pull-12 { right: 100%; } .col-md-push-12 { left: 100%; } } @media (min-width: 60em) { .col-lg-pull-0 { right: auto; } .col-lg-push-0 { left: auto; } .col-lg-offset-0 { margin-left: 0%; } .col-lg-1 { width: 8.33333333%; } .col-lg-pull-1 { right: 8.33333333%; } .col-lg-push-1 { left: 8.33333333%; } .col-lg-offset-1 { margin-left: 8.33333333%; } .col-lg-2 { width: 16.66666667%; } .col-lg-pull-2 { right: 16.66666667%; } .col-lg-push-2 { left: 16.66666667%; } .col-lg-offset-2 { margin-left: 16.66666667%; } .col-lg-3 { width: 25%; } .col-lg-pull-3 { right: 25%; } .col-lg-push-3 { left: 25%; } .col-lg-offset-3 { margin-left: 25%; } .col-lg-4 { width: 33.33333333%; } .col-lg-pull-4 { right: 33.33333333%; } .col-lg-push-4 { left: 33.33333333%; } .col-lg-offset-4 { margin-left: 33.33333333%; } .col-lg-5 { width: 41.66666667%; } .col-lg-pull-5 { right: 41.66666667%; } .col-lg-push-5 { left: 41.66666667%; } .col-lg-offset-5 { margin-left: 41.66666667%; } .col-lg-6 { width: 50%; } .col-lg-pull-6 { right: 50%; } .col-lg-push-6 { left: 50%; } .col-lg-offset-6 { margin-left: 50%; } .col-lg-7 { width: 58.33333333%; } .col-lg-pull-7 { right: 58.33333333%; } .col-lg-push-7 { left: 58.33333333%; } .col-lg-offset-7 { margin-left: 58.33333333%; } .col-lg-8 { width: 66.66666667%; } .col-lg-pull-8 { right: 66.66666667%; } .col-lg-push-8 { left: 66.66666667%; } .col-lg-offset-8 { margin-left: 66.66666667%; } .col-lg-9 { width: 75%; } .col-lg-pull-9 { right: 75%; } .col-lg-push-9 { left: 75%; } .col-lg-offset-9 { margin-left: 75%; } .col-lg-10 { width: 83.33333333%; } .col-lg-pull-10 { right: 83.33333333%; } .col-lg-push-10 { left: 83.33333333%; } .col-lg-offset-10 { margin-left: 83.33333333%; } .col-lg-11 { width: 91.66666667%; } .col-lg-pull-11 { right: 91.66666667%; } .col-lg-push-11 { left: 91.66666667%; } .col-lg-offset-11 { margin-left: 91.66666667%; } .col-lg-12 { width: 100%; } .col-lg-pull-12 { right: 100%; } .col-lg-push-12 { left: 100%; } } @media (min-width: 75em) { .col-xl-pull-0 { right: auto; } .col-xl-push-0 { left: auto; } .col-xl-offset-0 { margin-left: 0%; } .col-xl-1 { width: 8.33333333%; } .col-xl-pull-1 { right: 8.33333333%; } .col-xl-push-1 { left: 8.33333333%; } .col-xl-offset-1 { margin-left: 8.33333333%; } .col-xl-2 { width: 16.66666667%; } .col-xl-pull-2 { right: 16.66666667%; } .col-xl-push-2 { left: 16.66666667%; } .col-xl-offset-2 { margin-left: 16.66666667%; } .col-xl-3 { width: 25%; } .col-xl-pull-3 { right: 25%; } .col-xl-push-3 { left: 25%; } .col-xl-offset-3 { margin-left: 25%; } .col-xl-4 { width: 33.33333333%; } .col-xl-pull-4 { right: 33.33333333%; } .col-xl-push-4 { left: 33.33333333%; } .col-xl-offset-4 { margin-left: 33.33333333%; } .col-xl-5 { width: 41.66666667%; } .col-xl-pull-5 { right: 41.66666667%; } .col-xl-push-5 { left: 41.66666667%; } .col-xl-offset-5 { margin-left: 41.66666667%; } .col-xl-6 { width: 50%; } .col-xl-pull-6 { right: 50%; } .col-xl-push-6 { left: 50%; } .col-xl-offset-6 { margin-left: 50%; } .col-xl-7 { width: 58.33333333%; } .col-xl-pull-7 { right: 58.33333333%; } .col-xl-push-7 { left: 58.33333333%; } .col-xl-offset-7 { margin-left: 58.33333333%; } .col-xl-8 { width: 66.66666667%; } .col-xl-pull-8 { right: 66.66666667%; } .col-xl-push-8 { left: 66.66666667%; } .col-xl-offset-8 { margin-left: 66.66666667%; } .col-xl-9 { width: 75%; } .col-xl-pull-9 { right: 75%; } .col-xl-push-9 { left: 75%; } .col-xl-offset-9 { margin-left: 75%; } .col-xl-10 { width: 83.33333333%; } .col-xl-pull-10 { right: 83.33333333%; } .col-xl-push-10 { left: 83.33333333%; } .col-xl-offset-10 { margin-left: 83.33333333%; } .col-xl-11 { width: 91.66666667%; } .col-xl-pull-11 { right: 91.66666667%; } .col-xl-push-11 { left: 91.66666667%; } .col-xl-offset-11 { margin-left: 91.66666667%; } .col-xl-12 { width: 100%; } .col-xl-pull-12 { right: 100%; } .col-xl-push-12 { left: 100%; } } label { display: inline-block; margin-bottom: 0.3rem; } .label-inline { margin-top: 1px; padding-top: 0.375em; } .form-group { margin-bottom: 1rem; } [type="email"], [type="number"], [type="password"], [type="search"], [type="tel"], [type="text"], [type="url"], textarea, select { display: block; width: 100%; height: 2.375em; border: 1px solid #b6b6b6; border-radius: 0.125em; padding: 0.375em 0.75em; background-clip: padding-box; background-color: #fff; color: #333; transition: border-color 0.15s ease; } [type="email"]:focus, [type="number"]:focus, [type="password"]:focus, [type="search"]:focus, [type="tel"]:focus, [type="text"]:focus, [type="url"]:focus, textarea:focus, select:focus { border-color: #838383; outline: 0; } [type="email"]:disabled, [type="number"]:disabled, [type="password"]:disabled, [type="search"]:disabled, [type="tel"]:disabled, [type="text"]:disabled, [type="url"]:disabled, textarea:disabled, select:disabled { border-color: #ccc; background-color: #eee; color: #555; cursor: not-allowed; } select { overflow-x: hidden; } select:focus::-ms-value { background: transparent; color: currentColor; } select[multiple], select[size] { height: auto; } textarea { resize: vertical; } textarea[rows] { height: auto; } textarea:not([rows]) { height: 4.75em; } input[type="radio"]:not(:only-child), input[type="checkbox"]:not(:only-child) { position: absolute; margin-top: 0.35em; } input[type="radio"] ~ label, input[type="checkbox"] ~ label { margin-bottom: 0; padding-left: 20px; font-weight: inherit; } input[type="radio"]:disabled ~ label, input[type="checkbox"]:disabled ~ label { color: #555; cursor: not-allowed; } input[type="file"] { display: block; max-width: 100%; } ::-moz-placeholder { color: #b3b2b2; opacity: 1; } :-ms-input-placeholder { color: #b3b2b2; opacity: 1; } ::placeholder { color: #b3b2b2; opacity: 1; } @supports ((-webkit-appearance: none) or (-moz-appearance: none) or (appearance: none)) { .select select:not([multiple]) { -webkit-appearance: none; -moz-appearance: none; appearance: none; padding-right: 2em; background-repeat: no-repeat; background-position: right center; background-position: right 0.75em center; background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' height='8' width='12' viewBox='0 0 12 8'%3E%3Cpath fill='%23333' d='m1.41 0 4.59 4.58 4.59-4.58 1.41 1.41l-6 6-6-6z'/%3E%3C/svg%3E"); } } .radio input[type="radio"]:not(:only-child), .checkbox input[type="checkbox"]:not(:only-child) { opacity: 0; } .radio input[type="radio"] ~ label, .checkbox input[type="checkbox"] ~ label { position: relative; padding-left: 1.4em; line-height: 1.5; } .radio input[type="radio"] ~ label::before, .radio input[type="radio"] ~ label::after, .checkbox input[type="checkbox"] ~ label::before, .checkbox input[type="checkbox"] ~ label::after { content: ''; position: absolute; top: 0.25em; left: 0; width: 1em; height: 1em; } .radio input[type="radio"] ~ label::before, .checkbox input[type="checkbox"] ~ label::before { border: 1px solid #b6b6b6; background-color: #fff; } .radio input[type="radio"] ~ label::after, .checkbox input[type="checkbox"] ~ label::after { background-repeat: no-repeat; background-position: center center; } .radio input[type="radio"]:hover:not(:disabled) ~ label:hover::before, .radio input[type="radio"]:focus ~ label::before, .checkbox input[type="checkbox"]:hover:not(:disabled) ~ label:hover::before, .checkbox input[type="checkbox"]:focus ~ label::before { border-color: #838383; } .radio input[type="radio"]:active ~ label::before, .checkbox input[type="checkbox"]:active ~ label::before { background-color: #e6e5e5; } .radio input[type="radio"]:disabled ~ label::before, .checkbox input[type="checkbox"]:disabled ~ label::before { border-color: #ccc; background-color: #eee; } .radio input[type="radio"] ~ label::before { border-radius: 50%; } .radio input[type="radio"]:checked ~ label::after { background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3E%3Cpath fill='%23333' d='M4 1C2.3 1 1 2.3 1 4s1.3 3 3 3 3-1.3 3-3S5.7 1 4 1z'/%3E%3C/svg%3E"); } .checkbox input[type="checkbox"] ~ label::before { border-radius: 0.125em; } .checkbox input[type="checkbox"]:checked ~ label::after { background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3E%3Cpath fill='%23333' d='M6.4 1L5.7 1.7 2.9 4.5 2.1 3.7 1.4 3 0 4.4l0.7 0.7 1.5 1.5 0.7 0.7 0.7-0.7 3.5-3.5 0.7-0.7L6.4 1 6.4 1z'/%3E%3C/svg%3E"); } .btn { display: inline-block; vertical-align: middle; padding: 0.375em 1em; transition: background-color 0.15s ease, color 0.15s ease; text-align: center; text-decoration: none; white-space: normal; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; touch-action: manipulation; cursor: pointer; border: 1px solid transparent; border-radius: 0.125em; background-color: #0275d8; color: #fff; } .btn:hover, .btn:focus { outline: 0; text-decoration: none; border-color: transparent; background-color: #025aa5; color: #fff; } .btn:active { background-color: #025aa5; color: #fff; } .btn.disabled, .btn:disabled { opacity: 0.65; cursor: default; pointer-events: none; } .table { width: 100%; max-width: 100%; border-collapse: collapse; border-spacing: 0; } .table th, .table td { padding: 0.4em 0.6em; border-bottom: 1px solid #dedede; vertical-align: top; } .table th { text-align: left; } .table thead th { border-bottom-width: 2px; vertical-align: bottom; } .table tbody tr:nth-child(2n+1) { background-color: #efefef; } .table-responsive { display: block; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; -ms-overflow-style: -ms-autohiding-scrollbar; } .nospace { margin-bottom: 0 !important; } @media (max-width: 24.99em) { .nospace-xs { margin-bottom: 0 !important; } } @media (min-width: 25em) and (max-width: 42.49em) { .nospace-sm { margin-bottom: 0 !important; } } @media (min-width: 42.5em) and (max-width: 59.99em) { .nospace-md { margin-bottom: 0 !important; } } @media (min-width: 60em) and (max-width: 74.99em) { .nospace-lg { margin-bottom: 0 !important; } } @media (min-width: 75em) { .nospace-xl { margin-bottom: 0 !important; } } .nospace-xs-up { margin-bottom: 0 !important; } @media (min-width: 25em) { .nospace-sm-up { margin-bottom: 0 !important; } } @media (min-width: 42.5em) { .nospace-md-up { margin-bottom: 0 !important; } } @media (min-width: 60em) { .nospace-lg-up { margin-bottom: 0 !important; } } .space { margin-bottom: 1.875rem !important; } @media (max-width: 24.99em) { .space-xs { margin-bottom: 1.875rem !important; } } @media (min-width: 25em) and (max-width: 42.49em) { .space-sm { margin-bottom: 1.875rem !important; } } @media (min-width: 42.5em) and (max-width: 59.99em) { .space-md { margin-bottom: 1.875rem !important; } } @media (min-width: 60em) and (max-width: 74.99em) { .space-lg { margin-bottom: 1.875rem !important; } } @media (min-width: 75em) { .space-xl { margin-bottom: 1.875rem !important; } } .space-xs-up { margin-bottom: 1.875rem !important; } @media (min-width: 25em) { .space-sm-up { margin-bottom: 1.875rem !important; } } @media (min-width: 42.5em) { .space-md-up { margin-bottom: 1.875rem !important; } } @media (min-width: 60em) { .space-lg-up { margin-bottom: 1.875rem !important; } } .block-center { display: block; margin-left: auto; margin-right: auto; } .pull-left { float: left !important; } .pull-right { float: right !important; } .clearfix::after { content: ''; display: block; clear: both; } .small { font-size: 0.8rem !important; } .text-left { text-align: left !important; } .text-center { text-align: center !important; } .text-right { text-align: right !important; } .text-hide { text-indent: 110%; white-space: nowrap; overflow: hidden; color: transparent; text-shadow: none; } .text-truncate { text-overflow: ellipsis; white-space: nowrap; overflow: hidden; } .text-hyphenate { overflow-wrap: break-word; word-wrap: break-word; -webkit-hyphens: auto; -ms-hyphens: auto; hyphens: auto; } .invisible { visibility: hidden !important; } .hidden { display: none !important; } @media print { .hidden-print { display: none !important; } } .visible-xs { display: none !important; } .visible-sm { display: none !important; } .visible-sm-up { display: none !important; } .visible-md { display: none !important; } .visible-md-up { display: none !important; } .visible-lg { display: none !important; } .visible-lg-up { display: none !important; } .visible-xl { display: none !important; } @media (max-width: 24.99em) { .hidden-xs { display: none !important; } .visible-xs { display: block !important; } } @media (min-width: 25em) and (max-width: 42.49em) { .hidden-sm { display: none !important; } .visible-sm { display: block !important; } } @media (min-width: 42.5em) and (max-width: 59.99em) { .hidden-md { display: none !important; } .visible-md { display: block !important; } } @media (min-width: 60em) and (max-width: 74.99em) { .hidden-lg { display: none !important; } .visible-lg { display: block !important; } } @media (min-width: 75em) { .hidden-xl { display: none !important; } .visible-xl { display: block !important; } } @media (min-width: 25em) { .hidden-sm-up { display: none !important; } .visible-sm-up { display: block !important; } } @media (min-width: 42.5em) { .hidden-md-up { display: none !important; } .visible-md-up { display: block !important; } } @media (min-width: 60em) { .hidden-lg-up { display: none !important; } .visible-lg-up { display: block !important; } } .sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; } .sr-only-focusable:active, .sr-only-focusable:focus { position: static; width: auto; height: auto; overflow: visible; clip: auto; white-space: inherit; }
0.678007
0.109301
@-moz-document domain("nextdoor.com") { :root { --dark-bg-color: #101010; --text-bg-color: #303030; --text-darker-bg-color: #202020; --text-bg-gray-color: #404040; --gray-border-color: #6b6b6b; --text-color: #c0c0c0; --text-dim-color: #7f7f7f; --text-dimmer-color: #a0a0a0; --text-less-color: #b0b0b0; --post-header-color: #5cb7d6; --post-timestamp-color: #0dce63; --post-rating-color: #88929c; --post-3dot-menu-color: #c0c0c0; --profile-text-color: #8a9ad4; --blue-tab-color: #053d63; --blueish-text: #386b7d; --blueish-text-medium: #397489; --blueish-text-lighter: #4e9cb8; --green-mint-text: rgb(17, 197, 97); --green-mint-dim-text: rgb(9, 127, 62); --text-dblue-bg-color: #1d3a6e; --text-orange-color: #b20; --dark-transparant-background-color: rgba(16,16,16,.8); --selected-nav-color: #18c2fd; } /*Page background*/ .reply-tagging-ab-test, .using-click-navigation { background-color: var(--dark-bg-color); } /*Profile menu*/ .nav-bar-profile-item-name { color: var(--text-color); } .menu-box, .header-bar-profile-tray { background-color: var(--text-darker-bg-color); } /*search bar*/ .navbar-left, .header-bar-global-search-input { color: var(--text-dim-color); background-color: black; } /*BEGIN HOME STREAM*/ .nav-bar-list-item-active { background-color: var(--green-mint-dim-text); } .content-title { color: var(--post-header-color); } ._1evSvvdR { color: var(--text-color); background-color: var(--text-bg-color); border: 1px var(--text-darker-bg-color) solid; } ._1IukxMPo { color: var(--text-color); } .post-container { color: var(--text-color); background-color: var(--text-bg-color); border: 1px var(--text-darker-bg-color) solid; } .comment-detail-author-name { color: var(--post-timestamp-color); } ._1eW-tOzA { color: var(--green-mint-dim-text); } .css-1c3sz3l { color: var(--text-color); background-color: var(--text-darker-bg-color); border: 1px #000000 solid; } /*add a comment...*/ .comment-composer-text-input, .comment-composer-text-input-prompt { background: black; border: 1px var(--text-darker-bg-color) solid; } .comment-composer-action-bar { background: var(--text-darker-bg-color); border: 1px #000000 solid; } /*upper-right neighborhood box*/ .info-box { color: var(--text-color); background-color: var(--text-bg-color); border: 1px black solid; } .css-txitvo { color: var(--text-color); background-color: var(--text-bg-color); border: 1px #000000 solid; } .classified-author-rollup-slider-title { color: var(--text-color); } .classified-rollup-card-content { border: 1px #000000 solid; } .classified-rollup-card { border: 1px #000000 solid; } .slider-card-border { border: 1px #000000 solid; } .classified-single-item-content-title { color: var(--post-header-color); } .smartlink-title { color: var(--post-header-color); } .post-highlight { background-color: var(--text-bg-color); } /*END HOME STREAM*/ /*BEGIN PROFILE PAGE*/ /*Cards*/ .profile-component-header { border-bottom: 1px var(--dark-bg-color) solid; } .profile-component-container { color: var(--text-color); background-color: var(--text-bg-color); border: 1px var(--text-darker-bg-color) solid; } /*icons*/ .profile-intro-item-icon { filter: brightness(2); filter: saturate(8); /*filter: invert(100%);*/ } /*details panel*/ .profile-info-bar-container { color: var(--text-color); background-color: var(--text-bg-color); border: 1px var(--text-darker-bg-color) solid; } .profile-info-bar-header-container { border-bottom: 1px var(--dark-bg-color) solid; } .info-box-content-container { border-top: 1px var(--dark-bg-color) solid; } .profile-info-bar-edit-button-right { color: var(--blueish-text-lighter); } /*Family & Emergency buttons*/ .button-secondary { color: var(--text-color); background-color: var(--blue-tab-color); border-color: var(--blueish-text); } .profile-edit-button { color: var(--blueish-text-lighter); } .tag-button { color: var(--text-color); border: 1px black solid; background-color: var(--blue-tab-color) } /*Recent Activity*/ .list, .activity-list { color: var(--text-color); background-color: var(--text-bg-color); border: 1px var(--text-darker-bg-color) solid; } .list-title-container { border-bottom: 1px var(--dark-bg-color) solid; } .list-item { border-top: 1px var(--dark-bg-color) solid; } /*Left-nav*/ .nav-menu-item-li { color: var(--text-color); } /*END PROFILE PAGE*/ }
data/usercss/179606.user.css
@-moz-document domain("nextdoor.com") { :root { --dark-bg-color: #101010; --text-bg-color: #303030; --text-darker-bg-color: #202020; --text-bg-gray-color: #404040; --gray-border-color: #6b6b6b; --text-color: #c0c0c0; --text-dim-color: #7f7f7f; --text-dimmer-color: #a0a0a0; --text-less-color: #b0b0b0; --post-header-color: #5cb7d6; --post-timestamp-color: #0dce63; --post-rating-color: #88929c; --post-3dot-menu-color: #c0c0c0; --profile-text-color: #8a9ad4; --blue-tab-color: #053d63; --blueish-text: #386b7d; --blueish-text-medium: #397489; --blueish-text-lighter: #4e9cb8; --green-mint-text: rgb(17, 197, 97); --green-mint-dim-text: rgb(9, 127, 62); --text-dblue-bg-color: #1d3a6e; --text-orange-color: #b20; --dark-transparant-background-color: rgba(16,16,16,.8); --selected-nav-color: #18c2fd; } /*Page background*/ .reply-tagging-ab-test, .using-click-navigation { background-color: var(--dark-bg-color); } /*Profile menu*/ .nav-bar-profile-item-name { color: var(--text-color); } .menu-box, .header-bar-profile-tray { background-color: var(--text-darker-bg-color); } /*search bar*/ .navbar-left, .header-bar-global-search-input { color: var(--text-dim-color); background-color: black; } /*BEGIN HOME STREAM*/ .nav-bar-list-item-active { background-color: var(--green-mint-dim-text); } .content-title { color: var(--post-header-color); } ._1evSvvdR { color: var(--text-color); background-color: var(--text-bg-color); border: 1px var(--text-darker-bg-color) solid; } ._1IukxMPo { color: var(--text-color); } .post-container { color: var(--text-color); background-color: var(--text-bg-color); border: 1px var(--text-darker-bg-color) solid; } .comment-detail-author-name { color: var(--post-timestamp-color); } ._1eW-tOzA { color: var(--green-mint-dim-text); } .css-1c3sz3l { color: var(--text-color); background-color: var(--text-darker-bg-color); border: 1px #000000 solid; } /*add a comment...*/ .comment-composer-text-input, .comment-composer-text-input-prompt { background: black; border: 1px var(--text-darker-bg-color) solid; } .comment-composer-action-bar { background: var(--text-darker-bg-color); border: 1px #000000 solid; } /*upper-right neighborhood box*/ .info-box { color: var(--text-color); background-color: var(--text-bg-color); border: 1px black solid; } .css-txitvo { color: var(--text-color); background-color: var(--text-bg-color); border: 1px #000000 solid; } .classified-author-rollup-slider-title { color: var(--text-color); } .classified-rollup-card-content { border: 1px #000000 solid; } .classified-rollup-card { border: 1px #000000 solid; } .slider-card-border { border: 1px #000000 solid; } .classified-single-item-content-title { color: var(--post-header-color); } .smartlink-title { color: var(--post-header-color); } .post-highlight { background-color: var(--text-bg-color); } /*END HOME STREAM*/ /*BEGIN PROFILE PAGE*/ /*Cards*/ .profile-component-header { border-bottom: 1px var(--dark-bg-color) solid; } .profile-component-container { color: var(--text-color); background-color: var(--text-bg-color); border: 1px var(--text-darker-bg-color) solid; } /*icons*/ .profile-intro-item-icon { filter: brightness(2); filter: saturate(8); /*filter: invert(100%);*/ } /*details panel*/ .profile-info-bar-container { color: var(--text-color); background-color: var(--text-bg-color); border: 1px var(--text-darker-bg-color) solid; } .profile-info-bar-header-container { border-bottom: 1px var(--dark-bg-color) solid; } .info-box-content-container { border-top: 1px var(--dark-bg-color) solid; } .profile-info-bar-edit-button-right { color: var(--blueish-text-lighter); } /*Family & Emergency buttons*/ .button-secondary { color: var(--text-color); background-color: var(--blue-tab-color); border-color: var(--blueish-text); } .profile-edit-button { color: var(--blueish-text-lighter); } .tag-button { color: var(--text-color); border: 1px black solid; background-color: var(--blue-tab-color) } /*Recent Activity*/ .list, .activity-list { color: var(--text-color); background-color: var(--text-bg-color); border: 1px var(--text-darker-bg-color) solid; } .list-title-container { border-bottom: 1px var(--dark-bg-color) solid; } .list-item { border-top: 1px var(--dark-bg-color) solid; } /*Left-nav*/ .nav-menu-item-li { color: var(--text-color); } /*END PROFILE PAGE*/ }
0.212232
0.067424
body { font-family: 'Source Sans Pro', sans-serif; line-height: 1.8; color: #f5f6f7; } p { font-size: 16px; } .margin { /* margin-bottom: 40px;*/ /* padding-bottom: 20px;*/ margin-bottom:30px; font-size:35px; text-align: center; } .container-fluid { padding-top: 20px; padding-bottom: 70px; } /*--------------------------------------Cover Page-------------------------------*/ .experiment { background-image: url('../img/IMG_0318 - Copy.jpg'); min-height: 660px; background-attachment: fixed; background-position: center; background-repeat: no-repeat; background-size: cover; } .front-page { text-align:center; color:white; padding:200px; } /*--------------------------------------About Me Page-------------------------------*/ #profile-pic { height:530px; width: 100%; overflow: hidden; } #profile-pic img { width:100%; } #intro { text-align: left; color:black; } #intro img { height:30px; width:auto; } .bg-1 { background-color: white; color: black; } /*--------------------------------------Principles Page-------------------------------*/ /*.bg-2 { background-color: #474e5d; color: #ffffff; }*/ .bg-2 { background-image: url('../img/G0010044 (7) - Copy.jpg'); min-height: 400px; background-attachment: fixed; background-position: center; background-repeat: no-repeat; background-size: cover; background-image: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%,rgba(0,0,0,0.6) 100%), url('../img/G0010044 (7) - Copy.jpg'); } .principles { text-align:center; color:white; } /*--------------------------------------Experiences Page-------------------------------*/ .bg-3 { background-color: #ffffff; /* White */ color: #555555; } .exp-images img { height:180px; } .abridge img { width:100%; } .exp-images .text { float:left; } a:hover { text-decoration: none; } /*--------------------------------------Fave Books Page-------------------------------*/ .bg-4 { background-color: grey; color: #fff; } .bg-4 img { height:230px; } .modal { color:black; } /*--------------------------------------Writing-------------------------------*/ .bg-5 { background-color:white; color:black; } .bg-5 img { height:250px; } /*--------------------------------------Footer-------------------------------*/ .bg-6 { background-color:#2f2f2f; } .navbar { padding-top: 5px; padding-bottom: 5px; border: 0; border-radius: 0; margin-bottom: 0; font-size: 12px; letter-spacing: 5px; background-color: white; } .navbar-nav li a:hover { color: #1abc9c !important; } hr { width:10%; } .bg-7 { background-color:#d3d3d3; }
assets/css/style.css
body { font-family: 'Source Sans Pro', sans-serif; line-height: 1.8; color: #f5f6f7; } p { font-size: 16px; } .margin { /* margin-bottom: 40px;*/ /* padding-bottom: 20px;*/ margin-bottom:30px; font-size:35px; text-align: center; } .container-fluid { padding-top: 20px; padding-bottom: 70px; } /*--------------------------------------Cover Page-------------------------------*/ .experiment { background-image: url('../img/IMG_0318 - Copy.jpg'); min-height: 660px; background-attachment: fixed; background-position: center; background-repeat: no-repeat; background-size: cover; } .front-page { text-align:center; color:white; padding:200px; } /*--------------------------------------About Me Page-------------------------------*/ #profile-pic { height:530px; width: 100%; overflow: hidden; } #profile-pic img { width:100%; } #intro { text-align: left; color:black; } #intro img { height:30px; width:auto; } .bg-1 { background-color: white; color: black; } /*--------------------------------------Principles Page-------------------------------*/ /*.bg-2 { background-color: #474e5d; color: #ffffff; }*/ .bg-2 { background-image: url('../img/G0010044 (7) - Copy.jpg'); min-height: 400px; background-attachment: fixed; background-position: center; background-repeat: no-repeat; background-size: cover; background-image: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%,rgba(0,0,0,0.6) 100%), url('../img/G0010044 (7) - Copy.jpg'); } .principles { text-align:center; color:white; } /*--------------------------------------Experiences Page-------------------------------*/ .bg-3 { background-color: #ffffff; /* White */ color: #555555; } .exp-images img { height:180px; } .abridge img { width:100%; } .exp-images .text { float:left; } a:hover { text-decoration: none; } /*--------------------------------------Fave Books Page-------------------------------*/ .bg-4 { background-color: grey; color: #fff; } .bg-4 img { height:230px; } .modal { color:black; } /*--------------------------------------Writing-------------------------------*/ .bg-5 { background-color:white; color:black; } .bg-5 img { height:250px; } /*--------------------------------------Footer-------------------------------*/ .bg-6 { background-color:#2f2f2f; } .navbar { padding-top: 5px; padding-bottom: 5px; border: 0; border-radius: 0; margin-bottom: 0; font-size: 12px; letter-spacing: 5px; background-color: white; } .navbar-nav li a:hover { color: #1abc9c !important; } hr { width:10%; } .bg-7 { background-color:#d3d3d3; }
0.35488
0.066357
body{ margin: 0px; padding: 0px; background-color: #161616; } html{ scroll-behavior: smooth; } ul{ list-style: none; } a{ text-decoration: none; } /*Main Section starts----------------------------------------------------*/ #main{ width: 100%; height: 100vh; box-sizing: border-box; background-color: #edf1fd; position: relative; background-repeat: no-repeat; background-size: 1330px; background-position: right bottom; } nav{ display: flex; justify-content: space-between; align-items: center; text-transform: uppercase; font-weight: 600; letter-spacing: 2px; font-family: calibri; position: fixed; top: 0; left: 0; width: 100%; box-sizing: border-box; padding: 10px 50px; background-color: #f4f7ff; box-shadow: 2px 2px 12px rgba(0,0,0,0.05); z-index: 1; } .menu{ display: flex; } .menu li a{ padding: 10px 15px; color: #6c707c; font-size: 12px; } .lang{ color: #292929; } .logo{ font-size: 25px; font-weight: bold; color: #292929; font-family: Poppins; } .menu li a:hover, .menu li a.active{ background-color: #292929; color: #FFFFFF !important; font-weight: 700; transition: all ease 0.4s; } .name{ font-family: calibri; width: 500px; position: absolute; left: 20%; top: 50%; transform: translate(-20%,-50%); } .name p:nth-child(1), .name .details{ color: #6c707c; font-size: 16px; } .name h1{ font-family: Poppins; font-size: 40px; margin: 0px; letter-spacing: 3px; color: #292929; } .arrow{ align-self: end; width: 50%; height: 15%; margin-bottom: 4em; position: absolute; bottom: 0px; left: -3%; border-right: 1px solid rgba(41,41,41,0.3); } .arrow::after{ content: ''; position: absolute; width: 0; height: 0; border-style: solid; border-width: 11px 11px 0px 11px; border-color: #292929 transparent transparent transparent; right: -0.7em; bottom: -2px; } .cv-btn{ width: 200px; height: 45px; display: flex; justify-content: center; align-items: center; background-color: #292929; color: #FFFFFF; } .cv-btn:hover{ background-color: #131313; transition: all ease 0.5s; } /*Main Section ends--------------------------------------------------------*/ /*About Section starts-----------------------------------------------------*/ #about{ width: 100%; height: 100vh; box-sizing: border-box; display: flex; align-items: center; justify-content: space-between; padding: 50px 5% 0px 5%; border-bottom:1px solid #ffffff; } .about-text{ font-family: calibri; width: 50%; } .about-text h1{ font-size: 5rem; color: #17d1ac; } .about-text h2{ font-size: 3rem; color: #FFFFFF; font-weight: 400; } .about-text h1,h2{ margin: 0px; padding: 0px; } .about-text p{ font-size: 1.2rem; color: rgba(251,251,251,0.90); } .about-text button{ width: 180px; height: 40px; border-radius: 40px; border: none; outline: none; background-color: #17d1ac; } .about-text button:hover{ background-color: #FFFFFF; transition: all ease 0.3s; } /*About Section ends------------------------------------------------------*/ /*Skills Section starts-----------------------------------------*/ #skills{ box-sizing: border-box; color: #fff; border-bottom:1px solid #ffffff; } #skills .skills { flex-direction: column; text-align: center; max-width: 1500px; margin: 0 auto; padding: 100px 0; } #skills .skills-top { max-width: 500px; margin: 0 auto; } #skills .skills-bottom { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; margin-top: 50px; } #skills .skills-item { flex-basis: 80%; display: flex; align-items: flex-start; justify-content: center; flex-direction: column; padding: 30px; border-radius: 10px; background-image: url(img-1.png); background-size: cover; margin: 5px 5%; position: relative; z-index: 1; overflow: hidden; } #skills .skills-item::after { content: ''; position: absolute; left: 0; top: 0; height: 100%; width: 100%; background-image: linear-gradient(20deg, #000 5%, #485563 100%); opacity: .9; z-index: -1; } #skills .skills-bottom .icon { height: 80px; width: 80px; margin-bottom: 20px; } #skills .skills-item h2 { font-size: 2rem; color: white; margin-bottom: 10px; text-transform: uppercase; } #skills .skills-item p { color: white; text-align: left; } /*Skills Section ends-------------------------------------------------*/ /*Project Section starts----------------------------------------------*/ #projects{ padding:50px 15px; border-bottom: 1px solid #dcd9d9; text-align: center; } #projects h2{ color: #ffffff; margin-bottom: 50px; } .project{ position:relative; max-width:900px; margin: 0 auto 30px auto; overflow: hidden; background: #fff; border-radius: 4px; } .project-image{ float:left; } .project-info{ position: absolute; top: 50%; transform:translateY(-50%); margin-left:300px; padding:155px } .project-info h3{ font-size: 1.5em; font-weight: 300; color: #374054; margin: 0 0 15px 0; } .project-info p{ color: #74808a; margin: 0 0 15px 0; font-size: 0.9em; } .no-image .project-info{ position: relative; margin: 0; padding: 30px 15px; transform: none; } #more-projects{ display: none; } /*Project Section ends------------------------------------------------*/ /*Education Section starts--------------------------------------------*/ #qualifications{ padding:50px 15px 20px 15px; border-bottom:1px solid #dcd9d9; text-align:center; } #qualifications h2{ color:#fff; margin-bottom:50px; } .qualifications-block{ max-width:700px; margin:0 auto 30px auto; padding:15px; border:1px solid #dcd9d9; text-align:left; } .qualifications-block h3{ font-weight:500; float:left; margin:0; color:#374054; } .qualifications-block span{ color:#74808a; float:right; } .qualifications-block h4{ color:#74808a; clear:both; font-weight:500; margin:0 0 15px 0; } .qualifications-block p,.qualifications-block ul{ margin:0; color:#74808a; font-size:0.9em; } .qualifications-block ul{ padding:0 0 0 15px; } /*Education Section ends----------------------------------------------*/ /*Contact Form starts-----------------------------------------------------*/ #contact-btn h1{ font-size: 2rem; color: #1e1e1e; font-family: calibri; margin: 10px; padding: 5px; letter-spacing: 4px; border-bottom: 2px solid #1E1E1E; } #contact-btn{ width: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; height: 200px; background-color: #f4f7ff; margin: 20px 0px; box-sizing: border-box; box-shadow: 2px 0px 20px rgba(0,0,0,0.4); } #contact-btn a{ color: #FFFFFF; font-size: 1rem; font-family: calibri; width: 150px; height: 40px; margin: 10px; background-color: #1e1e1e; box-shadow: 2px 5px 6px rgba(0,0,0,0.2); display: flex; justify-content: center; align-items: center; } #contact-btn a:hover{ background-color: #17d1ac; color: #000000; transition: all ease 0.5s; font-weight: 700; } #contact-form{ width: 100%; height: 90vh; display: flex; justify-content: center; align-items: center; } #contact-form form{ display: flex; width: 70%; height: 60vh; background-color: #1a1a1a; box-shadow: 2px 12px 20px rgba(0,0,0,0.2); border: 1px solid rgba(255,255,255,0.01); } .contact-left{ width: 40%; height: 100%; display: flex; flex-direction: column; align-items: center; } .contact-right{ width: 60%; height: 100%; box-sizing: border-box; display: flex; flex-direction: column; justify-content: space-between; border-left: 1px solid rgba(255,255,255,0.08); } .c-l-heading{ font-family: calibri; color: #FFFFFF; font-size: 3rem; letter-spacing: 2px; font-weight: 400; } .f-email,.f-name{ display: flex; flex-direction: column; font-family: calibri; } .f-email font, .f-name font{ color: #bfbfbf; font-size: 22px; } .f-email input, .f-name input{ height: 30px; width: 250px; border: none; outline: none; background-color: transparent; border-bottom: 1px solid #929292; color: #FFFFFF; margin: 10px 0px; } .f-email input::placeholder, .f-name input::placeholder{ opacity: 0.5; letter-spacing: 1px; } .f-email input:focus, .f-name input:focus{ border-bottom: 1px solid #171dac; transition: all ease 0.5s; } .message font{ font-size: 18px; color: #4e4e4e; font-family: calibri; } .message{ margin: 20px; display: flex; flex-direction: column; } .contact-right textarea{ width: 100% !important; height: 320px !important; border: none; outline: none; background-color: transparent; box-sizing: border-box; color: #ebebeb; font-size: 16px; } .contact-right textarea::placeholder{ color: #ebebeb; font-family: calibri; font-size: 18px; letter-spacing: 2px; } .contact-right button{ width: 100%; height: 50px; background-color: #1ed98b; font-weight: bold; outline: none; border: none; margin: 0px; color: #1b1b1b; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; } /*Contact Form ends--------------------------------------------------------------------------*/ /*Footer starts------------------------------------------------------------------------------*/ footer{ position: fixed; bottom: 0; } @media (max-height:800px){ footer { position: static; } } .footer-distributed{ background-color: #2c292f; box-sizing: border-box; width: 100%; text-align: left; font: bold 16px sans-serif; padding: 50px 50px 60px 50px; margin-top: 80px; } .footer-distributed .footer-left, .footer-distributed .footer-right{ display: inline-block; vertical-align: top; } /* Footer left */ .footer-distributed .footer-left{ width: 69%; } .footer-distributed h3{ color: #ffffff; font: normal 36px 'Cookie', cursive; margin: 0; } /* Footer links */ .footer-distributed .footer-links{ color: #ffffff; margin: 20px 0 12px; } .footer-distributed .footer-links a{ display:inline-block; line-height: 1.8; text-decoration: none; color: inherit; } .footer-distributed .footer-company-name{ color: #8f9296; font-size: 14px; font-weight: normal; margin: 0; } /* Footer Right */ .footer-distributed .footer-right{ width: 30%; } .footer-distributed .footer-company-about{ line-height: 20px; color: #92999f; font-size: 13px; font-weight: normal; margin: 0; } .footer-distributed .footer-company-about span{ display: block; color: #ffffff; font-size: 18px; font-weight: bold; margin-bottom: 20px; } .footer-distributed .footer-icons{ margin-top: 25px; } .footer-distributed .footer-icons a{ display: inline-block; width: 35px; height: 35px; cursor: pointer; background-color: #33383b; border-radius: 2px; font-size: 20px; color: #ffffff; text-align: center; line-height: 35px; margin-right: 3px; margin-bottom: 5px; } /* Here is the code for Responsive Footer */ /* You can remove below code if you don't want Footer to be responsive */ @media (max-width: 880px) { .footer-distributed .footer-left, .footer-distributed .footer-right{ display: block; width: 100%; margin-bottom: 40px; text-align: center; } } /*Footer ends--------------------------------------------------------------------------------*/ /* media queries */ @media(max-width: 1190px){ #main{ background-size: 1150px; } .name{ left: 10%; top: 50%; transform: translate(-10%,-50%); } .about-model img{ height: 400px; } #contact-form form{ width: 95% !important; } } @media(max-width: 970px){ #main{ background-image: none !important; } .name{ left:50%; top: 50%; transform: translate(-50%,-50%); } .about-model{ display: none; } #about{ justify-content: center; padding: 0px; } .about-text{ width: 90%; } .about-text h1{ font-size: 4rem; } } @media(max-width: 900px){ nav{ padding: 10px 30px; } nav ul{ position: absolute; width: 100%; height: auto; box-sizing: border-box; background-color: #0f0f0f; top: 50px; left: 0; transition: 0.5s; overflow: hidden; border: 3px solid #1f1f1f; display: none !important; margin: 0px; padding: 0px; } nav ul li a{ border-bottom: 1px solid rgba(255,255,255,0.10); width: 100%; height: 50px; display: flex; justify-content: center; align-items: center; margin: 0px !important; padding: 0px !important; } .active-menu{ display: block !important; } #contact-btn h1{ font-size: 1.4rem; text-align: center; } #contact-form{ padding: 20px; height: auto; box-sizing: border-box; } #contact-form form{ flex-direction: column; height: auto; padding: 20px; width: 90% !important; } .contact-left, .contact-right{ width: 100%; border: none; } .f-email, .f-name{ width: 100%; } .f-email input, .f-name input{ width: 100%; border: none; background-color: #262626 !important; padding: 10px; box-sizing: border-box; height: 40px; } textarea{ background-color: #262626 !important; margin: 10px 0px; padding: 10px; height: 200px !important; width: 100% !important; } .message{ margin: 0px; } #contact-form form h1{ margin: 5px 0px; } } @media(max-width: 600px){ #contact-btn h1{ font-size: 1.2rem; margin: 0px 10%; } .name{ width: 60%; } .arrow{ margin-bottom: 20px; } } @media only screen and (max-width: 768px){ .qualifications-block h3,.qualifications-block span{float:none} .projects-image{display:none} .projects-info{position:relative;margin:0;padding:30px 15px;top:auto;transform:none} }
portfolio.css
body{ margin: 0px; padding: 0px; background-color: #161616; } html{ scroll-behavior: smooth; } ul{ list-style: none; } a{ text-decoration: none; } /*Main Section starts----------------------------------------------------*/ #main{ width: 100%; height: 100vh; box-sizing: border-box; background-color: #edf1fd; position: relative; background-repeat: no-repeat; background-size: 1330px; background-position: right bottom; } nav{ display: flex; justify-content: space-between; align-items: center; text-transform: uppercase; font-weight: 600; letter-spacing: 2px; font-family: calibri; position: fixed; top: 0; left: 0; width: 100%; box-sizing: border-box; padding: 10px 50px; background-color: #f4f7ff; box-shadow: 2px 2px 12px rgba(0,0,0,0.05); z-index: 1; } .menu{ display: flex; } .menu li a{ padding: 10px 15px; color: #6c707c; font-size: 12px; } .lang{ color: #292929; } .logo{ font-size: 25px; font-weight: bold; color: #292929; font-family: Poppins; } .menu li a:hover, .menu li a.active{ background-color: #292929; color: #FFFFFF !important; font-weight: 700; transition: all ease 0.4s; } .name{ font-family: calibri; width: 500px; position: absolute; left: 20%; top: 50%; transform: translate(-20%,-50%); } .name p:nth-child(1), .name .details{ color: #6c707c; font-size: 16px; } .name h1{ font-family: Poppins; font-size: 40px; margin: 0px; letter-spacing: 3px; color: #292929; } .arrow{ align-self: end; width: 50%; height: 15%; margin-bottom: 4em; position: absolute; bottom: 0px; left: -3%; border-right: 1px solid rgba(41,41,41,0.3); } .arrow::after{ content: ''; position: absolute; width: 0; height: 0; border-style: solid; border-width: 11px 11px 0px 11px; border-color: #292929 transparent transparent transparent; right: -0.7em; bottom: -2px; } .cv-btn{ width: 200px; height: 45px; display: flex; justify-content: center; align-items: center; background-color: #292929; color: #FFFFFF; } .cv-btn:hover{ background-color: #131313; transition: all ease 0.5s; } /*Main Section ends--------------------------------------------------------*/ /*About Section starts-----------------------------------------------------*/ #about{ width: 100%; height: 100vh; box-sizing: border-box; display: flex; align-items: center; justify-content: space-between; padding: 50px 5% 0px 5%; border-bottom:1px solid #ffffff; } .about-text{ font-family: calibri; width: 50%; } .about-text h1{ font-size: 5rem; color: #17d1ac; } .about-text h2{ font-size: 3rem; color: #FFFFFF; font-weight: 400; } .about-text h1,h2{ margin: 0px; padding: 0px; } .about-text p{ font-size: 1.2rem; color: rgba(251,251,251,0.90); } .about-text button{ width: 180px; height: 40px; border-radius: 40px; border: none; outline: none; background-color: #17d1ac; } .about-text button:hover{ background-color: #FFFFFF; transition: all ease 0.3s; } /*About Section ends------------------------------------------------------*/ /*Skills Section starts-----------------------------------------*/ #skills{ box-sizing: border-box; color: #fff; border-bottom:1px solid #ffffff; } #skills .skills { flex-direction: column; text-align: center; max-width: 1500px; margin: 0 auto; padding: 100px 0; } #skills .skills-top { max-width: 500px; margin: 0 auto; } #skills .skills-bottom { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; margin-top: 50px; } #skills .skills-item { flex-basis: 80%; display: flex; align-items: flex-start; justify-content: center; flex-direction: column; padding: 30px; border-radius: 10px; background-image: url(img-1.png); background-size: cover; margin: 5px 5%; position: relative; z-index: 1; overflow: hidden; } #skills .skills-item::after { content: ''; position: absolute; left: 0; top: 0; height: 100%; width: 100%; background-image: linear-gradient(20deg, #000 5%, #485563 100%); opacity: .9; z-index: -1; } #skills .skills-bottom .icon { height: 80px; width: 80px; margin-bottom: 20px; } #skills .skills-item h2 { font-size: 2rem; color: white; margin-bottom: 10px; text-transform: uppercase; } #skills .skills-item p { color: white; text-align: left; } /*Skills Section ends-------------------------------------------------*/ /*Project Section starts----------------------------------------------*/ #projects{ padding:50px 15px; border-bottom: 1px solid #dcd9d9; text-align: center; } #projects h2{ color: #ffffff; margin-bottom: 50px; } .project{ position:relative; max-width:900px; margin: 0 auto 30px auto; overflow: hidden; background: #fff; border-radius: 4px; } .project-image{ float:left; } .project-info{ position: absolute; top: 50%; transform:translateY(-50%); margin-left:300px; padding:155px } .project-info h3{ font-size: 1.5em; font-weight: 300; color: #374054; margin: 0 0 15px 0; } .project-info p{ color: #74808a; margin: 0 0 15px 0; font-size: 0.9em; } .no-image .project-info{ position: relative; margin: 0; padding: 30px 15px; transform: none; } #more-projects{ display: none; } /*Project Section ends------------------------------------------------*/ /*Education Section starts--------------------------------------------*/ #qualifications{ padding:50px 15px 20px 15px; border-bottom:1px solid #dcd9d9; text-align:center; } #qualifications h2{ color:#fff; margin-bottom:50px; } .qualifications-block{ max-width:700px; margin:0 auto 30px auto; padding:15px; border:1px solid #dcd9d9; text-align:left; } .qualifications-block h3{ font-weight:500; float:left; margin:0; color:#374054; } .qualifications-block span{ color:#74808a; float:right; } .qualifications-block h4{ color:#74808a; clear:both; font-weight:500; margin:0 0 15px 0; } .qualifications-block p,.qualifications-block ul{ margin:0; color:#74808a; font-size:0.9em; } .qualifications-block ul{ padding:0 0 0 15px; } /*Education Section ends----------------------------------------------*/ /*Contact Form starts-----------------------------------------------------*/ #contact-btn h1{ font-size: 2rem; color: #1e1e1e; font-family: calibri; margin: 10px; padding: 5px; letter-spacing: 4px; border-bottom: 2px solid #1E1E1E; } #contact-btn{ width: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; height: 200px; background-color: #f4f7ff; margin: 20px 0px; box-sizing: border-box; box-shadow: 2px 0px 20px rgba(0,0,0,0.4); } #contact-btn a{ color: #FFFFFF; font-size: 1rem; font-family: calibri; width: 150px; height: 40px; margin: 10px; background-color: #1e1e1e; box-shadow: 2px 5px 6px rgba(0,0,0,0.2); display: flex; justify-content: center; align-items: center; } #contact-btn a:hover{ background-color: #17d1ac; color: #000000; transition: all ease 0.5s; font-weight: 700; } #contact-form{ width: 100%; height: 90vh; display: flex; justify-content: center; align-items: center; } #contact-form form{ display: flex; width: 70%; height: 60vh; background-color: #1a1a1a; box-shadow: 2px 12px 20px rgba(0,0,0,0.2); border: 1px solid rgba(255,255,255,0.01); } .contact-left{ width: 40%; height: 100%; display: flex; flex-direction: column; align-items: center; } .contact-right{ width: 60%; height: 100%; box-sizing: border-box; display: flex; flex-direction: column; justify-content: space-between; border-left: 1px solid rgba(255,255,255,0.08); } .c-l-heading{ font-family: calibri; color: #FFFFFF; font-size: 3rem; letter-spacing: 2px; font-weight: 400; } .f-email,.f-name{ display: flex; flex-direction: column; font-family: calibri; } .f-email font, .f-name font{ color: #bfbfbf; font-size: 22px; } .f-email input, .f-name input{ height: 30px; width: 250px; border: none; outline: none; background-color: transparent; border-bottom: 1px solid #929292; color: #FFFFFF; margin: 10px 0px; } .f-email input::placeholder, .f-name input::placeholder{ opacity: 0.5; letter-spacing: 1px; } .f-email input:focus, .f-name input:focus{ border-bottom: 1px solid #171dac; transition: all ease 0.5s; } .message font{ font-size: 18px; color: #4e4e4e; font-family: calibri; } .message{ margin: 20px; display: flex; flex-direction: column; } .contact-right textarea{ width: 100% !important; height: 320px !important; border: none; outline: none; background-color: transparent; box-sizing: border-box; color: #ebebeb; font-size: 16px; } .contact-right textarea::placeholder{ color: #ebebeb; font-family: calibri; font-size: 18px; letter-spacing: 2px; } .contact-right button{ width: 100%; height: 50px; background-color: #1ed98b; font-weight: bold; outline: none; border: none; margin: 0px; color: #1b1b1b; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; } /*Contact Form ends--------------------------------------------------------------------------*/ /*Footer starts------------------------------------------------------------------------------*/ footer{ position: fixed; bottom: 0; } @media (max-height:800px){ footer { position: static; } } .footer-distributed{ background-color: #2c292f; box-sizing: border-box; width: 100%; text-align: left; font: bold 16px sans-serif; padding: 50px 50px 60px 50px; margin-top: 80px; } .footer-distributed .footer-left, .footer-distributed .footer-right{ display: inline-block; vertical-align: top; } /* Footer left */ .footer-distributed .footer-left{ width: 69%; } .footer-distributed h3{ color: #ffffff; font: normal 36px 'Cookie', cursive; margin: 0; } /* Footer links */ .footer-distributed .footer-links{ color: #ffffff; margin: 20px 0 12px; } .footer-distributed .footer-links a{ display:inline-block; line-height: 1.8; text-decoration: none; color: inherit; } .footer-distributed .footer-company-name{ color: #8f9296; font-size: 14px; font-weight: normal; margin: 0; } /* Footer Right */ .footer-distributed .footer-right{ width: 30%; } .footer-distributed .footer-company-about{ line-height: 20px; color: #92999f; font-size: 13px; font-weight: normal; margin: 0; } .footer-distributed .footer-company-about span{ display: block; color: #ffffff; font-size: 18px; font-weight: bold; margin-bottom: 20px; } .footer-distributed .footer-icons{ margin-top: 25px; } .footer-distributed .footer-icons a{ display: inline-block; width: 35px; height: 35px; cursor: pointer; background-color: #33383b; border-radius: 2px; font-size: 20px; color: #ffffff; text-align: center; line-height: 35px; margin-right: 3px; margin-bottom: 5px; } /* Here is the code for Responsive Footer */ /* You can remove below code if you don't want Footer to be responsive */ @media (max-width: 880px) { .footer-distributed .footer-left, .footer-distributed .footer-right{ display: block; width: 100%; margin-bottom: 40px; text-align: center; } } /*Footer ends--------------------------------------------------------------------------------*/ /* media queries */ @media(max-width: 1190px){ #main{ background-size: 1150px; } .name{ left: 10%; top: 50%; transform: translate(-10%,-50%); } .about-model img{ height: 400px; } #contact-form form{ width: 95% !important; } } @media(max-width: 970px){ #main{ background-image: none !important; } .name{ left:50%; top: 50%; transform: translate(-50%,-50%); } .about-model{ display: none; } #about{ justify-content: center; padding: 0px; } .about-text{ width: 90%; } .about-text h1{ font-size: 4rem; } } @media(max-width: 900px){ nav{ padding: 10px 30px; } nav ul{ position: absolute; width: 100%; height: auto; box-sizing: border-box; background-color: #0f0f0f; top: 50px; left: 0; transition: 0.5s; overflow: hidden; border: 3px solid #1f1f1f; display: none !important; margin: 0px; padding: 0px; } nav ul li a{ border-bottom: 1px solid rgba(255,255,255,0.10); width: 100%; height: 50px; display: flex; justify-content: center; align-items: center; margin: 0px !important; padding: 0px !important; } .active-menu{ display: block !important; } #contact-btn h1{ font-size: 1.4rem; text-align: center; } #contact-form{ padding: 20px; height: auto; box-sizing: border-box; } #contact-form form{ flex-direction: column; height: auto; padding: 20px; width: 90% !important; } .contact-left, .contact-right{ width: 100%; border: none; } .f-email, .f-name{ width: 100%; } .f-email input, .f-name input{ width: 100%; border: none; background-color: #262626 !important; padding: 10px; box-sizing: border-box; height: 40px; } textarea{ background-color: #262626 !important; margin: 10px 0px; padding: 10px; height: 200px !important; width: 100% !important; } .message{ margin: 0px; } #contact-form form h1{ margin: 5px 0px; } } @media(max-width: 600px){ #contact-btn h1{ font-size: 1.2rem; margin: 0px 10%; } .name{ width: 60%; } .arrow{ margin-bottom: 20px; } } @media only screen and (max-width: 768px){ .qualifications-block h3,.qualifications-block span{float:none} .projects-image{display:none} .projects-info{position:relative;margin:0;padding:30px 15px;top:auto;transform:none} }
0.275617
0.0402
@import url("https://fonts.googleapis.com/css?family=Questrial"); /* html { min-height: 100%; display: grid; } body { background: linear-gradient(to bottom left, #C0CFB2 10%, #8BA989 80%); display: grid; overflow: hidden; } */ #player1 { background: #FFFFFF; position: relative; margin: auto; width: 100%; height: 500px; overflow: hidden; border-radius: 5px; box-shadow: 5px 5px 15px rgba(54, 79, 60, 0.4); -webkit-transition: all .5s ease-in-out; transition: all .5s ease-in-out; } .album1{ background: linear-gradient(rgba(54, 79, 60, 0.25), rgba(73, 101, 77, 0.55)), url("../images/hkt.jpg"); width: 100%;background-size: 100% 100%; height: 100%; border-radius: 5px; position: absolute; } .heart { position: absolute; right: 0; color: #FFFFFF; margin: 10px; transition: all .4s ease; } .clicked { color: #49654D; transform: scale(1.2); transition: all .4s ease; } .info1 { height: 200px; width: 100%; position: absolute; bottom: 0; background: rgba(255, 255, 255, 0.85); transform: translateY(35px); transition: all .5s ease-in-out; } .up { transform: translateY(0px); } .progress-bar { height: 6px; width: 73%; margin-left: 15%; background: #cdd9c2; border-radius: 10px; font-family: "Questrial", sans-serif; } .fill1{ background: rgba(255, 255, 255, 0.85); width: 100%; height: 0.4rem; border-radius: 2px; } .volume1 { /* position: absolute; left: 24px; margin: 0 auto; */ height: 5px; width: 100px; background: #555; border-radius: 15px; } .volume1:hover{ cursor: pointer; } .volume1 .ui-slider-range-min { height: 5px; width: 100px; /* position: absolute; */ background: #2ecc71; border: none; border-radius: 10px; outline: none; } .volume1 .ui-slider-handle { width: 20px; height: 20px; border-radius: 20px; background: black; /* position: absolute; margin-left: -8px; margin-top: -8px; */ cursor: pointer; outline: none; } .fill { background-color: #8BA989; width: 100%; height: 0.3rem; border-radius: 2px; } .fill:hover{ cursor: pointer; } .fill .ui-slider-range-min { height: 0.3rem; width: 100%; /* position: absolute; */ background: #2ecc71; border: none; border-radius: 10px; outline: none; } .fill .ui-slider-handle { width: 20px; height: 20px; border-radius: 20px; background: black; /* position: absolute; margin-left: -8px; margin-top: -8px; */ cursor: pointer; outline: none; } .time--current, .time--total { color: #364F3C; font-size: 10px; position: absolute; margin-top: -2px; } .time--current { top:61px; left: 50px; } .time--total { top:61px; right: 50px; } .currently-playing { text-align: center; margin-top: -3px; } .song-name, .artist-name { font-family: "Questrial", sans-serif; text-transform: uppercase; margin: 0; } .song-name { font-size: .8em; letter-spacing: 3px; color: #364F3C; } .artist-name { font-size: .6em; letter-spacing: 1.5px; color: #557c5f; margin-top: 5px; } .controls { margin-left:100px; display: flex; align-items: center; font-size: .8em; justify-content: center; color: #8BA989; } .controls .play, .controls .pause { margin: 15px 25px; color: #6e946c; } .controls .option { left: 10px; position: absolute; font-size: .8em; } .controls .add { right: 200px; position: absolute; font-size: .8em; } .controls .shuffle { margin-right: 30px; font-size: .8em; } .controls .volume { margin-left: 30px; font-size: .8em; } .play, .pause, .next, .previous, .option, .add, .volume, .shuffle { transition: all .5s ease; } .play:hover, .pause:hover, .next:hover, .previous:hover, .option:hover, .add:hover, .volume:hover, .shuffle:hover, #volume1 { color: #557c5f; cursor: pointer; }
public/css/admin/audio2.css
@import url("https://fonts.googleapis.com/css?family=Questrial"); /* html { min-height: 100%; display: grid; } body { background: linear-gradient(to bottom left, #C0CFB2 10%, #8BA989 80%); display: grid; overflow: hidden; } */ #player1 { background: #FFFFFF; position: relative; margin: auto; width: 100%; height: 500px; overflow: hidden; border-radius: 5px; box-shadow: 5px 5px 15px rgba(54, 79, 60, 0.4); -webkit-transition: all .5s ease-in-out; transition: all .5s ease-in-out; } .album1{ background: linear-gradient(rgba(54, 79, 60, 0.25), rgba(73, 101, 77, 0.55)), url("../images/hkt.jpg"); width: 100%;background-size: 100% 100%; height: 100%; border-radius: 5px; position: absolute; } .heart { position: absolute; right: 0; color: #FFFFFF; margin: 10px; transition: all .4s ease; } .clicked { color: #49654D; transform: scale(1.2); transition: all .4s ease; } .info1 { height: 200px; width: 100%; position: absolute; bottom: 0; background: rgba(255, 255, 255, 0.85); transform: translateY(35px); transition: all .5s ease-in-out; } .up { transform: translateY(0px); } .progress-bar { height: 6px; width: 73%; margin-left: 15%; background: #cdd9c2; border-radius: 10px; font-family: "Questrial", sans-serif; } .fill1{ background: rgba(255, 255, 255, 0.85); width: 100%; height: 0.4rem; border-radius: 2px; } .volume1 { /* position: absolute; left: 24px; margin: 0 auto; */ height: 5px; width: 100px; background: #555; border-radius: 15px; } .volume1:hover{ cursor: pointer; } .volume1 .ui-slider-range-min { height: 5px; width: 100px; /* position: absolute; */ background: #2ecc71; border: none; border-radius: 10px; outline: none; } .volume1 .ui-slider-handle { width: 20px; height: 20px; border-radius: 20px; background: black; /* position: absolute; margin-left: -8px; margin-top: -8px; */ cursor: pointer; outline: none; } .fill { background-color: #8BA989; width: 100%; height: 0.3rem; border-radius: 2px; } .fill:hover{ cursor: pointer; } .fill .ui-slider-range-min { height: 0.3rem; width: 100%; /* position: absolute; */ background: #2ecc71; border: none; border-radius: 10px; outline: none; } .fill .ui-slider-handle { width: 20px; height: 20px; border-radius: 20px; background: black; /* position: absolute; margin-left: -8px; margin-top: -8px; */ cursor: pointer; outline: none; } .time--current, .time--total { color: #364F3C; font-size: 10px; position: absolute; margin-top: -2px; } .time--current { top:61px; left: 50px; } .time--total { top:61px; right: 50px; } .currently-playing { text-align: center; margin-top: -3px; } .song-name, .artist-name { font-family: "Questrial", sans-serif; text-transform: uppercase; margin: 0; } .song-name { font-size: .8em; letter-spacing: 3px; color: #364F3C; } .artist-name { font-size: .6em; letter-spacing: 1.5px; color: #557c5f; margin-top: 5px; } .controls { margin-left:100px; display: flex; align-items: center; font-size: .8em; justify-content: center; color: #8BA989; } .controls .play, .controls .pause { margin: 15px 25px; color: #6e946c; } .controls .option { left: 10px; position: absolute; font-size: .8em; } .controls .add { right: 200px; position: absolute; font-size: .8em; } .controls .shuffle { margin-right: 30px; font-size: .8em; } .controls .volume { margin-left: 30px; font-size: .8em; } .play, .pause, .next, .previous, .option, .add, .volume, .shuffle { transition: all .5s ease; } .play:hover, .pause:hover, .next:hover, .previous:hover, .option:hover, .add:hover, .volume:hover, .shuffle:hover, #volume1 { color: #557c5f; cursor: pointer; }
0.396419
0.077622
.glyphicon-refresh-animate { animation: spin 1s infinite linear; -moz-animation: mspin 1s infinite linear; -webkit-animation: wspin 1s infinite linear; } @keyframes spin { from { transform: scale(1) rotate(0deg); } to { transform: scale(1) rotate(360deg); } } @-moz-keyframes mspin { from { -moz-transform: scale(1) rotate(0deg); } to { -moz-transform: scale(1) rotate(360deg); } } @-webkit-keyframes wspin { from { -webkit-transform: scale(1) rotate(0deg); } to { -webkit-transform: scale(1) rotate(360deg); } } .pointer:hover { cursor: pointer; } .editor, #comment { overflow:scroll; border: solid 1px skyblue; } .editor { height:500px; } #comments { height:500px; overflow-y:scroll; } #comment { height:150px; } .content { min-height: 500px; } .underlined { text-decoration: underline; } .left-sm-spacious { padding-left: 5px; } .media-comment { box-shadow: -1px -2px 12px 0px #5bc0de; } .comment-chosen { box-shadow: -1px -2px 12px 0px darkorange; } .media-comment-content:hover { cursor: pointer; } .comment-half-opaque { opacity: 0.5; } .estimate-active { font-size:x-large; } #imgPicture { width:100px; height:100px; background-size:contain; } .carousel .item { height:500px; } .carousel .item img { opacity:0.6; } .article-content { min-height:100px; } /* Bootstrap's callouts */ .bs-callout { padding: 20px; margin: 20px 0; border: 1px solid #eee; border-left-width: 5px; border-radius: 3px; } .bs-callout > h4 { margin-top: 0; margin-bottom: 5px; } .bs-callout p:last-child { margin-bottom: 0; } .bs-callout code { border-radius: 3px; } .bs-callout+.bs-callout { margin-top: -5px; } .bs-callout-success { border-left-color: #5cb85c; } .bs-callout-success > h4 { color: #5cb85c; } .bs-callout-warning { border-left-color: #f0ad4e; } .bs-callout-warning > h4 { color: #f0ad4e; } .bs-callout-info { border-left-color: #5bc0de; } .bs-callout-info > h4 { color: #5bc0de; }
WebArticleLibrary/Content/styles.css
.glyphicon-refresh-animate { animation: spin 1s infinite linear; -moz-animation: mspin 1s infinite linear; -webkit-animation: wspin 1s infinite linear; } @keyframes spin { from { transform: scale(1) rotate(0deg); } to { transform: scale(1) rotate(360deg); } } @-moz-keyframes mspin { from { -moz-transform: scale(1) rotate(0deg); } to { -moz-transform: scale(1) rotate(360deg); } } @-webkit-keyframes wspin { from { -webkit-transform: scale(1) rotate(0deg); } to { -webkit-transform: scale(1) rotate(360deg); } } .pointer:hover { cursor: pointer; } .editor, #comment { overflow:scroll; border: solid 1px skyblue; } .editor { height:500px; } #comments { height:500px; overflow-y:scroll; } #comment { height:150px; } .content { min-height: 500px; } .underlined { text-decoration: underline; } .left-sm-spacious { padding-left: 5px; } .media-comment { box-shadow: -1px -2px 12px 0px #5bc0de; } .comment-chosen { box-shadow: -1px -2px 12px 0px darkorange; } .media-comment-content:hover { cursor: pointer; } .comment-half-opaque { opacity: 0.5; } .estimate-active { font-size:x-large; } #imgPicture { width:100px; height:100px; background-size:contain; } .carousel .item { height:500px; } .carousel .item img { opacity:0.6; } .article-content { min-height:100px; } /* Bootstrap's callouts */ .bs-callout { padding: 20px; margin: 20px 0; border: 1px solid #eee; border-left-width: 5px; border-radius: 3px; } .bs-callout > h4 { margin-top: 0; margin-bottom: 5px; } .bs-callout p:last-child { margin-bottom: 0; } .bs-callout code { border-radius: 3px; } .bs-callout+.bs-callout { margin-top: -5px; } .bs-callout-success { border-left-color: #5cb85c; } .bs-callout-success > h4 { color: #5cb85c; } .bs-callout-warning { border-left-color: #f0ad4e; } .bs-callout-warning > h4 { color: #f0ad4e; } .bs-callout-info { border-left-color: #5bc0de; } .bs-callout-info > h4 { color: #5bc0de; }
0.268845
0.074366
* Greedy reset. */ * { padding: 0; margin: 0; box-sizing: border-box; } /** * Set up basic styles and helpers. */ html, body { height: 100%; } html { font-family: 'Open Sans', sans-serif; font-size: 62.5%; background: #efefef url(//i.imgur.com/IcaIzAe.jpg) repeat center center; } body { max-width: 1200px; margin: auto; padding: 0 40px; } body, input, textarea { font-size: 1.6rem; line-height: 1.75; color: #000; } a { color: #9A1B1E; text-decoration: none; border-bottom: 2px solid #9A1B1E; transition: all 0.2s ease; } a:hover { text-shadow: 0 0 2px #fff; } a:active { position: relative; top: 2px; border: 0; } ul, li { list-style: none; } li { display: block; margin: 10px 0; } hr { border: 1px solid #efefef; } .clear { clear: both; } .button { display: inline-block; background-color: #9A1B1E; border: 0; border-radius: 2px; color: #fff; cursor: pointer; text-shadow: 0 1px 1px #000; border-bottom: 3px solid #000; } .button:hover { box-shadow: 0 0 20px 10px #fff; } .button:active { box-shadow: 0 0 10px 5px #fff, inset 0 0 10px 0 rgba(0, 0, 0, 0.50); transform: scale(0.95); } .button-inline { line-height: 1.75; border: 0; padding: 0 10px; } button { display: block; padding: 20px; width: 100%; font-size: 2.4rem; } /* Hide content that does not need to be available when JS is active. */ .js .no-js { display: none; } /** * Modal feedback window. */ #feedback { position: fixed; z-index: 100; top: 0; left: 0; right: 0; bottom: 0; width: 400px; height: 120px; padding: 40px; margin: 200px auto; border-radius: 2px; box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.20), 0 0 100px 30px #fff; text-align: center; transition: all 0.2s ease; opacity: 0; pointer-events: none; -webkit-transform: scale(0.50); transform: scale(0.50); } #feedback.success, #feedback.error { opacity: 1; -webkit-transform: scale(1); transform: scale(1); } #feedback.success { background-color: #DFF1C1; height: 400px; width: 500px; pointer-events: auto; } #feedback.error { background-color: #FEBABB; } #feedback iframe { width: 100%; height: 100%; } /** * Main content */ header { margin: 40px 5px; } footer { margin: 80px auto 40px auto; text-align: center; } .logo { display: inline-block; overflow: hidden; clip: rect(0,0,0,0); font-size: 0; background: transparent url(//i.imgur.com/iIPaB5A.png) no-repeat; width: 250px; height: 63px; background-size: 250px 63px; float: left; border: 0; } .logo-subtext { display: inline-block; line-height: 63px; font-weight: bold; margin: 0 0 0 20px; font-style: italic; color: #D4D6D6; text-shadow: 0 0 2px #000, 0 0 2px #000, 0 0 2px #000, 0 0 2px #000, 0 0 2px #000, -20px 0 20px #fff; } .cart { position: relative; border-radius: 2px; padding: 0; overflow: hidden; box-shadow: 0 0 1px 0 #efefef; width: 100%; } .cart-bag { width: 65%; background-color: #fff; padding: 40px; position: relative; z-index: 1; } .cart-bag-head { color: #999; padding: 0 40px 40px 40px; border-bottom: 1px solid #efefef; margin: 0 -40px; } .cart-bag-head .fa { color: #999; margin-right: 5px; } .cart-product-list li { border-bottom: 1px solid #efefef; clear: both; overflow: hidden; margin: 20px 0; padding: 20px 0; transition: all 0.1s ease; } .cart-product-list li:hover { box-shadow: 0 4px 10px -10px rgba(0, 0, 0, 0.50); } .cart-product-list img { width: 200px; float: left; margin-right: 40px; padding: 20px; transition: all 0.2s ease; } .cart-product-list li:hover img { -webkit-transform: scale(1.25); transform: scale(1.25); } .cart-product-description { color: #999; margin: 10px 0; } .cart-product-quantity { color: #999; } .cart-product-quantity input { padding: 0 5px; width: 50px; margin: 10px; box-shadow: none; border-radius: 2px; border: 1px solid #efefef; } .cart-wallet { width: 35%; position: absolute; top: 0; bottom: 0; right: 0; box-shadow: -4px 0 4px -4px rgba(0, 0, 0, 0.05), inset 5px 0 5px -6px rgba(0, 0, 0, 0.20); background-color: rgba(255, 255, 255, 0.40); text-shadow: 0 0 2px #fff; overflow: hidden; } /* Triangle to point to totals and counts. */ #follow-bar:before { content: ''; position: absolute; margin: 28px 0 0 -2px; width: 0; height: 0; left: 0; border-style: solid; border-width: 30px 0 30px 20px; border-color: transparent transparent transparent #fff; z-index: 10; } .follow-bar-padding { padding: 40px; } .cart-wallet-head { font-size: 2.0rem; font-weight: bold; } #cart-count { padding: 0 0 0 5px; } .cart-wallet-content { margin: 40px 0; color: #999; } .cart-wallet-content strong { font-weight: normal; color: #000; float: right; } .cart-total-big, .cart-total-big strong { font-size: 1.8rem; font-weight: bold; transition: all 0.3s ease; } /* When prices change, make the grab total POP! */ .cart-total-big.make-it-pop-like-its-95-wed-design, .cart-total-big.make-it-pop-like-its-95-wed-design strong { /*font-size: 3.0rem !important;*/ -webkit-transform: scale(1.20); transform: scale(1.10); text-shadow: 0 0 10px #ffff00 !important; } .error-note { font-size: 1.2rem; text-shadow: 0 0 5px #fff; } /** * Media queries for smaller viewports. */ @media (max-width: 768px) { .cart-bag { width: 100%; } .cart-wallet { width: 100%; position: static !important; } #follow-bar { position: static !important; } #follow-bar:before { margin: 0 0 0 -30px; left: 50%; border-width: 20px 30px 0 30px; border-color: #fff transparent transparent transparent; } } @media (max-width: 520px) { html { font-size: 60%; } body { padding: 0 20px; } header { margin: 40px 0; } .logo { display: block; float: none; margin: auto; } .logo-subtext { display: none; } .cart-product-list img { display: block; float: none; width: 100%; padding: 0; margin: 0 auto 40px auto; -webkit-transform: none !important; transform: none !important; } .cart-product-list h3 { clear: both; } }
CanadasMotorcycle/app/app.css
* Greedy reset. */ * { padding: 0; margin: 0; box-sizing: border-box; } /** * Set up basic styles and helpers. */ html, body { height: 100%; } html { font-family: 'Open Sans', sans-serif; font-size: 62.5%; background: #efefef url(//i.imgur.com/IcaIzAe.jpg) repeat center center; } body { max-width: 1200px; margin: auto; padding: 0 40px; } body, input, textarea { font-size: 1.6rem; line-height: 1.75; color: #000; } a { color: #9A1B1E; text-decoration: none; border-bottom: 2px solid #9A1B1E; transition: all 0.2s ease; } a:hover { text-shadow: 0 0 2px #fff; } a:active { position: relative; top: 2px; border: 0; } ul, li { list-style: none; } li { display: block; margin: 10px 0; } hr { border: 1px solid #efefef; } .clear { clear: both; } .button { display: inline-block; background-color: #9A1B1E; border: 0; border-radius: 2px; color: #fff; cursor: pointer; text-shadow: 0 1px 1px #000; border-bottom: 3px solid #000; } .button:hover { box-shadow: 0 0 20px 10px #fff; } .button:active { box-shadow: 0 0 10px 5px #fff, inset 0 0 10px 0 rgba(0, 0, 0, 0.50); transform: scale(0.95); } .button-inline { line-height: 1.75; border: 0; padding: 0 10px; } button { display: block; padding: 20px; width: 100%; font-size: 2.4rem; } /* Hide content that does not need to be available when JS is active. */ .js .no-js { display: none; } /** * Modal feedback window. */ #feedback { position: fixed; z-index: 100; top: 0; left: 0; right: 0; bottom: 0; width: 400px; height: 120px; padding: 40px; margin: 200px auto; border-radius: 2px; box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.20), 0 0 100px 30px #fff; text-align: center; transition: all 0.2s ease; opacity: 0; pointer-events: none; -webkit-transform: scale(0.50); transform: scale(0.50); } #feedback.success, #feedback.error { opacity: 1; -webkit-transform: scale(1); transform: scale(1); } #feedback.success { background-color: #DFF1C1; height: 400px; width: 500px; pointer-events: auto; } #feedback.error { background-color: #FEBABB; } #feedback iframe { width: 100%; height: 100%; } /** * Main content */ header { margin: 40px 5px; } footer { margin: 80px auto 40px auto; text-align: center; } .logo { display: inline-block; overflow: hidden; clip: rect(0,0,0,0); font-size: 0; background: transparent url(//i.imgur.com/iIPaB5A.png) no-repeat; width: 250px; height: 63px; background-size: 250px 63px; float: left; border: 0; } .logo-subtext { display: inline-block; line-height: 63px; font-weight: bold; margin: 0 0 0 20px; font-style: italic; color: #D4D6D6; text-shadow: 0 0 2px #000, 0 0 2px #000, 0 0 2px #000, 0 0 2px #000, 0 0 2px #000, -20px 0 20px #fff; } .cart { position: relative; border-radius: 2px; padding: 0; overflow: hidden; box-shadow: 0 0 1px 0 #efefef; width: 100%; } .cart-bag { width: 65%; background-color: #fff; padding: 40px; position: relative; z-index: 1; } .cart-bag-head { color: #999; padding: 0 40px 40px 40px; border-bottom: 1px solid #efefef; margin: 0 -40px; } .cart-bag-head .fa { color: #999; margin-right: 5px; } .cart-product-list li { border-bottom: 1px solid #efefef; clear: both; overflow: hidden; margin: 20px 0; padding: 20px 0; transition: all 0.1s ease; } .cart-product-list li:hover { box-shadow: 0 4px 10px -10px rgba(0, 0, 0, 0.50); } .cart-product-list img { width: 200px; float: left; margin-right: 40px; padding: 20px; transition: all 0.2s ease; } .cart-product-list li:hover img { -webkit-transform: scale(1.25); transform: scale(1.25); } .cart-product-description { color: #999; margin: 10px 0; } .cart-product-quantity { color: #999; } .cart-product-quantity input { padding: 0 5px; width: 50px; margin: 10px; box-shadow: none; border-radius: 2px; border: 1px solid #efefef; } .cart-wallet { width: 35%; position: absolute; top: 0; bottom: 0; right: 0; box-shadow: -4px 0 4px -4px rgba(0, 0, 0, 0.05), inset 5px 0 5px -6px rgba(0, 0, 0, 0.20); background-color: rgba(255, 255, 255, 0.40); text-shadow: 0 0 2px #fff; overflow: hidden; } /* Triangle to point to totals and counts. */ #follow-bar:before { content: ''; position: absolute; margin: 28px 0 0 -2px; width: 0; height: 0; left: 0; border-style: solid; border-width: 30px 0 30px 20px; border-color: transparent transparent transparent #fff; z-index: 10; } .follow-bar-padding { padding: 40px; } .cart-wallet-head { font-size: 2.0rem; font-weight: bold; } #cart-count { padding: 0 0 0 5px; } .cart-wallet-content { margin: 40px 0; color: #999; } .cart-wallet-content strong { font-weight: normal; color: #000; float: right; } .cart-total-big, .cart-total-big strong { font-size: 1.8rem; font-weight: bold; transition: all 0.3s ease; } /* When prices change, make the grab total POP! */ .cart-total-big.make-it-pop-like-its-95-wed-design, .cart-total-big.make-it-pop-like-its-95-wed-design strong { /*font-size: 3.0rem !important;*/ -webkit-transform: scale(1.20); transform: scale(1.10); text-shadow: 0 0 10px #ffff00 !important; } .error-note { font-size: 1.2rem; text-shadow: 0 0 5px #fff; } /** * Media queries for smaller viewports. */ @media (max-width: 768px) { .cart-bag { width: 100%; } .cart-wallet { width: 100%; position: static !important; } #follow-bar { position: static !important; } #follow-bar:before { margin: 0 0 0 -30px; left: 50%; border-width: 20px 30px 0 30px; border-color: #fff transparent transparent transparent; } } @media (max-width: 520px) { html { font-size: 60%; } body { padding: 0 20px; } header { margin: 40px 0; } .logo { display: block; float: none; margin: auto; } .logo-subtext { display: none; } .cart-product-list img { display: block; float: none; width: 100%; padding: 0; margin: 0 auto 40px auto; -webkit-transform: none !important; transform: none !important; } .cart-product-list h3 { clear: both; } }
0.445047
0.131787
@import url(https://fonts.googleapis.com/css?family=Roboto:300,400); @import url(https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css); figure.snip1368 { font-family: 'Roboto', Arial, sans-serif; position: relative; overflow: hidden; margin: 10px; min-width: 270px; max-width: 355px; width: 100%; color: #ffffff; line-height: 1.4em; } figure.snip1368 * { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-transition: all 0.4s ease; transition: all 0.4s ease; } figure.snip1368 img { opacity: 1; width: 100%; vertical-align: top; } figure.snip1368 h3 { position: absolute; top: 0%; width: 100%; background-color: #212121; z-index: 1; text-align: right; padding: 15px 25px 0px; margin: 0; font-weight: 300; font-size: 1.3em; -webkit-transform: translateY(-200%); transform: translateY(-200%); } figure.snip1368 h3:before { position: absolute; content: ''; top: 100%; left: 0; width: 0; height: 0; border-style: solid; border-width: 0 355px 55px 0; border-color: transparent #212121 transparent transparent; } figure.snip1368 figcaption { padding: 5px 25px 15px; position: absolute; width: 100%; z-index: 2; bottom: 0%; background-color: #141414; -webkit-transform: translateY(200%); transform: translateY(200%); } figure.snip1368 figcaption:before { position: absolute; content: ''; bottom: 100%; left: 0; width: 0; height: 0; border-style: solid; border-width: 55px 0 0 315px; border-color: transparent transparent transparent #141414; } figure.snip1368 .icons { margin-top: -20px; } figure.snip1368 i { padding: 0px 8px; display: inline-block; font-size: 24px; color: #ffffff; text-align: center; opacity: 0.7; } figure.snip1368 i:hover { opacity: 1; -webkit-transition: all 0.35s ease; transition: all 0.35s ease; } figure.snip1368:hover h3, figure.snip1368.hover h3 { -webkit-transform: translateY(0%); transform: translateY(0%); } figure.snip1368:hover figcaption, figure.snip1368.hover figcaption { -webkit-transform: translateY(0%); transform: translateY(0%); }
css/profile3.css
@import url(https://fonts.googleapis.com/css?family=Roboto:300,400); @import url(https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css); figure.snip1368 { font-family: 'Roboto', Arial, sans-serif; position: relative; overflow: hidden; margin: 10px; min-width: 270px; max-width: 355px; width: 100%; color: #ffffff; line-height: 1.4em; } figure.snip1368 * { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-transition: all 0.4s ease; transition: all 0.4s ease; } figure.snip1368 img { opacity: 1; width: 100%; vertical-align: top; } figure.snip1368 h3 { position: absolute; top: 0%; width: 100%; background-color: #212121; z-index: 1; text-align: right; padding: 15px 25px 0px; margin: 0; font-weight: 300; font-size: 1.3em; -webkit-transform: translateY(-200%); transform: translateY(-200%); } figure.snip1368 h3:before { position: absolute; content: ''; top: 100%; left: 0; width: 0; height: 0; border-style: solid; border-width: 0 355px 55px 0; border-color: transparent #212121 transparent transparent; } figure.snip1368 figcaption { padding: 5px 25px 15px; position: absolute; width: 100%; z-index: 2; bottom: 0%; background-color: #141414; -webkit-transform: translateY(200%); transform: translateY(200%); } figure.snip1368 figcaption:before { position: absolute; content: ''; bottom: 100%; left: 0; width: 0; height: 0; border-style: solid; border-width: 55px 0 0 315px; border-color: transparent transparent transparent #141414; } figure.snip1368 .icons { margin-top: -20px; } figure.snip1368 i { padding: 0px 8px; display: inline-block; font-size: 24px; color: #ffffff; text-align: center; opacity: 0.7; } figure.snip1368 i:hover { opacity: 1; -webkit-transition: all 0.35s ease; transition: all 0.35s ease; } figure.snip1368:hover h3, figure.snip1368.hover h3 { -webkit-transform: translateY(0%); transform: translateY(0%); } figure.snip1368:hover figcaption, figure.snip1368.hover figcaption { -webkit-transform: translateY(0%); transform: translateY(0%); }
0.391871
0.111628
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Raleway:wght@400;500;700;900&display=swap'); /* HOME */ .modal-backdrop.show{ background-color: #FEFEFE; opacity: 0.6; } .btn-close, .btn-close:hover{ color: #FFF; } .modal-header-4-3.modal { top: 2rem; } .header-4-3 .navbar, .hero-header-4-3 { padding: 3rem 2rem; } .header-4-3 .navbar-dark .navbar-nav .nav-link { font-size: 18px; color: #161616; opacity: .5; font-weight: 400; line-height: 1.5rem; font-family: 'Raleway', sans-serif; } .header-4-3 .navbar-dark .navbar-nav .nav-link:hover { color: #00D058; font-weight: 400; } .header-4-3 .navbar-dark .navbar-nav .active > .nav-link, .header-4-3 .navbar-dark .navbar-nav .nav-link.active, .header-4-3 .navbar-dark .navbar-nav .nav-link.show, .header-4-3 .navbar-dark .navbar-nav .show > .nav-link { color: #00D058; font-weight: 600; } .header-4-3 .navbar-dark .navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2822, 22, 22, 100%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); color: #161616; } .header-4-3 .navbar-dark .navbar-toggler { border: none; } .modal-content-header-4-3 .modal-header, .modal-content-header-4-3 .modal-footer { border: none; } .btn:focus, .btn:active { outline: none !important; } .btn-fill-header-4-3 { border: none; border-radius: 8px; color: #FEFEFE; font-weight: 600; padding: 10px 20px 10px 20px; font-size: 16px; background-color: #212529; transition: .8s; font-family: 'Raleway', sans-serif; } .btn-fill-header-4-3:hover { color: #FFFFFF; } .btn-no-fill-header-4-3{ color: #E7E7E8; font-weight: 300; line-height: 1.75rem; padding: 12px 32px 12px 32px; font-size: 18px; } .btn-no-fill-header-4-3:hover{ color: #E7E7E8; } .modal-header-4-3 .modal-dialog .modal-content { border-radius: 8px; background-color: #FFFFFF; border: none; } .responsive-header-4-3 li a { padding: 1rem 1rem; } #hero-header-4-3-img { height: auto; width: inherit; } .left-column-header-4-3{ margin-bottom: 0.75rem; width: 100%; } .title-text-big-header-4-3{ font-weight: 900; margin-bottom: 1rem; font-size: 45px; color: #212529; font-family: 'Raleway', sans-serif; } .description-title-text { font-family: 'Open Sans', sans-serif; font-size: 20px; color: #161616; margin-bottom: 2rem; opacity: .6; } .div-button-header-4-3{ margin-left: 0; margin-right: 0; } .btn-get-it-now{ width: 200px; font-weight: 600; color: #FEFEFE; padding: 1rem 1.5rem 1rem 1.5rem; font-size: 1rem; line-height: 1.5rem; border-radius: 7px; background-color: #00D058; margin-bottom: 1rem; margin-right: 0; border: none; transition: .4s; box-shadow: 10px 10px #EAEAEA; } .btn-get-it-now:hover{ color: #FFFFFF; box-shadow: none; background-color: #46B876; } .btn-outline-header-4-3{ font-weight: 400; border: 1px solid #707092; color:#707092; padding: 1rem 1.5rem 1rem 1.5rem; font-size: 1rem; line-height: 1.5rem; border-radius: 0.75rem; background-color: transparent; margin-bottom: 1rem; } .btn-outline-header-4-3:hover{ border: 1px solid #FFFFFF; color: #FFFFFF; } .btn-outline-header-4-3:hover div path{ fill: #FFFFFF; } .right-column-header-4-3{ width: 100%; } @media (min-width: 576px) { .modal-header-4-3 .modal-dialog { max-width: 95%; border-radius: 12px; } .header-4-3 .navbar { padding: 3rem 2rem; } .hero-header-4-3 { padding: 3rem 2rem 5rem 2rem; } .title-text-big-header-4-3{ font-size: 45px; } .title-text-small-header-4-3{ font-size: 3rem; line-height: 1.2; padding-left: 1.5rem; padding-right: 1.5rem; } .div-button-header-4-3{ margin-left: 0; margin-right: 0.75rem; } .btn-try-header-4-3{ margin-bottom: 0; margin-right: 0.75rem; } .btn-outline-header-4-3{ margin-bottom: 0; } } @media (min-width: 768px) { .header-4-3 .navbar { padding: 3rem 4rem; } .hero-header-4-3 { padding: 3rem 4rem 5rem 4rem; } .left-column-header-4-3{ margin-bottom: 3rem; } .div-button-header-4-3{ margin-left: 0; margin-right: 0.5rem; } .btn-try-header-4-3{ margin-right: 0.5rem; } } @media (min-width: 992px) { .header-4-3 .navbar-expand-lg .navbar-nav .nav-link { padding-right: 1.25rem; padding-left: 1.25rem; } .header-4-3 .navbar { padding: 3rem 6rem; } .hero-header-4-3 { padding: 3rem 6rem 5rem 6rem; } .left-column-header-4-3{ width: 50%; margin-bottom: 0; } .title-text-big-header-4-3{ font-size: 64px; line-height: 1.2; } .title-text-small-header-4-3{ font-size: 3.75rem; line-height: 1.2; } .div-button-header-4-3{ margin-left: 0; margin-right: 2rem; } .btn-try-header-4-3{ margin-right: 2rem; } .right-column-header-4-3{ width: 50%; } } /* AKHIR HOME */ /* * GOTO TOP */ #myBtn { transition: .5s; position: fixed; bottom: 20px; right: 30px; z-index: 99; border: none; outline: none; background-color: white; color: white; cursor: pointer; padding: 15px; border-radius: 150px; } /* CARD */ .card-asset{ font-family: 'Raleway'; } .card-asset .card-body { padding: 10px 5px !important; } .card-asset .card-img-top { border-radius: 10px; background-clip: content-box; transition: .3s } .card-asset .card-img-top:hover { opacity: .3; filter:grayscale(30%); cursor: pointer; } .card-asset .card-category { color: #949494; } .badge-free-for-you { background-color: rgb(159, 230, 160, .3); color: #83da84; font-size: 14px !important; padding: .5rem 1rem !important; font-weight: bold; } .badge-for-member { background-color: rgb(120, 104, 230, .2); color: #7868e6; font-size: 14px !important; padding: .5rem 1rem !important; font-weight: bold; } .badge-special-edition { background-color: #fef3c7; color: #b45309; font-size: 14px !important; padding: .5rem 1rem !important; font-weight: bold; } .badge-indikator.active { background-color: #ebebeb; color: #00d058; font-size: 14px !important; padding: .5rem 1rem !important; font-weight: bold; border-radius: 5px; } .badge-indikator { color: #bfbfbf; font-size: 14px !important; padding: .5rem 1rem !important; font-weight: bold; cursor: pointer; } .badge-special-edition .ic_lock { color: #fed049; } /* AKHIR CARD */ /* ADMIN */ #adminUikits .text-title { color: #efefef; font-weight: bold; } #adminUikits .text-caption { color: #efefef; }
public/css/sewadah.css
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Raleway:wght@400;500;700;900&display=swap'); /* HOME */ .modal-backdrop.show{ background-color: #FEFEFE; opacity: 0.6; } .btn-close, .btn-close:hover{ color: #FFF; } .modal-header-4-3.modal { top: 2rem; } .header-4-3 .navbar, .hero-header-4-3 { padding: 3rem 2rem; } .header-4-3 .navbar-dark .navbar-nav .nav-link { font-size: 18px; color: #161616; opacity: .5; font-weight: 400; line-height: 1.5rem; font-family: 'Raleway', sans-serif; } .header-4-3 .navbar-dark .navbar-nav .nav-link:hover { color: #00D058; font-weight: 400; } .header-4-3 .navbar-dark .navbar-nav .active > .nav-link, .header-4-3 .navbar-dark .navbar-nav .nav-link.active, .header-4-3 .navbar-dark .navbar-nav .nav-link.show, .header-4-3 .navbar-dark .navbar-nav .show > .nav-link { color: #00D058; font-weight: 600; } .header-4-3 .navbar-dark .navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2822, 22, 22, 100%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); color: #161616; } .header-4-3 .navbar-dark .navbar-toggler { border: none; } .modal-content-header-4-3 .modal-header, .modal-content-header-4-3 .modal-footer { border: none; } .btn:focus, .btn:active { outline: none !important; } .btn-fill-header-4-3 { border: none; border-radius: 8px; color: #FEFEFE; font-weight: 600; padding: 10px 20px 10px 20px; font-size: 16px; background-color: #212529; transition: .8s; font-family: 'Raleway', sans-serif; } .btn-fill-header-4-3:hover { color: #FFFFFF; } .btn-no-fill-header-4-3{ color: #E7E7E8; font-weight: 300; line-height: 1.75rem; padding: 12px 32px 12px 32px; font-size: 18px; } .btn-no-fill-header-4-3:hover{ color: #E7E7E8; } .modal-header-4-3 .modal-dialog .modal-content { border-radius: 8px; background-color: #FFFFFF; border: none; } .responsive-header-4-3 li a { padding: 1rem 1rem; } #hero-header-4-3-img { height: auto; width: inherit; } .left-column-header-4-3{ margin-bottom: 0.75rem; width: 100%; } .title-text-big-header-4-3{ font-weight: 900; margin-bottom: 1rem; font-size: 45px; color: #212529; font-family: 'Raleway', sans-serif; } .description-title-text { font-family: 'Open Sans', sans-serif; font-size: 20px; color: #161616; margin-bottom: 2rem; opacity: .6; } .div-button-header-4-3{ margin-left: 0; margin-right: 0; } .btn-get-it-now{ width: 200px; font-weight: 600; color: #FEFEFE; padding: 1rem 1.5rem 1rem 1.5rem; font-size: 1rem; line-height: 1.5rem; border-radius: 7px; background-color: #00D058; margin-bottom: 1rem; margin-right: 0; border: none; transition: .4s; box-shadow: 10px 10px #EAEAEA; } .btn-get-it-now:hover{ color: #FFFFFF; box-shadow: none; background-color: #46B876; } .btn-outline-header-4-3{ font-weight: 400; border: 1px solid #707092; color:#707092; padding: 1rem 1.5rem 1rem 1.5rem; font-size: 1rem; line-height: 1.5rem; border-radius: 0.75rem; background-color: transparent; margin-bottom: 1rem; } .btn-outline-header-4-3:hover{ border: 1px solid #FFFFFF; color: #FFFFFF; } .btn-outline-header-4-3:hover div path{ fill: #FFFFFF; } .right-column-header-4-3{ width: 100%; } @media (min-width: 576px) { .modal-header-4-3 .modal-dialog { max-width: 95%; border-radius: 12px; } .header-4-3 .navbar { padding: 3rem 2rem; } .hero-header-4-3 { padding: 3rem 2rem 5rem 2rem; } .title-text-big-header-4-3{ font-size: 45px; } .title-text-small-header-4-3{ font-size: 3rem; line-height: 1.2; padding-left: 1.5rem; padding-right: 1.5rem; } .div-button-header-4-3{ margin-left: 0; margin-right: 0.75rem; } .btn-try-header-4-3{ margin-bottom: 0; margin-right: 0.75rem; } .btn-outline-header-4-3{ margin-bottom: 0; } } @media (min-width: 768px) { .header-4-3 .navbar { padding: 3rem 4rem; } .hero-header-4-3 { padding: 3rem 4rem 5rem 4rem; } .left-column-header-4-3{ margin-bottom: 3rem; } .div-button-header-4-3{ margin-left: 0; margin-right: 0.5rem; } .btn-try-header-4-3{ margin-right: 0.5rem; } } @media (min-width: 992px) { .header-4-3 .navbar-expand-lg .navbar-nav .nav-link { padding-right: 1.25rem; padding-left: 1.25rem; } .header-4-3 .navbar { padding: 3rem 6rem; } .hero-header-4-3 { padding: 3rem 6rem 5rem 6rem; } .left-column-header-4-3{ width: 50%; margin-bottom: 0; } .title-text-big-header-4-3{ font-size: 64px; line-height: 1.2; } .title-text-small-header-4-3{ font-size: 3.75rem; line-height: 1.2; } .div-button-header-4-3{ margin-left: 0; margin-right: 2rem; } .btn-try-header-4-3{ margin-right: 2rem; } .right-column-header-4-3{ width: 50%; } } /* AKHIR HOME */ /* * GOTO TOP */ #myBtn { transition: .5s; position: fixed; bottom: 20px; right: 30px; z-index: 99; border: none; outline: none; background-color: white; color: white; cursor: pointer; padding: 15px; border-radius: 150px; } /* CARD */ .card-asset{ font-family: 'Raleway'; } .card-asset .card-body { padding: 10px 5px !important; } .card-asset .card-img-top { border-radius: 10px; background-clip: content-box; transition: .3s } .card-asset .card-img-top:hover { opacity: .3; filter:grayscale(30%); cursor: pointer; } .card-asset .card-category { color: #949494; } .badge-free-for-you { background-color: rgb(159, 230, 160, .3); color: #83da84; font-size: 14px !important; padding: .5rem 1rem !important; font-weight: bold; } .badge-for-member { background-color: rgb(120, 104, 230, .2); color: #7868e6; font-size: 14px !important; padding: .5rem 1rem !important; font-weight: bold; } .badge-special-edition { background-color: #fef3c7; color: #b45309; font-size: 14px !important; padding: .5rem 1rem !important; font-weight: bold; } .badge-indikator.active { background-color: #ebebeb; color: #00d058; font-size: 14px !important; padding: .5rem 1rem !important; font-weight: bold; border-radius: 5px; } .badge-indikator { color: #bfbfbf; font-size: 14px !important; padding: .5rem 1rem !important; font-weight: bold; cursor: pointer; } .badge-special-edition .ic_lock { color: #fed049; } /* AKHIR CARD */ /* ADMIN */ #adminUikits .text-title { color: #efefef; font-weight: bold; } #adminUikits .text-caption { color: #efefef; }
0.327991
0.041443
.markItUp .bold a{background-image:url(images/bold.png)} .markItUp .italic a{background-image:url(images/italic.png)} .markItUp .underline a{background-image:url(images/underline.png)} .markItUp .strike a{background-image:url(images/strike.png)} .markItUp .left a{background-image:url(../../../../images/bbc/left.gif);width:16px;height:16px;margin-top:-2px} .markItUp .center a{background-image:url(../../../../images/bbc/center.gif);width:16px;height:16px;margin-top:-2px} .markItUp .right a{background-image:url(../../../../images/bbc/right.gif);width:16px;height:16px;margin-top:-2px} .markItUp .justify a{background-image:url(../../../../images/bbc/justify.gif);width:16px;height:16px;margin-top:-2px} .markItUp .picture a{background-image:url(images/picture.png)} .markItUp .link a{background-image:url(images/link.png)} .markItUp .face a{background-image:url(images/font-name.png)} .markItUp .face ul{width:200px;padding:1px} .markItUp .face ul li a{background-image:none} .markItUp .face-courier a{font-family: Courier} .markItUp .face-arial a{font-family: Arial} .markItUp .face-arial-black a{font-family: "Arial Black"} .markItUp .face-impact a{font-family: Impact} .markItUp .face-verdana a{font-family: Verdana} .markItUp .face-times a{font-family: "Times New Roman"} .markItUp .face-georgia a{font-family: Georgia} .markItUp .face-andale-mono a{font-family: "Andale Mono"} .markItUp .face-trebuchet a{font-family: "Trebuchet MS"} .markItUp .face-comic-sans a{font-family: "Comic Sans MS"} .markItUp .font a{background-image:url(images/fonts.png)} .markItUp .font ul{width:200px;padding:1px} .markItUp .font ul li a{background-image:none} .markItUp .font .font-8 a{font-size:8pt;height:8pt} .markItUp .font .font-10 a{font-size:10pt;height:10pt} .markItUp .font .font-12 a{font-size:12pt;height:12pt} .markItUp .font .font-14 a{font-size:14pt;height:14pt} .markItUp .font .font-16 a{font-size:16pt;height:16pt} .markItUp .font .font-18 a{font-size:18pt;height:18pt} .markItUp .font .font-24 a{font-size:24pt;height:24pt} .markItUp .font .font-36 a{font-size:36pt;height:36pt} .markItUp .colors a{background-image:url(images/colors.png)} .markItUp .colors ul{width:110px;padding:1px} .markItUp .colors li{border:1px solid #FFF;width:25px;height:25px;overflow:hidden;float:left;margin:0;padding:0} .markItUp .colors ul a{width:25px;height:25px} .markItUp .colors .col1-1 a{background:#FF0} .markItUp .colors .col1-2 a{background:orange} .markItUp .colors .col1-3 a{background:red} .markItUp .colors .col1-4 a{background:#32CD32} .markItUp .colors .col2-1 a{background:blue} .markItUp .colors .col2-2 a{background:purple} .markItUp .colors .col2-3 a{background:green} .markItUp .colors .col2-4 a{background:#FFC0CB} .markItUp .colors .col3-1 a{background:#FFF} .markItUp .colors .col3-2 a{background:teal} .markItUp .colors .col3-3 a{background:#000} .markItUp .colors .col3-4 a{background:#F5F5DC} .markItUp .colors .col4-1 a{background:maroon} .markItUp .colors .col4-2 a{background:#A52A2A} .markItUp .colors .col4-3 a{background:navy} .markItUp .colors .col4-4 a{background:#9ACD32} .markItUp .colors ul a:hover,.markItUp .smileys ul a:hover{background-color:none} .markItUp .smileys a{background-image:url(images/smileys.png)} .markItUp .smileys ul{width:230px;padding:1px} .markItUp .smileys li{border:none;width:28px;height:28px;overflow:hidden;float:left;margin:0;padding:0} .markItUp .smileys ul a{width:28px;height:28px} .markItUp .smileys .col1-0 a{background:none;color:#000;padding:1px} .markItUp .list-bullet a{background-image:url(images/list-bullet.png)} .markItUp .list-numeric a{background-image:url(images/list-numeric.png)} .markItUp .list-numeric ul{width:600px} .markItUp .list-numeric .markItUpButton13-21,.markItUpButton .markItUpButton18-21{border:none} .markItUp .list-numeric li{float:left} .markItUp .list-item a{background-image:url(images/list-item.png)} .markItUp .quote_btn a{background-image:url(../../../../images/bbc/quote.gif);width:16px;height:16px;margin-top:-2px} .markItUp .code a{background-image:url(../../../../images/bbc/code.gif);width:16px;height:16px;margin-top:-2px} .markItUp .table-col a{background-image:url(images/table-col.png)} .markItUp .table-row a{background-image:url(images/table-row.png)} .markItUp .table a{background-image:url(images/table.png)} .markItUp .tablegenerator a{background-image:url(images/table_add.png)} .markItUp .calculator a{background-image:url(images/calculator.png)} .markItUp .dateoftheday a{background-image:url(images/date.png)} .markItUp .sort a {background-image:url(images/sort.png)} .markItUp .html a{background-image:url(images/html.png)} .markItUp .replace a {background-image:url(images/replace.png)} .markItUp .clean a{background-image:url(images/clean.png)} .markItUp .preview a{background-image:url(images/preview.png)} /* Custom hacks */ .markItUp{width:auto !important} .markItUpHeader ul .markItUpDropMenu {z-index:1000} .markItUpEditor,#quickReplyOptions form textarea{background-image:none;min-width:98%;max-width:98%;height:150px;margin-bottom:0.3em;padding:5px} .markItUpHeader ul li{text-align:left} .bbc_table{border-spacing:2px;background:#88A6C0 url(images/catbg.jpg) repeat-x} .bbc_table td{background:#E9F0F6 url(images/titlebg.jpg) repeat-x 0 -17px;padding:5px} /* Other mods */ .markItUp .video ul{width:260px;padding:1px} .markItUp .video a{background-image:url(../../../../images/bbc/video.gif);height:16px;margin-top:-2px} .markItUp .audio a{background-image:url(../../../../images/bbc/audio.gif)} .markItUp .photo a{background-image:url(../../../../images/bbc/photo.gif)} .markItUp .plvideo a{background-image:url(../../../../images/bbc/plvideo.gif)} .markItUp .plaudio a{background-image:url(../../../../images/bbc/plaudio.gif)} .markItUp .plphoto a{background-image:url(../../../../images/bbc/plphoto.gif)} .markItUp .spoiler a{background-image:url(../../../../images/bbc/spoiler.gif);width:16px;height:16px;margin-top:-2px} .markItUp .hide a{background-image:url(../../../../images/bbc/hide.gif);width:16px;height:16px;margin-top:-2px} .markItUp .latex a{background-image:url(../../../../images/bbc/latex.gif);width:16px;height:16px;margin-top:-2px}
Themes/default/scripts/markitup/sets/bbcode/style.css
.markItUp .bold a{background-image:url(images/bold.png)} .markItUp .italic a{background-image:url(images/italic.png)} .markItUp .underline a{background-image:url(images/underline.png)} .markItUp .strike a{background-image:url(images/strike.png)} .markItUp .left a{background-image:url(../../../../images/bbc/left.gif);width:16px;height:16px;margin-top:-2px} .markItUp .center a{background-image:url(../../../../images/bbc/center.gif);width:16px;height:16px;margin-top:-2px} .markItUp .right a{background-image:url(../../../../images/bbc/right.gif);width:16px;height:16px;margin-top:-2px} .markItUp .justify a{background-image:url(../../../../images/bbc/justify.gif);width:16px;height:16px;margin-top:-2px} .markItUp .picture a{background-image:url(images/picture.png)} .markItUp .link a{background-image:url(images/link.png)} .markItUp .face a{background-image:url(images/font-name.png)} .markItUp .face ul{width:200px;padding:1px} .markItUp .face ul li a{background-image:none} .markItUp .face-courier a{font-family: Courier} .markItUp .face-arial a{font-family: Arial} .markItUp .face-arial-black a{font-family: "Arial Black"} .markItUp .face-impact a{font-family: Impact} .markItUp .face-verdana a{font-family: Verdana} .markItUp .face-times a{font-family: "Times New Roman"} .markItUp .face-georgia a{font-family: Georgia} .markItUp .face-andale-mono a{font-family: "Andale Mono"} .markItUp .face-trebuchet a{font-family: "Trebuchet MS"} .markItUp .face-comic-sans a{font-family: "Comic Sans MS"} .markItUp .font a{background-image:url(images/fonts.png)} .markItUp .font ul{width:200px;padding:1px} .markItUp .font ul li a{background-image:none} .markItUp .font .font-8 a{font-size:8pt;height:8pt} .markItUp .font .font-10 a{font-size:10pt;height:10pt} .markItUp .font .font-12 a{font-size:12pt;height:12pt} .markItUp .font .font-14 a{font-size:14pt;height:14pt} .markItUp .font .font-16 a{font-size:16pt;height:16pt} .markItUp .font .font-18 a{font-size:18pt;height:18pt} .markItUp .font .font-24 a{font-size:24pt;height:24pt} .markItUp .font .font-36 a{font-size:36pt;height:36pt} .markItUp .colors a{background-image:url(images/colors.png)} .markItUp .colors ul{width:110px;padding:1px} .markItUp .colors li{border:1px solid #FFF;width:25px;height:25px;overflow:hidden;float:left;margin:0;padding:0} .markItUp .colors ul a{width:25px;height:25px} .markItUp .colors .col1-1 a{background:#FF0} .markItUp .colors .col1-2 a{background:orange} .markItUp .colors .col1-3 a{background:red} .markItUp .colors .col1-4 a{background:#32CD32} .markItUp .colors .col2-1 a{background:blue} .markItUp .colors .col2-2 a{background:purple} .markItUp .colors .col2-3 a{background:green} .markItUp .colors .col2-4 a{background:#FFC0CB} .markItUp .colors .col3-1 a{background:#FFF} .markItUp .colors .col3-2 a{background:teal} .markItUp .colors .col3-3 a{background:#000} .markItUp .colors .col3-4 a{background:#F5F5DC} .markItUp .colors .col4-1 a{background:maroon} .markItUp .colors .col4-2 a{background:#A52A2A} .markItUp .colors .col4-3 a{background:navy} .markItUp .colors .col4-4 a{background:#9ACD32} .markItUp .colors ul a:hover,.markItUp .smileys ul a:hover{background-color:none} .markItUp .smileys a{background-image:url(images/smileys.png)} .markItUp .smileys ul{width:230px;padding:1px} .markItUp .smileys li{border:none;width:28px;height:28px;overflow:hidden;float:left;margin:0;padding:0} .markItUp .smileys ul a{width:28px;height:28px} .markItUp .smileys .col1-0 a{background:none;color:#000;padding:1px} .markItUp .list-bullet a{background-image:url(images/list-bullet.png)} .markItUp .list-numeric a{background-image:url(images/list-numeric.png)} .markItUp .list-numeric ul{width:600px} .markItUp .list-numeric .markItUpButton13-21,.markItUpButton .markItUpButton18-21{border:none} .markItUp .list-numeric li{float:left} .markItUp .list-item a{background-image:url(images/list-item.png)} .markItUp .quote_btn a{background-image:url(../../../../images/bbc/quote.gif);width:16px;height:16px;margin-top:-2px} .markItUp .code a{background-image:url(../../../../images/bbc/code.gif);width:16px;height:16px;margin-top:-2px} .markItUp .table-col a{background-image:url(images/table-col.png)} .markItUp .table-row a{background-image:url(images/table-row.png)} .markItUp .table a{background-image:url(images/table.png)} .markItUp .tablegenerator a{background-image:url(images/table_add.png)} .markItUp .calculator a{background-image:url(images/calculator.png)} .markItUp .dateoftheday a{background-image:url(images/date.png)} .markItUp .sort a {background-image:url(images/sort.png)} .markItUp .html a{background-image:url(images/html.png)} .markItUp .replace a {background-image:url(images/replace.png)} .markItUp .clean a{background-image:url(images/clean.png)} .markItUp .preview a{background-image:url(images/preview.png)} /* Custom hacks */ .markItUp{width:auto !important} .markItUpHeader ul .markItUpDropMenu {z-index:1000} .markItUpEditor,#quickReplyOptions form textarea{background-image:none;min-width:98%;max-width:98%;height:150px;margin-bottom:0.3em;padding:5px} .markItUpHeader ul li{text-align:left} .bbc_table{border-spacing:2px;background:#88A6C0 url(images/catbg.jpg) repeat-x} .bbc_table td{background:#E9F0F6 url(images/titlebg.jpg) repeat-x 0 -17px;padding:5px} /* Other mods */ .markItUp .video ul{width:260px;padding:1px} .markItUp .video a{background-image:url(../../../../images/bbc/video.gif);height:16px;margin-top:-2px} .markItUp .audio a{background-image:url(../../../../images/bbc/audio.gif)} .markItUp .photo a{background-image:url(../../../../images/bbc/photo.gif)} .markItUp .plvideo a{background-image:url(../../../../images/bbc/plvideo.gif)} .markItUp .plaudio a{background-image:url(../../../../images/bbc/plaudio.gif)} .markItUp .plphoto a{background-image:url(../../../../images/bbc/plphoto.gif)} .markItUp .spoiler a{background-image:url(../../../../images/bbc/spoiler.gif);width:16px;height:16px;margin-top:-2px} .markItUp .hide a{background-image:url(../../../../images/bbc/hide.gif);width:16px;height:16px;margin-top:-2px} .markItUp .latex a{background-image:url(../../../../images/bbc/latex.gif);width:16px;height:16px;margin-top:-2px}
0.236516
0.268298
* { margin: 0; padding: 0; } @font-face{ font-family: RobotoRegular; src: url(../fonts/Roboto-Regular.ttf); } .container{ font-family: RobotoRegular; } /*Menu-Inicio*/ .header{ z-index: 1; position: fixed; display: flex; align-items: center; justify-content: flex-end; width: 100%; height: 75px; background-image: linear-gradient(rgb(248, 248, 248), rgb(255, 255, 255)); } .header .logo_niteo img{ position: absolute; left:60px; top: 12px; width: 80px; height: 50px; } .menu{ position: absolute; top: 10px; right:20px; width: 700px; height: 50px; display:flex; justify-content: flex-start; align-items: center; } .menu ul li{ padding: 0 22px; display: inline-block; list-style: none; } .menu ul li a{ text-decoration: none; color: #cc0000; } .search{ position: relative; left: 20px; } .search img{ position: absolute; right: 8px; width: 20px; top: 5px; } .search input{ padding: 0px 10px; margin-left: 10px; width: 200px; height: 25px; border-radius: 5px; font-size: 16px; border-color: #cc0000; } .menu ul li a:hover{ color: rgb(117, 117, 117); } /* Menu-final*/ .section1{ width: 90%; height: 600px; padding-top: 50px; margin-bottom: 40px; } /*Conteudo-principal*/ main{ width: 100%; margin: 0 auto; padding-top: 75px; display: grid; grid-template-columns: repeat(2, auto); } #mapa{ margin: 50px 50px 0 50px; } #mapa h3{ margin: 20px; } #direito { padding-top: 58px; margin-right: 50px; } #direito h3{ margin: 20px; } #direito input { width: 300px; } button { display: block; } .button { border: none; color: white; padding: 16px 32px; text-align: center; text-decoration: none; display: inline-block; font-size: 16px; margin: 4px 2px; transition-duration: 0.4s; } button a{ text-decoration: none; color: black; } .button1 { background-color: rgb(253, 252, 252); color: black; border: 2px solid #070707; margin-top: 20px; } .button1:hover { background-color: #080808; } .button1:hover a{ color: #FFFBFB; } /* ------- rodape -------*/ .footer { position: relative; top:180px; width: 100%; height: 150px; background-color: #cc0000; } .footer #texto_footer { float: left; width: 300px; padding: 20px; margin-left: 100px; line-height: 1.5em; } .footer #texto_footer img { width: 20px; display: inline; margin-right: 5px; } .footer #redes_footer { margin-right: 280px; } .footer figure { float: right; width: 300px; display: flex; justify-items: space-around; } #redes_footer figure a { margin: 35px 20px; } .footer span { clear: both; font-style: italic; font-size: 12px; position: relative; top: 90px; left: 400px; }
niteo1/css/estilo_contato.css
* { margin: 0; padding: 0; } @font-face{ font-family: RobotoRegular; src: url(../fonts/Roboto-Regular.ttf); } .container{ font-family: RobotoRegular; } /*Menu-Inicio*/ .header{ z-index: 1; position: fixed; display: flex; align-items: center; justify-content: flex-end; width: 100%; height: 75px; background-image: linear-gradient(rgb(248, 248, 248), rgb(255, 255, 255)); } .header .logo_niteo img{ position: absolute; left:60px; top: 12px; width: 80px; height: 50px; } .menu{ position: absolute; top: 10px; right:20px; width: 700px; height: 50px; display:flex; justify-content: flex-start; align-items: center; } .menu ul li{ padding: 0 22px; display: inline-block; list-style: none; } .menu ul li a{ text-decoration: none; color: #cc0000; } .search{ position: relative; left: 20px; } .search img{ position: absolute; right: 8px; width: 20px; top: 5px; } .search input{ padding: 0px 10px; margin-left: 10px; width: 200px; height: 25px; border-radius: 5px; font-size: 16px; border-color: #cc0000; } .menu ul li a:hover{ color: rgb(117, 117, 117); } /* Menu-final*/ .section1{ width: 90%; height: 600px; padding-top: 50px; margin-bottom: 40px; } /*Conteudo-principal*/ main{ width: 100%; margin: 0 auto; padding-top: 75px; display: grid; grid-template-columns: repeat(2, auto); } #mapa{ margin: 50px 50px 0 50px; } #mapa h3{ margin: 20px; } #direito { padding-top: 58px; margin-right: 50px; } #direito h3{ margin: 20px; } #direito input { width: 300px; } button { display: block; } .button { border: none; color: white; padding: 16px 32px; text-align: center; text-decoration: none; display: inline-block; font-size: 16px; margin: 4px 2px; transition-duration: 0.4s; } button a{ text-decoration: none; color: black; } .button1 { background-color: rgb(253, 252, 252); color: black; border: 2px solid #070707; margin-top: 20px; } .button1:hover { background-color: #080808; } .button1:hover a{ color: #FFFBFB; } /* ------- rodape -------*/ .footer { position: relative; top:180px; width: 100%; height: 150px; background-color: #cc0000; } .footer #texto_footer { float: left; width: 300px; padding: 20px; margin-left: 100px; line-height: 1.5em; } .footer #texto_footer img { width: 20px; display: inline; margin-right: 5px; } .footer #redes_footer { margin-right: 280px; } .footer figure { float: right; width: 300px; display: flex; justify-items: space-around; } #redes_footer figure a { margin: 35px 20px; } .footer span { clear: both; font-style: italic; font-size: 12px; position: relative; top: 90px; left: 400px; }
0.326271
0.092852
.navig{ display: flex; background-color:green; width: 100%; } .naviglist{ display: flex; } .naviglist ul{ display: flex; justify-content: space-between; } .naviglist ul li{ margin: 50px; list-style: none; } .naviglist a{ text-decoration: none; } #navghome{ color: red; font-size:40px; font-style: italic; } .back{ background-image: url("images/e24c3dfe435b6642418d51753a876ce7\ \(1\).jpg"); height: 400px; } .back P{ text-align: center; color:chartreuse; font-size: 30px; font-style: italic; padding-top: 150px; } .marq img{ height: 200px; width: 220px; margin: 30px; } h2{ text-align: center; } .marq{ background-image: url("images/252d67a42b8b48fc60d1c5d2c4ab9ec0.jpg"); } .menulist ul{ display: flex; } .menulist{ list-style: none; height: 280px; width: 280px; border-radius: 5px; box-shadow: 0px 1px 2px 3px chartreuse; margin-top: 60px; margin: 20px; margin-left: 1px; justify-content: space-between; } .menulist img{ height: 200px; width: 250px; padding: 5px; } .menulist h2{ color: red; font-size: 20px; text-align: center; } .menulist p{ text-align: center; } #wel{ font-size: 25px; color: chartreuse; padding-top: 30px; text-align: center; font-style: italic; } .card{ background-color: green;} .message input{ height: 100px; width: 350px; padding: 40px; } .message{ margin-top: 20px; text-align: center; display: none; } h6{ text-align: center; color: red; font-size: 25px; } .form input{ height: 20px; color: #0D4A85; } label{ color:#0D4A85 ; font-size: 20px; text-align: center; } #link{ display: flex; justify-content: space-around; background-color:grey; width: 100%; height: 200px; margin-top: 60px; } .link h4{ color: white; } .link .search input{ height: 30px; padding-left: 30px; } .link .us ul{ list-style: none; } .link .us ul li a{ text-decoration: none; } .footer{ display: flex; justify-content: space-between; padding-left: 80px; padding-right: 100px; } #piz{ color: black; } .Akan{ color: blue; } nav{ background-color:grey ; width: 100%; } h5{ color: white; } .footer .social{ background-color: white; height: 20px; padding: 5px; }
index.css
.navig{ display: flex; background-color:green; width: 100%; } .naviglist{ display: flex; } .naviglist ul{ display: flex; justify-content: space-between; } .naviglist ul li{ margin: 50px; list-style: none; } .naviglist a{ text-decoration: none; } #navghome{ color: red; font-size:40px; font-style: italic; } .back{ background-image: url("images/e24c3dfe435b6642418d51753a876ce7\ \(1\).jpg"); height: 400px; } .back P{ text-align: center; color:chartreuse; font-size: 30px; font-style: italic; padding-top: 150px; } .marq img{ height: 200px; width: 220px; margin: 30px; } h2{ text-align: center; } .marq{ background-image: url("images/252d67a42b8b48fc60d1c5d2c4ab9ec0.jpg"); } .menulist ul{ display: flex; } .menulist{ list-style: none; height: 280px; width: 280px; border-radius: 5px; box-shadow: 0px 1px 2px 3px chartreuse; margin-top: 60px; margin: 20px; margin-left: 1px; justify-content: space-between; } .menulist img{ height: 200px; width: 250px; padding: 5px; } .menulist h2{ color: red; font-size: 20px; text-align: center; } .menulist p{ text-align: center; } #wel{ font-size: 25px; color: chartreuse; padding-top: 30px; text-align: center; font-style: italic; } .card{ background-color: green;} .message input{ height: 100px; width: 350px; padding: 40px; } .message{ margin-top: 20px; text-align: center; display: none; } h6{ text-align: center; color: red; font-size: 25px; } .form input{ height: 20px; color: #0D4A85; } label{ color:#0D4A85 ; font-size: 20px; text-align: center; } #link{ display: flex; justify-content: space-around; background-color:grey; width: 100%; height: 200px; margin-top: 60px; } .link h4{ color: white; } .link .search input{ height: 30px; padding-left: 30px; } .link .us ul{ list-style: none; } .link .us ul li a{ text-decoration: none; } .footer{ display: flex; justify-content: space-between; padding-left: 80px; padding-right: 100px; } #piz{ color: black; } .Akan{ color: blue; } nav{ background-color:grey ; width: 100%; } h5{ color: white; } .footer .social{ background-color: white; height: 20px; padding: 5px; }
0.416797
0.065187
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 微软雅黑; text-decoration: none; } .wrapper { width: 100%; min-width: 1281px; overflow: auto; } .header_top { height: 58px; width: 100%; } .header_logo { width: 105px; margin-left: 60px; } .header_logo img { width: 32px; height: 32px; margin: 13px 0; } .header_logo p { color: #393a3a; font-size: 20px; font-weight: 500; float: right; margin: 19px 0 12px 12px; } .header_nav { float: left; position: absolute; right: 123px; top: 18px; } .header_nav ul li { list-style: none; float: left; } .header_nav ul li a { width: 64px; text-align: center; display: inline-block; margin-left: 23px; margin-right: 23px; margin-bottom: 18px; text-decoration: none; color: #787b83; } .header_nav ul li #a_1 { width: 32px; } .header_nav ul li a:hover { color: #e74f4d; } .header_nav ul #li_1:hover { border-bottom: 4px solid #e74f4d; } .header_nav ul #li_2:hover { border-bottom: 4px solid #e74f4d; } .header_nav ul #li_3:hover { border-bottom: 4px solid #e74f4d; } .header_nav ul #li_4:hover { border-bottom: 4px solid #e74f4d; } .header_nav ul #li_5:hover { border-bottom: 4px solid #e74f4d; } .header_login { width: 55px; position: absolute; right: 68px; top: 18px; } .header_login img { position: relative; top: 2px; } .header_login a { color: #e9605e; } .bk { position: relative; } .bk_fonts { position: absolute; left: 116px; top: 230px; color: #FFFFFF; } .bk img { width: 100%; } .bk .bk_fonts .p_1 { font-size: 54px; } .bk .bk_fonts .p_2 { width: 295px; font-size: 20px; margin-top: 12px; margin-bottom: 68px; margin-left: 10px; line-height: 32px; } .bk .bk_fonts a { display: block; width: 329px; margin-left: 10px; height: 63px; line-height: 63px; background-color: #e74f4d; text-decoration: none; color: #FFFFFF; font-size: 30px; text-align: center; } .bk_bottom p { height: 52px; margin-top: 47px; padding: 0 84px 18px 0; border-right: 1px solid #767777; text-align: center; } .bk_bottom .bk_wrapper { height: 146px; font-size: 14px; float: left; color: #767777; } .bk_bottom .wrapper_1 { width: 236px; margin: 45px 0 67px 90px; } .bk_bottom .wrapper_1 img { margin-left: 56px; } .bk_bottom .wrapper_1 p { width: 236px; } .bk_bottom .wrapper_2 { width: 240px; margin: 45px 0 67px 96px; } .bk_bottom .wrapper_2 img { margin-left: 60px; } .bk_bottom .wrapper_2 p { width: 240px; } .bk_bottom .wrapper_3 { width: 247px; margin: 45px 0 67px 72px; } .bk_bottom .wrapper_3 img { margin-left: 62px; } .bk_bottom .wrapper_3 p { width: 247px; } .bk_bottom .wrapper_4 { width: 158px; margin: 45px 0 67px 72px; } .bk_bottom .wrapper_4 img { margin-left: 58px; } .bk_bottom .wrapper_4 p { width: 158px; padding: 0; border: 0; } .new_world { clear: both; width: 100%; height: 360px; color: #a1a1a1; font-size: 54px; background-color: #ededec; padding: 90px 237px 82px 216px; } .new_world img { display: block; margin: 0 auto; } .new_world p { margin-top: 46px; } .search_info { position: relative; } .search_info img { width: 100%; } .search_info .info_wrapper { width: 100%; height: 358.328px; padding-top: 52px; padding-bottom: 134px; position: absolute; top: 0; text-align: center; } .search_info .info_wrapper p { color: #FFFFFF; font-size: 14px; } .search_info .info_wrapper p:first-child { color: #FFFFFF; font-size: 22px; } .search_info .info_wrapper hr { width: 32px; border: 2px solid #FFFFFF; margin: 12px auto 22px auto; } .search_info .info_wrapper .info_select { margin: 54px auto 130px auto; } .search_info .info_wrapper .info_select select { width: 236px; height: 36px; margin-left: 15px; margin-right: 15px; border: 0; } .search_info .info_wrapper .info_select select:focus { /*border: 2px solid #be4e48;*/ } .search_info .info_wrapper .info_select input { width: 236px; height: 36px; margin-left: 15px; margin-right: 15px; padding-left: 10px; background-color: #be4e48; font-size: 16px; border: 0; color: #FFFFFF; letter-spacing: 12px; text-align: center; } .activity { width: 100%; height: 606px; background-color: #f8f8f7; padding: 102px 126px 116px 130px; text-align: center; color: #818181; font-size: 12px; } .activity div { float: left; } .activity div img { width: 220px; height: 336px; margin-left: 20px; margin-right: 20px; } .activity .img_2 img { margin-top: 10px; } .activity div span { margin-top: 10px; display: block; } .activity div .span { color: #323333; font-size: 16px; } .activity .span_0 { color: #323333; font-size: 22px; margin-top: 0; padding-left: 30px; letter-spacing: 36px; text-align: center; } .more_info { position: relative; } .more_info img { width: 66.67%; } .more_info .info_1 { width: 66.67%; height: 570px; padding-top: 132px; padding-bottom: 154px; text-align: center; position: absolute; top: 0; color: #FFFFFF; } .more_info .info_1 span { display: block; } .more_info .info_1 .span_1 { position: relative; top: -12px; font-size: 49px; } .more_info .info_1 .span_2 { position: relative; top: -40px; font-size: 122px; } .more_info .info_1 .span_3 { position: relative; top: -18px; font-size: 24px; } .more_info .info_1 .span_4 { position: relative; left: -24px; top: -2px; font-size: 20px; } .more_info .info_1 .span_triangel { width: 0; height: 0; border-top: 24px solid transparent; border-bottom: 24px solid transparent; border-right: 24px solid #FFFFFF; position: relative; right: -864px; top: -164px; } .more_info .info_2 { width: 33.67%; padding-top: 166px; padding-bottom: 110px; text-align: center; color: #b0b0b0; font-size: 12px; line-height: 32px; position: absolute; right: 0; top: 0; } .more_info .info_2 span { color: #323333; font-size: 20px; } .more_info .info_2 .span_01 { display: inline-block; color: #e7504d; margin-bottom: 14px; position: relative; left: -10px; } .more_info .info_2 .span_xieXian { display: inline-block; width: 28px; border-bottom: 2px solid #7f8080; -webkit-transform: rotate(135deg); /*Safari 4+,Google Chrome 1+ */ -moz-transform: rotate(135deg); /*Firefox 3.5+*/ filter: progid:DXImageTransform.Microsoft.BasicImage(Rotation=1.35); /*IE*/ position: relative; top: -4px; left: -5px; } .more_info .info_2 input { width: 106px; height: 32px; margin-top: 32px; border: 1px solid #e5676a; background-color: #FFFFFF; font-size: 14px; color: #e6797c; } .more_info .info_2 .span_circle { width: 14px; height: 14px; border-radius: 50%; border: 1px solid #929293; margin-top: 26px; display: inline-block; } .more_info .info_2 .span_circle_1 { background-color: #929293; } .more_info .info_3 div { width: 33.33%; height: 522px; float: left; text-align: center; font-size: 20px; line-height: 30px; } .more_info .info_3 div input { width: 170px; height: 44px; font-size: 20px; background-color: transparent; position: relative; top: 46px; } .more_info .info_3 div hr { width: 30px; position: relative; left: 76px; top: 18px; } .more_info .info_3 .info_3_div_1 { padding: 175px 130px 204px 130px; background-color: #e74f4d; color: #FFFFFF; } .more_info .info_3 .info_3_div_1 hr { border: 1px solid #FFFFFF; } .more_info .info_3 .info_3_div_1 input { border: 1px solid #FFFFFF; color: #FFFFFF; } .more_info .info_3 .info_3_div_2 { padding: 175px 130px 204px 130px; background-color: #FFFFFF; color: #000000; } .more_info .info_3 .info_3_div_2 hr { border: 1px solid #ababab; } .more_info .info_3 .info_3_div_2 input { border: 1px solid #e95a58; color: #e74f4d; } .more_info .info_3 .info_3_div_3 img { width: 100%; height: 100%; } .volunteer_wrapper { clear: both; padding-top: 120px; padding-bottom: 170px; position: relative; } .volunteer_wrapper .volunteer_title { height: 300px; text-align: center; } .volunteer_wrapper .volunteer_title hr { width: 30px; border: 1px solid #e74f4d; margin: 10px auto 10px auto; position: relative; } .volunteer_wrapper .volunteer_title p { font-size: 14px; color: #aaaaaa; } .volunteer_wrapper .volunteer_title p:first-child { color: #323333; font-size: 22px; letter-spacing: 2px; } .volunteer_wrapper .volunteer_left { width: 40%; padding-left: 12%; padding-right: 7%; display: inline-block; } .volunteer_wrapper .volunteer_left .left_1 { position: relative; } .volunteer_wrapper .volunteer_left .left_2 { position: relative; } .volunteer_wrapper .volunteer_left .left_3 { position: relative; } .volunteer_wrapper .volunteer_left section h3 { font-size: 14px; color: #666160; margin-bottom: 26px; } .volunteer_wrapper .volunteer_left section p { color: #9d9b9a; font-size: 12px; line-height: 20px; } .volunteer_wrapper .volunteer_left section p span { letter-spacing: 6px; display: inline-block; margin-left: 6px; } .volunteer_wrapper .volunteer_left section .xieXian { display: inline-block; width: 8px; border: 1px solid #979291; /*position: relative;*/ /*top:-4px;*/ /*left: -5px;*/ } .volunteer_wrapper .volunteer_left section .xieXian_l { -webkit-transform: rotate(45deg); /*Safari 4+,Google Chrome 1+ */ -moz-transform: rotate(45deg); /*Firefox 3.5+*/ filter: progid:DXImageTransform.Microsoft.BasicImage(Rotation=0.45); /*IE*/ position: absolute; top: 98px; left: 254px; } .volunteer_wrapper .volunteer_left section .xieXian_r { -webkit-transform: rotate(135deg); /*Safari 4+,Google Chrome 1+ */ -moz-transform: rotate(135deg); /*Firefox 3.5+*/ filter: progid:DXImageTransform.Microsoft.BasicImage(Rotation=1.35); /*IE*/ position: absolute; top: 98px; left: 260px; } .volunteer_wrapper .volunteer_left section .span_more { display: block; font-size: 6px; color: #959291; text-align: right; margin-top: 4px; } .volunteer_wrapper .volunteer_left .left_2 h3 { margin-top: 40px; } .volunteer_wrapper .volunteer_left .left_3 h3 { margin-top: 20px; margin-bottom: 12px; } .volunteer_wrapper .volunteer_left .left_3 .xieXian_l{ position: absolute; top: 40px; } .volunteer_wrapper .volunteer_left .left_3 .xieXian_r{ position: absolute; top: 40px; } .volunteer_wrapper .volunteer_right{ display: inline-block; width: 59.65%; } .volunteer_wrapper .volunteer_right div{ width: 312px; height: 40px; border: 0; background-color: #ededef; margin-right: 18px; margin-bottom: 18px; color: #787474; display: inline-block; font-size: 12px; position: relative; } .volunteer_wrapper .volunteer_right div label { position: relative; top: 10px; left: 18px; } .volunteer_wrapper .volunteer_right div input { width: 260px; height: 40px; position: absolute; top: 0; right: 0; border: 0; background-color: transparent; } .volunteer_wrapper .volunteer_right .div_34 input { width: 236px; height: 40px; } .volunteer_wrapper .volunteer_right .div_5 { width: 648px; height: 120px; } .volunteer_wrapper .volunteer_right .div_5 label{ position: relative; top: 10px; left: 18px; } .volunteer_wrapper .volunteer_right .div_5 textarea{ position: absolute; top: 0; right: 0; width: 486px; height: 120px; background-color: transparent; border: 0; resize: none; } .volunteer_wrapper .volunteer_right .div_6{ width: 648px; height: 40px; } .volunteer_wrapper .volunteer_right .div_6 input{ width: 648px; height: 40px; } .wrapper .footer_wrapper .footer_top{ width: 100%; height: 415px; background-color: #32363e; text-align: center; color: #FFFFFF; padding-top: 90px; position: relative; } .wrapper .footer_wrapper .footer_top h2{ font-size: 20px; margin-bottom: 10px; } .wrapper .footer_wrapper .footer_top p{ font-size: 14px; line-height: 20px; } .wrapper .footer_wrapper .footer_top input{ width: 80px; height: 40px; background-color:#6f7278; color: #f7f7f8; font-size: 16px; border: 0; letter-spacing: 10px; padding-left: 6px; } .wrapper .footer_wrapper .footer_top .input_1{ width: 430px; height: 40px; background-color: #FFFFFF; color: #f7f7f8; font-size: 16px; border: 0; letter-spacing: 1px; padding-left: 0; position: relative; top: 34px; left: 4px; } .wrapper .footer_wrapper .footer_top .input_2{ position: relative; top: 34px; left: -4px; } .wrapper .footer_wrapper .footer_bottom{ width: 100%; height: 56px; background-color: #2f2f38; font-size: 10px; padding-top: 32px; } .wrapper .footer_wrapper .footer_bottom .a_1{ color: #FFFFFF; padding-left: 12.80%; } .wrapper .footer_wrapper .footer_bottom .a_2{ color: #FFFFFF; padding-left: 70%; }
task_1_07/index.css
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 微软雅黑; text-decoration: none; } .wrapper { width: 100%; min-width: 1281px; overflow: auto; } .header_top { height: 58px; width: 100%; } .header_logo { width: 105px; margin-left: 60px; } .header_logo img { width: 32px; height: 32px; margin: 13px 0; } .header_logo p { color: #393a3a; font-size: 20px; font-weight: 500; float: right; margin: 19px 0 12px 12px; } .header_nav { float: left; position: absolute; right: 123px; top: 18px; } .header_nav ul li { list-style: none; float: left; } .header_nav ul li a { width: 64px; text-align: center; display: inline-block; margin-left: 23px; margin-right: 23px; margin-bottom: 18px; text-decoration: none; color: #787b83; } .header_nav ul li #a_1 { width: 32px; } .header_nav ul li a:hover { color: #e74f4d; } .header_nav ul #li_1:hover { border-bottom: 4px solid #e74f4d; } .header_nav ul #li_2:hover { border-bottom: 4px solid #e74f4d; } .header_nav ul #li_3:hover { border-bottom: 4px solid #e74f4d; } .header_nav ul #li_4:hover { border-bottom: 4px solid #e74f4d; } .header_nav ul #li_5:hover { border-bottom: 4px solid #e74f4d; } .header_login { width: 55px; position: absolute; right: 68px; top: 18px; } .header_login img { position: relative; top: 2px; } .header_login a { color: #e9605e; } .bk { position: relative; } .bk_fonts { position: absolute; left: 116px; top: 230px; color: #FFFFFF; } .bk img { width: 100%; } .bk .bk_fonts .p_1 { font-size: 54px; } .bk .bk_fonts .p_2 { width: 295px; font-size: 20px; margin-top: 12px; margin-bottom: 68px; margin-left: 10px; line-height: 32px; } .bk .bk_fonts a { display: block; width: 329px; margin-left: 10px; height: 63px; line-height: 63px; background-color: #e74f4d; text-decoration: none; color: #FFFFFF; font-size: 30px; text-align: center; } .bk_bottom p { height: 52px; margin-top: 47px; padding: 0 84px 18px 0; border-right: 1px solid #767777; text-align: center; } .bk_bottom .bk_wrapper { height: 146px; font-size: 14px; float: left; color: #767777; } .bk_bottom .wrapper_1 { width: 236px; margin: 45px 0 67px 90px; } .bk_bottom .wrapper_1 img { margin-left: 56px; } .bk_bottom .wrapper_1 p { width: 236px; } .bk_bottom .wrapper_2 { width: 240px; margin: 45px 0 67px 96px; } .bk_bottom .wrapper_2 img { margin-left: 60px; } .bk_bottom .wrapper_2 p { width: 240px; } .bk_bottom .wrapper_3 { width: 247px; margin: 45px 0 67px 72px; } .bk_bottom .wrapper_3 img { margin-left: 62px; } .bk_bottom .wrapper_3 p { width: 247px; } .bk_bottom .wrapper_4 { width: 158px; margin: 45px 0 67px 72px; } .bk_bottom .wrapper_4 img { margin-left: 58px; } .bk_bottom .wrapper_4 p { width: 158px; padding: 0; border: 0; } .new_world { clear: both; width: 100%; height: 360px; color: #a1a1a1; font-size: 54px; background-color: #ededec; padding: 90px 237px 82px 216px; } .new_world img { display: block; margin: 0 auto; } .new_world p { margin-top: 46px; } .search_info { position: relative; } .search_info img { width: 100%; } .search_info .info_wrapper { width: 100%; height: 358.328px; padding-top: 52px; padding-bottom: 134px; position: absolute; top: 0; text-align: center; } .search_info .info_wrapper p { color: #FFFFFF; font-size: 14px; } .search_info .info_wrapper p:first-child { color: #FFFFFF; font-size: 22px; } .search_info .info_wrapper hr { width: 32px; border: 2px solid #FFFFFF; margin: 12px auto 22px auto; } .search_info .info_wrapper .info_select { margin: 54px auto 130px auto; } .search_info .info_wrapper .info_select select { width: 236px; height: 36px; margin-left: 15px; margin-right: 15px; border: 0; } .search_info .info_wrapper .info_select select:focus { /*border: 2px solid #be4e48;*/ } .search_info .info_wrapper .info_select input { width: 236px; height: 36px; margin-left: 15px; margin-right: 15px; padding-left: 10px; background-color: #be4e48; font-size: 16px; border: 0; color: #FFFFFF; letter-spacing: 12px; text-align: center; } .activity { width: 100%; height: 606px; background-color: #f8f8f7; padding: 102px 126px 116px 130px; text-align: center; color: #818181; font-size: 12px; } .activity div { float: left; } .activity div img { width: 220px; height: 336px; margin-left: 20px; margin-right: 20px; } .activity .img_2 img { margin-top: 10px; } .activity div span { margin-top: 10px; display: block; } .activity div .span { color: #323333; font-size: 16px; } .activity .span_0 { color: #323333; font-size: 22px; margin-top: 0; padding-left: 30px; letter-spacing: 36px; text-align: center; } .more_info { position: relative; } .more_info img { width: 66.67%; } .more_info .info_1 { width: 66.67%; height: 570px; padding-top: 132px; padding-bottom: 154px; text-align: center; position: absolute; top: 0; color: #FFFFFF; } .more_info .info_1 span { display: block; } .more_info .info_1 .span_1 { position: relative; top: -12px; font-size: 49px; } .more_info .info_1 .span_2 { position: relative; top: -40px; font-size: 122px; } .more_info .info_1 .span_3 { position: relative; top: -18px; font-size: 24px; } .more_info .info_1 .span_4 { position: relative; left: -24px; top: -2px; font-size: 20px; } .more_info .info_1 .span_triangel { width: 0; height: 0; border-top: 24px solid transparent; border-bottom: 24px solid transparent; border-right: 24px solid #FFFFFF; position: relative; right: -864px; top: -164px; } .more_info .info_2 { width: 33.67%; padding-top: 166px; padding-bottom: 110px; text-align: center; color: #b0b0b0; font-size: 12px; line-height: 32px; position: absolute; right: 0; top: 0; } .more_info .info_2 span { color: #323333; font-size: 20px; } .more_info .info_2 .span_01 { display: inline-block; color: #e7504d; margin-bottom: 14px; position: relative; left: -10px; } .more_info .info_2 .span_xieXian { display: inline-block; width: 28px; border-bottom: 2px solid #7f8080; -webkit-transform: rotate(135deg); /*Safari 4+,Google Chrome 1+ */ -moz-transform: rotate(135deg); /*Firefox 3.5+*/ filter: progid:DXImageTransform.Microsoft.BasicImage(Rotation=1.35); /*IE*/ position: relative; top: -4px; left: -5px; } .more_info .info_2 input { width: 106px; height: 32px; margin-top: 32px; border: 1px solid #e5676a; background-color: #FFFFFF; font-size: 14px; color: #e6797c; } .more_info .info_2 .span_circle { width: 14px; height: 14px; border-radius: 50%; border: 1px solid #929293; margin-top: 26px; display: inline-block; } .more_info .info_2 .span_circle_1 { background-color: #929293; } .more_info .info_3 div { width: 33.33%; height: 522px; float: left; text-align: center; font-size: 20px; line-height: 30px; } .more_info .info_3 div input { width: 170px; height: 44px; font-size: 20px; background-color: transparent; position: relative; top: 46px; } .more_info .info_3 div hr { width: 30px; position: relative; left: 76px; top: 18px; } .more_info .info_3 .info_3_div_1 { padding: 175px 130px 204px 130px; background-color: #e74f4d; color: #FFFFFF; } .more_info .info_3 .info_3_div_1 hr { border: 1px solid #FFFFFF; } .more_info .info_3 .info_3_div_1 input { border: 1px solid #FFFFFF; color: #FFFFFF; } .more_info .info_3 .info_3_div_2 { padding: 175px 130px 204px 130px; background-color: #FFFFFF; color: #000000; } .more_info .info_3 .info_3_div_2 hr { border: 1px solid #ababab; } .more_info .info_3 .info_3_div_2 input { border: 1px solid #e95a58; color: #e74f4d; } .more_info .info_3 .info_3_div_3 img { width: 100%; height: 100%; } .volunteer_wrapper { clear: both; padding-top: 120px; padding-bottom: 170px; position: relative; } .volunteer_wrapper .volunteer_title { height: 300px; text-align: center; } .volunteer_wrapper .volunteer_title hr { width: 30px; border: 1px solid #e74f4d; margin: 10px auto 10px auto; position: relative; } .volunteer_wrapper .volunteer_title p { font-size: 14px; color: #aaaaaa; } .volunteer_wrapper .volunteer_title p:first-child { color: #323333; font-size: 22px; letter-spacing: 2px; } .volunteer_wrapper .volunteer_left { width: 40%; padding-left: 12%; padding-right: 7%; display: inline-block; } .volunteer_wrapper .volunteer_left .left_1 { position: relative; } .volunteer_wrapper .volunteer_left .left_2 { position: relative; } .volunteer_wrapper .volunteer_left .left_3 { position: relative; } .volunteer_wrapper .volunteer_left section h3 { font-size: 14px; color: #666160; margin-bottom: 26px; } .volunteer_wrapper .volunteer_left section p { color: #9d9b9a; font-size: 12px; line-height: 20px; } .volunteer_wrapper .volunteer_left section p span { letter-spacing: 6px; display: inline-block; margin-left: 6px; } .volunteer_wrapper .volunteer_left section .xieXian { display: inline-block; width: 8px; border: 1px solid #979291; /*position: relative;*/ /*top:-4px;*/ /*left: -5px;*/ } .volunteer_wrapper .volunteer_left section .xieXian_l { -webkit-transform: rotate(45deg); /*Safari 4+,Google Chrome 1+ */ -moz-transform: rotate(45deg); /*Firefox 3.5+*/ filter: progid:DXImageTransform.Microsoft.BasicImage(Rotation=0.45); /*IE*/ position: absolute; top: 98px; left: 254px; } .volunteer_wrapper .volunteer_left section .xieXian_r { -webkit-transform: rotate(135deg); /*Safari 4+,Google Chrome 1+ */ -moz-transform: rotate(135deg); /*Firefox 3.5+*/ filter: progid:DXImageTransform.Microsoft.BasicImage(Rotation=1.35); /*IE*/ position: absolute; top: 98px; left: 260px; } .volunteer_wrapper .volunteer_left section .span_more { display: block; font-size: 6px; color: #959291; text-align: right; margin-top: 4px; } .volunteer_wrapper .volunteer_left .left_2 h3 { margin-top: 40px; } .volunteer_wrapper .volunteer_left .left_3 h3 { margin-top: 20px; margin-bottom: 12px; } .volunteer_wrapper .volunteer_left .left_3 .xieXian_l{ position: absolute; top: 40px; } .volunteer_wrapper .volunteer_left .left_3 .xieXian_r{ position: absolute; top: 40px; } .volunteer_wrapper .volunteer_right{ display: inline-block; width: 59.65%; } .volunteer_wrapper .volunteer_right div{ width: 312px; height: 40px; border: 0; background-color: #ededef; margin-right: 18px; margin-bottom: 18px; color: #787474; display: inline-block; font-size: 12px; position: relative; } .volunteer_wrapper .volunteer_right div label { position: relative; top: 10px; left: 18px; } .volunteer_wrapper .volunteer_right div input { width: 260px; height: 40px; position: absolute; top: 0; right: 0; border: 0; background-color: transparent; } .volunteer_wrapper .volunteer_right .div_34 input { width: 236px; height: 40px; } .volunteer_wrapper .volunteer_right .div_5 { width: 648px; height: 120px; } .volunteer_wrapper .volunteer_right .div_5 label{ position: relative; top: 10px; left: 18px; } .volunteer_wrapper .volunteer_right .div_5 textarea{ position: absolute; top: 0; right: 0; width: 486px; height: 120px; background-color: transparent; border: 0; resize: none; } .volunteer_wrapper .volunteer_right .div_6{ width: 648px; height: 40px; } .volunteer_wrapper .volunteer_right .div_6 input{ width: 648px; height: 40px; } .wrapper .footer_wrapper .footer_top{ width: 100%; height: 415px; background-color: #32363e; text-align: center; color: #FFFFFF; padding-top: 90px; position: relative; } .wrapper .footer_wrapper .footer_top h2{ font-size: 20px; margin-bottom: 10px; } .wrapper .footer_wrapper .footer_top p{ font-size: 14px; line-height: 20px; } .wrapper .footer_wrapper .footer_top input{ width: 80px; height: 40px; background-color:#6f7278; color: #f7f7f8; font-size: 16px; border: 0; letter-spacing: 10px; padding-left: 6px; } .wrapper .footer_wrapper .footer_top .input_1{ width: 430px; height: 40px; background-color: #FFFFFF; color: #f7f7f8; font-size: 16px; border: 0; letter-spacing: 1px; padding-left: 0; position: relative; top: 34px; left: 4px; } .wrapper .footer_wrapper .footer_top .input_2{ position: relative; top: 34px; left: -4px; } .wrapper .footer_wrapper .footer_bottom{ width: 100%; height: 56px; background-color: #2f2f38; font-size: 10px; padding-top: 32px; } .wrapper .footer_wrapper .footer_bottom .a_1{ color: #FFFFFF; padding-left: 12.80%; } .wrapper .footer_wrapper .footer_bottom .a_2{ color: #FFFFFF; padding-left: 70%; }
0.447702
0.102889
.essential-addons_page_template-cloud #wpwrap, .essential-addons_page_template-cloud #wpcontent, .essential-addons_page_template-cloud #wpcontent #wpbody, .essential-addons_page_template-cloud #wpcontent #wpbody-content, .essential-addons_page_template-cloud #wpcontent #wpbody #wpbody-content, .essential-addons_page_template-cloud #wpcontent #wpbody #wpbody-content .wrap, .essential-addons_page_template-cloud #wpcontent #wpbody #wpbody-content .wrap .template-cloud, .essential-addons_page_template-cloud #wpcontent #wpbody #wpbody-content .wrap .template-cloud-body { height: 100%; } .essential-addons_page_template-cloud #wpcontent { padding-left: 0px; } .essential-addons_page_template-cloud #wpcontent #wpbody #wpbody-content { padding-bottom: 0px; } .essential-addons_page_template-cloud #wpcontent #wpbody #wpbody-content .wrap { margin: 0px; padding: 0px; } .template-cloud-header { display: flex; align-items: stretch; box-shadow: 0px 0px 10px 0px #00000024; overflow: visible; z-index: 99; position: relative; background-color: #fff; padding: 15px 20px; } .template-cloud-body { box-sizing: border-box; height: calc(100% - 80px) !important; } .template-cloud-install { display: flex; flex-flow: column nowrap; width: 100%; background-image: url(../images/templately/login-bg.png); background-size: cover; background-repeat: no-repeat; color: white; align-items: center; justify-content: center; box-sizing: border-box; height: 100%; max-height: 88vh; } .templately-left { padding: 10px; } .templately-right { padding: 10px; max-width: 550px; } .templately-admin-title { font-size: 16px; text-align: left; } .templately-cloud-title { text-align: center; margin-bottom: 50px; } .templately-installer-wrapper { display: flex; flex-flow: row wrap; justify-content: center; align-items: center; width: 100%; } .templately-cloud-title h1 { color: #fff; font-size: 50px; font-weight: 700; line-height: 1.2; } .templately-cloud-title p { font-size: 18px; line-height: 1.6; color: #fff; } .templately-admin-install { background-color: transparent; color: #fff; padding: 50px; border-radius: 10px; } .templately-admin-install p { font-size: 18px; color: #fff; line-height: 1.6; } .templately-admin-install button.eae-activate-templately { background-color: #fff; border: 1px solid rgb(96, 114, 255, 0); padding: 15px 30px; border-radius: 50px; color: rgb(96, 114, 255); font-size: 18px; margin: 10px 0; font-weight: 600; cursor: pointer; transition: all 0.3s; } .templately-admin-install button.eae-activate-templately:hover { background-color: rgb(250, 145, 150); color: rgb(255, 255, 255); } .templately-cloud-video-container { background-color: #fff; padding: 8px; width: 620px; max-width: 100%; border-radius: 4px; box-shadow: 0 0 30px 5px rgba(0, 0, 0, 0.15); } .templately-cloud-video-container iframe { width: 100%; }
wordpress/wp-content/plugins/essential-addons-for-elementor-lite/assets/admin/css/cloud.css
.essential-addons_page_template-cloud #wpwrap, .essential-addons_page_template-cloud #wpcontent, .essential-addons_page_template-cloud #wpcontent #wpbody, .essential-addons_page_template-cloud #wpcontent #wpbody-content, .essential-addons_page_template-cloud #wpcontent #wpbody #wpbody-content, .essential-addons_page_template-cloud #wpcontent #wpbody #wpbody-content .wrap, .essential-addons_page_template-cloud #wpcontent #wpbody #wpbody-content .wrap .template-cloud, .essential-addons_page_template-cloud #wpcontent #wpbody #wpbody-content .wrap .template-cloud-body { height: 100%; } .essential-addons_page_template-cloud #wpcontent { padding-left: 0px; } .essential-addons_page_template-cloud #wpcontent #wpbody #wpbody-content { padding-bottom: 0px; } .essential-addons_page_template-cloud #wpcontent #wpbody #wpbody-content .wrap { margin: 0px; padding: 0px; } .template-cloud-header { display: flex; align-items: stretch; box-shadow: 0px 0px 10px 0px #00000024; overflow: visible; z-index: 99; position: relative; background-color: #fff; padding: 15px 20px; } .template-cloud-body { box-sizing: border-box; height: calc(100% - 80px) !important; } .template-cloud-install { display: flex; flex-flow: column nowrap; width: 100%; background-image: url(../images/templately/login-bg.png); background-size: cover; background-repeat: no-repeat; color: white; align-items: center; justify-content: center; box-sizing: border-box; height: 100%; max-height: 88vh; } .templately-left { padding: 10px; } .templately-right { padding: 10px; max-width: 550px; } .templately-admin-title { font-size: 16px; text-align: left; } .templately-cloud-title { text-align: center; margin-bottom: 50px; } .templately-installer-wrapper { display: flex; flex-flow: row wrap; justify-content: center; align-items: center; width: 100%; } .templately-cloud-title h1 { color: #fff; font-size: 50px; font-weight: 700; line-height: 1.2; } .templately-cloud-title p { font-size: 18px; line-height: 1.6; color: #fff; } .templately-admin-install { background-color: transparent; color: #fff; padding: 50px; border-radius: 10px; } .templately-admin-install p { font-size: 18px; color: #fff; line-height: 1.6; } .templately-admin-install button.eae-activate-templately { background-color: #fff; border: 1px solid rgb(96, 114, 255, 0); padding: 15px 30px; border-radius: 50px; color: rgb(96, 114, 255); font-size: 18px; margin: 10px 0; font-weight: 600; cursor: pointer; transition: all 0.3s; } .templately-admin-install button.eae-activate-templately:hover { background-color: rgb(250, 145, 150); color: rgb(255, 255, 255); } .templately-cloud-video-container { background-color: #fff; padding: 8px; width: 620px; max-width: 100%; border-radius: 4px; box-shadow: 0 0 30px 5px rgba(0, 0, 0, 0.15); } .templately-cloud-video-container iframe { width: 100%; }
0.288268
0.049428
*{ box-sizing: border-box; } body{ margin:0; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-size:1rem; font-weight:normal; line-height:1.5; color:#333; overflow-x:hidden; } .v-header{ height:100vh; display:flex; align-items:center; color:#fff; } .container{ max-width:960px; padding-left:1rem; padding-right:1rem; margin:auto; text-align:center; } .fullscreen-video-wrap{ position:absolute; top:0; left:0; width:100%; height:100vh; overflow:hidden; } .fullscreen-video-wrap video{ min-height:100%; min-width:100%; } .header-overlay{ height:100vh; position: absolute; top:0; left:0; width:100vw; z-index:1; background:#225470; opacity:0.30; } .header-content{ z-index:2; } .header-content h1{ font-size:50px; margin-bottom:0; } .header-content p{ font-size:2.5rem; display:block; padding:8rem; } .btn{ background: #34b3a0; color:#fff; font-size:1.2rem; padding: 1rem 2rem; text-decoration: none; } .section-a{ padding:20px 0; font-family:Sofia; background: rgb(131,58,180); background: linear-gradient(90deg, rgba(131,58,180,1) 0%, rgba(0,181,179,1) 50%, rgba(252,176,69,1) 100%); } .section-b{ background:#333; color:#fff; } @media(max-width:960px){ .container{ padding-right:3rem; padding-left:3rem; } } .team-area{ padding-top: 5%; } .single-team{ background-color: #000; margin-bottom: 15px; } .single-team:hover .social{ cursor: pointer; opacity: 1; transform: rotateY(0deg) scale(1, 1); } .img-area{ overflow: hidden; position: static; } .img-area img{ width: 100%; } .img-area:hover img{ transform: scale(1.2) } .img-area img{ transition: all 0.4s ease 0s; } @media (max-width: 768px){ .img-area img{ display: inline-block; } } .img-area .social{ background-color: rgba(0,0,0,0.7); position: absolute; text-align: center; height: 100%; width: 100%; left:0; top: 0; opacity: 0; transition: .5s; transform: rotateY(180deg) scale(0.5, 0.5); } .img-area .social ul{ text-align: center; position: relative; top: 175px; } .img-area .social ul li a{ border: 1px solid #fff; color: #fff; display: block; font-size: 16px; height: 40px; width: 40px; line-height: 40px; text-align: center; } .img-area .social ul li a:hover{ background-color: #fff; color: #000; border: 1px solid transparent; } .img-text{ padding: 10.5px; color: #fff; text-align: center; } .img-text h4{ margin: 0 0 5px; font-size: 23px; font-family: Sofia; letter-spacing: 3px; } .img-text h5{ font-size: 17px; text-transform: uppercase; font-weight: bold; font-family: bignoodletitling; letter-spacing: 3px; } .footer { background-color: #414141; width: 100%; text-align: center; font-family: sans-serif; font-weight: bold; font-size: 16px; padding-top: 24px; padding-bottom: 260px; margin-top: 0px; } .footer .footer-left, .footer .footer-center, .footer .footer-right { display: inline-block; vertical-align: top; } /* footer left*/ .footer .footer-left { width: 33%; padding-right: 15px; } .footer .about { line-height: 20px; color: #ffffff; font-size: 13px; font-weight: normal; margin: 0; } .footer .about span { display: block; color: #ffffff; font-size: 14px; font-weight: bold; margin-bottom: 20px; } .footer .icons { margin-top: 25px; } .footer .icons a { display: inline-block; width: 35px; height: 35px; cursor: pointer; background-color: #33383b; border-radius: 2px; font-size: 20px; color: #ffffff; text-align: center; line-height: 35px; margin-right: 3px; margin-bottom: 5px; } /* footer center*/ .footer .footer-center { width: 30%; } .footer .footer-center i { background-color: #33383b; color: #ffffff; font-size: 25px; width: 38px; height: 38px; border-radius: 50%; text-align: center; line-height: 42px; margin: 10px 15px; vertical-align: middle; } .footer .footer-center i.fa-envelope { font-size: 17px; line-height: 38px; } .footer .footer-center p { display: inline-block; color: #ffffff; vertical-align: middle; margin: 0; } .footer .footer-center p span { display: block; font-weight: normal; font-size: 14px; line-height: 2; } .footer .footer-center p a { color: #0099ff; text-decoration: none; } /* footer right*/ .footer .footer-right { width: 35%; } .footer h2 { color: #ffffff; font-size: 36px; font-weight: normal; margin: 0; } .footer h2 span { color: #0099ff; } .footer .menu { color: #ffffff; margin: 20px 0 12px; padding: 0; } .footer .menu a { display: inline-block; line-height: 1.8; text-decoration: none; color: inherit; } .footer .menu a:hover { color: #0099ff; } .footer .name { color: #0099ff; font-size: 14px; font-weight: normal; margin: 0; } @media (max-width: 767px) { .footer { font-size: 14px; } .footer .footer-left, .footer .footer-center, .footer .footer-right { display: block; width: 100%; margin-bottom: 40px; text-align: center; } .footer .footer-center i { margin-left: 0; } }
abt.css
*{ box-sizing: border-box; } body{ margin:0; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-size:1rem; font-weight:normal; line-height:1.5; color:#333; overflow-x:hidden; } .v-header{ height:100vh; display:flex; align-items:center; color:#fff; } .container{ max-width:960px; padding-left:1rem; padding-right:1rem; margin:auto; text-align:center; } .fullscreen-video-wrap{ position:absolute; top:0; left:0; width:100%; height:100vh; overflow:hidden; } .fullscreen-video-wrap video{ min-height:100%; min-width:100%; } .header-overlay{ height:100vh; position: absolute; top:0; left:0; width:100vw; z-index:1; background:#225470; opacity:0.30; } .header-content{ z-index:2; } .header-content h1{ font-size:50px; margin-bottom:0; } .header-content p{ font-size:2.5rem; display:block; padding:8rem; } .btn{ background: #34b3a0; color:#fff; font-size:1.2rem; padding: 1rem 2rem; text-decoration: none; } .section-a{ padding:20px 0; font-family:Sofia; background: rgb(131,58,180); background: linear-gradient(90deg, rgba(131,58,180,1) 0%, rgba(0,181,179,1) 50%, rgba(252,176,69,1) 100%); } .section-b{ background:#333; color:#fff; } @media(max-width:960px){ .container{ padding-right:3rem; padding-left:3rem; } } .team-area{ padding-top: 5%; } .single-team{ background-color: #000; margin-bottom: 15px; } .single-team:hover .social{ cursor: pointer; opacity: 1; transform: rotateY(0deg) scale(1, 1); } .img-area{ overflow: hidden; position: static; } .img-area img{ width: 100%; } .img-area:hover img{ transform: scale(1.2) } .img-area img{ transition: all 0.4s ease 0s; } @media (max-width: 768px){ .img-area img{ display: inline-block; } } .img-area .social{ background-color: rgba(0,0,0,0.7); position: absolute; text-align: center; height: 100%; width: 100%; left:0; top: 0; opacity: 0; transition: .5s; transform: rotateY(180deg) scale(0.5, 0.5); } .img-area .social ul{ text-align: center; position: relative; top: 175px; } .img-area .social ul li a{ border: 1px solid #fff; color: #fff; display: block; font-size: 16px; height: 40px; width: 40px; line-height: 40px; text-align: center; } .img-area .social ul li a:hover{ background-color: #fff; color: #000; border: 1px solid transparent; } .img-text{ padding: 10.5px; color: #fff; text-align: center; } .img-text h4{ margin: 0 0 5px; font-size: 23px; font-family: Sofia; letter-spacing: 3px; } .img-text h5{ font-size: 17px; text-transform: uppercase; font-weight: bold; font-family: bignoodletitling; letter-spacing: 3px; } .footer { background-color: #414141; width: 100%; text-align: center; font-family: sans-serif; font-weight: bold; font-size: 16px; padding-top: 24px; padding-bottom: 260px; margin-top: 0px; } .footer .footer-left, .footer .footer-center, .footer .footer-right { display: inline-block; vertical-align: top; } /* footer left*/ .footer .footer-left { width: 33%; padding-right: 15px; } .footer .about { line-height: 20px; color: #ffffff; font-size: 13px; font-weight: normal; margin: 0; } .footer .about span { display: block; color: #ffffff; font-size: 14px; font-weight: bold; margin-bottom: 20px; } .footer .icons { margin-top: 25px; } .footer .icons a { display: inline-block; width: 35px; height: 35px; cursor: pointer; background-color: #33383b; border-radius: 2px; font-size: 20px; color: #ffffff; text-align: center; line-height: 35px; margin-right: 3px; margin-bottom: 5px; } /* footer center*/ .footer .footer-center { width: 30%; } .footer .footer-center i { background-color: #33383b; color: #ffffff; font-size: 25px; width: 38px; height: 38px; border-radius: 50%; text-align: center; line-height: 42px; margin: 10px 15px; vertical-align: middle; } .footer .footer-center i.fa-envelope { font-size: 17px; line-height: 38px; } .footer .footer-center p { display: inline-block; color: #ffffff; vertical-align: middle; margin: 0; } .footer .footer-center p span { display: block; font-weight: normal; font-size: 14px; line-height: 2; } .footer .footer-center p a { color: #0099ff; text-decoration: none; } /* footer right*/ .footer .footer-right { width: 35%; } .footer h2 { color: #ffffff; font-size: 36px; font-weight: normal; margin: 0; } .footer h2 span { color: #0099ff; } .footer .menu { color: #ffffff; margin: 20px 0 12px; padding: 0; } .footer .menu a { display: inline-block; line-height: 1.8; text-decoration: none; color: inherit; } .footer .menu a:hover { color: #0099ff; } .footer .name { color: #0099ff; font-size: 14px; font-weight: normal; margin: 0; } @media (max-width: 767px) { .footer { font-size: 14px; } .footer .footer-left, .footer .footer-center, .footer .footer-right { display: block; width: 100%; margin-bottom: 40px; text-align: center; } .footer .footer-center i { margin-left: 0; } }
0.330795
0.040674
.contact-container { min-height: 100vh; background-color: rgb(230, 218, 206); animation: fade_in 1s; } .contact-sub-container { padding-top: 60px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding-bottom: 100px; } .contact-sub-container .heading { display: flex; align-items: center; } .contact-sub-container .position-section { margin-top: 40px; } .contact-sub-container .loading-blk { text-align: center; margin-top: 50px; font-size: 20px; } .contact-blk { width: 10px; height: 10px; padding: 5px; background-color: rgb(0, 80, 225); margin-right: 10px; } .contact-head { font-size: 35px; font-family: 'Poppins-Bold'; } .contact-sub-container .form{ background-color: #fff; padding: 40px; } .contact-sub-container .details-container{ display: flex; background-color: #fff; justify-content: space-between; } .contact-sub-container .form label{ display: block; flex: 0 0 45%; font-family: 'Poppins-Bold'; margin-bottom: 50px; background-color: #fff; color: #000; } .contact-sub-container .form input{ display: block; width: 100%; } .contact-sub-container .form textarea{ display: block; width: 100%; } .contact-sub-container .form .label-textarea{ width: 100%; margin-bottom: 30px; } .contact-sub-container .form input, .contact-sub-container .form textarea{ outline: none; border: 0; border-bottom: 1px solid #000; margin-top: 10px; font-size: 16px; font-family: 'Poppins-Light'; letter-spacing: 0.06em; } .contact-sub-container .send{ padding: 10px 15px; background-color: rgb(0, 80, 225); color: #fff; border-radius: 15px; border: 1px solid rgb(0, 80, 225); outline: none; transition: 0.3s; text-transform: uppercase; font-family: 'Poppins-Bold'; font-size: 14px; } .contact-sub-container .success-blk{ position: absolute; bottom: 125px; background-color: rgba(0, 0 , 0, 0.7); color: #fff; padding: 20px; animation: bottom_up 1s; } .display-none{ display: none; } @media (max-width: 539px){ .contact-head{ font-size: 29px; } .contact-sub-container .form{ padding: 25px; } .contact-sub-container .details-container{ flex-wrap: wrap; } .contact-sub-container .form label{ flex: 0 0 100%; } .contact-sub-container .send{ padding: 8px 12px; font-size: 12px; } .contact-sub-container .success-blk{ bottom: 60px; padding: 12px; font-size: 14px; } }
src/components/Contact/Contact.css
.contact-container { min-height: 100vh; background-color: rgb(230, 218, 206); animation: fade_in 1s; } .contact-sub-container { padding-top: 60px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding-bottom: 100px; } .contact-sub-container .heading { display: flex; align-items: center; } .contact-sub-container .position-section { margin-top: 40px; } .contact-sub-container .loading-blk { text-align: center; margin-top: 50px; font-size: 20px; } .contact-blk { width: 10px; height: 10px; padding: 5px; background-color: rgb(0, 80, 225); margin-right: 10px; } .contact-head { font-size: 35px; font-family: 'Poppins-Bold'; } .contact-sub-container .form{ background-color: #fff; padding: 40px; } .contact-sub-container .details-container{ display: flex; background-color: #fff; justify-content: space-between; } .contact-sub-container .form label{ display: block; flex: 0 0 45%; font-family: 'Poppins-Bold'; margin-bottom: 50px; background-color: #fff; color: #000; } .contact-sub-container .form input{ display: block; width: 100%; } .contact-sub-container .form textarea{ display: block; width: 100%; } .contact-sub-container .form .label-textarea{ width: 100%; margin-bottom: 30px; } .contact-sub-container .form input, .contact-sub-container .form textarea{ outline: none; border: 0; border-bottom: 1px solid #000; margin-top: 10px; font-size: 16px; font-family: 'Poppins-Light'; letter-spacing: 0.06em; } .contact-sub-container .send{ padding: 10px 15px; background-color: rgb(0, 80, 225); color: #fff; border-radius: 15px; border: 1px solid rgb(0, 80, 225); outline: none; transition: 0.3s; text-transform: uppercase; font-family: 'Poppins-Bold'; font-size: 14px; } .contact-sub-container .success-blk{ position: absolute; bottom: 125px; background-color: rgba(0, 0 , 0, 0.7); color: #fff; padding: 20px; animation: bottom_up 1s; } .display-none{ display: none; } @media (max-width: 539px){ .contact-head{ font-size: 29px; } .contact-sub-container .form{ padding: 25px; } .contact-sub-container .details-container{ flex-wrap: wrap; } .contact-sub-container .form label{ flex: 0 0 100%; } .contact-sub-container .send{ padding: 8px 12px; font-size: 12px; } .contact-sub-container .success-blk{ bottom: 60px; padding: 12px; font-size: 14px; } }
0.554953
0.053999
html, body { overflow-x: hidden; overflow-y: hidden; margin: 0; padding: 0; width: 100%; height: 100%; background-color: #EFEFEF; } .main-content { min-height: 100%; position: relative; overflow: auto; z-index: 0; } #emailDiv { z-index: 1000000; top: 50px !important; right: 245px !important; white-space: nowrap; position: absolute; text-align: center; font-size: 1.2em; display: none; } .sentEmail { font-family: 'Open Sans Condensed', sans-serif; color: #23af5b !important; } .slogan { top: 52px; display: inline-table; color: white; text-align: right; left: 158px; font-size: 1.2em; font-family: 'Open Sans Condensed', sans-serif; position: fixed; } .background { position: absolute; z-index: -1; top: 0; bottom: 0; margin: 0; padding: 0; } .content-middle {} .top_block { width: 100%; display: block; background-color: #333739!important; } .bottom_block { text-align: center; position: absolute; width: 100%; display: block; bottom: 0; background-color: #333739!important; } .left_block { display: block; float: left; } .right_block { display: block; float: right; } .center_block { display: block; width: auto; background-color: green; } .header { width: 100%; height: 110px; } .footer { width: 100%; height: 100px; } #legend { bottom: 0; right: 0; } #logo { display: inline-flex; z-index: 1; width: 15%; text-align: center; padding: auto; position: relative; height: 4em; } h1 { display: inherit; margin: 0; padding-left: 15px; padding-top: 5px; font-family: 'Qwigley', cursive; font-size: 5.0em; color: #23af5b!important; } h3 { display: inline-table; padding-left: 85px; padding-top: 8px; font-family: 'Qwigley', cursive; font-size: 2.0em; color: #fff!important; } #map-canvas { height: 90%; width: 100%; margin: auto; position: relative } .content-container { margin-top: 14px; width: 100%; height: 77%; } #directionsPanel { padding: 3px; top: 16%; right: 0; width: 20%; position: absolute; height: 67%; z-index: 10; background-color: white; display: none; border: 2px solid black; overflow-y: scroll; } .adp-listsel { background-color: black; } .adp-fullwidth tbody tr:nth-child(2) { background-color: black; color: green; } .adp-fullwidth tbody tr:nth-child(3) { color: red; background-color: black; } .adp-fullwidth tbody tr:nth-child(4) { color: orange; background-color: black; } #locations, #contact { z-index: 10000; /*text-align: center;*/ padding: 0; clear: both; /*position: fixed;*/ display: none; } #locations.flex { display: block; /*width: 40em;*/ /*position: relative;*/ } a { text-decoration: none; color: #23af5b!important; } #forms input {} #contact { line-height: 1; padding: 5px; font-size: 0.9em; } #contact.inlineContact { display: inline-flex; left: 100px; position: absolute; } #locations {} #loadingImage { width: 80px; position: absolute; z-index: 3000; left: 500px; } #loading { font-family: 'Open Sans Condensed', sans-serif; top: 48px; color: white; font-size: 1.3em; z-index: 10000; position: absolute; left: 550px; clear: both; } .adp-warnbox { display: none; } #forms { position: absolute; white-space: nowrap; top: 70px; left: 490px; z-index: 10000; } input[type=text] { font-family: 'Open Sans Condensed', sans-serif; border: 1px solid #fff; background: black; color: white; line-height: 1; padding: 5px; font-size: 0.9em; } input[type=submit] { font-family: 'Open Sans Condensed', sans-serif; border: 1px solid #fff; background: black; color: white; line-height: 1; padding: 6px; font-size: 0.9em; } .adp-fullwidth tbody tr { border: white 1px solid; } .adp-fullwidth tbody tr td { padding: 5px; } .directions1 { z-index: 10000000; white-space: nowrap; top: 13px; color: #d8d8d8; text-align: left; font-size: 0.9em; font-family: 'Open Sans Condensed', sans-serif; position: absolute; float: right; left: 775px; clear: right; display: none; } .directions2 { z-index: 10000000; white-space: nowrap; top: 12px; color: #d8d8d8; text-align: center; font-size: 0.9em; font-family: 'Open Sans Condensed', sans-serif; position: absolute; float: right; left: 576px; display: none; }
saferoute/stylesheets/main.css
html, body { overflow-x: hidden; overflow-y: hidden; margin: 0; padding: 0; width: 100%; height: 100%; background-color: #EFEFEF; } .main-content { min-height: 100%; position: relative; overflow: auto; z-index: 0; } #emailDiv { z-index: 1000000; top: 50px !important; right: 245px !important; white-space: nowrap; position: absolute; text-align: center; font-size: 1.2em; display: none; } .sentEmail { font-family: 'Open Sans Condensed', sans-serif; color: #23af5b !important; } .slogan { top: 52px; display: inline-table; color: white; text-align: right; left: 158px; font-size: 1.2em; font-family: 'Open Sans Condensed', sans-serif; position: fixed; } .background { position: absolute; z-index: -1; top: 0; bottom: 0; margin: 0; padding: 0; } .content-middle {} .top_block { width: 100%; display: block; background-color: #333739!important; } .bottom_block { text-align: center; position: absolute; width: 100%; display: block; bottom: 0; background-color: #333739!important; } .left_block { display: block; float: left; } .right_block { display: block; float: right; } .center_block { display: block; width: auto; background-color: green; } .header { width: 100%; height: 110px; } .footer { width: 100%; height: 100px; } #legend { bottom: 0; right: 0; } #logo { display: inline-flex; z-index: 1; width: 15%; text-align: center; padding: auto; position: relative; height: 4em; } h1 { display: inherit; margin: 0; padding-left: 15px; padding-top: 5px; font-family: 'Qwigley', cursive; font-size: 5.0em; color: #23af5b!important; } h3 { display: inline-table; padding-left: 85px; padding-top: 8px; font-family: 'Qwigley', cursive; font-size: 2.0em; color: #fff!important; } #map-canvas { height: 90%; width: 100%; margin: auto; position: relative } .content-container { margin-top: 14px; width: 100%; height: 77%; } #directionsPanel { padding: 3px; top: 16%; right: 0; width: 20%; position: absolute; height: 67%; z-index: 10; background-color: white; display: none; border: 2px solid black; overflow-y: scroll; } .adp-listsel { background-color: black; } .adp-fullwidth tbody tr:nth-child(2) { background-color: black; color: green; } .adp-fullwidth tbody tr:nth-child(3) { color: red; background-color: black; } .adp-fullwidth tbody tr:nth-child(4) { color: orange; background-color: black; } #locations, #contact { z-index: 10000; /*text-align: center;*/ padding: 0; clear: both; /*position: fixed;*/ display: none; } #locations.flex { display: block; /*width: 40em;*/ /*position: relative;*/ } a { text-decoration: none; color: #23af5b!important; } #forms input {} #contact { line-height: 1; padding: 5px; font-size: 0.9em; } #contact.inlineContact { display: inline-flex; left: 100px; position: absolute; } #locations {} #loadingImage { width: 80px; position: absolute; z-index: 3000; left: 500px; } #loading { font-family: 'Open Sans Condensed', sans-serif; top: 48px; color: white; font-size: 1.3em; z-index: 10000; position: absolute; left: 550px; clear: both; } .adp-warnbox { display: none; } #forms { position: absolute; white-space: nowrap; top: 70px; left: 490px; z-index: 10000; } input[type=text] { font-family: 'Open Sans Condensed', sans-serif; border: 1px solid #fff; background: black; color: white; line-height: 1; padding: 5px; font-size: 0.9em; } input[type=submit] { font-family: 'Open Sans Condensed', sans-serif; border: 1px solid #fff; background: black; color: white; line-height: 1; padding: 6px; font-size: 0.9em; } .adp-fullwidth tbody tr { border: white 1px solid; } .adp-fullwidth tbody tr td { padding: 5px; } .directions1 { z-index: 10000000; white-space: nowrap; top: 13px; color: #d8d8d8; text-align: left; font-size: 0.9em; font-family: 'Open Sans Condensed', sans-serif; position: absolute; float: right; left: 775px; clear: right; display: none; } .directions2 { z-index: 10000000; white-space: nowrap; top: 12px; color: #d8d8d8; text-align: center; font-size: 0.9em; font-family: 'Open Sans Condensed', sans-serif; position: absolute; float: right; left: 576px; display: none; }
0.48438
0.106877
.dark-theme { background-color: #314657; color: #f2f2f2; background-image: url(/assets/img/black-lozenge.png); } .medium-theme { background-color: #8298ab; color: #f2f2f2; } .light-theme { background-color: #f2f2f2; color: #314657; } html, body { height: 100%; } body { margin: 0; padding: 0; width: 100%; display: table; font-weight: 100; font-family: 'Trebuchet MS', 'Open Sans', arial, sans-serif; background-color: #f2f2f2; color: #314657; } .wrap { min-height: 100%; } .wrap [rel="main"] { padding-bottom: 50px; } footer { height: 50px; margin-top: -50px; } .navbar { margin: 0px; } .navbar-btn { color: #8298ab; font-size: 20px; text-transform: uppercase; } .jumbotron { text-align: center; vertical-align: middle; padding: 60px; margin: 0px; border: none; background-color: #314657; color: #f2f2f2; background-image: url(/assets/img/black-lozenge.png); } .main-header { margin-top: 10px; display: inline-block; height: 100%; vertical-align: middle; } .header-compass-img { display: inline-block; width: 64px; height: 64px; vertical-align: middle; transform: rotate(35deg); } .animated { animation: compass-move 3s; } @keyframes compass-move { 25% { transform: rotate(50deg); animation-timing-function: ease-in-out; } 66% { transform: rotate(25deg); animation-timing-function: ease-in-out; } 87% { transform: rotate(40deg); animation-timing-function: ease-in-out; } } .jumbotron-sub { text-align: center; vertical-align: middle; padding: 20px; background-color: #8298ab; color: #f2f2f2; } .modal-header { border: none; text-align: center; } .modal-footer { border: none; text-align: center; } .step-view { margin-bottom: 20px; } .group-item { cursor: pointer; } .chart { display: inline-block; } .statistic-item-label { margin-top: 10px; text-align: center; border-bottom: 2px dotted #dadada; } .statistic-item { margin: 20px 0px 0px 0px; border-bottom: 2px solid #dadada; border-right: 2px solid #dadada; border-radius: 6px; border-bottom-color: #dadada; background-color: #ffffff; } .step-content { margin-top: 20px; } .jobs-table-header { padding: 0px; } .jobs-table-header-left { border-radius: 4px 0px 0px 0px; } .jobs-table-header-right { border-radius: 0px 4px 0px 0px; } .jobs-table-header-center { border-radius: 0px; } .jobs-table-cell { border-left: 1px; border-right: 1px; border-bottom: 0px; border-top: 0px; border-color: #dadada; border-style: solid; padding-top: 6px; padding-bottom: 6px; background-color: transparent; } .jobs-table-row { cursor: pointer; background-color: #ffffff; } .jobs-table-row:hover { background-color: #dadada; } .sorted-column-header { padding-left: 26px; } .jobs-table .jobs-table-item:last-of-type .jobs-table-row .jobs-table-cell { border-bottom: 1px; border-color: #dadada; border-style: solid; } .json-table-item-label { margin: 3px; background-color: #8298ab; color: #f2f2f2; } /* .json-table-detalization .detalization-item { border-left: 1px; border-right: 1px; border-style: solid; border-bottom: 1px; border-top: 1px; border-color: @border-color; padding-top: 6px; padding-bottom: 6px; } */ .json-table-detalization .detalization-item:last-of-type { border-bottom: 1px; border-color: #dadada; border-style: solid; } .json-table-detalization .detalization-item { border-left: 1px; border-right: 1px; border-top: 1px; border-bottom: 0px; border-color: #dadada; border-style: solid; padding-top: 6px; padding-bottom: 6px; } .detalization-item.row { background-color: #ffffff; } .detalization-item-text { display: inline; } .detalization-item-link:hover { text-decoration: none; } .detalization-item-image { display: inline; height: 25px; width: 25px; margin-left: 3px; margin-right: 3px; } .app-navigation { text-align: center; } .app-navigation > li { margin-left: 15px; margin-right: 15px; float: none; display: inline-block; vertical-align: top; } .next-pointer { font-size: 28px; vertical-align: top; display: inline-block; margin-top: 35px; color: #d25a27; } .app-navigation > li > a { border-radius: 50px; margin-top: 20px; margin-bottom: 20px; font-size: 20px; padding: 15px; width: 58px; height: 58px; background-color: #8298ab; color: #f2f2f2; } .badge { background-color: #8298ab; color: #f2f2f2; } .app-navigation > li > a:hover, .app-navigation > li.active > a, .app-navigation > li.active > a:hover, .app-navigation > li.active > a:focus { background-color: #d25a27; } #step-content { margin-bottom: 20px; } .groups { margin-bottom: 0px; } .group-name { margin-left: 5px; } .about-content { margin-top: 30px; background-color: #ffffff; border-radius: 5px; } .about-content > p { margin-top: 10px; font-size: 16px; }
public/assets/css/app.css
.dark-theme { background-color: #314657; color: #f2f2f2; background-image: url(/assets/img/black-lozenge.png); } .medium-theme { background-color: #8298ab; color: #f2f2f2; } .light-theme { background-color: #f2f2f2; color: #314657; } html, body { height: 100%; } body { margin: 0; padding: 0; width: 100%; display: table; font-weight: 100; font-family: 'Trebuchet MS', 'Open Sans', arial, sans-serif; background-color: #f2f2f2; color: #314657; } .wrap { min-height: 100%; } .wrap [rel="main"] { padding-bottom: 50px; } footer { height: 50px; margin-top: -50px; } .navbar { margin: 0px; } .navbar-btn { color: #8298ab; font-size: 20px; text-transform: uppercase; } .jumbotron { text-align: center; vertical-align: middle; padding: 60px; margin: 0px; border: none; background-color: #314657; color: #f2f2f2; background-image: url(/assets/img/black-lozenge.png); } .main-header { margin-top: 10px; display: inline-block; height: 100%; vertical-align: middle; } .header-compass-img { display: inline-block; width: 64px; height: 64px; vertical-align: middle; transform: rotate(35deg); } .animated { animation: compass-move 3s; } @keyframes compass-move { 25% { transform: rotate(50deg); animation-timing-function: ease-in-out; } 66% { transform: rotate(25deg); animation-timing-function: ease-in-out; } 87% { transform: rotate(40deg); animation-timing-function: ease-in-out; } } .jumbotron-sub { text-align: center; vertical-align: middle; padding: 20px; background-color: #8298ab; color: #f2f2f2; } .modal-header { border: none; text-align: center; } .modal-footer { border: none; text-align: center; } .step-view { margin-bottom: 20px; } .group-item { cursor: pointer; } .chart { display: inline-block; } .statistic-item-label { margin-top: 10px; text-align: center; border-bottom: 2px dotted #dadada; } .statistic-item { margin: 20px 0px 0px 0px; border-bottom: 2px solid #dadada; border-right: 2px solid #dadada; border-radius: 6px; border-bottom-color: #dadada; background-color: #ffffff; } .step-content { margin-top: 20px; } .jobs-table-header { padding: 0px; } .jobs-table-header-left { border-radius: 4px 0px 0px 0px; } .jobs-table-header-right { border-radius: 0px 4px 0px 0px; } .jobs-table-header-center { border-radius: 0px; } .jobs-table-cell { border-left: 1px; border-right: 1px; border-bottom: 0px; border-top: 0px; border-color: #dadada; border-style: solid; padding-top: 6px; padding-bottom: 6px; background-color: transparent; } .jobs-table-row { cursor: pointer; background-color: #ffffff; } .jobs-table-row:hover { background-color: #dadada; } .sorted-column-header { padding-left: 26px; } .jobs-table .jobs-table-item:last-of-type .jobs-table-row .jobs-table-cell { border-bottom: 1px; border-color: #dadada; border-style: solid; } .json-table-item-label { margin: 3px; background-color: #8298ab; color: #f2f2f2; } /* .json-table-detalization .detalization-item { border-left: 1px; border-right: 1px; border-style: solid; border-bottom: 1px; border-top: 1px; border-color: @border-color; padding-top: 6px; padding-bottom: 6px; } */ .json-table-detalization .detalization-item:last-of-type { border-bottom: 1px; border-color: #dadada; border-style: solid; } .json-table-detalization .detalization-item { border-left: 1px; border-right: 1px; border-top: 1px; border-bottom: 0px; border-color: #dadada; border-style: solid; padding-top: 6px; padding-bottom: 6px; } .detalization-item.row { background-color: #ffffff; } .detalization-item-text { display: inline; } .detalization-item-link:hover { text-decoration: none; } .detalization-item-image { display: inline; height: 25px; width: 25px; margin-left: 3px; margin-right: 3px; } .app-navigation { text-align: center; } .app-navigation > li { margin-left: 15px; margin-right: 15px; float: none; display: inline-block; vertical-align: top; } .next-pointer { font-size: 28px; vertical-align: top; display: inline-block; margin-top: 35px; color: #d25a27; } .app-navigation > li > a { border-radius: 50px; margin-top: 20px; margin-bottom: 20px; font-size: 20px; padding: 15px; width: 58px; height: 58px; background-color: #8298ab; color: #f2f2f2; } .badge { background-color: #8298ab; color: #f2f2f2; } .app-navigation > li > a:hover, .app-navigation > li.active > a, .app-navigation > li.active > a:hover, .app-navigation > li.active > a:focus { background-color: #d25a27; } #step-content { margin-bottom: 20px; } .groups { margin-bottom: 0px; } .group-name { margin-left: 5px; } .about-content { margin-top: 30px; background-color: #ffffff; border-radius: 5px; } .about-content > p { margin-top: 10px; font-size: 16px; }
0.435061
0.091707
@media (min-width: 320px) { *{} .userExists { text-align: center; color: red; font-size: 12px; position: absolute; top: 420px; left: 15px; } .dKyAdmin { width: 100%; margin: auto; } .dKyAdmin .title { background: #30a5ff; text-align: center; padding: 5px; font-size: 15px; color: white; margin-bottom: 10px; } body{ overflow-x: hidden; } .loginFalse { width: 100%; height: 40px; line-height: 40px; padding-left: 20px; background: #b12121; color: white; position: absolute; top: 0; transition: 0.4s; } .downLogin{ top: 0; opacity: 1; visibility: visible; transition: 0.4s; } .login .content { width: 320px; margin: auto; background: #fff; padding: 18px; } .login .title { width: 100%; } .login { background: url('/shop/image/logo/bg.jpeg'); padding-top: 50px; width: 100%; height: 100%; background-size: cover; } html,body { width: 100%; height: 100%; } .login .title img { width: 100px; margin-bottom: 10px; margin-left: 33%; } .detail { font-size: 9px; } /*.bill .inforCustomer { width: 125px; display: block; border: none; border-top: 1px solid #dddddd; }*/ .bill .listBill { font-size: 6px; margin-right: 8px; } .bill .listBill button { font-size: 6px; margin-left: 0; padding-left: 0; padding-right: 0; } .bill a.btn.btn-danger { background: none; color: red; border: 1px solid red; margin-left: 42px; } a.btn.btn-danger { } .bill a.btn.btn-danger { margin-left: 0; font-size: 6px; } .bill a.btn.btn-danger:hover { background: red; color: white; transition: 0.2s; } .bill button.change.btn.btn-info { background: none; color: #e17d14; margin-bottom: 5px; border: 1px solid #e17d14; } .bill button.change.btn.btn-info:hover { background: #e2821c; color: white; transition: 0.2s; } .hThi{ visibility: visible; opacity: 1; } .kHThi{ visibility: hidden; opacity: 0; } .editProduct { width: 95%; margin-left: 5px; margin-bottom: 20px; } .addProduct { margin-left: 5px; margin-bottom: 20px; } .location .breadcrumb a{ text-decoration: none; } .editCategory button.btn.btn-primary { margin-left: 36%; margin-bottom: 20px; } .editCategory input.form-control { width: 50%; margin: auto; margin-top: 12px; } .editCategory .title ,.editProduct .title,.bill .title,.detailsOrder .title{ background: #D9EDF7; height: 40px; line-height: 40px; padding-left: 20px; font-size: 18px; } .detailsOrder .title { font-size: 16px; } .bill .title { margin-bottom: 20px; } .editCategory button.btn.btn-primary { background: none; color: #6299c3; border: 1px solid #7b99c7; } .editCategory button.btn.btn-primary:hover { background: #62b5de; color: white; } .phantrang div {display: inline;} .phantrang a { display: inline-block; width: 20px; height: 20px; line-height: 20px; color: #30a5ff; border: 1px solid #30a5ff; margin-right: 10px; text-decoration: none; } .phantrang a:hover { background: #30a5ff; color: white; } .phantrang b { width: 20px; height: 20px; border: 1px solid #30a5ff; display: inline-block; line-height: 20px; margin-right: 10px; } .phantrang b:hover { background: #30a5ff; color: white; } .phantrang { text-align: center; margin-bottom: 20px; } .row.listProduct { font-size: 9px; } .phantrang p { display: inline-block; } .type_display .typeProduct { width: 55%; padding-top: 10px; margin-bottom: 10px; float: left; } .type_display .tieude { width: 45%; font-size: 18px; padding-top: 10px; margin-bottom: 10px; float: left; } .showProduct .addCategory { background: #30A5FF; width: 40%; margin-left: 10%; font-size: 14px; } .showProduct .title ,.addProduct .title { background: #D9EDF7; height: 40px; line-height: 40px; margin-bottom: 10px; } .addProduct .title { padding-left: 20px; } .showProduct .title a { color: white; text-decoration: none; } .addCategoryform button.btn.btn-primary.btn-block { width: 130px; margin: auto; background: none; color: #30a5ff; font-size: 15px; border: 1px solid #30a5ff; margin-bottom: 20px; } .addCategoryform button.btn.btn-primary.btn-block:hover { background: #30a5ff; color: white; } .addCategory input.form-control { width: 248px; margin: auto; } .addCategory .title { background: #D9EDF7; height: 40px; line-height: 40px; font-size: 15px; font-weight: bold; width: 246px; margin: auto; margin-bottom: 10px; border-radius: 5px; text-align: center; } i.glyphicon.glyphicon-remove.btn-danger.xoa { background: none; color: red; border: 1px solid red; padding: 2px 5px; border-radius: 3px; } .bill i.glyphicon.glyphicon-remove.btn-danger.xoa { cursor: pointer; } i#removeBill {} i.glyphicon.glyphicon-remove.btn-danger.xoa:hover { background: red; color: white; transition: 0.2s; } i.glyphicon.glyphicon-pencil.btn-primary.sua { background: none; color: #30a5ff; border: 1px solid #30a5ff; padding: 2px 5px; border-radius: 4px; margin-right: 10px; } .bill i.glyphicon.glyphicon-pencil.btn-primary.sua { cursor: pointer; } i.glyphicon.glyphicon-pencil.btn-primary.sua:hover { background: #30a5ff; color: white; transition: 0.3s; } .contentCategory .nameTitle { padding-top: 9px; font-size: 16px; font-weight: bold; } .contentCategory a { text-decoration: none; } .contentCategory .addCategory .icon { color: white; font-size: 17px; border-radius: 50%; width: 30px; height: 30px; line-height: 30px; border: 1px solid white; margin-right: 10px; } i.fas.fa-plus-square.icon { padding-left: 6px; } .showProduct .title i.fas.fa-plus-square.icon { font-size: 18px; margin-right: 10px; } .contentCategory .addCategory { background: #30a5ff; width: 150px; padding: 5px; border-radius: 5px; float: right; } .contentCategory .addCategory a { color: white; } .contentCategory .title { background: #D9EDF7; font-size: 15px; margin-bottom: 10px; height: 40px; } .location .breadcrumb { padding: 0; margin-top: 5px; background: none; } .addCategory .location .breadcrumb a { text-decoration: none; } .sidebar { box-shadow: 2px 2px 1px grey; } .sidebar .icon {color: #30A5FF;position: absolute;top: 6px;left: 16px;font-size: 18px;} .reports {margin-left: 18%;} .report .xam { background: gray; margin: 0; position: absolute; width: 100%; left: 0; border-radius: 0 0 15px 15px; height: 29px; padding-top: 3px; transition: 0.4s; visibility: hidden; opacity: 0; top: 0; } .report:hover .xam { opacity: 1; visibility: visible; top: 71px; } .report .xam a { text-decoration: none; color: white; } .reports .report { background: #28c161; width: 80%; text-align: center; border-radius: 15px; color: white; position: relative; height: 100px; margin-bottom: 10px; } .report.member { background: #DD4B39; } .report.product { background: #00C0EF; } .report.order { background: #F39C12; } .reports .soluong { font-size: 20px; padding-top: 2px; } .sidebar > ul > li { list-style: none; padding: 6px; padding-left: 40px; position: relative; } .sidebar #home { background: #30A5FF; } .sidebar #home a { color: white; } .sidebar #home .icon { color: white; } .sidebar #home a {} .sidebar > ul > li:hover { background:#E9ECF2; } .sidebar > ul > li a { text-decoration: none; color: #30A5FF; } .sidebar > ul { padding-left: 0; } .menu_admin a.navbar-brand img { width: 70px; } .menu_admin ul.nav.navbar-nav.navbar-right a { color: #202529; } .menu_admin nav.navbar.navbar-default { background: #368a86; margin-bottom: 0; } .menu_admin { } } @media all and (min-width: 550px) { *{ } .userExists { top: 155px; left: 224px; } .dKyAdmin { position: absolute; top: 53px; left: 225px; width: 58%; } .login .title img { margin-left: 42%; } .billEmpty { position: absolute; top: 52px; left: 195px; margin-left: 5%; width: 60%; } .detail { font-size: 11px; } .detailsOrder { position: absolute; top: 10%; left: 195px; } .bill { position: absolute; top: 11%; left: 196px; } .bill .listBill { font-size: 7px; } .bill .title { width: 105%; } .editProduct { position: absolute; top: 9%; left: 193px; width: 62%; margin-left: 10px; } .addProduct { position: absolute; top: 9%; left: 193px; } .editCategory input.form-control { width: 100%; } .editCategory .title { } .editCategory { position: absolute; top: 9%; left: 269px; } .showProduct { position: absolute; top: 9%; left: 195px; } .addCategory.form_add { top: 9%; } .content { width: 103%; } .addCategory .title { margin-left: -30%; } .addCategory .location .breadcrumb { margin-left: -48%; } .addCategoryform button.btn.btn-primary.btn-block { margin-left: 0; } .addCategoryform button.btn.btn-primary.btn-block { } .addCategoryform input.form-control { margin-left: -22%; margin-top: 4px; } .addCategory { position: absolute; left: 57%; } .contentCategory { position: absolute; top: 55px; left: 36%; } .sidebar { width: 195px; box-shadow: 1px 1px 1px grey; } .reports .report { width: 35%; } .reports .report { margin-right: 15px; } .reports { position: relative; top: -554px; left: 20%; } body { /*overflow-x: hidden;*/ } html,body { height: 100%; } .sidebar { height: 100%; } } @media all and (min-width: 767px) { *{} .navbar-nav>li>.dropdown-menu { right: -12px; width: 174px; } .detail, .detailPrice, .detailsOrder .title.s { width: 74%; margin-left: 1%; font-size: 15px; } .detailsOrder .title { width: 77%; margin-left: -8px; margin-bottom: 20px; } .detailsOrder { } .bill .title { width: 75%; margin-left: -4px; } .bill .listBill {font-size: 14px;width: 72%;margin-left: 1%;} .editProduct button.btn.btn-primary.btn-block { width: 72%; } .editProduct select.form-control { width: 72%; } .editProduct input.form-control { width: 72%; } .editProduct { } .addProduct .title { width: 74%; } .addProduct input.form-control { width: 74%; } .addProduct .form-control { width: 74%; } .editCategory button.btn.btn-primary { margin-left: 153px; } .editCategory input.form-control { width: 30%; margin-left: 84px; } .editCategory .title { margin-left: -65px; width: 84%; } .phantrang a,.phantrang b { width: 30px; height: 30px; line-height: 30px; } .row.listProduct { width: 78%; font-size: 12px; } .showProduct .type_display { width: 80%; } .showProduct .title { width: 79%; } .showProduct { } .addCategory .location .breadcrumb { margin-left: -2%; } .addCategoryform button.btn.btn-primary.btn-block { margin-left: 24%; } .addCategory input.form-control { margin-left: 11%; width: 360px; } .addCategory .title {margin-left: 10%;width: 360px;} .addCategory { /* left: 54%; */ float: right; position: unset; } .addCategory.form_add { position: absolute; left: 27%; top: 9%; } .contentCategory .content { width: 67%; } .contentCategory .addCategory { float: right; /* position: absolute; */ /* left: 53%; */ } .contentCategory .title { width: 70%; height: 40px; } .contentCategory { left: 232px; } /*.sidebar { width: 185px; }*/ .reports {left: 6%;} .reports .report { width: 18%; } } @media all and (min-width: 992px) { *{} .detail, .detailPrice { } .bill .title { width: 82%; } .bill .listBill { width: 80%; } .showProduct img { width: 100px; } .editCategory button.btn.btn-primary { margin-left: 315px; } .editCategory input.form-control { margin-left: 210px; } .editCategory .title { width: 79%; } .phantrang b { width: 35px; height: 35px; line-height: 35px; } .phantrang a { width: 35px; height: 35px; line-height: 35px; } .row.listProduct { width: 84%; font-size: inherit; } .type_display .typeProduct { width: 26%; margin-left: -222px; } .showProduct .type_display { width: 85%; } .showProduct .title { width: 85%; } .showProduct .title { } .contentCategory .content { width: 75%; } .contentCategory .title { width: 78%; } .contentCategory .addCategory { left: 5%; /* float: right; */ /* position: unset; */ } .addCategory .location .breadcrumb { margin-left: -7%; } } @media all and (min-width: 1280px) { *{} .login .title img { margin-left: 45%; } .showProduct .type_display { margin-left: 10px; } .showProduct .title { width: 93%; margin-left: 4px; } .showProduct .addCategory { } .row.listProduct { width: 91%; margin-left: 10px; } .detailsOrder .title { width: 93%; } .detail, .detailPrice { width: 90%; } .bill .title { width: 98%; } .bill .listBill { width: 95%; } .editProduct .title { width: 95%; margin-left: 12px; } .contentEdit { width: 125%; margin-left: 31px; margin-top: 20px; } .addProduct { margin-left: 10%; } .contentCategory .content { width: 88%; } .contentCategory .title { width: 90%; } } @media all and (min-width: 1366px) { *{} .userExists { left: 357px; } .userExists {} .reports { top: -608px; } .dKyAdmin { left: 359px; top: 53px; } /*.reports { top: -631px; }*/ }
lib/home/admin.css
@media (min-width: 320px) { *{} .userExists { text-align: center; color: red; font-size: 12px; position: absolute; top: 420px; left: 15px; } .dKyAdmin { width: 100%; margin: auto; } .dKyAdmin .title { background: #30a5ff; text-align: center; padding: 5px; font-size: 15px; color: white; margin-bottom: 10px; } body{ overflow-x: hidden; } .loginFalse { width: 100%; height: 40px; line-height: 40px; padding-left: 20px; background: #b12121; color: white; position: absolute; top: 0; transition: 0.4s; } .downLogin{ top: 0; opacity: 1; visibility: visible; transition: 0.4s; } .login .content { width: 320px; margin: auto; background: #fff; padding: 18px; } .login .title { width: 100%; } .login { background: url('/shop/image/logo/bg.jpeg'); padding-top: 50px; width: 100%; height: 100%; background-size: cover; } html,body { width: 100%; height: 100%; } .login .title img { width: 100px; margin-bottom: 10px; margin-left: 33%; } .detail { font-size: 9px; } /*.bill .inforCustomer { width: 125px; display: block; border: none; border-top: 1px solid #dddddd; }*/ .bill .listBill { font-size: 6px; margin-right: 8px; } .bill .listBill button { font-size: 6px; margin-left: 0; padding-left: 0; padding-right: 0; } .bill a.btn.btn-danger { background: none; color: red; border: 1px solid red; margin-left: 42px; } a.btn.btn-danger { } .bill a.btn.btn-danger { margin-left: 0; font-size: 6px; } .bill a.btn.btn-danger:hover { background: red; color: white; transition: 0.2s; } .bill button.change.btn.btn-info { background: none; color: #e17d14; margin-bottom: 5px; border: 1px solid #e17d14; } .bill button.change.btn.btn-info:hover { background: #e2821c; color: white; transition: 0.2s; } .hThi{ visibility: visible; opacity: 1; } .kHThi{ visibility: hidden; opacity: 0; } .editProduct { width: 95%; margin-left: 5px; margin-bottom: 20px; } .addProduct { margin-left: 5px; margin-bottom: 20px; } .location .breadcrumb a{ text-decoration: none; } .editCategory button.btn.btn-primary { margin-left: 36%; margin-bottom: 20px; } .editCategory input.form-control { width: 50%; margin: auto; margin-top: 12px; } .editCategory .title ,.editProduct .title,.bill .title,.detailsOrder .title{ background: #D9EDF7; height: 40px; line-height: 40px; padding-left: 20px; font-size: 18px; } .detailsOrder .title { font-size: 16px; } .bill .title { margin-bottom: 20px; } .editCategory button.btn.btn-primary { background: none; color: #6299c3; border: 1px solid #7b99c7; } .editCategory button.btn.btn-primary:hover { background: #62b5de; color: white; } .phantrang div {display: inline;} .phantrang a { display: inline-block; width: 20px; height: 20px; line-height: 20px; color: #30a5ff; border: 1px solid #30a5ff; margin-right: 10px; text-decoration: none; } .phantrang a:hover { background: #30a5ff; color: white; } .phantrang b { width: 20px; height: 20px; border: 1px solid #30a5ff; display: inline-block; line-height: 20px; margin-right: 10px; } .phantrang b:hover { background: #30a5ff; color: white; } .phantrang { text-align: center; margin-bottom: 20px; } .row.listProduct { font-size: 9px; } .phantrang p { display: inline-block; } .type_display .typeProduct { width: 55%; padding-top: 10px; margin-bottom: 10px; float: left; } .type_display .tieude { width: 45%; font-size: 18px; padding-top: 10px; margin-bottom: 10px; float: left; } .showProduct .addCategory { background: #30A5FF; width: 40%; margin-left: 10%; font-size: 14px; } .showProduct .title ,.addProduct .title { background: #D9EDF7; height: 40px; line-height: 40px; margin-bottom: 10px; } .addProduct .title { padding-left: 20px; } .showProduct .title a { color: white; text-decoration: none; } .addCategoryform button.btn.btn-primary.btn-block { width: 130px; margin: auto; background: none; color: #30a5ff; font-size: 15px; border: 1px solid #30a5ff; margin-bottom: 20px; } .addCategoryform button.btn.btn-primary.btn-block:hover { background: #30a5ff; color: white; } .addCategory input.form-control { width: 248px; margin: auto; } .addCategory .title { background: #D9EDF7; height: 40px; line-height: 40px; font-size: 15px; font-weight: bold; width: 246px; margin: auto; margin-bottom: 10px; border-radius: 5px; text-align: center; } i.glyphicon.glyphicon-remove.btn-danger.xoa { background: none; color: red; border: 1px solid red; padding: 2px 5px; border-radius: 3px; } .bill i.glyphicon.glyphicon-remove.btn-danger.xoa { cursor: pointer; } i#removeBill {} i.glyphicon.glyphicon-remove.btn-danger.xoa:hover { background: red; color: white; transition: 0.2s; } i.glyphicon.glyphicon-pencil.btn-primary.sua { background: none; color: #30a5ff; border: 1px solid #30a5ff; padding: 2px 5px; border-radius: 4px; margin-right: 10px; } .bill i.glyphicon.glyphicon-pencil.btn-primary.sua { cursor: pointer; } i.glyphicon.glyphicon-pencil.btn-primary.sua:hover { background: #30a5ff; color: white; transition: 0.3s; } .contentCategory .nameTitle { padding-top: 9px; font-size: 16px; font-weight: bold; } .contentCategory a { text-decoration: none; } .contentCategory .addCategory .icon { color: white; font-size: 17px; border-radius: 50%; width: 30px; height: 30px; line-height: 30px; border: 1px solid white; margin-right: 10px; } i.fas.fa-plus-square.icon { padding-left: 6px; } .showProduct .title i.fas.fa-plus-square.icon { font-size: 18px; margin-right: 10px; } .contentCategory .addCategory { background: #30a5ff; width: 150px; padding: 5px; border-radius: 5px; float: right; } .contentCategory .addCategory a { color: white; } .contentCategory .title { background: #D9EDF7; font-size: 15px; margin-bottom: 10px; height: 40px; } .location .breadcrumb { padding: 0; margin-top: 5px; background: none; } .addCategory .location .breadcrumb a { text-decoration: none; } .sidebar { box-shadow: 2px 2px 1px grey; } .sidebar .icon {color: #30A5FF;position: absolute;top: 6px;left: 16px;font-size: 18px;} .reports {margin-left: 18%;} .report .xam { background: gray; margin: 0; position: absolute; width: 100%; left: 0; border-radius: 0 0 15px 15px; height: 29px; padding-top: 3px; transition: 0.4s; visibility: hidden; opacity: 0; top: 0; } .report:hover .xam { opacity: 1; visibility: visible; top: 71px; } .report .xam a { text-decoration: none; color: white; } .reports .report { background: #28c161; width: 80%; text-align: center; border-radius: 15px; color: white; position: relative; height: 100px; margin-bottom: 10px; } .report.member { background: #DD4B39; } .report.product { background: #00C0EF; } .report.order { background: #F39C12; } .reports .soluong { font-size: 20px; padding-top: 2px; } .sidebar > ul > li { list-style: none; padding: 6px; padding-left: 40px; position: relative; } .sidebar #home { background: #30A5FF; } .sidebar #home a { color: white; } .sidebar #home .icon { color: white; } .sidebar #home a {} .sidebar > ul > li:hover { background:#E9ECF2; } .sidebar > ul > li a { text-decoration: none; color: #30A5FF; } .sidebar > ul { padding-left: 0; } .menu_admin a.navbar-brand img { width: 70px; } .menu_admin ul.nav.navbar-nav.navbar-right a { color: #202529; } .menu_admin nav.navbar.navbar-default { background: #368a86; margin-bottom: 0; } .menu_admin { } } @media all and (min-width: 550px) { *{ } .userExists { top: 155px; left: 224px; } .dKyAdmin { position: absolute; top: 53px; left: 225px; width: 58%; } .login .title img { margin-left: 42%; } .billEmpty { position: absolute; top: 52px; left: 195px; margin-left: 5%; width: 60%; } .detail { font-size: 11px; } .detailsOrder { position: absolute; top: 10%; left: 195px; } .bill { position: absolute; top: 11%; left: 196px; } .bill .listBill { font-size: 7px; } .bill .title { width: 105%; } .editProduct { position: absolute; top: 9%; left: 193px; width: 62%; margin-left: 10px; } .addProduct { position: absolute; top: 9%; left: 193px; } .editCategory input.form-control { width: 100%; } .editCategory .title { } .editCategory { position: absolute; top: 9%; left: 269px; } .showProduct { position: absolute; top: 9%; left: 195px; } .addCategory.form_add { top: 9%; } .content { width: 103%; } .addCategory .title { margin-left: -30%; } .addCategory .location .breadcrumb { margin-left: -48%; } .addCategoryform button.btn.btn-primary.btn-block { margin-left: 0; } .addCategoryform button.btn.btn-primary.btn-block { } .addCategoryform input.form-control { margin-left: -22%; margin-top: 4px; } .addCategory { position: absolute; left: 57%; } .contentCategory { position: absolute; top: 55px; left: 36%; } .sidebar { width: 195px; box-shadow: 1px 1px 1px grey; } .reports .report { width: 35%; } .reports .report { margin-right: 15px; } .reports { position: relative; top: -554px; left: 20%; } body { /*overflow-x: hidden;*/ } html,body { height: 100%; } .sidebar { height: 100%; } } @media all and (min-width: 767px) { *{} .navbar-nav>li>.dropdown-menu { right: -12px; width: 174px; } .detail, .detailPrice, .detailsOrder .title.s { width: 74%; margin-left: 1%; font-size: 15px; } .detailsOrder .title { width: 77%; margin-left: -8px; margin-bottom: 20px; } .detailsOrder { } .bill .title { width: 75%; margin-left: -4px; } .bill .listBill {font-size: 14px;width: 72%;margin-left: 1%;} .editProduct button.btn.btn-primary.btn-block { width: 72%; } .editProduct select.form-control { width: 72%; } .editProduct input.form-control { width: 72%; } .editProduct { } .addProduct .title { width: 74%; } .addProduct input.form-control { width: 74%; } .addProduct .form-control { width: 74%; } .editCategory button.btn.btn-primary { margin-left: 153px; } .editCategory input.form-control { width: 30%; margin-left: 84px; } .editCategory .title { margin-left: -65px; width: 84%; } .phantrang a,.phantrang b { width: 30px; height: 30px; line-height: 30px; } .row.listProduct { width: 78%; font-size: 12px; } .showProduct .type_display { width: 80%; } .showProduct .title { width: 79%; } .showProduct { } .addCategory .location .breadcrumb { margin-left: -2%; } .addCategoryform button.btn.btn-primary.btn-block { margin-left: 24%; } .addCategory input.form-control { margin-left: 11%; width: 360px; } .addCategory .title {margin-left: 10%;width: 360px;} .addCategory { /* left: 54%; */ float: right; position: unset; } .addCategory.form_add { position: absolute; left: 27%; top: 9%; } .contentCategory .content { width: 67%; } .contentCategory .addCategory { float: right; /* position: absolute; */ /* left: 53%; */ } .contentCategory .title { width: 70%; height: 40px; } .contentCategory { left: 232px; } /*.sidebar { width: 185px; }*/ .reports {left: 6%;} .reports .report { width: 18%; } } @media all and (min-width: 992px) { *{} .detail, .detailPrice { } .bill .title { width: 82%; } .bill .listBill { width: 80%; } .showProduct img { width: 100px; } .editCategory button.btn.btn-primary { margin-left: 315px; } .editCategory input.form-control { margin-left: 210px; } .editCategory .title { width: 79%; } .phantrang b { width: 35px; height: 35px; line-height: 35px; } .phantrang a { width: 35px; height: 35px; line-height: 35px; } .row.listProduct { width: 84%; font-size: inherit; } .type_display .typeProduct { width: 26%; margin-left: -222px; } .showProduct .type_display { width: 85%; } .showProduct .title { width: 85%; } .showProduct .title { } .contentCategory .content { width: 75%; } .contentCategory .title { width: 78%; } .contentCategory .addCategory { left: 5%; /* float: right; */ /* position: unset; */ } .addCategory .location .breadcrumb { margin-left: -7%; } } @media all and (min-width: 1280px) { *{} .login .title img { margin-left: 45%; } .showProduct .type_display { margin-left: 10px; } .showProduct .title { width: 93%; margin-left: 4px; } .showProduct .addCategory { } .row.listProduct { width: 91%; margin-left: 10px; } .detailsOrder .title { width: 93%; } .detail, .detailPrice { width: 90%; } .bill .title { width: 98%; } .bill .listBill { width: 95%; } .editProduct .title { width: 95%; margin-left: 12px; } .contentEdit { width: 125%; margin-left: 31px; margin-top: 20px; } .addProduct { margin-left: 10%; } .contentCategory .content { width: 88%; } .contentCategory .title { width: 90%; } } @media all and (min-width: 1366px) { *{} .userExists { left: 357px; } .userExists {} .reports { top: -608px; } .dKyAdmin { left: 359px; top: 53px; } /*.reports { top: -631px; }*/ }
0.48121
0.090293
.content { inline-size: 100%; margin: 0; padding-inline: var(--side-nav); padding-block: var(--top-offset); tab-size: 2; -moz-tab-size: 2; } @media (min-width: 832px) { /* can't use vars in @media :( */ .content { padding-inline-start: calc(var(--sidebar-w) + var(--side-nav)); } } .content h1 { font-size: 3.2rem; margin: 0; } .content h2 { margin-block-start: 8rem; padding-inline: 0.2rem 1.6rem; padding-block: 2rem 4rem; border-block-start: 2px solid #ddd; line-height: 1; font-size: var(--h3); letter-spacing: 0.05em; text-transform: uppercase; } .content section:first-of-type > h2 { margin-block-start: 0; } .content h4 { margin-block: 2em 1em; } .content .offset-anchor { position: relative; display: block; inset-block-start: calc(-1 * var(--top-offset)); inline-size: 0; block-size: 0; } .content .anchor { position: absolute; display: block; background: url(@sveltejs/site-kit/icons/link.svg) 0 50% no-repeat; background-size: 1em 1em; inline-size: 1.4em; block-size: 1em; inset-inline-start: -1.3em; inset-block-end: 0.3rem; opacity: 0; transition: opacity 0.2s; } .content h2 .anchor { inset-block-end: 4rem; } .content h3 .anchor { inset-block-end: 1rem; } @media (min-width: 400px) { .content h1 { font-size: 4.2rem; } } @media (min-width: 768px) { .content h1 { font-size: 5.4rem; } .content .anchor:focus, .content h2:hover .anchor, .content h3:hover .anchor, .content h4:hover .anchor, .content h5:hover .anchor, .content h6:hover .anchor { opacity: 1; } } .content h3, .content h3 > code { margin-inline: 0; margin-block: 6.4rem 1rem; padding-block-end: 1rem; color: var(--text); max-inline-size: var(--linemax); border-block-end: 1px solid #ddd; background: transparent; line-height: 1; } .content h3:first-child { border: none; margin: 0; } /* avoid doubled border-top */ .content h3 > code { border-radius: 0 0 0 0; border: none; font-size: inherit; } .content h4, .content h4 > code { font-family: inherit; font-weight: 600; font-size: 2.4rem; color: var(--second); margin-inline: 0; margin-block: 6.4rem 1.6rem; padding-inline-start: 0; background: transparent; line-height: 1; padding-block-start: 0; inset-block-start: 0; } .content h4::before { display: block; content: ' '; block-size: var(--nav-h); margin-block-start: calc(-1 * var(--nav-h)); } .content h4 > em { opacity: 0.7; } .content h5 { font-size: 2.4rem; margin-block: 2em 0.5em; } .content code { padding: 0.4rem; margin-inline: 0.2rem; margin-block: 0; inset-block-start: -0.1rem; background: var(--back-api); } .content pre code { padding: 0; margin: 0; inset-block-start: 0; background: transparent; } .content pre { margin: 0; margin-block-end: 2rem; inline-size: 100%; max-inline-size: var(--linemax); padding: 1rem; box-shadow: inset 1px 1px 6px hsla(205.7, 63.6%, 30.8%, 0.06); } .content table { margin: 0; margin-block-end: 2em; } .content section p { max-inline-size: var(--linemax); margin-block: 1em; } .content small { font-size: var(--h5); float: inline-end; pointer-events: all; color: var(--prime); cursor: pointer; } .content blockquote { color: rgba(0, 0, 0, 0.7); background-color: rgba(255, 62, 0, 0.1); border-inline-start: 4px solid #ff3e00; padding: 1rem; } .content blockquote :first-child { margin-block-start: 0; } .content blockquote :last-child { margin-block-end: 0; } .content blockquote code { background: #d5e2ea; } .content section a:hover { text-decoration: underline; } .content section a code { color: inherit; background: rgba(255, 62, 0, 0.1) !important; } /* this replaces the offset-anchor hack, which we should remove from this CSS once https://github.com/sveltejs/action-deploy-docs/issues/1 is closed */ .content h2[id], .content h3[id] { padding-block-start: 10rem; margin-block-start: -2rem; border-block-start: none; } .content h2[id]::after { content: ''; position: absolute; inline-size: 100%; inset-inline-start: 0; inset-block-start: 8rem; block-size: 2px; background: #ddd; }
sites/kit.svelte.dev/src/routes/docs/_/docs.css
.content { inline-size: 100%; margin: 0; padding-inline: var(--side-nav); padding-block: var(--top-offset); tab-size: 2; -moz-tab-size: 2; } @media (min-width: 832px) { /* can't use vars in @media :( */ .content { padding-inline-start: calc(var(--sidebar-w) + var(--side-nav)); } } .content h1 { font-size: 3.2rem; margin: 0; } .content h2 { margin-block-start: 8rem; padding-inline: 0.2rem 1.6rem; padding-block: 2rem 4rem; border-block-start: 2px solid #ddd; line-height: 1; font-size: var(--h3); letter-spacing: 0.05em; text-transform: uppercase; } .content section:first-of-type > h2 { margin-block-start: 0; } .content h4 { margin-block: 2em 1em; } .content .offset-anchor { position: relative; display: block; inset-block-start: calc(-1 * var(--top-offset)); inline-size: 0; block-size: 0; } .content .anchor { position: absolute; display: block; background: url(@sveltejs/site-kit/icons/link.svg) 0 50% no-repeat; background-size: 1em 1em; inline-size: 1.4em; block-size: 1em; inset-inline-start: -1.3em; inset-block-end: 0.3rem; opacity: 0; transition: opacity 0.2s; } .content h2 .anchor { inset-block-end: 4rem; } .content h3 .anchor { inset-block-end: 1rem; } @media (min-width: 400px) { .content h1 { font-size: 4.2rem; } } @media (min-width: 768px) { .content h1 { font-size: 5.4rem; } .content .anchor:focus, .content h2:hover .anchor, .content h3:hover .anchor, .content h4:hover .anchor, .content h5:hover .anchor, .content h6:hover .anchor { opacity: 1; } } .content h3, .content h3 > code { margin-inline: 0; margin-block: 6.4rem 1rem; padding-block-end: 1rem; color: var(--text); max-inline-size: var(--linemax); border-block-end: 1px solid #ddd; background: transparent; line-height: 1; } .content h3:first-child { border: none; margin: 0; } /* avoid doubled border-top */ .content h3 > code { border-radius: 0 0 0 0; border: none; font-size: inherit; } .content h4, .content h4 > code { font-family: inherit; font-weight: 600; font-size: 2.4rem; color: var(--second); margin-inline: 0; margin-block: 6.4rem 1.6rem; padding-inline-start: 0; background: transparent; line-height: 1; padding-block-start: 0; inset-block-start: 0; } .content h4::before { display: block; content: ' '; block-size: var(--nav-h); margin-block-start: calc(-1 * var(--nav-h)); } .content h4 > em { opacity: 0.7; } .content h5 { font-size: 2.4rem; margin-block: 2em 0.5em; } .content code { padding: 0.4rem; margin-inline: 0.2rem; margin-block: 0; inset-block-start: -0.1rem; background: var(--back-api); } .content pre code { padding: 0; margin: 0; inset-block-start: 0; background: transparent; } .content pre { margin: 0; margin-block-end: 2rem; inline-size: 100%; max-inline-size: var(--linemax); padding: 1rem; box-shadow: inset 1px 1px 6px hsla(205.7, 63.6%, 30.8%, 0.06); } .content table { margin: 0; margin-block-end: 2em; } .content section p { max-inline-size: var(--linemax); margin-block: 1em; } .content small { font-size: var(--h5); float: inline-end; pointer-events: all; color: var(--prime); cursor: pointer; } .content blockquote { color: rgba(0, 0, 0, 0.7); background-color: rgba(255, 62, 0, 0.1); border-inline-start: 4px solid #ff3e00; padding: 1rem; } .content blockquote :first-child { margin-block-start: 0; } .content blockquote :last-child { margin-block-end: 0; } .content blockquote code { background: #d5e2ea; } .content section a:hover { text-decoration: underline; } .content section a code { color: inherit; background: rgba(255, 62, 0, 0.1) !important; } /* this replaces the offset-anchor hack, which we should remove from this CSS once https://github.com/sveltejs/action-deploy-docs/issues/1 is closed */ .content h2[id], .content h3[id] { padding-block-start: 10rem; margin-block-start: -2rem; border-block-start: none; } .content h2[id]::after { content: ''; position: absolute; inline-size: 100%; inset-inline-start: 0; inset-block-start: 8rem; block-size: 2px; background: #ddd; }
0.411584
0.091748
@import url(https://fonts.googleapis.com/css?family=Lato:400,900); /* <-- Just for the demo, Yes I like pretty fonts... */ body { background: #698fc0; } .card, .btn-rectangle, .btn-rectangle:hover { width: 500px !important; } .card { margin: 0 auto; padding-top: 5px; } .btn-rectangle, .btn-rectangle:hover { height: 50px !important; background-color: #3cd5c1; color: white; font-size:24px; padding-top: 5px; margin-top: 20px; } @media only screen and (max-width: 500px) { .card, .btn-rectangle, .btn-rectangle:hover { width: 300px !important; } } .numbers{ font-size:30px; font-weight: 500; } .label{ font-weight:300; } .full-height { padding-top: 80px; font-size:20px; font-family: 'Lato',verdana, sans-serif; color: #fff; text-align:center; background:#698fc0; } ol > li { text-align: left; } .text { font-size:14px; } .left { text-align: left; } input[type=text], input[type=password]{ width: 100%; /*margin-top: 20px;*/ outline: none; padding: 8px; box-sizing: border-box; background-color: #485d7c; border: none; font-size: 16px; } ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */ color: #78879c; opacity: 1; /* Firefox */ } :-ms-input-placeholder { /* Internet Explorer 10-11 */ color: #78879c; } ::-ms-input-placeholder { /* Microsoft Edge */ color: #78879c; } .inputWithIcon input[type=text], .inputWithIcon input[type=password]{ padding-left: 40px; } .inputWithIcon { position: relative; } .inputWithIcon .phone, .inputWithIcon .password{ position: absolute; left: -35px; top: -15px; padding: 9px 8px; color: #fff; transition:.3s; } div.phone { background: url('/client/images/icon.png') no-repeat -90px -340px; transform: scale(0.2); /* Equal to scaleX(0.7) scaleY(0.7) */ -webkit-transform: scale(0.2); width:110px; height: 110px; } div.password { background: url('/client/images/icon.png') no-repeat -90px -120px; transform: scale(0.2); /* Equal to scaleX(0.7) scaleY(0.7) */ -webkit-transform: scale(0.2); width:110px; height: 110px; } .input-icon{ /*position: absolute;*/ /*margin-top: 20px;*/ /*padding: 11px;*/ /*left: 3px;*/ /*top: calc(50% - 0.5em); Keep icon in center of input, regardless of the input height */ /*float: left;*/ /*margin-right: 6px;*/ /*margin-top: -20px;*/ /*position: relative;*/ /*z-index: 2;*/ /*color: red;*/ /*position: absolute; width: 30px; height: 30px; margin-top: 20px; outline: none; padding: 8px; */ /*border: none;*/ } .input-group{ width: 100% !important; padding: 8px !important; }
public/client/css/register.css
@import url(https://fonts.googleapis.com/css?family=Lato:400,900); /* <-- Just for the demo, Yes I like pretty fonts... */ body { background: #698fc0; } .card, .btn-rectangle, .btn-rectangle:hover { width: 500px !important; } .card { margin: 0 auto; padding-top: 5px; } .btn-rectangle, .btn-rectangle:hover { height: 50px !important; background-color: #3cd5c1; color: white; font-size:24px; padding-top: 5px; margin-top: 20px; } @media only screen and (max-width: 500px) { .card, .btn-rectangle, .btn-rectangle:hover { width: 300px !important; } } .numbers{ font-size:30px; font-weight: 500; } .label{ font-weight:300; } .full-height { padding-top: 80px; font-size:20px; font-family: 'Lato',verdana, sans-serif; color: #fff; text-align:center; background:#698fc0; } ol > li { text-align: left; } .text { font-size:14px; } .left { text-align: left; } input[type=text], input[type=password]{ width: 100%; /*margin-top: 20px;*/ outline: none; padding: 8px; box-sizing: border-box; background-color: #485d7c; border: none; font-size: 16px; } ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */ color: #78879c; opacity: 1; /* Firefox */ } :-ms-input-placeholder { /* Internet Explorer 10-11 */ color: #78879c; } ::-ms-input-placeholder { /* Microsoft Edge */ color: #78879c; } .inputWithIcon input[type=text], .inputWithIcon input[type=password]{ padding-left: 40px; } .inputWithIcon { position: relative; } .inputWithIcon .phone, .inputWithIcon .password{ position: absolute; left: -35px; top: -15px; padding: 9px 8px; color: #fff; transition:.3s; } div.phone { background: url('/client/images/icon.png') no-repeat -90px -340px; transform: scale(0.2); /* Equal to scaleX(0.7) scaleY(0.7) */ -webkit-transform: scale(0.2); width:110px; height: 110px; } div.password { background: url('/client/images/icon.png') no-repeat -90px -120px; transform: scale(0.2); /* Equal to scaleX(0.7) scaleY(0.7) */ -webkit-transform: scale(0.2); width:110px; height: 110px; } .input-icon{ /*position: absolute;*/ /*margin-top: 20px;*/ /*padding: 11px;*/ /*left: 3px;*/ /*top: calc(50% - 0.5em); Keep icon in center of input, regardless of the input height */ /*float: left;*/ /*margin-right: 6px;*/ /*margin-top: -20px;*/ /*position: relative;*/ /*z-index: 2;*/ /*color: red;*/ /*position: absolute; width: 30px; height: 30px; margin-top: 20px; outline: none; padding: 8px; */ /*border: none;*/ } .input-group{ width: 100% !important; padding: 8px !important; }
0.255437
0.081082
.header { background-color: black; color: blanchedalmond; height: 75px; } .nav-link { color: blanchedalmond; margin-top: 15px; font-size: large; } body { background-image: url('../images/likemeat-CbNAuxSZTFo-unsplash.jpg'); position: relative; background-repeat: no-repeat; background-size: cover; max-width: 100%; height: auto; margin: 0; background-attachment: fixed; scroll-behavior: smooth; } #piz { color: yellow; font-family: 'Ultra', serif; font-size: 100px; font-weight: lighter; text-shadow: 2px 2px 5px rgb(231, 10, 10); margin-top: 100px; } #stop { color: white; font-size: 50px; font-family: 'Roboto', sans-serif; text-shadow: 2px 2px 5px red; } .btn { color: white; background-color: red; margin-top: 50px; font-size: 20px; } #bout { background-color: rgba(255, 255, 255, 0.7); margin-top: 100px; text-align: center; } #bout h2 { color: red; } .about p { margin-top: 90px; } .pic { margin-top: 30px; margin-bottom: 20px; } #ord { margin-top: 30px; text-align: center; color: rgb(245, 8, 8); scroll-behavior: smooth; } #ord h2 { color: white; text-shadow: 2px 2px 5px red; } .card { width: 80%; min-height: 460px; margin-top: 30px; box-shadow: 0px 8px 60px -10px rgba(13, 28, 39, 0.6); background: #fff; border-radius: 12px; max-width: 700px; position: relative; color: red; margin-left: 40px; scroll-behavior: smooth; } .order { margin-left: 100px; margin-right: 100px; } #submit-pizza { /* align-items: center; margin-left: center; */ margin-right: 180px; color: white; float: right; } #amount { align-items: center; float: left; margin-left: 520px; } #checkout { text-align: center; float: left; align-content: center; margin: 100px; border: 3px solid red; background-color: rgba(255, 215, 0, 0.5); width: 500px; margin-left: 400px; } /* #price-content { color: #FDB913; margin: 100px; } */ #order-details { margin-left: 50px; margin-right: 500px; padding-top: 10px; padding-right: 50px; color: rgb(245, 8, 8); width: 400px; align-items: center; margin-bottom: 20px; }
css/styles.css
.header { background-color: black; color: blanchedalmond; height: 75px; } .nav-link { color: blanchedalmond; margin-top: 15px; font-size: large; } body { background-image: url('../images/likemeat-CbNAuxSZTFo-unsplash.jpg'); position: relative; background-repeat: no-repeat; background-size: cover; max-width: 100%; height: auto; margin: 0; background-attachment: fixed; scroll-behavior: smooth; } #piz { color: yellow; font-family: 'Ultra', serif; font-size: 100px; font-weight: lighter; text-shadow: 2px 2px 5px rgb(231, 10, 10); margin-top: 100px; } #stop { color: white; font-size: 50px; font-family: 'Roboto', sans-serif; text-shadow: 2px 2px 5px red; } .btn { color: white; background-color: red; margin-top: 50px; font-size: 20px; } #bout { background-color: rgba(255, 255, 255, 0.7); margin-top: 100px; text-align: center; } #bout h2 { color: red; } .about p { margin-top: 90px; } .pic { margin-top: 30px; margin-bottom: 20px; } #ord { margin-top: 30px; text-align: center; color: rgb(245, 8, 8); scroll-behavior: smooth; } #ord h2 { color: white; text-shadow: 2px 2px 5px red; } .card { width: 80%; min-height: 460px; margin-top: 30px; box-shadow: 0px 8px 60px -10px rgba(13, 28, 39, 0.6); background: #fff; border-radius: 12px; max-width: 700px; position: relative; color: red; margin-left: 40px; scroll-behavior: smooth; } .order { margin-left: 100px; margin-right: 100px; } #submit-pizza { /* align-items: center; margin-left: center; */ margin-right: 180px; color: white; float: right; } #amount { align-items: center; float: left; margin-left: 520px; } #checkout { text-align: center; float: left; align-content: center; margin: 100px; border: 3px solid red; background-color: rgba(255, 215, 0, 0.5); width: 500px; margin-left: 400px; } /* #price-content { color: #FDB913; margin: 100px; } */ #order-details { margin-left: 50px; margin-right: 500px; padding-top: 10px; padding-right: 50px; color: rgb(245, 8, 8); width: 400px; align-items: center; margin-bottom: 20px; }
0.512205
0.141341
@media only screen and (max-width: 767px) { .default-btn { font-size: 14px; padding-top: 10px; padding-bottom: 10px; padding-left: 14px; padding-right: 14px; } .optional-btn { font-size: 14px; padding-top: 10px; padding-bottom: 10px; padding-left: 14px; padding-right: 14px; } .section-title { margin-bottom: 30px; } .section-title span { font-size: 12px; } .section-title h2 { font-size: 28px; } .pb-70 { padding-bottom: 20px; } .pt-100 { padding-top: 50px; } .pb-100 { padding-bottom: 50px; } .ptb-100 { padding-top: 50px; padding-bottom: 50px; } .contactModal .modal-dialog .modal-content { padding: 50px 20px; } .contactModal .modal-dialog .modal-content form #msgSubmit { font-size: 14px; } .contactModal .modal-dialog .modal-content form .help-block ul li { font-size: 12px; } .sidebar-modal .sidebar-modal-inner { width: 100%; padding-left: 20px; padding-right: 20px; } .home-slider .home-item { height: 100%; padding-top: 100px; padding-bottom: 100px; } .home-slider .home-item .slider-content { margin-top: 0; text-align: center; } .home-slider .home-item .slider-content span { font-size: 15px; } .home-slider .home-item .slider-content h1 { font-size: 32px; } .home-slider .home-item .slider-content .slider-btn { margin-top: 20px; } .home-slider .home-item .slider-content .event-list li { font-size: 14px; margin-right: 10px; } .home-slider.owl-theme .owl-nav [class*=owl-] { top: 100%; -webkit-transform: translateY(-100%); transform: translateY(-100%); font-size: 25px; } .campaigns-slider .campaigns-item { padding: 10px; } .campaigns-slider .campaigns-item .content h3 { font-size: 18px; } .campaigns-slider .campaigns-item .campaigns-list { padding: 12px 15px; } .campaigns-slider .campaigns-item .campaigns-donate .donate-one { padding: 10px 20px; font-size: 12px; } .campaigns-slider .campaigns-item .campaigns-donate .donate-two { padding: 10px 20px; font-size: 12px; } .about-section { padding-top: 50px; } .about-image { margin-top: 0; } .about-image .shape { display: none; } .about-content { padding-left: 0; padding-top: 30px; } .about-content span { font-size: 14px; } .about-content h3 { font-size: 25px; margin: 12px 0 12px 0; } .about-content .experience-text h3 { font-size: 30px; } .projects-content { padding: 30px 10px 30px 88px; } .projects-content h3 { font-size: 17px; } .projects-content .image { left: 16px; } .single-fun-fact .icon i { font-size: 45px; } .single-fun-fact h3 { font-size: 35px; margin: 5px 0 5px 0; } .single-fun-fact h3 .sign-icon { font-size: 30px; margin-left: -5px; } .fun-facts-content { margin-bottom: 30px; } .fun-facts-content span { font-size: 14px; } .fun-facts-content h3 { font-size: 25px; } .donate-area-content { padding: 20px; margin-top: 30px; } .donate-area-content::before { display: none; } .donate-area-content::after { display: none; } .donate-area-content .donate-content h3 { font-size: 20px; line-height: 1.4; } .donate-area-content .donate-form .send-btn .default-btn { padding: 12px 25px; } .events-slider .events-item .content { padding: 20px; } .events-slider .events-item .content h4 { font-size: 20px; } .events-slider .events-item .content .text { margin-bottom: 20px; position: unset; } .events-slider .events-item .content .text h3 { font-size: 20px; } .events-slider .events-item .content .text span { font-size: 12px; } .faq-accordion { margin: auto; } .faq-accordion .accordion .accordion-title { padding: 20px 50px 20px 18px; font-size: 18px; } .faq-accordion .accordion .accordion-title i { right: 18px; bottom: 40px; } .faq-accordion .accordion .accordion-content { padding-left: 20px; } .others-one-content { margin-bottom: 30px; text-align: center; } .others-one-content h3 { font-size: 20px; margin-bottom: 10px; } .others-one-content .others-one-btn { position: relative; } .blog-item .content .post-meta li { font-size: 13px; margin-right: 10px; } .others-two-content { text-align: center; } .others-two-content h3 { font-size: 20px; margin-bottom: 10px; } .others-two-content .others-two-btn { position: relative; } .subscribe-area { margin-top: 0; margin-bottom: 50px; padding: 20px; text-align: center; } .subscribe-area .subscribe-content h2 { font-size: 20px; } .subscribe-area .newsletter-form { margin-top: 25px; } .subscribe-area .newsletter-form .input-newsletter { height: 60px; } .subscribe-area .newsletter-form button { position: relative; height: 50px; margin: 20px auto 0; display: table; } .footer-bottom-text { text-align: center; } .footer-bottom-social { margin-top: 20px; text-align: center; } .demo-modal-panel { display: none; } .example-demo-modal .inner { display: none; } .bottom-icon .down_arrow { bottom: 0; background-color: transparent; -webkit-box-shadow: none; box-shadow: none; left: 0; right: 0; max-width: 100px; margin: auto; } .bottom-icon .down_arrow .scroll_down { margin: auto; position: relative; height: 35px; width: 20px; } .bottom-icon .down_arrow .scroll_down::before { left: 60%; width: 2px; top: 7px; } .campaigns-section .section-title { margin-bottom: 0; } .campaigns-slider .campaigns-item .campaigns-list li { margin-right: 29px; } .about-section::after { display: none; } .projects-content { text-align: center; padding: 20px; } .projects-content .image { position: unset; margin-bottom: 20px; } .single-fun-fact { padding: 20px; } .single-fun-fact.mb { margin-bottom: 30px !important; } .blog-item .content { padding: 15px; } .single-footer-widget h3 { font-size: 22px; margin-bottom: 15px; } .single-footer-widget .quick-links li { font-size: 14px; } .single-footer-widget .footer-contact-info li { font-size: 14px; } .single-footer-widget .footer-contact-info li i { font-size: 18px; } .footer-bottom-social li a { width: 30px; height: 30px; font-size: 12px; } .team-item .image img { width: 100%; } .donate-section .send-btn { margin: auto; display: table; } .black-logo { position: relative; top: 2px; } .user-area-all-style .contact-form-action { padding: 20px; } .user-area-all-style .contact-form-action form .default-btn { width: 100%; } .user-area-all-style .contact-form-action form .form-condition { margin-bottom: 0px; } .user-area-all-style .contact-form-action .forget { margin-bottom: 30px; float: unset; } .user-area-all-style .contact-form-action .now-register { float: unset; } .user-area-all-style .contact-form-action .forget { margin-bottom: 30px !important; -ms-flex-preferred-size: block; flex-basis: block; } .coming-soon-area .coming-soon-content { height: 100%; padding: 30px; -webkit-box-shadow: none; box-shadow: none; } .coming-soon-area .coming-soon-content h1 { font-size: 25px; line-height: 1.1; margin-top: 0; } .coming-soon-area .coming-soon-content p { font-size: 13px; margin-top: 15px; } .coming-soon-area .coming-soon-content #timer { margin-top: 20px; } .coming-soon-area .coming-soon-content #timer div { font-size: 30px; margin-left: 3px; margin-right: 3px; } .coming-soon-area .coming-soon-content #timer div span { font-size: 14px; margin-top: -5px; } .coming-soon-area .coming-soon-content #timer div::before { display: none; } .coming-soon-area .coming-soon-content .newsletter-form { margin-top: 35px; } .coming-soon-area .coming-soon-content .newsletter-form .input-newsletter { height: 55px; padding-left: 13px; font-size: 15px; } .coming-soon-area .coming-soon-content .newsletter-form button { position: relative; height: auto; padding: 14px 30px; font-size: 14px; margin-top: 15px; } .error-area { padding: 70px 0; } .error-area .error-content-wrap p { margin: 15px 0 20px; font-size: 15px; } .error-area .error-content-wrap h1 { font-size: 100px; } .page-navigation-area { margin: 0px auto 0; } .blog-details-area .blog-details-desc .article-content .entry-meta ul li { display: block; font-size: 15px; margin-right: 0; margin-bottom: 5px; } .blog-details-area .blog-details-desc .article-content .entry-meta ul li::before { display: none; } .blog-details-area .blog-details-desc .article-content h3 { line-height: 1.5; margin-bottom: 10px; margin-top: 20px; font-size: 22px; } .blog-details-area .blog-details-desc .article-content p { font-size: 15px; } .blog-details-area .blog-details-desc .article-content .features-list li { font-size: 15px; } .blog-details-area .widget-area .widget { padding: 0; } .blog-details-area blockquote { padding: 30px !important; } .blog-details-area blockquote p { font-size: 16px !important; } .blog-details-area .blockquote { padding: 30px !important; } .blog-details-area .blockquote p { font-size: 16px !important; } .blog-details-area .comments-area .comment-author { font-size: 15px; margin-bottom: 0.3em; } .blog-details-area .comments-area .comment-author .avatar { left: 0; position: relative; display: block; margin-bottom: 10px; } .blog-details-area .comments-area .comment-body { padding-left: 0; } .blog-details-area .comments-area .comments-title { font-size: 19px; } .blog-details-area .comments-area .comments-title::before { left: -20px; } .blog-details-area .comments-area .comment-metadata { font-size: 12px; } .blog-details-area .comments-area .comment-respond { padding: 20px; } .blog-details-area .comments-area .comment-respond .comment-reply-title { font-size: 19px; } .blog-details-area .comments-area .comment-respond .comment-reply-title::before { left: -20px; } .blog-details-area .comments-area .comment-respond .comment-form-author { width: 100%; padding-right: 0; } .blog-details-area .comments-area .comment-respond .comment-form-email { width: 100%; padding-left: 0; } .blog-details-area .comments-area .comment-respond .form-submit input { padding: 12px 25px 10px; width: 100%; } .blog-details-area .b-d-s-item { margin-bottom: 30px; } .blog-details-area .b-d-s-item img { margin-bottom: 0; } .blog-details-area .b-d-s-item h3 { margin-top: 10px !important; } .blog-details-area .b-d-s-item.mb-0 { margin-bottom: 10px !important; } .blog-details-area .blog-details-desc .article-content .article-image { margin-bottom: 20px; } .blog-details-area .comments-area .children { margin-left: 0; } .blog-details-area .widget-area .widget:first-child { margin-top: 35px; } .page-title-area { padding-top: 150px; padding-bottom: 100px; } .page-title-area .page-title-content h2 { font-size: 30px; } .page-title-area .page-title-content ul li { font-size: 14px; } .testimonials-sections .testimonials-item { padding: 20px; } .testimonials-sections .testimonials-item .content { padding-left: 0; text-align: center; } .testimonials-sections .testimonials-item .content .image { position: unset; margin-bottom: 10px; } .testimonials-sections .testimonials-item .content .image i { display: none; } .testimonials-sections .testimonials-item .content .text::before { display: none; } .testimonials-sections .testimonials-item .dot::before { display: none; } .quick-contact { margin-top: 50px; padding: 20px; } .quick-contact h3 { font-size: 24px !important; } .contact-area .section-title h2 { font-size: 24px; } .contact-area .contact-wrap { padding: 20px; } .faq-contact-area #contactForm { padding: 20px; } .terms-conditions h3 { font-size: 20px; } .contact-area .contact-wrap .text-danger { font-size: 20px; } .about-page img { margin-bottom: 30px; } .home-slider .home-item .slider-content { margin-top: 20px; } } @media only screen and (min-width: 576px) and (max-width: 767px) { .faq-accordion .accordion .accordion-title i { bottom: 24px; } .main-responsive-nav .logo { width: 22%; } .mean-container a.meanmenu-reveal { padding: 8px 15px 0 0; } .single-fun-fact.mb { margin-bottom: 0 !important; } .donate-section .container-fluid { max-width: 540px; } .user-area-all-style .contact-form-action .now-register { float: right; } .user-area-all-style .contact-form-action form .form-condition .agree-label { margin-bottom: 30px; } .cart-area .cart-wraps .continue-shopping-box { margin-bottom: 0; } } @media only screen and (min-width: 768px) and (max-width: 991px) { .default-btn { font-size: 14px; padding-top: 10px; padding-bottom: 10px; padding-left: 14px; padding-right: 14px; } .optional-btn { font-size: 14px; padding-top: 10px; padding-bottom: 10px; padding-left: 14px; padding-right: 14px; } .section-title { margin-bottom: 30px; } .section-title span { font-size: 12px; } .section-title h2 { font-size: 28px; } .pb-70 { padding-bottom: 40px; } .pt-100 { padding-top: 70px; } .pb-100 { padding-bottom: 70px; } .ptb-100 { padding-top: 70px; padding-bottom: 70px; } .contactModal .modal-dialog .modal-content { padding: 50px 20px; } .contactModal .modal-dialog .modal-content form #msgSubmit { font-size: 14px; } .contactModal .modal-dialog .modal-content form .help-block ul li { font-size: 12px; } .sidebar-modal .sidebar-modal-inner { width: 50%; padding-left: 20px; padding-right: 20px; } .home-slider .home-item { height: 100%; padding-top: 220px; padding-bottom: 200px; } .home-slider .home-item .slider-content { margin-top: 0; text-align: center; } .home-slider .home-item .slider-content span { font-size: 15px; } .home-slider .home-item .slider-content h1 { font-size: 50px; } .home-slider .home-item .slider-content .slider-btn { margin-top: 20px; } .home-slider .home-item .slider-content .event-list li { font-size: 16px; margin-right: 10px; } .home-slider.owl-theme .owl-nav [class*=owl-] { top: 100%; -webkit-transform: translateY(-100%); transform: translateY(-100%); } .campaigns-slider .campaigns-item { padding: 18px; } .campaigns-slider .campaigns-item .content h3 { font-size: 18px; } .campaigns-slider .campaigns-item .campaigns-list { padding: 12px 15px; } .campaigns-slider .campaigns-item .campaigns-donate .donate-one { padding: 10px 20px; font-size: 12px; } .campaigns-slider .campaigns-item .campaigns-donate .donate-two { padding: 10px 20px; font-size: 12px; } .about-section { padding-top: 70px; } .about-image { margin-top: 0; text-align: center; } .about-image img { width: 100%; } .about-image .shape { display: none; } .about-content { padding-left: 0; margin-top: 0; padding-top: 30px; } .about-content span { font-size: 14px; } .about-content h3 { font-size: 25px; margin: 12px 0 12px 0; } .about-content .experience-text h3 { font-size: 30px; } .projects-content { padding: 30px 10px 30px 88px; } .projects-content h3 { font-size: 17px; } .projects-content .image { left: 16px; } .single-fun-fact .icon i { font-size: 45px; } .single-fun-fact h3 { font-size: 35px; margin: 5px 0 5px 0; } .single-fun-fact h3 .sign-icon { font-size: 30px; margin-left: -5px; } .fun-facts-content { margin-bottom: 30px; } .fun-facts-content span { font-size: 14px; } .fun-facts-content h3 { font-size: 25px; } .donate-area-content { padding: 25px 20px; margin-top: 30px; } .donate-area-content::before { display: none; } .donate-area-content::after { display: none; } .donate-area-content .donate-content h3 { font-size: 20px; line-height: 1.4; } .donate-area-content .donate-form .send-btn .default-btn { padding: 12px 25px; } .donate-image { text-align: center; } .donate-image img { width: 100%; } .events-slider .events-item .content { padding: 20px; } .events-slider .events-item .content h4 { font-size: 18px; } .events-slider .events-item .content .text { position: unset; margin-bottom: 20px; } .events-slider .events-item .content .text h3 { font-size: 20px; } .events-slider .events-item .content .text span { font-size: 12px; } .faq-accordion { margin: auto; } .faq-accordion .accordion .accordion-title { padding: 20px 50px 20px 18px; font-size: 18px; } .faq-accordion .accordion .accordion-title i { right: 18px; bottom: 25px; } .faq-accordion .accordion .accordion-content { padding-left: 20px; } .blog-item .content .post-meta li { font-size: 14px; margin-right: 10px; } .others-one-content { text-align: center; } .others-one-content h3 { font-size: 20px; margin-bottom: 10px; } .others-one-content .others-one-btn { position: relative; } .others-two-content { text-align: center; } .others-two-content h3 { font-size: 20px; margin-bottom: 10px; } .others-two-content .others-two-btn { position: relative; } .subscribe-area { margin-top: 0; margin-bottom: 50px; } .subscribe-area .subscribe-content h2 { font-size: 20px; } .subscribe-area .newsletter-form { margin-top: 25px; } .subscribe-area .newsletter-form .input-newsletter { height: 60px; } .subscribe-area .newsletter-form button { position: relative; right: 0; top: 10px; height: 50px; } .footer-bottom-text { text-align: center; } .footer-bottom-social { margin-top: 20px; text-align: center; } .example-demo-modal .inner { width: 400px; } .bottom-icon .down_arrow { bottom: 0; background-color: transparent; -webkit-box-shadow: none; box-shadow: none; left: 0; right: 0; max-width: 100px; margin: auto; } .bottom-icon .down_arrow .scroll_down { margin: auto; position: relative; } .bottom-icon .down_arrow .scroll_down::before { left: 59%; content: ''; width: 2px; top: 10px; } .campaigns-section .section-title { margin-bottom: 0; } .campaigns-slider .campaigns-item .campaigns-list li { margin-right: 29px; } .about-section::after { display: none; } .projects-content { text-align: center; padding: 20px; } .projects-content .image { position: unset; margin-bottom: 20px; } .fun-facts-area { text-align: center; } .single-fun-fact { padding: 20px; } .blog-item .content { padding: 15px; } .single-footer-widget h3 { font-size: 22px; margin-bottom: 15px; } .single-footer-widget .quick-links li { font-size: 14px; } .single-footer-widget .footer-contact-info li { font-size: 14px; } .single-footer-widget .footer-contact-info li i { font-size: 18px; } .footer-bottom-social li a { width: 30px; height: 30px; font-size: 12px; } .team-item .image img { width: 100%; } .donate-section .container-fluid { max-width: 720px; } .donate-section .send-btn { margin: auto; display: table; } .demo-modal-panel { top: 26%; } .black-logo { position: relative; top: 2px; } .page-navigation-area { margin: 0px auto 0; } #secondary { margin-top: 35px; } .page-title-area { padding-top: 150px; padding-bottom: 100px; } .page-title-area .page-title-content h2 { font-size: 30px; } .page-title-area .page-title-content ul li { font-size: 14px; } .blog-details-area .blog-details-desc .article-content h3 { font-size: 25px; } .testimonials-sections .testimonials-item { padding: 20px; } .testimonials-sections .testimonials-item .content { padding-left: 0; text-align: center; } .testimonials-sections .testimonials-item .content .image { position: unset; margin-bottom: 10px; } .testimonials-sections .testimonials-item .content .image i { display: none; } .testimonials-sections .testimonials-item .content .text::before { display: none; } .testimonials-sections .testimonials-item .dot::before { display: none; } .quick-contact { margin-top: 50px; padding: 30px; } .contact-area .contact-wrap { padding: 30px; } .terms-conditions h3 { font-size: 22px; } .contact-area .contact-wrap .text-danger { font-size: 20px; } .about-page img { margin-bottom: 30px; } } @media only screen and (min-width: 992px) and (max-width: 1199px) { .sidebar-modal .sidebar-modal-inner { padding-top: 50px; padding-bottom: 40px; padding-left: 20px; padding-right: 20px; width: 50%; } .sidebar-modal .sidebar-contact-area .sidebar-contact-info .contact-info-content h2 { font-size: 20px; } .faq-accordion .accordion .accordion-title { padding: 20px 20px 20px 16px; font-size: 18px; } .donate-area-content { padding: 20px 20px; } .donate-area-content .donate-form .form-group .form-control { font-size: 14px; } .team-item .image .content h3 { font-size: 18px; } .team-item .image .social { top: 10px; } .events-slider .events-item .content { padding: 30px 30px 30px 115px; } .events-slider .events-item .content h4 { font-size: 18px; } .events-slider .events-item .content .text { padding: 10px; } .events-slider .events-item .content .text h3 { font-size: 20px; } .events-slider .events-item .content .text span { font-size: 12px; } .projects-content { padding: 30px 10px 30px 85px; } .projects-content h3 { font-size: 17px; } .projects-content .learn-btn { font-size: 13px; } .projects-content .image { left: 15px; } .single-fun-fact { padding: 20px 30px; } .single-fun-fact .icon i { font-size: 45px; } .single-fun-fact h3 { font-size: 35px; margin: 5px 0 5px 0; } .single-fun-fact h3 .sign-icon { font-size: 30px; margin-left: -5px; } .blog-item .content .post-meta li { font-size: 13px; margin-right: 10px; } .single-footer-widget .gallery li img { max-width: 65px; } .footer-bottom-text p { font-size: 15px; } .campaigns-slider .campaigns-item { padding: 15px; } .campaigns-slider .campaigns-item .campaigns-list { padding: 16px 16px; } .campaigns-slider .campaigns-item .campaigns-donate .donate-two { padding: 10px 30px; } .campaigns-slider .campaigns-item .content h3 { font-size: 19px; } .about-section { padding-top: 100px; } .about-section::after { display: none; } .about-content { padding-top: 0; margin-top: 20px; } .about-image .shape { top: 70px; } .projects-content { text-align: center; padding: 30px; } .projects-content .image { position: unset; margin-bottom: 20px; } .fun-facts-content h3 { font-size: 45px; } .blog-item .content { padding: 15px; } .subscribe-area .subscribe-content h2 { font-size: 28px; } .single-footer-widget .gallery li { margin-bottom: 5px; margin-right: 2px; } .go-top.active { top: 94%; } .others-one-content h3 { font-size: 19px; } .others-two-content h3 { font-size: 19px; } .home-slider .home-item .slider-content h1 { font-size: 70px; } .home-slider .home-item .slider-content span { font-size: 25px; } .main-nav nav .navbar-nav .nav-item a { font-size: 14px; } } @media only screen and (min-width: 1824px) { .bottom-icon .down_arrow { padding: 32px; right: 177px; } .bottom-icon .down_arrow .scroll_down::before { top: 40px; } .donate-area-content { max-width: 810px; } .donate-section .container-fluid { max-width: 1620px; } } /* Only Mobil Menu Max width 991px */ @media only screen and (max-width: 991px) { .mean-container .mean-bar { background-color: #25245e; -webkit-box-shadow: 0px 20px 20px 20px rgba(0, 0, 0, 0.05); box-shadow: 0px 20px 20px 20px rgba(0, 0, 0, 0.05); height: 70px; } .mean-container a.meanmenu-reveal { padding: 24px 15px 0 0; color: #ffffff; } .mean-container a.meanmenu-reveal span { background-color: #ffffff; position: relative; top: 8px; margin-top: -5px; } .mobile-nav .logo { top: 22px; } .mobile-nav.mean-container .mean-nav { margin-top: 70px; } .mobile-nav.mean-container .mean-nav ul li a:hover { color: #0da827; } .mobile-nav.mean-container .mean-nav ul li a.active { color: #0da827; } .nav-area .others-option { display: none; } .mobile-nav nav .navbar-nav { height: 325px; } } /*# sourceMappingURL=responsive.css.map */
public/assets/css/responsive.css
@media only screen and (max-width: 767px) { .default-btn { font-size: 14px; padding-top: 10px; padding-bottom: 10px; padding-left: 14px; padding-right: 14px; } .optional-btn { font-size: 14px; padding-top: 10px; padding-bottom: 10px; padding-left: 14px; padding-right: 14px; } .section-title { margin-bottom: 30px; } .section-title span { font-size: 12px; } .section-title h2 { font-size: 28px; } .pb-70 { padding-bottom: 20px; } .pt-100 { padding-top: 50px; } .pb-100 { padding-bottom: 50px; } .ptb-100 { padding-top: 50px; padding-bottom: 50px; } .contactModal .modal-dialog .modal-content { padding: 50px 20px; } .contactModal .modal-dialog .modal-content form #msgSubmit { font-size: 14px; } .contactModal .modal-dialog .modal-content form .help-block ul li { font-size: 12px; } .sidebar-modal .sidebar-modal-inner { width: 100%; padding-left: 20px; padding-right: 20px; } .home-slider .home-item { height: 100%; padding-top: 100px; padding-bottom: 100px; } .home-slider .home-item .slider-content { margin-top: 0; text-align: center; } .home-slider .home-item .slider-content span { font-size: 15px; } .home-slider .home-item .slider-content h1 { font-size: 32px; } .home-slider .home-item .slider-content .slider-btn { margin-top: 20px; } .home-slider .home-item .slider-content .event-list li { font-size: 14px; margin-right: 10px; } .home-slider.owl-theme .owl-nav [class*=owl-] { top: 100%; -webkit-transform: translateY(-100%); transform: translateY(-100%); font-size: 25px; } .campaigns-slider .campaigns-item { padding: 10px; } .campaigns-slider .campaigns-item .content h3 { font-size: 18px; } .campaigns-slider .campaigns-item .campaigns-list { padding: 12px 15px; } .campaigns-slider .campaigns-item .campaigns-donate .donate-one { padding: 10px 20px; font-size: 12px; } .campaigns-slider .campaigns-item .campaigns-donate .donate-two { padding: 10px 20px; font-size: 12px; } .about-section { padding-top: 50px; } .about-image { margin-top: 0; } .about-image .shape { display: none; } .about-content { padding-left: 0; padding-top: 30px; } .about-content span { font-size: 14px; } .about-content h3 { font-size: 25px; margin: 12px 0 12px 0; } .about-content .experience-text h3 { font-size: 30px; } .projects-content { padding: 30px 10px 30px 88px; } .projects-content h3 { font-size: 17px; } .projects-content .image { left: 16px; } .single-fun-fact .icon i { font-size: 45px; } .single-fun-fact h3 { font-size: 35px; margin: 5px 0 5px 0; } .single-fun-fact h3 .sign-icon { font-size: 30px; margin-left: -5px; } .fun-facts-content { margin-bottom: 30px; } .fun-facts-content span { font-size: 14px; } .fun-facts-content h3 { font-size: 25px; } .donate-area-content { padding: 20px; margin-top: 30px; } .donate-area-content::before { display: none; } .donate-area-content::after { display: none; } .donate-area-content .donate-content h3 { font-size: 20px; line-height: 1.4; } .donate-area-content .donate-form .send-btn .default-btn { padding: 12px 25px; } .events-slider .events-item .content { padding: 20px; } .events-slider .events-item .content h4 { font-size: 20px; } .events-slider .events-item .content .text { margin-bottom: 20px; position: unset; } .events-slider .events-item .content .text h3 { font-size: 20px; } .events-slider .events-item .content .text span { font-size: 12px; } .faq-accordion { margin: auto; } .faq-accordion .accordion .accordion-title { padding: 20px 50px 20px 18px; font-size: 18px; } .faq-accordion .accordion .accordion-title i { right: 18px; bottom: 40px; } .faq-accordion .accordion .accordion-content { padding-left: 20px; } .others-one-content { margin-bottom: 30px; text-align: center; } .others-one-content h3 { font-size: 20px; margin-bottom: 10px; } .others-one-content .others-one-btn { position: relative; } .blog-item .content .post-meta li { font-size: 13px; margin-right: 10px; } .others-two-content { text-align: center; } .others-two-content h3 { font-size: 20px; margin-bottom: 10px; } .others-two-content .others-two-btn { position: relative; } .subscribe-area { margin-top: 0; margin-bottom: 50px; padding: 20px; text-align: center; } .subscribe-area .subscribe-content h2 { font-size: 20px; } .subscribe-area .newsletter-form { margin-top: 25px; } .subscribe-area .newsletter-form .input-newsletter { height: 60px; } .subscribe-area .newsletter-form button { position: relative; height: 50px; margin: 20px auto 0; display: table; } .footer-bottom-text { text-align: center; } .footer-bottom-social { margin-top: 20px; text-align: center; } .demo-modal-panel { display: none; } .example-demo-modal .inner { display: none; } .bottom-icon .down_arrow { bottom: 0; background-color: transparent; -webkit-box-shadow: none; box-shadow: none; left: 0; right: 0; max-width: 100px; margin: auto; } .bottom-icon .down_arrow .scroll_down { margin: auto; position: relative; height: 35px; width: 20px; } .bottom-icon .down_arrow .scroll_down::before { left: 60%; width: 2px; top: 7px; } .campaigns-section .section-title { margin-bottom: 0; } .campaigns-slider .campaigns-item .campaigns-list li { margin-right: 29px; } .about-section::after { display: none; } .projects-content { text-align: center; padding: 20px; } .projects-content .image { position: unset; margin-bottom: 20px; } .single-fun-fact { padding: 20px; } .single-fun-fact.mb { margin-bottom: 30px !important; } .blog-item .content { padding: 15px; } .single-footer-widget h3 { font-size: 22px; margin-bottom: 15px; } .single-footer-widget .quick-links li { font-size: 14px; } .single-footer-widget .footer-contact-info li { font-size: 14px; } .single-footer-widget .footer-contact-info li i { font-size: 18px; } .footer-bottom-social li a { width: 30px; height: 30px; font-size: 12px; } .team-item .image img { width: 100%; } .donate-section .send-btn { margin: auto; display: table; } .black-logo { position: relative; top: 2px; } .user-area-all-style .contact-form-action { padding: 20px; } .user-area-all-style .contact-form-action form .default-btn { width: 100%; } .user-area-all-style .contact-form-action form .form-condition { margin-bottom: 0px; } .user-area-all-style .contact-form-action .forget { margin-bottom: 30px; float: unset; } .user-area-all-style .contact-form-action .now-register { float: unset; } .user-area-all-style .contact-form-action .forget { margin-bottom: 30px !important; -ms-flex-preferred-size: block; flex-basis: block; } .coming-soon-area .coming-soon-content { height: 100%; padding: 30px; -webkit-box-shadow: none; box-shadow: none; } .coming-soon-area .coming-soon-content h1 { font-size: 25px; line-height: 1.1; margin-top: 0; } .coming-soon-area .coming-soon-content p { font-size: 13px; margin-top: 15px; } .coming-soon-area .coming-soon-content #timer { margin-top: 20px; } .coming-soon-area .coming-soon-content #timer div { font-size: 30px; margin-left: 3px; margin-right: 3px; } .coming-soon-area .coming-soon-content #timer div span { font-size: 14px; margin-top: -5px; } .coming-soon-area .coming-soon-content #timer div::before { display: none; } .coming-soon-area .coming-soon-content .newsletter-form { margin-top: 35px; } .coming-soon-area .coming-soon-content .newsletter-form .input-newsletter { height: 55px; padding-left: 13px; font-size: 15px; } .coming-soon-area .coming-soon-content .newsletter-form button { position: relative; height: auto; padding: 14px 30px; font-size: 14px; margin-top: 15px; } .error-area { padding: 70px 0; } .error-area .error-content-wrap p { margin: 15px 0 20px; font-size: 15px; } .error-area .error-content-wrap h1 { font-size: 100px; } .page-navigation-area { margin: 0px auto 0; } .blog-details-area .blog-details-desc .article-content .entry-meta ul li { display: block; font-size: 15px; margin-right: 0; margin-bottom: 5px; } .blog-details-area .blog-details-desc .article-content .entry-meta ul li::before { display: none; } .blog-details-area .blog-details-desc .article-content h3 { line-height: 1.5; margin-bottom: 10px; margin-top: 20px; font-size: 22px; } .blog-details-area .blog-details-desc .article-content p { font-size: 15px; } .blog-details-area .blog-details-desc .article-content .features-list li { font-size: 15px; } .blog-details-area .widget-area .widget { padding: 0; } .blog-details-area blockquote { padding: 30px !important; } .blog-details-area blockquote p { font-size: 16px !important; } .blog-details-area .blockquote { padding: 30px !important; } .blog-details-area .blockquote p { font-size: 16px !important; } .blog-details-area .comments-area .comment-author { font-size: 15px; margin-bottom: 0.3em; } .blog-details-area .comments-area .comment-author .avatar { left: 0; position: relative; display: block; margin-bottom: 10px; } .blog-details-area .comments-area .comment-body { padding-left: 0; } .blog-details-area .comments-area .comments-title { font-size: 19px; } .blog-details-area .comments-area .comments-title::before { left: -20px; } .blog-details-area .comments-area .comment-metadata { font-size: 12px; } .blog-details-area .comments-area .comment-respond { padding: 20px; } .blog-details-area .comments-area .comment-respond .comment-reply-title { font-size: 19px; } .blog-details-area .comments-area .comment-respond .comment-reply-title::before { left: -20px; } .blog-details-area .comments-area .comment-respond .comment-form-author { width: 100%; padding-right: 0; } .blog-details-area .comments-area .comment-respond .comment-form-email { width: 100%; padding-left: 0; } .blog-details-area .comments-area .comment-respond .form-submit input { padding: 12px 25px 10px; width: 100%; } .blog-details-area .b-d-s-item { margin-bottom: 30px; } .blog-details-area .b-d-s-item img { margin-bottom: 0; } .blog-details-area .b-d-s-item h3 { margin-top: 10px !important; } .blog-details-area .b-d-s-item.mb-0 { margin-bottom: 10px !important; } .blog-details-area .blog-details-desc .article-content .article-image { margin-bottom: 20px; } .blog-details-area .comments-area .children { margin-left: 0; } .blog-details-area .widget-area .widget:first-child { margin-top: 35px; } .page-title-area { padding-top: 150px; padding-bottom: 100px; } .page-title-area .page-title-content h2 { font-size: 30px; } .page-title-area .page-title-content ul li { font-size: 14px; } .testimonials-sections .testimonials-item { padding: 20px; } .testimonials-sections .testimonials-item .content { padding-left: 0; text-align: center; } .testimonials-sections .testimonials-item .content .image { position: unset; margin-bottom: 10px; } .testimonials-sections .testimonials-item .content .image i { display: none; } .testimonials-sections .testimonials-item .content .text::before { display: none; } .testimonials-sections .testimonials-item .dot::before { display: none; } .quick-contact { margin-top: 50px; padding: 20px; } .quick-contact h3 { font-size: 24px !important; } .contact-area .section-title h2 { font-size: 24px; } .contact-area .contact-wrap { padding: 20px; } .faq-contact-area #contactForm { padding: 20px; } .terms-conditions h3 { font-size: 20px; } .contact-area .contact-wrap .text-danger { font-size: 20px; } .about-page img { margin-bottom: 30px; } .home-slider .home-item .slider-content { margin-top: 20px; } } @media only screen and (min-width: 576px) and (max-width: 767px) { .faq-accordion .accordion .accordion-title i { bottom: 24px; } .main-responsive-nav .logo { width: 22%; } .mean-container a.meanmenu-reveal { padding: 8px 15px 0 0; } .single-fun-fact.mb { margin-bottom: 0 !important; } .donate-section .container-fluid { max-width: 540px; } .user-area-all-style .contact-form-action .now-register { float: right; } .user-area-all-style .contact-form-action form .form-condition .agree-label { margin-bottom: 30px; } .cart-area .cart-wraps .continue-shopping-box { margin-bottom: 0; } } @media only screen and (min-width: 768px) and (max-width: 991px) { .default-btn { font-size: 14px; padding-top: 10px; padding-bottom: 10px; padding-left: 14px; padding-right: 14px; } .optional-btn { font-size: 14px; padding-top: 10px; padding-bottom: 10px; padding-left: 14px; padding-right: 14px; } .section-title { margin-bottom: 30px; } .section-title span { font-size: 12px; } .section-title h2 { font-size: 28px; } .pb-70 { padding-bottom: 40px; } .pt-100 { padding-top: 70px; } .pb-100 { padding-bottom: 70px; } .ptb-100 { padding-top: 70px; padding-bottom: 70px; } .contactModal .modal-dialog .modal-content { padding: 50px 20px; } .contactModal .modal-dialog .modal-content form #msgSubmit { font-size: 14px; } .contactModal .modal-dialog .modal-content form .help-block ul li { font-size: 12px; } .sidebar-modal .sidebar-modal-inner { width: 50%; padding-left: 20px; padding-right: 20px; } .home-slider .home-item { height: 100%; padding-top: 220px; padding-bottom: 200px; } .home-slider .home-item .slider-content { margin-top: 0; text-align: center; } .home-slider .home-item .slider-content span { font-size: 15px; } .home-slider .home-item .slider-content h1 { font-size: 50px; } .home-slider .home-item .slider-content .slider-btn { margin-top: 20px; } .home-slider .home-item .slider-content .event-list li { font-size: 16px; margin-right: 10px; } .home-slider.owl-theme .owl-nav [class*=owl-] { top: 100%; -webkit-transform: translateY(-100%); transform: translateY(-100%); } .campaigns-slider .campaigns-item { padding: 18px; } .campaigns-slider .campaigns-item .content h3 { font-size: 18px; } .campaigns-slider .campaigns-item .campaigns-list { padding: 12px 15px; } .campaigns-slider .campaigns-item .campaigns-donate .donate-one { padding: 10px 20px; font-size: 12px; } .campaigns-slider .campaigns-item .campaigns-donate .donate-two { padding: 10px 20px; font-size: 12px; } .about-section { padding-top: 70px; } .about-image { margin-top: 0; text-align: center; } .about-image img { width: 100%; } .about-image .shape { display: none; } .about-content { padding-left: 0; margin-top: 0; padding-top: 30px; } .about-content span { font-size: 14px; } .about-content h3 { font-size: 25px; margin: 12px 0 12px 0; } .about-content .experience-text h3 { font-size: 30px; } .projects-content { padding: 30px 10px 30px 88px; } .projects-content h3 { font-size: 17px; } .projects-content .image { left: 16px; } .single-fun-fact .icon i { font-size: 45px; } .single-fun-fact h3 { font-size: 35px; margin: 5px 0 5px 0; } .single-fun-fact h3 .sign-icon { font-size: 30px; margin-left: -5px; } .fun-facts-content { margin-bottom: 30px; } .fun-facts-content span { font-size: 14px; } .fun-facts-content h3 { font-size: 25px; } .donate-area-content { padding: 25px 20px; margin-top: 30px; } .donate-area-content::before { display: none; } .donate-area-content::after { display: none; } .donate-area-content .donate-content h3 { font-size: 20px; line-height: 1.4; } .donate-area-content .donate-form .send-btn .default-btn { padding: 12px 25px; } .donate-image { text-align: center; } .donate-image img { width: 100%; } .events-slider .events-item .content { padding: 20px; } .events-slider .events-item .content h4 { font-size: 18px; } .events-slider .events-item .content .text { position: unset; margin-bottom: 20px; } .events-slider .events-item .content .text h3 { font-size: 20px; } .events-slider .events-item .content .text span { font-size: 12px; } .faq-accordion { margin: auto; } .faq-accordion .accordion .accordion-title { padding: 20px 50px 20px 18px; font-size: 18px; } .faq-accordion .accordion .accordion-title i { right: 18px; bottom: 25px; } .faq-accordion .accordion .accordion-content { padding-left: 20px; } .blog-item .content .post-meta li { font-size: 14px; margin-right: 10px; } .others-one-content { text-align: center; } .others-one-content h3 { font-size: 20px; margin-bottom: 10px; } .others-one-content .others-one-btn { position: relative; } .others-two-content { text-align: center; } .others-two-content h3 { font-size: 20px; margin-bottom: 10px; } .others-two-content .others-two-btn { position: relative; } .subscribe-area { margin-top: 0; margin-bottom: 50px; } .subscribe-area .subscribe-content h2 { font-size: 20px; } .subscribe-area .newsletter-form { margin-top: 25px; } .subscribe-area .newsletter-form .input-newsletter { height: 60px; } .subscribe-area .newsletter-form button { position: relative; right: 0; top: 10px; height: 50px; } .footer-bottom-text { text-align: center; } .footer-bottom-social { margin-top: 20px; text-align: center; } .example-demo-modal .inner { width: 400px; } .bottom-icon .down_arrow { bottom: 0; background-color: transparent; -webkit-box-shadow: none; box-shadow: none; left: 0; right: 0; max-width: 100px; margin: auto; } .bottom-icon .down_arrow .scroll_down { margin: auto; position: relative; } .bottom-icon .down_arrow .scroll_down::before { left: 59%; content: ''; width: 2px; top: 10px; } .campaigns-section .section-title { margin-bottom: 0; } .campaigns-slider .campaigns-item .campaigns-list li { margin-right: 29px; } .about-section::after { display: none; } .projects-content { text-align: center; padding: 20px; } .projects-content .image { position: unset; margin-bottom: 20px; } .fun-facts-area { text-align: center; } .single-fun-fact { padding: 20px; } .blog-item .content { padding: 15px; } .single-footer-widget h3 { font-size: 22px; margin-bottom: 15px; } .single-footer-widget .quick-links li { font-size: 14px; } .single-footer-widget .footer-contact-info li { font-size: 14px; } .single-footer-widget .footer-contact-info li i { font-size: 18px; } .footer-bottom-social li a { width: 30px; height: 30px; font-size: 12px; } .team-item .image img { width: 100%; } .donate-section .container-fluid { max-width: 720px; } .donate-section .send-btn { margin: auto; display: table; } .demo-modal-panel { top: 26%; } .black-logo { position: relative; top: 2px; } .page-navigation-area { margin: 0px auto 0; } #secondary { margin-top: 35px; } .page-title-area { padding-top: 150px; padding-bottom: 100px; } .page-title-area .page-title-content h2 { font-size: 30px; } .page-title-area .page-title-content ul li { font-size: 14px; } .blog-details-area .blog-details-desc .article-content h3 { font-size: 25px; } .testimonials-sections .testimonials-item { padding: 20px; } .testimonials-sections .testimonials-item .content { padding-left: 0; text-align: center; } .testimonials-sections .testimonials-item .content .image { position: unset; margin-bottom: 10px; } .testimonials-sections .testimonials-item .content .image i { display: none; } .testimonials-sections .testimonials-item .content .text::before { display: none; } .testimonials-sections .testimonials-item .dot::before { display: none; } .quick-contact { margin-top: 50px; padding: 30px; } .contact-area .contact-wrap { padding: 30px; } .terms-conditions h3 { font-size: 22px; } .contact-area .contact-wrap .text-danger { font-size: 20px; } .about-page img { margin-bottom: 30px; } } @media only screen and (min-width: 992px) and (max-width: 1199px) { .sidebar-modal .sidebar-modal-inner { padding-top: 50px; padding-bottom: 40px; padding-left: 20px; padding-right: 20px; width: 50%; } .sidebar-modal .sidebar-contact-area .sidebar-contact-info .contact-info-content h2 { font-size: 20px; } .faq-accordion .accordion .accordion-title { padding: 20px 20px 20px 16px; font-size: 18px; } .donate-area-content { padding: 20px 20px; } .donate-area-content .donate-form .form-group .form-control { font-size: 14px; } .team-item .image .content h3 { font-size: 18px; } .team-item .image .social { top: 10px; } .events-slider .events-item .content { padding: 30px 30px 30px 115px; } .events-slider .events-item .content h4 { font-size: 18px; } .events-slider .events-item .content .text { padding: 10px; } .events-slider .events-item .content .text h3 { font-size: 20px; } .events-slider .events-item .content .text span { font-size: 12px; } .projects-content { padding: 30px 10px 30px 85px; } .projects-content h3 { font-size: 17px; } .projects-content .learn-btn { font-size: 13px; } .projects-content .image { left: 15px; } .single-fun-fact { padding: 20px 30px; } .single-fun-fact .icon i { font-size: 45px; } .single-fun-fact h3 { font-size: 35px; margin: 5px 0 5px 0; } .single-fun-fact h3 .sign-icon { font-size: 30px; margin-left: -5px; } .blog-item .content .post-meta li { font-size: 13px; margin-right: 10px; } .single-footer-widget .gallery li img { max-width: 65px; } .footer-bottom-text p { font-size: 15px; } .campaigns-slider .campaigns-item { padding: 15px; } .campaigns-slider .campaigns-item .campaigns-list { padding: 16px 16px; } .campaigns-slider .campaigns-item .campaigns-donate .donate-two { padding: 10px 30px; } .campaigns-slider .campaigns-item .content h3 { font-size: 19px; } .about-section { padding-top: 100px; } .about-section::after { display: none; } .about-content { padding-top: 0; margin-top: 20px; } .about-image .shape { top: 70px; } .projects-content { text-align: center; padding: 30px; } .projects-content .image { position: unset; margin-bottom: 20px; } .fun-facts-content h3 { font-size: 45px; } .blog-item .content { padding: 15px; } .subscribe-area .subscribe-content h2 { font-size: 28px; } .single-footer-widget .gallery li { margin-bottom: 5px; margin-right: 2px; } .go-top.active { top: 94%; } .others-one-content h3 { font-size: 19px; } .others-two-content h3 { font-size: 19px; } .home-slider .home-item .slider-content h1 { font-size: 70px; } .home-slider .home-item .slider-content span { font-size: 25px; } .main-nav nav .navbar-nav .nav-item a { font-size: 14px; } } @media only screen and (min-width: 1824px) { .bottom-icon .down_arrow { padding: 32px; right: 177px; } .bottom-icon .down_arrow .scroll_down::before { top: 40px; } .donate-area-content { max-width: 810px; } .donate-section .container-fluid { max-width: 1620px; } } /* Only Mobil Menu Max width 991px */ @media only screen and (max-width: 991px) { .mean-container .mean-bar { background-color: #25245e; -webkit-box-shadow: 0px 20px 20px 20px rgba(0, 0, 0, 0.05); box-shadow: 0px 20px 20px 20px rgba(0, 0, 0, 0.05); height: 70px; } .mean-container a.meanmenu-reveal { padding: 24px 15px 0 0; color: #ffffff; } .mean-container a.meanmenu-reveal span { background-color: #ffffff; position: relative; top: 8px; margin-top: -5px; } .mobile-nav .logo { top: 22px; } .mobile-nav.mean-container .mean-nav { margin-top: 70px; } .mobile-nav.mean-container .mean-nav ul li a:hover { color: #0da827; } .mobile-nav.mean-container .mean-nav ul li a.active { color: #0da827; } .nav-area .others-option { display: none; } .mobile-nav nav .navbar-nav { height: 325px; } } /*# sourceMappingURL=responsive.css.map */
0.213787
0.076822
display: none; } #content { padding: var(--padding-body); } #content h1, .sort { margin-top: 50px; } #content-heading { display: flex; flex-direction: row; justify-content: space-between; flex-wrap: wrap; align-items: center; margin-bottom: 30px; } #content-heading h1 { flex-grow: 1; } #priceUp { margin-right: 15px; } .sort { width: var(--button-width); height: var(--button-height); border-radius: var(--button-border-radius); padding-left: 10px; } .sort:hover { border: var(--form-border); ; } #content-midle { display: flex; flex-direction: row; justify-content: space-between; } #content-left, #content-right { border-radius: var(--button-border-radius); } #content-left { display: flex; flex-direction: column; padding: 0px 30px; margin-right: 30px; margin-bottom: 30px; width: 360px; height: 100%; } #content-left h2 { margin: 30px 0px 20px 0px; } .lang { width: var(--button-width); height: var(--button-height); border: var(--form-border); border-radius: var(--button-border-radius); margin-bottom: 20px; } #all { margin-bottom: 30px; } .search { width: var(--button-width); height: var(--button-height); border-radius: var(--button-border-radius); margin-bottom: 40px; margin-top: 70px; cursor: pointer; } #content-right { width: 100%; } .item { display: flex; flex-direction: row; justify-content: space-between; flex-wrap: wrap; position: relative; padding: 15px 20px; display: flex; border-radius: var(--button-border-radius); margin-bottom: 30px; } .item-1 { padding-right: 250px; } .item-2 { position: absolute; right: 140px; } .button-item { position: absolute; bottom: 0; right: 0; width: var(--button-width); height: var(--button-height); border-radius: var(--button-border-radius); } #years-1 { padding-top: 50px; } #years-2 { display: none; } .fa-long-arrow-alt-up { margin-left: 10px; } @media screen and (max-width: 1400px) { #content { padding: 0px 100px; } #all, #spanish { margin-bottom: 20px; } } @media screen and (max-width: 1050px) { #content-heading h1 { display: block; width: 100%; } .sort { margin-top: 30px; } #content-heading { justify-content: flex-end; } #content-midle { flex-direction: column; } #content-left { width: 100%; margin-right: 100px; margin-bottom: 30px; padding: 0px 0px; } #content-left form { display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-between; padding: 30px 30px; } #content-left h2 { display: none; } .where, #spanish, #all { margin-bottom: 0px; } .search { width: var(--button-width); margin-bottom: 0px; margin-top: 0px; cursor: pointer; } } @media screen and (max-width: 815px) { #sort { flex-direction: column; } .where, #all { margin-bottom: 0px; } .lang { width: 100%; } .search { margin-top: 20px; } } @media screen and (max-width: 768px) { #content { padding: 0px 50px; } #content-heading { flex-direction: column; width: 100%; } #content-heading h1 { margin-top: 50px; } #priceUp, #priceDown, #sortUp, #sortDown { width: 100%; } #spanish { margin-bottom: 20px; } .sort { margin-top: 30px; } .item-1 { padding-right: 0px; } .item-2 { margin-top: 15px; position: static; } #years-1 { display: none; } #years-2 { display: inline-block; padding-top: 10px; margin-top: 15px; } .item { flex-direction: column; padding: 30px; } .button-item { position: static; width: 100%; height: var(--button-height); border-radius: var(--button-border-radius); margin-top: 15px; } }
src/css/languageCourses/geometry.css
display: none; } #content { padding: var(--padding-body); } #content h1, .sort { margin-top: 50px; } #content-heading { display: flex; flex-direction: row; justify-content: space-between; flex-wrap: wrap; align-items: center; margin-bottom: 30px; } #content-heading h1 { flex-grow: 1; } #priceUp { margin-right: 15px; } .sort { width: var(--button-width); height: var(--button-height); border-radius: var(--button-border-radius); padding-left: 10px; } .sort:hover { border: var(--form-border); ; } #content-midle { display: flex; flex-direction: row; justify-content: space-between; } #content-left, #content-right { border-radius: var(--button-border-radius); } #content-left { display: flex; flex-direction: column; padding: 0px 30px; margin-right: 30px; margin-bottom: 30px; width: 360px; height: 100%; } #content-left h2 { margin: 30px 0px 20px 0px; } .lang { width: var(--button-width); height: var(--button-height); border: var(--form-border); border-radius: var(--button-border-radius); margin-bottom: 20px; } #all { margin-bottom: 30px; } .search { width: var(--button-width); height: var(--button-height); border-radius: var(--button-border-radius); margin-bottom: 40px; margin-top: 70px; cursor: pointer; } #content-right { width: 100%; } .item { display: flex; flex-direction: row; justify-content: space-between; flex-wrap: wrap; position: relative; padding: 15px 20px; display: flex; border-radius: var(--button-border-radius); margin-bottom: 30px; } .item-1 { padding-right: 250px; } .item-2 { position: absolute; right: 140px; } .button-item { position: absolute; bottom: 0; right: 0; width: var(--button-width); height: var(--button-height); border-radius: var(--button-border-radius); } #years-1 { padding-top: 50px; } #years-2 { display: none; } .fa-long-arrow-alt-up { margin-left: 10px; } @media screen and (max-width: 1400px) { #content { padding: 0px 100px; } #all, #spanish { margin-bottom: 20px; } } @media screen and (max-width: 1050px) { #content-heading h1 { display: block; width: 100%; } .sort { margin-top: 30px; } #content-heading { justify-content: flex-end; } #content-midle { flex-direction: column; } #content-left { width: 100%; margin-right: 100px; margin-bottom: 30px; padding: 0px 0px; } #content-left form { display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-between; padding: 30px 30px; } #content-left h2 { display: none; } .where, #spanish, #all { margin-bottom: 0px; } .search { width: var(--button-width); margin-bottom: 0px; margin-top: 0px; cursor: pointer; } } @media screen and (max-width: 815px) { #sort { flex-direction: column; } .where, #all { margin-bottom: 0px; } .lang { width: 100%; } .search { margin-top: 20px; } } @media screen and (max-width: 768px) { #content { padding: 0px 50px; } #content-heading { flex-direction: column; width: 100%; } #content-heading h1 { margin-top: 50px; } #priceUp, #priceDown, #sortUp, #sortDown { width: 100%; } #spanish { margin-bottom: 20px; } .sort { margin-top: 30px; } .item-1 { padding-right: 0px; } .item-2 { margin-top: 15px; position: static; } #years-1 { display: none; } #years-2 { display: inline-block; padding-top: 10px; margin-top: 15px; } .item { flex-direction: column; padding: 30px; } .button-item { position: static; width: 100%; height: var(--button-height); border-radius: var(--button-border-radius); margin-top: 15px; } }
0.358915
0.077169
.toggle-button .bar { height: 5px; width: 100%; background-color: #4992ca; border-radius: 10px; } .toggle-button { position: absolute; top: .75rem; right: 1rem; display: none; flex-direction: column; justify-content: space-between; width: 30px; height: 21px; } #nav #horizontal-list li{ display: inline-block; margin-left: 3%; padding-top: 2px; padding-bottom: 5px; font-size: 1em; color: gray; } #nav select{ border:0px; } #horizontal-list{ padding-left: 25%; margin-top: -40px; margin-bottom: 2px; margin-left: -3%; /* margin-right: 10px; */ } #nav #horizontal-list li:hover{ background-color: #4992ca; color:#fff } #horizontal-list li p{ margin: 0; font-size: 1.2em; } @media screen and (max-width:1360px) { #horizontal-list{ padding-left: 15%; } } @media screen and (max-width:1200px){ #horizontal-list{ display: none; } .toggle-button { display: flex; } } .container1 { background-image: url("https://i.imgur.com/ksqOx5F.jpg"); background-size:cover; text-align: left; background-color:#000000b3; background-blend-mode: multiply; opacity:1; font-family: Avenir-Next,Roboto,sans-serif; padding: 1% 12% 10% 12%; } .centered { color:white; } .main_heading { text-align: left; margin-bottom: -2%; } .apply_button { width: 20%; padding: 1% 5% 1% 5%; border:none; color:#fff; background-color:#4992ca; } .schedule { width: 20%; height:50px; color:#fff; background-color:#0000; border-radius: 2px; border: 2px solid #fff; margin-top: 2%; margin-bottom: 2%; } .learnmore { border-radius:15px; width: 40%; padding: 1%; } .main_heading{ font-size:90px; } .btn-group{ display: flex; flex-direction:column; } h3{ font-size: 33px; } body{ overflow-x: hidden; font-size: 16px; font-family: Avenir-Next,Roboto,sans-serif; } .monster,.qa,.trainers,.designer,.container{ color:white; background-color: #4992ca; font-family: Avenir-Next,Roboto,sans-serif; padding: 1% 12% 10% 12%; font-size: 16px; } #middle,#para{ text-align: center; } #types{ display: flex; } h1,h2{ text-align: center; font-size: 45px; } h6{ font-size: 18px; } h4{ font-size: 30px; } .innerdiv{ text-align: center; flex-wrap: wrap; margin: 3px; line-height: 1.7em; } #firstpara{ line-height: 1.5em; } .statistics{ display: flex; padding: 2% 12% 2% 12%; text-align: center; } @media screen and (max-width:1000px){ .statistics{ flex-wrap: wrap; } } .statt{ width: 400px; } #stat{ font-family: Avenir-Next,Roboto,sans-serif; } .detail{ padding-left: 10%; line-height: 1.7em; } .height{ font-size: large; } .battle{ font-family: Avenir-Next,Roboto,sans-serif; padding: 1% 12% 10% 12%; } #pt{ display:flex; } #pt1{ flex-grow: 1; width: 90%; line-height: 2em; } @media screen and (max-width:1080px) { #pt{ flex-wrap: wrap; } } #pt2{ margin-top:2%; margin-left: 2%; flex-grow: 2; } #book{ text-align: center; color:#4992ca; } #box{ margin-top: 1%;; margin-left: 39%; height:10%; width: 20%; padding:1%; background-color: #4992ca; color:white; text-align: center; } td, th { text-align: center; padding:12px 12px 12px 12px; border-width: 1px; border-style:solid; border-color:#dddddd; } td,.p1{ color:#8a8a8a; } table{ border-width: 1px; border-style:solid; border-color:#dddddd; border-collapse: collapse; } .more{ text-align: center; background-color: #424242; color:white; padding-top: 1%; } .btn{ background-color:#0000; border: 2px solid #fff; border-radius: 2px; color: white; margin-bottom: 5%; padding: 1% 8% 1% 8%; font-size: 1em; } .ability{ /* color:#8a8a8a; */ text-align: center; margin-bottom: 2%; } #ninja{ /* position: absolute; */ border: 2px solid #eeeeee; /* margin-left: 40%; */ margin-left: 39vw; margin-right: 120vw; width:20rem; height: 30rem; font-family: Avenir-Next,Roboto,sans-serif; } #nin1{ border-top:20px solid #4992ca; background-color: #f7f7f7; height: 250px; } #nin2{ border-top:2px solid #eeeeee ; background-color: white ; padding-left:5% ; padding-right: 5%; padding-bottom: 5%; padding-top: 5%; } #para4{ font-size: 1.3em; line-height: 1.5em; } #gre,#gen,#log1 { color:#8a8a8a; } body{ margin:0; } #tra1{ display: flexbox; flex-direction: column; } .tra1{ display: flexbox; flex-direction: column; } #revealed{ padding-left: 100px; padding-right: 100px; font-family: Avenir-Next,Roboto,sans-serif; font-weight:100; font-size: 16px; color:#8a8a8a; margin-left: 3%; } #revealed h4{ color: black; font-size: 30px; text-align: center; } #revealed h6{ margin-top: 0; margin-bottom: 0; font-size: 18px; } #rev2{ padding-top: 50px; padding-bottom: 50px; } #rev3{ padding-bottom: 50px; } #greninja{ background-image: url(https://i.imgur.com/yERJ9Eg.png); } #lucario{ background-image: url(https://i.imgur.com/dR521bT.png); } #mimikyu{ background-image: url(https://imgur.com/6NfCEYk.png); } #charizard{ background-image: url(https://imgur.com/VCPfvTX.png); } #greninja1, #lucario1, #mimikyu1, #charizard1{ padding-left: 0px !important; padding-right: 20px !important; } #sect{ padding-left: 100px; padding-right: 100px; background-color: #4992ca; font-family: Avenir-Next,Roboto,sans-serif; font-weight:100; color: white; font-size: 16px; } #sect h4{ font-size: 30px; text-align: center; } #sect h6{ margin-top: 0; margin-bottom: 0; font-size: 18px; } .part{ width:80vw; height:25vh; display:flex; } #part2{ padding-top: 50px; padding-bottom: 50px; } #part3{ padding-bottom: 50px; } .trainerphoto{ height: auto; width:20%; background-size:contain; background-repeat: no-repeat; background-position: center; border-radius: 100%; flex-shrink: 0; } .nameoftrainer{ padding-left: 40px; padding-right: 40px; text-align: center; height: 20%; width: 20%; flex-shrink: 1; } .infooftrainer{ height: 60%; width:60%; text-align:justify; flex-shrink: 2; } @media screen and (max-width:1000px){ #sect{ padding-left: 0; } .infooftrainer{ font-size:0.8em; } } @media screen and (max-width:700px){ .infooftrainer{ flex-shrink: 0; } #part3{ padding-top: 10px; margin-top: 40px; } #part2{ padding-top: 20px; } #sect{ padding-right: 0; } } #ash{ background-image: url(https://i.imgur.com/bIKBC6R.png); } #cynthia{ background-image: url(https://i.imgur.com/sRPOyCQ.png?1); } #lance{ background-image: url(https://i.imgur.com/FbaEUfM.png); } #ipsum{ background-image: url(https://i.imgur.com/y2G8zug.png?1); } .logo{ height: 150%; width:96%; background-image: url(https://i.imgur.com/GVRQFYB.png); background-position: center; background-repeat: no-repeat; background-size:contain; margin-left: 5px; } .card { width: 478px; border: 1px solid rgba(0, 0, 0, 0.125); margin: 8px; font-size:24px; line-height: 24px; } .card-sub-heading { font-weight: 200; height: 45px; color: #3c3333; text-align: left; font-size: 2rem; line-height: 1.2; font-weight:700; } .card-body { padding: 10px; } .card-text{ text-align: left; font-size: 16px; } .card-header { margin-bottom: 0; border-bottom: 1px solid rgba(0, 0, 0, 0.125); border-top:16px solid #4992ca; background-color:rgba(0, 0, 0, 0.03); } .cards_container{ display:flex; flex-wrap: wrap; justify-content:center; font-family: Avenir-Next,Roboto,sans-serif; } input{ width:10%; padding-top: 1% ; padding-right: 12%; padding-bottom: 1%; padding-left: 1%; font-size: 1em; } #play{ text-align: center; display: flex; justify-content: space-around; margin-left: 15%; margin-right: 15%; } @media screen and (max-width:1080px) { #play{ flex-wrap: wrap; justify-content: space-between; } } .od{ width: 30%; height: 30%; } #sleep{ height: 200px; width:250px; background-image: url(https://i.imgur.com/KNArAbb.png); background-size:contain; background-repeat: no-repeat; background-position: center; margin-top: -10px; padding-left: 20%; } #pika{ height: 200px; width:250px; background-image: url(https://i.imgur.com/DVHsPa4.jpg); background-size:contain; background-repeat: no-repeat; background-position: center; padding-left: 20%; } #go{ height: 200px; width:250px; background-image: url(https://i.imgur.com/Rl7ks8r.jpg); background-size:contain; background-repeat: no-repeat; background-position: center; padding-left: 20%; } #box2{ margin-top: 1%;; margin-left: 41%; height:10%; width: 15%; padding:1%; background-color: #4992ca; color:white; text-align: center; } .design{ display: flex; font-size: 16px; font-family: Avenir-Next,Roboto,sans-serif; height: 50%; width: 100vw; margin-right: 10%; margin-left: -5%; } .dimg{ text-align: center; height: 50%; width: 100%; } .dinfo{ margin-top: 20%; line-height: 1.2em; } .dess{ height: 77%; width:26%; } #des1{ /* margin-left: 8%; */ margin-right: 3%; } #des3{ margin-left: 3%; margin-right: 3%; } .log2{ height: 200px; width: 200px; } .logos{ margin-bottom: 5%; font-size: 16px; font-family: Avenir-Next,Roboto,sans-serif; } #log{ display: flex; justify-content: space-around; } #pocl{ text-align: center; } .rlog{ width: 400px; height: 300px; } .more2{ background-color: #4992ca; color: white; text-align: center; padding-top: 1%; } .key{ background-color:#0000; border: 2px solid #fff; border-radius: 2px; color: white; margin-bottom: 5%; padding: 1% 6% 1% 6%; font-size: 1em; } .footer{ padding-top: 40px; padding-bottom: 40px; display: flex; justify-content: space-evenly; background-color: #001213; color: white; text-align: center; font-size: 16px; font-family: Avenir-Next,Roboto,sans-serif; } .fhead{ color:#8a8a8a; } #soc{ display: flex; justify-content:space-evenly; }
assets/styles.css
.toggle-button .bar { height: 5px; width: 100%; background-color: #4992ca; border-radius: 10px; } .toggle-button { position: absolute; top: .75rem; right: 1rem; display: none; flex-direction: column; justify-content: space-between; width: 30px; height: 21px; } #nav #horizontal-list li{ display: inline-block; margin-left: 3%; padding-top: 2px; padding-bottom: 5px; font-size: 1em; color: gray; } #nav select{ border:0px; } #horizontal-list{ padding-left: 25%; margin-top: -40px; margin-bottom: 2px; margin-left: -3%; /* margin-right: 10px; */ } #nav #horizontal-list li:hover{ background-color: #4992ca; color:#fff } #horizontal-list li p{ margin: 0; font-size: 1.2em; } @media screen and (max-width:1360px) { #horizontal-list{ padding-left: 15%; } } @media screen and (max-width:1200px){ #horizontal-list{ display: none; } .toggle-button { display: flex; } } .container1 { background-image: url("https://i.imgur.com/ksqOx5F.jpg"); background-size:cover; text-align: left; background-color:#000000b3; background-blend-mode: multiply; opacity:1; font-family: Avenir-Next,Roboto,sans-serif; padding: 1% 12% 10% 12%; } .centered { color:white; } .main_heading { text-align: left; margin-bottom: -2%; } .apply_button { width: 20%; padding: 1% 5% 1% 5%; border:none; color:#fff; background-color:#4992ca; } .schedule { width: 20%; height:50px; color:#fff; background-color:#0000; border-radius: 2px; border: 2px solid #fff; margin-top: 2%; margin-bottom: 2%; } .learnmore { border-radius:15px; width: 40%; padding: 1%; } .main_heading{ font-size:90px; } .btn-group{ display: flex; flex-direction:column; } h3{ font-size: 33px; } body{ overflow-x: hidden; font-size: 16px; font-family: Avenir-Next,Roboto,sans-serif; } .monster,.qa,.trainers,.designer,.container{ color:white; background-color: #4992ca; font-family: Avenir-Next,Roboto,sans-serif; padding: 1% 12% 10% 12%; font-size: 16px; } #middle,#para{ text-align: center; } #types{ display: flex; } h1,h2{ text-align: center; font-size: 45px; } h6{ font-size: 18px; } h4{ font-size: 30px; } .innerdiv{ text-align: center; flex-wrap: wrap; margin: 3px; line-height: 1.7em; } #firstpara{ line-height: 1.5em; } .statistics{ display: flex; padding: 2% 12% 2% 12%; text-align: center; } @media screen and (max-width:1000px){ .statistics{ flex-wrap: wrap; } } .statt{ width: 400px; } #stat{ font-family: Avenir-Next,Roboto,sans-serif; } .detail{ padding-left: 10%; line-height: 1.7em; } .height{ font-size: large; } .battle{ font-family: Avenir-Next,Roboto,sans-serif; padding: 1% 12% 10% 12%; } #pt{ display:flex; } #pt1{ flex-grow: 1; width: 90%; line-height: 2em; } @media screen and (max-width:1080px) { #pt{ flex-wrap: wrap; } } #pt2{ margin-top:2%; margin-left: 2%; flex-grow: 2; } #book{ text-align: center; color:#4992ca; } #box{ margin-top: 1%;; margin-left: 39%; height:10%; width: 20%; padding:1%; background-color: #4992ca; color:white; text-align: center; } td, th { text-align: center; padding:12px 12px 12px 12px; border-width: 1px; border-style:solid; border-color:#dddddd; } td,.p1{ color:#8a8a8a; } table{ border-width: 1px; border-style:solid; border-color:#dddddd; border-collapse: collapse; } .more{ text-align: center; background-color: #424242; color:white; padding-top: 1%; } .btn{ background-color:#0000; border: 2px solid #fff; border-radius: 2px; color: white; margin-bottom: 5%; padding: 1% 8% 1% 8%; font-size: 1em; } .ability{ /* color:#8a8a8a; */ text-align: center; margin-bottom: 2%; } #ninja{ /* position: absolute; */ border: 2px solid #eeeeee; /* margin-left: 40%; */ margin-left: 39vw; margin-right: 120vw; width:20rem; height: 30rem; font-family: Avenir-Next,Roboto,sans-serif; } #nin1{ border-top:20px solid #4992ca; background-color: #f7f7f7; height: 250px; } #nin2{ border-top:2px solid #eeeeee ; background-color: white ; padding-left:5% ; padding-right: 5%; padding-bottom: 5%; padding-top: 5%; } #para4{ font-size: 1.3em; line-height: 1.5em; } #gre,#gen,#log1 { color:#8a8a8a; } body{ margin:0; } #tra1{ display: flexbox; flex-direction: column; } .tra1{ display: flexbox; flex-direction: column; } #revealed{ padding-left: 100px; padding-right: 100px; font-family: Avenir-Next,Roboto,sans-serif; font-weight:100; font-size: 16px; color:#8a8a8a; margin-left: 3%; } #revealed h4{ color: black; font-size: 30px; text-align: center; } #revealed h6{ margin-top: 0; margin-bottom: 0; font-size: 18px; } #rev2{ padding-top: 50px; padding-bottom: 50px; } #rev3{ padding-bottom: 50px; } #greninja{ background-image: url(https://i.imgur.com/yERJ9Eg.png); } #lucario{ background-image: url(https://i.imgur.com/dR521bT.png); } #mimikyu{ background-image: url(https://imgur.com/6NfCEYk.png); } #charizard{ background-image: url(https://imgur.com/VCPfvTX.png); } #greninja1, #lucario1, #mimikyu1, #charizard1{ padding-left: 0px !important; padding-right: 20px !important; } #sect{ padding-left: 100px; padding-right: 100px; background-color: #4992ca; font-family: Avenir-Next,Roboto,sans-serif; font-weight:100; color: white; font-size: 16px; } #sect h4{ font-size: 30px; text-align: center; } #sect h6{ margin-top: 0; margin-bottom: 0; font-size: 18px; } .part{ width:80vw; height:25vh; display:flex; } #part2{ padding-top: 50px; padding-bottom: 50px; } #part3{ padding-bottom: 50px; } .trainerphoto{ height: auto; width:20%; background-size:contain; background-repeat: no-repeat; background-position: center; border-radius: 100%; flex-shrink: 0; } .nameoftrainer{ padding-left: 40px; padding-right: 40px; text-align: center; height: 20%; width: 20%; flex-shrink: 1; } .infooftrainer{ height: 60%; width:60%; text-align:justify; flex-shrink: 2; } @media screen and (max-width:1000px){ #sect{ padding-left: 0; } .infooftrainer{ font-size:0.8em; } } @media screen and (max-width:700px){ .infooftrainer{ flex-shrink: 0; } #part3{ padding-top: 10px; margin-top: 40px; } #part2{ padding-top: 20px; } #sect{ padding-right: 0; } } #ash{ background-image: url(https://i.imgur.com/bIKBC6R.png); } #cynthia{ background-image: url(https://i.imgur.com/sRPOyCQ.png?1); } #lance{ background-image: url(https://i.imgur.com/FbaEUfM.png); } #ipsum{ background-image: url(https://i.imgur.com/y2G8zug.png?1); } .logo{ height: 150%; width:96%; background-image: url(https://i.imgur.com/GVRQFYB.png); background-position: center; background-repeat: no-repeat; background-size:contain; margin-left: 5px; } .card { width: 478px; border: 1px solid rgba(0, 0, 0, 0.125); margin: 8px; font-size:24px; line-height: 24px; } .card-sub-heading { font-weight: 200; height: 45px; color: #3c3333; text-align: left; font-size: 2rem; line-height: 1.2; font-weight:700; } .card-body { padding: 10px; } .card-text{ text-align: left; font-size: 16px; } .card-header { margin-bottom: 0; border-bottom: 1px solid rgba(0, 0, 0, 0.125); border-top:16px solid #4992ca; background-color:rgba(0, 0, 0, 0.03); } .cards_container{ display:flex; flex-wrap: wrap; justify-content:center; font-family: Avenir-Next,Roboto,sans-serif; } input{ width:10%; padding-top: 1% ; padding-right: 12%; padding-bottom: 1%; padding-left: 1%; font-size: 1em; } #play{ text-align: center; display: flex; justify-content: space-around; margin-left: 15%; margin-right: 15%; } @media screen and (max-width:1080px) { #play{ flex-wrap: wrap; justify-content: space-between; } } .od{ width: 30%; height: 30%; } #sleep{ height: 200px; width:250px; background-image: url(https://i.imgur.com/KNArAbb.png); background-size:contain; background-repeat: no-repeat; background-position: center; margin-top: -10px; padding-left: 20%; } #pika{ height: 200px; width:250px; background-image: url(https://i.imgur.com/DVHsPa4.jpg); background-size:contain; background-repeat: no-repeat; background-position: center; padding-left: 20%; } #go{ height: 200px; width:250px; background-image: url(https://i.imgur.com/Rl7ks8r.jpg); background-size:contain; background-repeat: no-repeat; background-position: center; padding-left: 20%; } #box2{ margin-top: 1%;; margin-left: 41%; height:10%; width: 15%; padding:1%; background-color: #4992ca; color:white; text-align: center; } .design{ display: flex; font-size: 16px; font-family: Avenir-Next,Roboto,sans-serif; height: 50%; width: 100vw; margin-right: 10%; margin-left: -5%; } .dimg{ text-align: center; height: 50%; width: 100%; } .dinfo{ margin-top: 20%; line-height: 1.2em; } .dess{ height: 77%; width:26%; } #des1{ /* margin-left: 8%; */ margin-right: 3%; } #des3{ margin-left: 3%; margin-right: 3%; } .log2{ height: 200px; width: 200px; } .logos{ margin-bottom: 5%; font-size: 16px; font-family: Avenir-Next,Roboto,sans-serif; } #log{ display: flex; justify-content: space-around; } #pocl{ text-align: center; } .rlog{ width: 400px; height: 300px; } .more2{ background-color: #4992ca; color: white; text-align: center; padding-top: 1%; } .key{ background-color:#0000; border: 2px solid #fff; border-radius: 2px; color: white; margin-bottom: 5%; padding: 1% 6% 1% 6%; font-size: 1em; } .footer{ padding-top: 40px; padding-bottom: 40px; display: flex; justify-content: space-evenly; background-color: #001213; color: white; text-align: center; font-size: 16px; font-family: Avenir-Next,Roboto,sans-serif; } .fhead{ color:#8a8a8a; } #soc{ display: flex; justify-content:space-evenly; }
0.291586
0.073032
header .top { height: 41px; background: #fafafc; position: relative; } header .top .head { width: 1240px; height: 41px; margin: 0 auto; } header .top .head .top-left { height: 40px; float: left; } header .top .head .top-right { height: 40px; float: right; } header .top .head .top-right .top-info { float: right; } header .top .head .top-right .top-info li { float: left; } header .top .head .top-right .top-info li a .top-new { display: inline-block; vertical-align: middle; color: #fff; background-color: #ed4462; font-size: 12px; margin-left: 5px; height: 13px; line-height: 10px; padding: 0 2px; top: -1px; border-radius: 2px; } header nav { height: 80px; border-bottom: 1px solid #efefef; position: relative; z-index: 150; background: #fff; } header nav .nav-mid { width: 1240px; margin: 0 auto; } header nav .nav-mid .logo { float: left; padding: 30px 0 0 0; } header nav .nav-mid .head-nav { float: left; margin-left: 100px; height: 80px; } header nav .nav-mid .head-nav ul { height: 100%; } header nav .nav-mid .head-nav ul li { float: left; cursor: pointer; position: relative; } header nav .nav-mid .head-nav ul li a { padding: 20px 0 0; color: #333; font-size: 16px; display: block; transition: color .2s linear; } header nav .nav-mid .head-nav ul li a:hover { color: #00cdf7; } header nav .nav-mid .head-nav .top-hide { z-index: 30; height: 204px; width: 100%; left: 0; background: rgba(255, 255, 255, 0.95); border-bottom: 1px solid #f3f3f3; position: absolute; top: 80px; display: none; } header nav .nav-mid .head-nav .top-hide .container { width: 1240px; margin: 0 auto; position: relative; } header nav .nav-mid .head-nav .top-hide .container .menu-list { padding: 0 50px; position: absolute; top: 0; left: 0; display: none; } header nav .nav-mid .head-nav .top-hide .container .menu-list li { float: left; padding: 10px 14px 26px 14px; width: 162px; position: relative; text-align: center; } header nav .nav-mid .head-nav .top-hide .container .menu-list li a { outline: 0; text-align: center; } header nav .nav-mid .head-nav .top-hide .container .menu-list li a .pro-name { width: 162px; color: #333; font-size: 12px; text-align: center; margin-bottom: -100px; position: absolute; left: 0; top: 140px; } header nav .nav-mid .head-nav .top-hide .container .menu-list li a .price { font-size: 14px; color: #e23b4f; text-align: center; margin-bottom: -100px; position: absolute; left: 50px; top: 160px; } section { width: 100%; /*min-height: 600px;*/ margin: 0 auto; } section .store-warp { width: 1240px; margin: 0 auto; padding: 0 20px; } section .store-warp .crumbs { margin: 10px 0 24px; width: 100%; } section .store-warp .crumbs a { display: inline-block; text-decoration: none; color: #515151; background: transparent; } section .store-warp .crumbs .active { color: #00c3f5; } section .store-warp .main { margin-bottom: 40px; min-height: 650px; overflow: hidden; } section .store-warp .main .left-nav { font-size: 14px; color: #515151; width: 15%; min-height: 580px; float: left!important; } section .store-warp .main .left-nav .nav-main { margin-top: 10px; background: #fafafc; padding: 0 0 54px 0px; font-size: 14px; color: #515151; } section .store-warp .main .left-nav .nav-main a { display: block; color: #515151; text-decoration: none; line-height: 34px; width: 90px; background: transparent; font-size: 14px; } section .store-warp .main .left-nav .nav-main a:hover { color: #00c3f5; } section .store-warp .main .left-nav .nav-main .active { color: #00c3f5; } section .store-warp .main .left-nav .nav-main .type-title { line-height: 14px; padding: 15px 0 15px; font-weight: bolder; cursor: default; } section .store-warp .main .left-nav .nav-main .type-title i { margin-left: -15px; padding-right: 5px; font-size: 16px; font-style: normal; -webkit-font-smoothing: antialiased; -webkit-text-stroke-width: .2px; } section .store-warp .main .right-content { width: 83%; display: inline-block; float: right!important; } section .store-warp .main .right-content .collect-main .type-tab-btn { height: 41px; margin-top: 20px; border-bottom: solid 1px #eee; } section .store-warp .main .right-content .collect-main .type-tab-btn .active { color: #00c3f5; border-bottom: solid 2px #00c3f5; } section .store-warp .main .right-content .collect-main .type-tab-btn a { text-decoration: none; display: inline-block; line-height: 30px; width: 100px; text-align: center; padding-bottom: 10px; font-size: 18px; font-weight: 700; margin: 0 20px; } section .store-warp .main .right-content .collect-main #table-list { min-height: 300px; margin: 36px 0 0 1px; overflow: hidden; } section .store-warp .main .right-content .collect-main #table-list .ui-load-content { margin-bottom: 20px; } section .store-warp .main .right-content .collect-main #table-list .ui-load-content .clearfix { overflow: hidden; } section .store-warp .main .right-content .collect-main #table-list .ui-load-content .clearfix .item:hover .icon-trash { display: block; } section .store-warp .main .right-content .collect-main #table-list .ui-load-content .clearfix .item:hover { border-color: #ccc; } section .store-warp .main .right-content .collect-main #table-list .ui-load-content .clearfix .item { position: relative; background: #fff; height: 219px; display: block; width: 19.9%; text-align: center; margin: 1px -1px 0 0; border: 1px solid #eee; padding: 35px 0 30px; float: left!important; } section .store-warp .main .right-content .collect-main #table-list .ui-load-content .clearfix .item .icon-trash { display: none; position: absolute; right: 10px; top: 10px; width: 16px; height: 16px; font-style: normal; } section .store-warp .main .right-content .collect-main #table-list .ui-load-content .clearfix .item a img { margin: 0 auto; display: block; margin-bottom: 30px; width: 166px; height: 166px; } section .store-warp .main .right-content .collect-main #table-list .ui-load-content .clearfix .item a h3 { width: 80%; margin: 0 auto; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 14px; font-weight: 400; font-style: normal; } footer { background-color: #fafafc; } footer .container { width: 1240px; margin: 0 auto; } footer .container .footer-servive { padding: 38px 8px 26px; border-bottom: 1px solid #e5e5e5; } footer .container .footer-servive ul { overflow: hidden; display: block; } footer .container .footer-servive ul li { float: left; } footer .container .footer-servive ul .item { width: 203px; text-align: center; } footer .container .footer-servive ul .item .img { display: inline-block; height: 36px; width: 94px; background: no-repeat 50% 50%; margin-bottom: 12px; text-align: center; background-image: url("../images/foot1.png"); } footer .container .footer-servive ul .item p { text-align: center; } footer .container .footer-servive ul .item p .blod { color: #666; font-weight: 700; font-size: 14px; text-align: center; } footer .container .footer-servive ul .line { padding-top: 10px; display: list-item; text-align: -webkit-match-parent; } footer .container .footer-servive ul .line span { display: inline-block; height: 44px; width: 1px; background-color: #e5e5e5; } footer .container .footer-nav { overflow: hidden; padding: 30px 0; margin-right: -10px; } footer .container .footer-nav .nav-item { float: left; width: 244px; text-align: center; margin-right: 5px; } footer .container .footer-nav .nav-item h4 { font-size: 14px; color: #333; margin-bottom: 10px; text-align: center; } footer .container .footer-nav .nav-item ul { text-align: center; } footer .container .footer-nav .nav-item ul li { line-height: 22px; } footer .container .footer-nav .nav-item ul li a { font-size: 12px; color: #666; transition: color .2s linear; line-height: 22px; } footer .container .footer-nav .nav-item ul li a:hover { color: #00cdf7; } footer .container .footer-nav .nav-custom { float: left; width: 244px; text-align: center; margin-right: 5px; } footer .container .footer-nav .nav-custom h4 { font-size: 14px; color: #666; text-align: center; } footer .container .footer-nav .nav-custom a h3 { color: #1fa7ea; font-size: 24px; margin: 20px 0 14px; text-align: center; } footer .container .footer-nav .nav-custom .nav-btn { display: inline-block; width: 160px; height: 34px; line-height: 34px; text-align: center; text-decoration: none; color: #fff; background-color: #1fa7ea; border-radius: 2px; font-size: 12px; transition: all .2s linear; } footer .container .footer-nav .nav-custom .nav-btn img { line-height: 34px; vertical-align: middle; text-align: center; font-size: 12px; } footer .container .footer-end { border-top: 1px solid #e5e5e5; padding: 38px 0 56px; text-align: center; color: #666; font-size: 12px; } footer .container .footer-end p { text-align: center; color: #666; font-size: 12px; }
public/static/shop/resource/home/css/me.css
header .top { height: 41px; background: #fafafc; position: relative; } header .top .head { width: 1240px; height: 41px; margin: 0 auto; } header .top .head .top-left { height: 40px; float: left; } header .top .head .top-right { height: 40px; float: right; } header .top .head .top-right .top-info { float: right; } header .top .head .top-right .top-info li { float: left; } header .top .head .top-right .top-info li a .top-new { display: inline-block; vertical-align: middle; color: #fff; background-color: #ed4462; font-size: 12px; margin-left: 5px; height: 13px; line-height: 10px; padding: 0 2px; top: -1px; border-radius: 2px; } header nav { height: 80px; border-bottom: 1px solid #efefef; position: relative; z-index: 150; background: #fff; } header nav .nav-mid { width: 1240px; margin: 0 auto; } header nav .nav-mid .logo { float: left; padding: 30px 0 0 0; } header nav .nav-mid .head-nav { float: left; margin-left: 100px; height: 80px; } header nav .nav-mid .head-nav ul { height: 100%; } header nav .nav-mid .head-nav ul li { float: left; cursor: pointer; position: relative; } header nav .nav-mid .head-nav ul li a { padding: 20px 0 0; color: #333; font-size: 16px; display: block; transition: color .2s linear; } header nav .nav-mid .head-nav ul li a:hover { color: #00cdf7; } header nav .nav-mid .head-nav .top-hide { z-index: 30; height: 204px; width: 100%; left: 0; background: rgba(255, 255, 255, 0.95); border-bottom: 1px solid #f3f3f3; position: absolute; top: 80px; display: none; } header nav .nav-mid .head-nav .top-hide .container { width: 1240px; margin: 0 auto; position: relative; } header nav .nav-mid .head-nav .top-hide .container .menu-list { padding: 0 50px; position: absolute; top: 0; left: 0; display: none; } header nav .nav-mid .head-nav .top-hide .container .menu-list li { float: left; padding: 10px 14px 26px 14px; width: 162px; position: relative; text-align: center; } header nav .nav-mid .head-nav .top-hide .container .menu-list li a { outline: 0; text-align: center; } header nav .nav-mid .head-nav .top-hide .container .menu-list li a .pro-name { width: 162px; color: #333; font-size: 12px; text-align: center; margin-bottom: -100px; position: absolute; left: 0; top: 140px; } header nav .nav-mid .head-nav .top-hide .container .menu-list li a .price { font-size: 14px; color: #e23b4f; text-align: center; margin-bottom: -100px; position: absolute; left: 50px; top: 160px; } section { width: 100%; /*min-height: 600px;*/ margin: 0 auto; } section .store-warp { width: 1240px; margin: 0 auto; padding: 0 20px; } section .store-warp .crumbs { margin: 10px 0 24px; width: 100%; } section .store-warp .crumbs a { display: inline-block; text-decoration: none; color: #515151; background: transparent; } section .store-warp .crumbs .active { color: #00c3f5; } section .store-warp .main { margin-bottom: 40px; min-height: 650px; overflow: hidden; } section .store-warp .main .left-nav { font-size: 14px; color: #515151; width: 15%; min-height: 580px; float: left!important; } section .store-warp .main .left-nav .nav-main { margin-top: 10px; background: #fafafc; padding: 0 0 54px 0px; font-size: 14px; color: #515151; } section .store-warp .main .left-nav .nav-main a { display: block; color: #515151; text-decoration: none; line-height: 34px; width: 90px; background: transparent; font-size: 14px; } section .store-warp .main .left-nav .nav-main a:hover { color: #00c3f5; } section .store-warp .main .left-nav .nav-main .active { color: #00c3f5; } section .store-warp .main .left-nav .nav-main .type-title { line-height: 14px; padding: 15px 0 15px; font-weight: bolder; cursor: default; } section .store-warp .main .left-nav .nav-main .type-title i { margin-left: -15px; padding-right: 5px; font-size: 16px; font-style: normal; -webkit-font-smoothing: antialiased; -webkit-text-stroke-width: .2px; } section .store-warp .main .right-content { width: 83%; display: inline-block; float: right!important; } section .store-warp .main .right-content .collect-main .type-tab-btn { height: 41px; margin-top: 20px; border-bottom: solid 1px #eee; } section .store-warp .main .right-content .collect-main .type-tab-btn .active { color: #00c3f5; border-bottom: solid 2px #00c3f5; } section .store-warp .main .right-content .collect-main .type-tab-btn a { text-decoration: none; display: inline-block; line-height: 30px; width: 100px; text-align: center; padding-bottom: 10px; font-size: 18px; font-weight: 700; margin: 0 20px; } section .store-warp .main .right-content .collect-main #table-list { min-height: 300px; margin: 36px 0 0 1px; overflow: hidden; } section .store-warp .main .right-content .collect-main #table-list .ui-load-content { margin-bottom: 20px; } section .store-warp .main .right-content .collect-main #table-list .ui-load-content .clearfix { overflow: hidden; } section .store-warp .main .right-content .collect-main #table-list .ui-load-content .clearfix .item:hover .icon-trash { display: block; } section .store-warp .main .right-content .collect-main #table-list .ui-load-content .clearfix .item:hover { border-color: #ccc; } section .store-warp .main .right-content .collect-main #table-list .ui-load-content .clearfix .item { position: relative; background: #fff; height: 219px; display: block; width: 19.9%; text-align: center; margin: 1px -1px 0 0; border: 1px solid #eee; padding: 35px 0 30px; float: left!important; } section .store-warp .main .right-content .collect-main #table-list .ui-load-content .clearfix .item .icon-trash { display: none; position: absolute; right: 10px; top: 10px; width: 16px; height: 16px; font-style: normal; } section .store-warp .main .right-content .collect-main #table-list .ui-load-content .clearfix .item a img { margin: 0 auto; display: block; margin-bottom: 30px; width: 166px; height: 166px; } section .store-warp .main .right-content .collect-main #table-list .ui-load-content .clearfix .item a h3 { width: 80%; margin: 0 auto; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 14px; font-weight: 400; font-style: normal; } footer { background-color: #fafafc; } footer .container { width: 1240px; margin: 0 auto; } footer .container .footer-servive { padding: 38px 8px 26px; border-bottom: 1px solid #e5e5e5; } footer .container .footer-servive ul { overflow: hidden; display: block; } footer .container .footer-servive ul li { float: left; } footer .container .footer-servive ul .item { width: 203px; text-align: center; } footer .container .footer-servive ul .item .img { display: inline-block; height: 36px; width: 94px; background: no-repeat 50% 50%; margin-bottom: 12px; text-align: center; background-image: url("../images/foot1.png"); } footer .container .footer-servive ul .item p { text-align: center; } footer .container .footer-servive ul .item p .blod { color: #666; font-weight: 700; font-size: 14px; text-align: center; } footer .container .footer-servive ul .line { padding-top: 10px; display: list-item; text-align: -webkit-match-parent; } footer .container .footer-servive ul .line span { display: inline-block; height: 44px; width: 1px; background-color: #e5e5e5; } footer .container .footer-nav { overflow: hidden; padding: 30px 0; margin-right: -10px; } footer .container .footer-nav .nav-item { float: left; width: 244px; text-align: center; margin-right: 5px; } footer .container .footer-nav .nav-item h4 { font-size: 14px; color: #333; margin-bottom: 10px; text-align: center; } footer .container .footer-nav .nav-item ul { text-align: center; } footer .container .footer-nav .nav-item ul li { line-height: 22px; } footer .container .footer-nav .nav-item ul li a { font-size: 12px; color: #666; transition: color .2s linear; line-height: 22px; } footer .container .footer-nav .nav-item ul li a:hover { color: #00cdf7; } footer .container .footer-nav .nav-custom { float: left; width: 244px; text-align: center; margin-right: 5px; } footer .container .footer-nav .nav-custom h4 { font-size: 14px; color: #666; text-align: center; } footer .container .footer-nav .nav-custom a h3 { color: #1fa7ea; font-size: 24px; margin: 20px 0 14px; text-align: center; } footer .container .footer-nav .nav-custom .nav-btn { display: inline-block; width: 160px; height: 34px; line-height: 34px; text-align: center; text-decoration: none; color: #fff; background-color: #1fa7ea; border-radius: 2px; font-size: 12px; transition: all .2s linear; } footer .container .footer-nav .nav-custom .nav-btn img { line-height: 34px; vertical-align: middle; text-align: center; font-size: 12px; } footer .container .footer-end { border-top: 1px solid #e5e5e5; padding: 38px 0 56px; text-align: center; color: #666; font-size: 12px; } footer .container .footer-end p { text-align: center; color: #666; font-size: 12px; }
0.342462
0.039825
@font-face{ font-family: 'Montserrat-SemiBold'; src: url('../fonts/montserrat/Montserrat-SemiBold.otf'); } @font-face{ font-family: 'Montserrat-Regular'; src: url('../fonts/montserrat/Montserrat-Regular.otf'); } @font-face{ font-family: 'Montserrat-Medium'; src: url('../fonts/montserrat/Montserrat-Medium.otf'); } @font-face{ font-family: 'Segoe UI-Regular'; src: url('../fonts/Segoe UI/Segoe UI.woff'); } @font-face{ font-family: 'Playfair-Display-Regular'; src: url('../fonts/PlayfairDisplay/PlayfairDisplay-Regular.otf'); } @font-face{ font-family: 'Playfair-Display-Bold'; src: url('../fonts/PlayfairDisplay/PlayfairDisplay-Bold.otf'); } @font-face{ font-family: 'Poppins-Regular'; src: url('../fonts/Poppins/Poppins-Regular.ttf'); } html{ box-sizing: border-box; font-size: 62.5%; /*overflow-x: hidden;*/ scroll-behavior: smooth; } *, *::after, *::before{ box-sizing: inherit; margin: 0; padding: 0; } body{ font-size: 15px; background-color: #f0f0f0; } p{ line-height: 1.7; font-size: 15px; margin-bottom: 10px; } input::placeholder { font-size: 15px; } .container{ margin: 0; padding: 0; height: 100%; overflow-x: hidden; position: fixed; } header{ width: 100%; } .Header-background{ position: absolute; transform: translateY(-30%); width: 108%; z-index: -1; } .img-blocks{ width: 55%; } .text-section{ width: 45%; } .Header-content{ position: relative; z-index: 2; padding: 3rem 6rem; } .heading-top{ display: flex; width: 100%; justify-content: space-between; align-items: center; margin-bottom: 9rem; } .logo{ font-family: 'Montserrat-SemiBold'; color: #FFFFFF; font-size: 2rem; flex-basis: 20%; } .logo a{ color: #FFFFFF; text-decoration: none; } .hamburger{ display: none; flex-direction: column; width: 3.4rem; cursor: pointer; } .hamburger-child{ transform-origin: center; height: 0.3rem; width: 100%; /*background-color: #112C3D;*/ background-color: #502274; } .hamburger-child:not(:last-child){ margin-bottom: 0.5rem; } nav.navbar{ flex-basis: 60%; } .nav-options{ width: 100%; list-style: none; display: flex; justify-content: space-evenly; } .nav-item a{ font-size: 15px; text-decoration: none; color: #FFFFFF; font-family: 'Montserrat-Medium'; text-transform: capitalize; } .signup-btn{ border: 1px solid #FFFFFF; box-shadow: 0 0.1rem 0.19rem #000000; transition: box-shadow 0.4s ease; } .signup-btn:hover{ box-shadow: 0 0.14rem 0.26rem #fff; } .btn{ padding: 1rem 4rem; border-radius: 3px; } .header-bottom{ display: flex; justify-content: space-between; } .Header-Large-Heading{ font-size: 4.5rem; color: #FFFFFF; font-family: 'Playfair-Display-Regular'; font-weight: 100; margin: 0 auto; margin-top: 7rem; margin-bottom: 3rem; text-transform: capitalize; width: 100%; } .Header-lead-text{ font-size: 1.6rem; text-align: left; color: #E2E1E7; font-family: 'Poppins-Regular'; width: 100%; line-height: 2; margin: 0 auto; margin-bottom: 5rem; } .header-btn{ background-color: #FFF; color: #502274; text-decoration: none; font-size: 15px; font-family: 'Poppins'; transition: box-shadow 0.3s ease; box-shadow: 0 0.2rem 0.35rem rgba(0, 0, 0, 0.2); } .header-btn:hover{ box-shadow: none; } section.why-stockpiler{ padding: 5rem 20rem; padding-top: 10rem; margin: 0 auto; text-align: center; /* background-color: red; */ } .why-stockpiler-heading{ text-align: center; margin-bottom: 8rem; } .why-stockpiler-heading-lead{ font-size: 2.5rem; font-family: 'PlayfairDisplay-Bold'; color: #23616D; margin-bottom: 1rem; } .why-stockpiler-heading-sub{ font-size: 15px; color: #7AA1B9; font-family: 'Montserrat-Medium'; } .why-stockpiler-body{ text-align: left; /*width: 80%;*/ margin: 0 auto; } .reason{ margin-bottom: 3rem; } .reason-header{ font-size: 1.8rem; margin-bottom: 0.3rem; font-family: 'Montserrat-SemiBold'; color: #000000; } .reason-text{ font-family: 'Montserrat-Regular'; color: #4A4A4A; } .Features{ padding: 5rem 10rem; padding-bottom: 0; margin: 2rem auto; } .Features-heading{ text-align: center; margin-bottom: 8rem; } .Features-heading-lead{ font-size: 2.5rem; font-family: 'PlayfairDisplay-Bold'; color: #23616D; margin-bottom: 1rem; } .Features-heading-sub{ font-size: 14px; color: #7AA1B9; font-family: 'Montserrat-Regular'; } .Features-body{ display: flex; flex-wrap: wrap; justify-content: space-evenly; align-content: center; } .feature{ position: relative; flex-basis: 40%; /*padding: 4rem;*/ text-align: left; margin: 5rem 0; } .feature-img { position: absolute; } .feature-heading{ font-size: 1.8rem; margin-bottom: 1rem; text-align: center; font-family: 'Montserrat-SemiBold'; color: #000000; width: 90%; } .feature-text{ font-size: 15px; text-align: center; font-family: 'Montserrat-Regular'; color: #4A4A4A; } .feature-image-container{ position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 70%; height: 60%; z-index: -1; } .top-left{ left: 0; margin-top: -2rem; } .top-right{ right: 2rem; margin-top: -2rem; } .bottom-left{ left: 0; bottom: 1rem; margin-top: 1rem; } .bottom-right{ bottom: 1rem; margin-top: 1rem; right: 2rem; } .How-it-works{ padding: 5rem 10rem; } .How-it-works-heading{ text-align: center; margin-bottom: 8rem; } .How-it-works-heading-lead{ font-size: 2.5rem; font-family: 'PlayfairDisplay-Bold'; color: #23616D; margin-bottom: 1rem; } .How-it-works-heading-sub{ font-size: 15px; color: #7AA1B9; font-family: 'Montserrat-Regular'; } .How-it-works-body{ display: flex; flex-wrap: wrap; justify-content: space-between; width: 80%; margin: 0 auto; } .How-it-works-body{ display: flex; flex-direction: column; justify-content: space-evenly; align-content: center; align-items: center; } .method-group{ width: 100%; display: flex; flex-direction: row; justify-content: space-around; align-items: center; } .method-group:not(:last-child){ margin-bottom: 8rem; } .reverse{ flex-direction: row-reverse; } .reverse img{ margin-right: 2rem; } .method{ /* flex-basis: 30%; */ /*width: fit-content;*/ max-width: 400px; } .method-image{ width: 40%; } .method-heading{ font-size: 2rem; font-family: 'Montserrat-SemiBold'; margin-bottom: 0.8rem; color: #000; } .method-text{ /*width: 80%;*/ font-size: 15px; text-align: left; color: #4A4A4A; font-family: 'Montserrat-Medium'; } .method-last{ margin-bottom: 3rem; } .Method-button{ /* position: relative; */ color: white; padding: 1.3rem 2.5rem; text-decoration: none; background-color: #502274; font-family: 'Montserrat-SemiBold'; font-size: 15px; border-radius: 4px; transform: translateY(10px); /* border-bottom: 0; */ /* margin-top: 19rem; */ } .FAQs{ padding: 5rem 20rem; } .FAQs-heading{ text-align: center; margin-bottom: 8rem; } .FAQs-heading-lead{ font-size: 2.5rem; font-family: 'Playfair-Display-Bold'; color: #23616D; margin-bottom: 1rem; } .FAQs-heading-sub{ font-size: 15px; color: #7AA1B9; font-family: 'Montserrat-Regular'; } .FAQs-body{ display: flex; flex-wrap: wrap; justify-content: space-between; } .faq{ position: relative; flex-basis: 45%; text-align: center; margin: 5rem 0; } .feature-img { position: absolute; top: 0; } .faq-heading{ font-size: 1.6rem; margin-bottom: 15px; font-family: 'Montserrat-SemiBold'; color: #000; width: 90%; text-align: left; } .faq-text{ font-size: 15px; font-family: 'Montserrat-Regular'; color: #4A4A4A; text-align: left; /*width: 80%;*/ } footer{ padding: 15rem 10rem; padding-bottom: 0; background-color: #262C30; } .footer-body{ display: flex; justify-content: space-evenly; width: 85%; margin: 0 auto; margin-bottom: 5rem; } .talk{ flex-basis: 40%; } .form{ flex-basis: 60%; } .talk-heading{ /* text-align: center; */ margin-bottom: 4rem; } .talk-heading-lead{ font-size: 3rem; font-family: 'Montserrat-SemiBold'; color: #FFFFFF; margin-bottom: 0.8rem; } .talk-heading-sub{ font-size: 16px; color: #FFFFFF; font-family: 'Montserrat-Regular'; } .talk-connect-details{ display: flex; flex-direction: column; width: 100%; } .detail{ display: flex; margin-bottom: 1rem; } .detail h3{ font-size: 16px; color: #FFFFFF; font-family: 'Montserrat-Regular'; margin-left: 1rem; } .fifty-percent{ display: inline-block; width: 49%; } .fifty-percent-header{ font-size: 15px; font-family: 'Montserrat-Regular'; text-transform: uppercase; color: #FFFFFF; margin-bottom: 1rem; } .fifty-percent-input{ background-color: transparent; border: none; font-size: 15px; border-radius: 5px; border-bottom: 2px solid #9B9B9B; color: #9B9B9B; padding: 0.8rem 0; outline: none; width: 90%; } .hundred-percent{ display: inline-block; width: 100%; margin-top: 3rem; } .hundred-percent-header{ font-size: 1.3rem; font-family: 'Montserrat-Regular'; text-transform: uppercase; color: #FFFFFF; margin-bottom: 1rem; } .hundred-percent-input{ background-color: transparent; border: none; border-bottom: 2px solid #9B9B9B; color: #9B9B9B; padding: 0.8rem 0; outline: none; width: 94%; } .footer-form-submit{ margin: 3rem 0; padding: 0.8rem 3.5rem; color: #502274; font-size: 15px; border: none; background-color: #fff; border-radius: 3px; cursor: pointer; } .footer-hr{ margin-bottom: 2rem; } .bottom-contents{ display: flex; justify-content: space-between; padding-bottom: 3rem; } .copyright{ color: #FFFFFF; font-family: 'Montserrat-Regular'; font-size: 15px; } .social-media{ display: flex; flex-direction: column; align-items: center; } .social-media-lead{ color: #FFFFFF; font-size: 15px; font-family: 'Montserrat-Regular'; margin-bottom: 1rem; } .policies{ display: flex; justify-content: space-between; } .policy-links{ color: #FFFFFF; text-decoration: none; font-size: 15px; font-family: 'Montserrat-Regular'; margin-right: 1rem; } .soc-icons{ display: flex; width: 100%; justify-content: space-between; align-items: center; } .mobile-nav{ display: none; } @media (max-width: 1500px){ .container{ overflow-x: hidden; position: fixed; } img.img-blocks{ width: 55% !important; } .text-section{ flex-basis: 45%; } .Header-lead-text{ width: 100%; margin-bottom: 7rem; } .Header-background-2{ display: none; } .why-stockpiler-heading-lead{ font-size: 3rem; } .reason-header{ margin-bottom: 1rem; } .How-it-works-heading-lead{ font-size: 3rem; } .FAQs-heading-lead{ font-size: 3rem; } } @media(max-width: 1200px){ footer{ padding: 15rem 5rem; padding-bottom: 0; } .heading-top{ margin-bottom: 7rem; } section.why-stockpiler{ padding: 15rem 8rem; text-align: center; padding-bottom: 0; } .How-it-works{ padding: 15rem 8rem; padding-bottom: 0; } .Features{ padding: 15rem 8rem; padding-bottom: 0; } .FAQs{ padding: 15rem 5rem; padding-bottom: 0; } nav.navbar{ flex-basis: 70%; } .Header-background{ position: absolute; transform: translateY(-24%); width: 108%; z-index: -1; } .Header-Large-Heading{ font-size: 3rem; margin-top: 3rem; } img.img-blocks{ transform: translateY(-3rem); } .Header-lead-text{ margin-bottom: 4rem; } .feature-text{ /*width: 90%*/ } .faq-text{ width: 90%; } .method-text{ width: 100%; } } @media(max-width: 900px){ .Header-content{ background-color: red; } .mobile-nav{ position: absolute; top: 7.3rem; background-color: #502274; z-index: 200; padding: 3rem; width: 100%; display: none; transition: all 0.3s ease; } .mobile-nav-list{ list-style: none; width: 100%; } a.mobile-nav-link{ display: block; width: 100%; padding: 2rem; color: #fff; font-family: 'Montserrat-Regular'; text-decoration: none; font-size: 15px; text-align: center; } li.mobile-nav-item{ width: 100%; display: block; text-align: center; } .show-mobile-nav{ display: flex; -webkit-animation: showNav 0.3s ease-out 1 forwards; -o-animation: showNav 0.3s ease-out 1 forwards; animation: showNav 0.3s ease-out 1 forwards; } @keyframes showNav{ from { opacity: 0; } to{ opacity: 1; } } .hide-mobile-nav{ display: flex; -webkit-animation: hideNav 0.3s ease-out 1 forwards; -o-animation: hideNav 0.3s ease-out 1 forwards; animation: hideNav 0.3s ease-out 1 forwards; } @keyframes hideNav{ from { opacity: 1; } to{ opacity: 0; } } .rotateLeft{ -webkit-animation: rotateleft 0.3s ease-out 1 forwards; -o-animation: rotateleft 0.3s ease-out 1 forwards; animation: rotateleft 0.3s ease-out 1 forwards; } @keyframes rotateleft{ from { transform: translate(0); } to{ transform: rotate(45deg) translateY(-1rem); } } .notrotateLeft{ -webkit-animation: notrotateleft 0.3s ease-out 1 forwards; -o-animation: notrotateleft 0.3s ease-out 1 forwards; animation: notrotateleft 0.3s ease-out 1 forwards; } @keyframes notrotateleft{ from { transform: rotate(45deg) translateY(-1rem); } to{ transform: translate(0); } } .rotateRight{ -webkit-animation: rotateright 0.3s ease-out 1 forwards; -o-animation: rotateright 0.3s ease-out 1 forwards; animation: rotateright 0.3s ease-out 1 forwards; } @keyframes rotateright{ from { transform: translate(0); } to { transform: rotate(-45deg) translate(-0.1rem, 1.1rem); } } .notrotateRight{ -webkit-animation: notrotateright 0.3s ease-out 1 forwards; -o-animation: notrotateright 0.3s ease-out 1 forwards; animation: notrotateright 0.3s ease-out 1 forwards; } @keyframes notrotateright{ from { transform: rotate(-45deg) translate(-0.1rem, 1.1rem); } to { transform: translate(0); } } .fadeAway{ -webkit-animation: fadeaway 0.3s ease-out 1 forwards; -o-animation: fadeaway 0.3s ease-out 1 forwards; animation: fadeaway 0.3s ease-out 1 forwards; } @keyframes fadeaway{ from{ opacity: 1; } to{ opacity: 0; } } .notfadeAway{ -webkit-animation: notfadeaway 0.3s ease-out 1 forwards; -o-animation: notfadeaway 0.3s ease-out 1 forwards; animation: notfadeaway 0.3s ease-out 1 forwards; } @keyframes notfadeaway{ from{ opacity: 0; } to{ opacity: 1; } } .Header-background{ display: none; } nav.navbar{ display: none; } .hamburger { display: flex; } .header-background-3{ position: absolute; top: 0; left: 0; z-index: -20; height: 60vh; width: 100%; background-color: red; } .Header-background{ display: none; } .Header-content{ text-align: center; } .logo a { /*color: #23616D;*/ color: #502274; text-decoration: none; text-align: center; width: 100%; } .logo{ text-align: center; /* flex-basis: 100%; */ } .text-section{ flex-basis: 100%; } p.Header-lead-text{ text-align: center; color: #fff; } h1.Header-Large-Heading{ color: #fff; margin-top: 7rem; } .heading-top{ position: fixed; background-color: #f0f0f0; padding: 2.5rem 2rem; top: 0; left: 0; box-shadow: 0 3px 3px rgba(0,0,0,0.1); } section.why-stockpiler{ padding: 8rem 6rem; padding-bottom: 0; margin-bottom: 5rem; text-align: center; } .How-it-works{ padding: 8rem 6rem; padding-bottom: 0; margin-bottom: 5rem; } .How-it-works-body{ width: 90%; } .Features{ padding: 8rem 6rem; padding-bottom: 0; margin-bottom: 5rem; } .FAQs{ padding: 8rem 6rem; padding-bottom: 0; margin-bottom: 5rem; } .Header-content{ padding: 5rem 4.5rem; } .heading-top{ margin-bottom: 5rem; } .Header-Large-Heading{ font-size: 2.7rem; } nav.navbar{ flex-basis: 75%; } /*.logo{ margin-right: 2rem; }*/ .method{ flex-basis: 40%; } footer{ padding: 10rem 5rem; padding-bottom: 0; } .Header-lead-text{ margin-bottom: 5rem; color: #7AA1B9; } .talk{ flex-basis: 50%; } img.img-blocks{ display: none; } .Header-background{ width: 115%; } .push { margin-right: 2rem; } .feature-text{ width: 100% } .faq-text{ width: 100%; } .method-text{ width: 100%; } } @media(max-width: 768px){ footer{ padding: 5rem 2rem; padding-bottom: 0; } .footer-body{ flex-direction: column; margin-bottom: 5rem; width: 85%; } .footer-hr{ margin-bottom: 2rem; } .bottom-contents{ flex-direction: column; padding-bottom: 1rem; } .policies{ display: flex; justify-content: center; order: 1; margin-bottom: 5rem; } .copyright { text-align: center; order: 2; margin-bottom: 5rem; } .social-media { display: flex; flex-direction: column; align-items: center; order: 3; margin-bottom: 1rem; } .social-media-lead{ margin-bottom: 1.5rem; } .soc-icons{ width: 80%; } .fifty-percent { display: inline-block; width: 100%; margin-bottom: 2rem; } .hundred-percent { display: inline-block; width: 100%; margin-top: 0rem; } .talk-connect-details { display: flex; flex-direction: column; width: 100%; margin-bottom: 5rem; } .detail{ margin-bottom: 1rem; } .talk-heading{ margin-bottom: 6rem; text-align: center; } .faq{ flex-basis: 100%; margin: 0; } .faq-text{ /*width: 50%;*/ } .fifty-percent-input{ width: 100% } .hundred-percent-input{ width: 100%; } .faq-3-img{ left: 50%; } .FAQs-heading{ margin-bottom: 3rem; } .method-image{ display: none; } .method{ flex-basis: 100%; max-width: unset; /* text-align: center; */ } .method-text{ /*width: 50%;*/ margin: 0 auto 15px; text-align: center; } .How-it-works-body{ text-align: center; } .method-last{ margin-bottom: 3rem; } .method-group:not(:last-child) { margin-bottom: 7rem; } .method-heading{ font-size: 1.6rem; } .Features-body{ flex-direction: column; } .feature{ text-align: center; margin: 0; } .feature-heading{ text-align: center; } .feature-text{ /*width: 50%;*/ text-align: center; } .faq-heading{ text-align: center; } .faq-text{ text-align: center; } section.why-stockpiler{ padding: 6rem 2rem 0; text-align: center; } .How-it-works{ padding: 4rem 2rem; } .Features{ padding: 4rem 2rem; } .FAQs{ padding: 4rem 2rem; } .text-section{ flex-basis: 100%; } .Header-Large-Heading { font-size: 2.7rem; margin-bottom: 3rem; color: #23616D; } .reason-text{ width: 90%; margin: 0 auto ; } .feature-img{ display: none; } .FAQs-heading{ margin-bottom: 3rem; } .Features-heading{ margin-bottom: 3rem; } .why-stockpiler-heading{ margin-bottom: 3rem; } .How-it-works-heading{ margin-bottom: 3rem; } .why-stockpiler-body{ text-align: center; } .feature-text{ margin: 0 auto 15px; } .feature-heading{ margin: 0 auto; } .faq-text{ margin: 0 auto 15px; } .faq-heading{ margin: 0 auto 15px; } } @media(max-width: 500px){ .header-background-3{ height: 60vh; } .Header-Large-Heading{ font-size: 2.5rem; } .Header-lead-text{ font-size: 1.5rem; } .feature-text{ width: 90%; } .method-text{ /*width: 80%;*/ } .feature-text{ /*width: 80%;*/ } .faq-text{ width: 90%; } }
public/assets/css/homepage.css
@font-face{ font-family: 'Montserrat-SemiBold'; src: url('../fonts/montserrat/Montserrat-SemiBold.otf'); } @font-face{ font-family: 'Montserrat-Regular'; src: url('../fonts/montserrat/Montserrat-Regular.otf'); } @font-face{ font-family: 'Montserrat-Medium'; src: url('../fonts/montserrat/Montserrat-Medium.otf'); } @font-face{ font-family: 'Segoe UI-Regular'; src: url('../fonts/Segoe UI/Segoe UI.woff'); } @font-face{ font-family: 'Playfair-Display-Regular'; src: url('../fonts/PlayfairDisplay/PlayfairDisplay-Regular.otf'); } @font-face{ font-family: 'Playfair-Display-Bold'; src: url('../fonts/PlayfairDisplay/PlayfairDisplay-Bold.otf'); } @font-face{ font-family: 'Poppins-Regular'; src: url('../fonts/Poppins/Poppins-Regular.ttf'); } html{ box-sizing: border-box; font-size: 62.5%; /*overflow-x: hidden;*/ scroll-behavior: smooth; } *, *::after, *::before{ box-sizing: inherit; margin: 0; padding: 0; } body{ font-size: 15px; background-color: #f0f0f0; } p{ line-height: 1.7; font-size: 15px; margin-bottom: 10px; } input::placeholder { font-size: 15px; } .container{ margin: 0; padding: 0; height: 100%; overflow-x: hidden; position: fixed; } header{ width: 100%; } .Header-background{ position: absolute; transform: translateY(-30%); width: 108%; z-index: -1; } .img-blocks{ width: 55%; } .text-section{ width: 45%; } .Header-content{ position: relative; z-index: 2; padding: 3rem 6rem; } .heading-top{ display: flex; width: 100%; justify-content: space-between; align-items: center; margin-bottom: 9rem; } .logo{ font-family: 'Montserrat-SemiBold'; color: #FFFFFF; font-size: 2rem; flex-basis: 20%; } .logo a{ color: #FFFFFF; text-decoration: none; } .hamburger{ display: none; flex-direction: column; width: 3.4rem; cursor: pointer; } .hamburger-child{ transform-origin: center; height: 0.3rem; width: 100%; /*background-color: #112C3D;*/ background-color: #502274; } .hamburger-child:not(:last-child){ margin-bottom: 0.5rem; } nav.navbar{ flex-basis: 60%; } .nav-options{ width: 100%; list-style: none; display: flex; justify-content: space-evenly; } .nav-item a{ font-size: 15px; text-decoration: none; color: #FFFFFF; font-family: 'Montserrat-Medium'; text-transform: capitalize; } .signup-btn{ border: 1px solid #FFFFFF; box-shadow: 0 0.1rem 0.19rem #000000; transition: box-shadow 0.4s ease; } .signup-btn:hover{ box-shadow: 0 0.14rem 0.26rem #fff; } .btn{ padding: 1rem 4rem; border-radius: 3px; } .header-bottom{ display: flex; justify-content: space-between; } .Header-Large-Heading{ font-size: 4.5rem; color: #FFFFFF; font-family: 'Playfair-Display-Regular'; font-weight: 100; margin: 0 auto; margin-top: 7rem; margin-bottom: 3rem; text-transform: capitalize; width: 100%; } .Header-lead-text{ font-size: 1.6rem; text-align: left; color: #E2E1E7; font-family: 'Poppins-Regular'; width: 100%; line-height: 2; margin: 0 auto; margin-bottom: 5rem; } .header-btn{ background-color: #FFF; color: #502274; text-decoration: none; font-size: 15px; font-family: 'Poppins'; transition: box-shadow 0.3s ease; box-shadow: 0 0.2rem 0.35rem rgba(0, 0, 0, 0.2); } .header-btn:hover{ box-shadow: none; } section.why-stockpiler{ padding: 5rem 20rem; padding-top: 10rem; margin: 0 auto; text-align: center; /* background-color: red; */ } .why-stockpiler-heading{ text-align: center; margin-bottom: 8rem; } .why-stockpiler-heading-lead{ font-size: 2.5rem; font-family: 'PlayfairDisplay-Bold'; color: #23616D; margin-bottom: 1rem; } .why-stockpiler-heading-sub{ font-size: 15px; color: #7AA1B9; font-family: 'Montserrat-Medium'; } .why-stockpiler-body{ text-align: left; /*width: 80%;*/ margin: 0 auto; } .reason{ margin-bottom: 3rem; } .reason-header{ font-size: 1.8rem; margin-bottom: 0.3rem; font-family: 'Montserrat-SemiBold'; color: #000000; } .reason-text{ font-family: 'Montserrat-Regular'; color: #4A4A4A; } .Features{ padding: 5rem 10rem; padding-bottom: 0; margin: 2rem auto; } .Features-heading{ text-align: center; margin-bottom: 8rem; } .Features-heading-lead{ font-size: 2.5rem; font-family: 'PlayfairDisplay-Bold'; color: #23616D; margin-bottom: 1rem; } .Features-heading-sub{ font-size: 14px; color: #7AA1B9; font-family: 'Montserrat-Regular'; } .Features-body{ display: flex; flex-wrap: wrap; justify-content: space-evenly; align-content: center; } .feature{ position: relative; flex-basis: 40%; /*padding: 4rem;*/ text-align: left; margin: 5rem 0; } .feature-img { position: absolute; } .feature-heading{ font-size: 1.8rem; margin-bottom: 1rem; text-align: center; font-family: 'Montserrat-SemiBold'; color: #000000; width: 90%; } .feature-text{ font-size: 15px; text-align: center; font-family: 'Montserrat-Regular'; color: #4A4A4A; } .feature-image-container{ position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 70%; height: 60%; z-index: -1; } .top-left{ left: 0; margin-top: -2rem; } .top-right{ right: 2rem; margin-top: -2rem; } .bottom-left{ left: 0; bottom: 1rem; margin-top: 1rem; } .bottom-right{ bottom: 1rem; margin-top: 1rem; right: 2rem; } .How-it-works{ padding: 5rem 10rem; } .How-it-works-heading{ text-align: center; margin-bottom: 8rem; } .How-it-works-heading-lead{ font-size: 2.5rem; font-family: 'PlayfairDisplay-Bold'; color: #23616D; margin-bottom: 1rem; } .How-it-works-heading-sub{ font-size: 15px; color: #7AA1B9; font-family: 'Montserrat-Regular'; } .How-it-works-body{ display: flex; flex-wrap: wrap; justify-content: space-between; width: 80%; margin: 0 auto; } .How-it-works-body{ display: flex; flex-direction: column; justify-content: space-evenly; align-content: center; align-items: center; } .method-group{ width: 100%; display: flex; flex-direction: row; justify-content: space-around; align-items: center; } .method-group:not(:last-child){ margin-bottom: 8rem; } .reverse{ flex-direction: row-reverse; } .reverse img{ margin-right: 2rem; } .method{ /* flex-basis: 30%; */ /*width: fit-content;*/ max-width: 400px; } .method-image{ width: 40%; } .method-heading{ font-size: 2rem; font-family: 'Montserrat-SemiBold'; margin-bottom: 0.8rem; color: #000; } .method-text{ /*width: 80%;*/ font-size: 15px; text-align: left; color: #4A4A4A; font-family: 'Montserrat-Medium'; } .method-last{ margin-bottom: 3rem; } .Method-button{ /* position: relative; */ color: white; padding: 1.3rem 2.5rem; text-decoration: none; background-color: #502274; font-family: 'Montserrat-SemiBold'; font-size: 15px; border-radius: 4px; transform: translateY(10px); /* border-bottom: 0; */ /* margin-top: 19rem; */ } .FAQs{ padding: 5rem 20rem; } .FAQs-heading{ text-align: center; margin-bottom: 8rem; } .FAQs-heading-lead{ font-size: 2.5rem; font-family: 'Playfair-Display-Bold'; color: #23616D; margin-bottom: 1rem; } .FAQs-heading-sub{ font-size: 15px; color: #7AA1B9; font-family: 'Montserrat-Regular'; } .FAQs-body{ display: flex; flex-wrap: wrap; justify-content: space-between; } .faq{ position: relative; flex-basis: 45%; text-align: center; margin: 5rem 0; } .feature-img { position: absolute; top: 0; } .faq-heading{ font-size: 1.6rem; margin-bottom: 15px; font-family: 'Montserrat-SemiBold'; color: #000; width: 90%; text-align: left; } .faq-text{ font-size: 15px; font-family: 'Montserrat-Regular'; color: #4A4A4A; text-align: left; /*width: 80%;*/ } footer{ padding: 15rem 10rem; padding-bottom: 0; background-color: #262C30; } .footer-body{ display: flex; justify-content: space-evenly; width: 85%; margin: 0 auto; margin-bottom: 5rem; } .talk{ flex-basis: 40%; } .form{ flex-basis: 60%; } .talk-heading{ /* text-align: center; */ margin-bottom: 4rem; } .talk-heading-lead{ font-size: 3rem; font-family: 'Montserrat-SemiBold'; color: #FFFFFF; margin-bottom: 0.8rem; } .talk-heading-sub{ font-size: 16px; color: #FFFFFF; font-family: 'Montserrat-Regular'; } .talk-connect-details{ display: flex; flex-direction: column; width: 100%; } .detail{ display: flex; margin-bottom: 1rem; } .detail h3{ font-size: 16px; color: #FFFFFF; font-family: 'Montserrat-Regular'; margin-left: 1rem; } .fifty-percent{ display: inline-block; width: 49%; } .fifty-percent-header{ font-size: 15px; font-family: 'Montserrat-Regular'; text-transform: uppercase; color: #FFFFFF; margin-bottom: 1rem; } .fifty-percent-input{ background-color: transparent; border: none; font-size: 15px; border-radius: 5px; border-bottom: 2px solid #9B9B9B; color: #9B9B9B; padding: 0.8rem 0; outline: none; width: 90%; } .hundred-percent{ display: inline-block; width: 100%; margin-top: 3rem; } .hundred-percent-header{ font-size: 1.3rem; font-family: 'Montserrat-Regular'; text-transform: uppercase; color: #FFFFFF; margin-bottom: 1rem; } .hundred-percent-input{ background-color: transparent; border: none; border-bottom: 2px solid #9B9B9B; color: #9B9B9B; padding: 0.8rem 0; outline: none; width: 94%; } .footer-form-submit{ margin: 3rem 0; padding: 0.8rem 3.5rem; color: #502274; font-size: 15px; border: none; background-color: #fff; border-radius: 3px; cursor: pointer; } .footer-hr{ margin-bottom: 2rem; } .bottom-contents{ display: flex; justify-content: space-between; padding-bottom: 3rem; } .copyright{ color: #FFFFFF; font-family: 'Montserrat-Regular'; font-size: 15px; } .social-media{ display: flex; flex-direction: column; align-items: center; } .social-media-lead{ color: #FFFFFF; font-size: 15px; font-family: 'Montserrat-Regular'; margin-bottom: 1rem; } .policies{ display: flex; justify-content: space-between; } .policy-links{ color: #FFFFFF; text-decoration: none; font-size: 15px; font-family: 'Montserrat-Regular'; margin-right: 1rem; } .soc-icons{ display: flex; width: 100%; justify-content: space-between; align-items: center; } .mobile-nav{ display: none; } @media (max-width: 1500px){ .container{ overflow-x: hidden; position: fixed; } img.img-blocks{ width: 55% !important; } .text-section{ flex-basis: 45%; } .Header-lead-text{ width: 100%; margin-bottom: 7rem; } .Header-background-2{ display: none; } .why-stockpiler-heading-lead{ font-size: 3rem; } .reason-header{ margin-bottom: 1rem; } .How-it-works-heading-lead{ font-size: 3rem; } .FAQs-heading-lead{ font-size: 3rem; } } @media(max-width: 1200px){ footer{ padding: 15rem 5rem; padding-bottom: 0; } .heading-top{ margin-bottom: 7rem; } section.why-stockpiler{ padding: 15rem 8rem; text-align: center; padding-bottom: 0; } .How-it-works{ padding: 15rem 8rem; padding-bottom: 0; } .Features{ padding: 15rem 8rem; padding-bottom: 0; } .FAQs{ padding: 15rem 5rem; padding-bottom: 0; } nav.navbar{ flex-basis: 70%; } .Header-background{ position: absolute; transform: translateY(-24%); width: 108%; z-index: -1; } .Header-Large-Heading{ font-size: 3rem; margin-top: 3rem; } img.img-blocks{ transform: translateY(-3rem); } .Header-lead-text{ margin-bottom: 4rem; } .feature-text{ /*width: 90%*/ } .faq-text{ width: 90%; } .method-text{ width: 100%; } } @media(max-width: 900px){ .Header-content{ background-color: red; } .mobile-nav{ position: absolute; top: 7.3rem; background-color: #502274; z-index: 200; padding: 3rem; width: 100%; display: none; transition: all 0.3s ease; } .mobile-nav-list{ list-style: none; width: 100%; } a.mobile-nav-link{ display: block; width: 100%; padding: 2rem; color: #fff; font-family: 'Montserrat-Regular'; text-decoration: none; font-size: 15px; text-align: center; } li.mobile-nav-item{ width: 100%; display: block; text-align: center; } .show-mobile-nav{ display: flex; -webkit-animation: showNav 0.3s ease-out 1 forwards; -o-animation: showNav 0.3s ease-out 1 forwards; animation: showNav 0.3s ease-out 1 forwards; } @keyframes showNav{ from { opacity: 0; } to{ opacity: 1; } } .hide-mobile-nav{ display: flex; -webkit-animation: hideNav 0.3s ease-out 1 forwards; -o-animation: hideNav 0.3s ease-out 1 forwards; animation: hideNav 0.3s ease-out 1 forwards; } @keyframes hideNav{ from { opacity: 1; } to{ opacity: 0; } } .rotateLeft{ -webkit-animation: rotateleft 0.3s ease-out 1 forwards; -o-animation: rotateleft 0.3s ease-out 1 forwards; animation: rotateleft 0.3s ease-out 1 forwards; } @keyframes rotateleft{ from { transform: translate(0); } to{ transform: rotate(45deg) translateY(-1rem); } } .notrotateLeft{ -webkit-animation: notrotateleft 0.3s ease-out 1 forwards; -o-animation: notrotateleft 0.3s ease-out 1 forwards; animation: notrotateleft 0.3s ease-out 1 forwards; } @keyframes notrotateleft{ from { transform: rotate(45deg) translateY(-1rem); } to{ transform: translate(0); } } .rotateRight{ -webkit-animation: rotateright 0.3s ease-out 1 forwards; -o-animation: rotateright 0.3s ease-out 1 forwards; animation: rotateright 0.3s ease-out 1 forwards; } @keyframes rotateright{ from { transform: translate(0); } to { transform: rotate(-45deg) translate(-0.1rem, 1.1rem); } } .notrotateRight{ -webkit-animation: notrotateright 0.3s ease-out 1 forwards; -o-animation: notrotateright 0.3s ease-out 1 forwards; animation: notrotateright 0.3s ease-out 1 forwards; } @keyframes notrotateright{ from { transform: rotate(-45deg) translate(-0.1rem, 1.1rem); } to { transform: translate(0); } } .fadeAway{ -webkit-animation: fadeaway 0.3s ease-out 1 forwards; -o-animation: fadeaway 0.3s ease-out 1 forwards; animation: fadeaway 0.3s ease-out 1 forwards; } @keyframes fadeaway{ from{ opacity: 1; } to{ opacity: 0; } } .notfadeAway{ -webkit-animation: notfadeaway 0.3s ease-out 1 forwards; -o-animation: notfadeaway 0.3s ease-out 1 forwards; animation: notfadeaway 0.3s ease-out 1 forwards; } @keyframes notfadeaway{ from{ opacity: 0; } to{ opacity: 1; } } .Header-background{ display: none; } nav.navbar{ display: none; } .hamburger { display: flex; } .header-background-3{ position: absolute; top: 0; left: 0; z-index: -20; height: 60vh; width: 100%; background-color: red; } .Header-background{ display: none; } .Header-content{ text-align: center; } .logo a { /*color: #23616D;*/ color: #502274; text-decoration: none; text-align: center; width: 100%; } .logo{ text-align: center; /* flex-basis: 100%; */ } .text-section{ flex-basis: 100%; } p.Header-lead-text{ text-align: center; color: #fff; } h1.Header-Large-Heading{ color: #fff; margin-top: 7rem; } .heading-top{ position: fixed; background-color: #f0f0f0; padding: 2.5rem 2rem; top: 0; left: 0; box-shadow: 0 3px 3px rgba(0,0,0,0.1); } section.why-stockpiler{ padding: 8rem 6rem; padding-bottom: 0; margin-bottom: 5rem; text-align: center; } .How-it-works{ padding: 8rem 6rem; padding-bottom: 0; margin-bottom: 5rem; } .How-it-works-body{ width: 90%; } .Features{ padding: 8rem 6rem; padding-bottom: 0; margin-bottom: 5rem; } .FAQs{ padding: 8rem 6rem; padding-bottom: 0; margin-bottom: 5rem; } .Header-content{ padding: 5rem 4.5rem; } .heading-top{ margin-bottom: 5rem; } .Header-Large-Heading{ font-size: 2.7rem; } nav.navbar{ flex-basis: 75%; } /*.logo{ margin-right: 2rem; }*/ .method{ flex-basis: 40%; } footer{ padding: 10rem 5rem; padding-bottom: 0; } .Header-lead-text{ margin-bottom: 5rem; color: #7AA1B9; } .talk{ flex-basis: 50%; } img.img-blocks{ display: none; } .Header-background{ width: 115%; } .push { margin-right: 2rem; } .feature-text{ width: 100% } .faq-text{ width: 100%; } .method-text{ width: 100%; } } @media(max-width: 768px){ footer{ padding: 5rem 2rem; padding-bottom: 0; } .footer-body{ flex-direction: column; margin-bottom: 5rem; width: 85%; } .footer-hr{ margin-bottom: 2rem; } .bottom-contents{ flex-direction: column; padding-bottom: 1rem; } .policies{ display: flex; justify-content: center; order: 1; margin-bottom: 5rem; } .copyright { text-align: center; order: 2; margin-bottom: 5rem; } .social-media { display: flex; flex-direction: column; align-items: center; order: 3; margin-bottom: 1rem; } .social-media-lead{ margin-bottom: 1.5rem; } .soc-icons{ width: 80%; } .fifty-percent { display: inline-block; width: 100%; margin-bottom: 2rem; } .hundred-percent { display: inline-block; width: 100%; margin-top: 0rem; } .talk-connect-details { display: flex; flex-direction: column; width: 100%; margin-bottom: 5rem; } .detail{ margin-bottom: 1rem; } .talk-heading{ margin-bottom: 6rem; text-align: center; } .faq{ flex-basis: 100%; margin: 0; } .faq-text{ /*width: 50%;*/ } .fifty-percent-input{ width: 100% } .hundred-percent-input{ width: 100%; } .faq-3-img{ left: 50%; } .FAQs-heading{ margin-bottom: 3rem; } .method-image{ display: none; } .method{ flex-basis: 100%; max-width: unset; /* text-align: center; */ } .method-text{ /*width: 50%;*/ margin: 0 auto 15px; text-align: center; } .How-it-works-body{ text-align: center; } .method-last{ margin-bottom: 3rem; } .method-group:not(:last-child) { margin-bottom: 7rem; } .method-heading{ font-size: 1.6rem; } .Features-body{ flex-direction: column; } .feature{ text-align: center; margin: 0; } .feature-heading{ text-align: center; } .feature-text{ /*width: 50%;*/ text-align: center; } .faq-heading{ text-align: center; } .faq-text{ text-align: center; } section.why-stockpiler{ padding: 6rem 2rem 0; text-align: center; } .How-it-works{ padding: 4rem 2rem; } .Features{ padding: 4rem 2rem; } .FAQs{ padding: 4rem 2rem; } .text-section{ flex-basis: 100%; } .Header-Large-Heading { font-size: 2.7rem; margin-bottom: 3rem; color: #23616D; } .reason-text{ width: 90%; margin: 0 auto ; } .feature-img{ display: none; } .FAQs-heading{ margin-bottom: 3rem; } .Features-heading{ margin-bottom: 3rem; } .why-stockpiler-heading{ margin-bottom: 3rem; } .How-it-works-heading{ margin-bottom: 3rem; } .why-stockpiler-body{ text-align: center; } .feature-text{ margin: 0 auto 15px; } .feature-heading{ margin: 0 auto; } .faq-text{ margin: 0 auto 15px; } .faq-heading{ margin: 0 auto 15px; } } @media(max-width: 500px){ .header-background-3{ height: 60vh; } .Header-Large-Heading{ font-size: 2.5rem; } .Header-lead-text{ font-size: 1.5rem; } .feature-text{ width: 90%; } .method-text{ /*width: 80%;*/ } .feature-text{ /*width: 80%;*/ } .faq-text{ width: 90%; } }
0.399226
0.052497
html{font-size:62.5%; height: 100%; width: 100%;} @media only screen and (min-width: 320px){html{font-size:94%!important;}} @media only screen and (min-width: 375px){html{font-size:109%!important;}} @media only screen and (min-width: 412px){html{font-size:125%!important;}} @media only screen and (min-width: 481px){html{font-size:94%!important;}} @media only screen and (min-width: 561px){html{font-size:109%!important;}} @media only screen and (min-width: 641px){html{font-size:125%!important;}} body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,button,textarea,p,blockquote,th,td{ padding:0; margin:0;} ol,ul,li{list-style:none;} body{min-width: 320px; max-width: 640px; margin: 0 auto!important; height: 100%;} h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:500;} address,cite,dfn,em,var{font-style:normal;} code,kbd,pre,samp,tt{font-family:"Courier New",Courier,monospace;} button,input,select,textarea{font-size:100%;outline:none; -webkit-tap-highlight-color:transparent;} fieldset,img{border:0;} table{border-collapse:collapse; border-spacing:0; table-layout: fixed;} td{word-break: break-all; word-wrap:break-word;} a,a:hover{text-decoration:none;} blockquote,q{quotes:none;} blockquote:before,blockquote:after,q:before,q:after{content:'';} label,button,input[type="button"],input[type="reset"],input[type="submit"]{cursor:pointer;} del{text-decoration:line-through;} ins{text-decoration:none;} abbr[title],acronym[title]{border-bottom:1px dotted;cursor:help;} mark{background-color:yellow;} input[type=submit],input[type=button]{ -webkit-appearance:none; box-sizing:content-box;border:0; border-radius:0; font-family: "微软雅黑"; background: white;} body{font-family:"微软雅黑","黑体","华文细黑";font-size:14px; color:#333; min-width: 320px; max-width: 640px; margin: 0 auto; position: relative;} .clearfix:after{clear:both;display: block; content: "..."; visibility: hidden; height: 0; font-size: 0;} .clearfix{*zoom:1;} .clear{ clear:both;} i{font-style: normal;} a{-webkit-tap-highlight-color: rgba(0, 0, 0, 0); background:0 0;} img{width: 100%; height: auto; display: block;} /*公用头部导航*/ .mui-bar-nav {background-color: #D6AA50; box-shadow: 0 0px 3px #BC8A4B;} .mui-bar-nav a,.mui-bar-nav h1 {color: #FFFFFF;} .mui-bar-tab .mui-tab-item.mui-active {color: #D6AA50;} /*10像素*/ .margin10{margin-top: 10px;} .foot50{height: 50px; line-height: 50px;} /*共用按钮*/ .btn { width: 95%; margin: 20px auto; display: block; border: 0px; padding: 10px 0px; background: #FF7831; color: #fff; font-size: 14px; border-radius: 4px; } .file-btn { position: relative; width: 80px; height: 80px; border-radius: 50%; } .file-btn input[type="file"] { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; } .actions {padding: 5px 0;} .crop {display: none} /*便民*/ .bm-logo { width: 40px; height: 40px; padding: 0; } .mui-content{padding-bottom: 50px;} .mui-content2{padding-bottom: 0px; padding-top: 44px; height: 100%;} input:-webkit-autofill {-webkit-box-shadow:0 0 0 100px white inset; -webkit-text-fill-color: #FFFFFF; border-radius: 0;} input:-webkit-autofill:focus {-webkit-box-shadow:0 0 0 100px white inset; -webkit-text-fill-color: #FFFFFF; border-radius: 0;}
public/static/index/css/style.css
html{font-size:62.5%; height: 100%; width: 100%;} @media only screen and (min-width: 320px){html{font-size:94%!important;}} @media only screen and (min-width: 375px){html{font-size:109%!important;}} @media only screen and (min-width: 412px){html{font-size:125%!important;}} @media only screen and (min-width: 481px){html{font-size:94%!important;}} @media only screen and (min-width: 561px){html{font-size:109%!important;}} @media only screen and (min-width: 641px){html{font-size:125%!important;}} body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,button,textarea,p,blockquote,th,td{ padding:0; margin:0;} ol,ul,li{list-style:none;} body{min-width: 320px; max-width: 640px; margin: 0 auto!important; height: 100%;} h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:500;} address,cite,dfn,em,var{font-style:normal;} code,kbd,pre,samp,tt{font-family:"Courier New",Courier,monospace;} button,input,select,textarea{font-size:100%;outline:none; -webkit-tap-highlight-color:transparent;} fieldset,img{border:0;} table{border-collapse:collapse; border-spacing:0; table-layout: fixed;} td{word-break: break-all; word-wrap:break-word;} a,a:hover{text-decoration:none;} blockquote,q{quotes:none;} blockquote:before,blockquote:after,q:before,q:after{content:'';} label,button,input[type="button"],input[type="reset"],input[type="submit"]{cursor:pointer;} del{text-decoration:line-through;} ins{text-decoration:none;} abbr[title],acronym[title]{border-bottom:1px dotted;cursor:help;} mark{background-color:yellow;} input[type=submit],input[type=button]{ -webkit-appearance:none; box-sizing:content-box;border:0; border-radius:0; font-family: "微软雅黑"; background: white;} body{font-family:"微软雅黑","黑体","华文细黑";font-size:14px; color:#333; min-width: 320px; max-width: 640px; margin: 0 auto; position: relative;} .clearfix:after{clear:both;display: block; content: "..."; visibility: hidden; height: 0; font-size: 0;} .clearfix{*zoom:1;} .clear{ clear:both;} i{font-style: normal;} a{-webkit-tap-highlight-color: rgba(0, 0, 0, 0); background:0 0;} img{width: 100%; height: auto; display: block;} /*公用头部导航*/ .mui-bar-nav {background-color: #D6AA50; box-shadow: 0 0px 3px #BC8A4B;} .mui-bar-nav a,.mui-bar-nav h1 {color: #FFFFFF;} .mui-bar-tab .mui-tab-item.mui-active {color: #D6AA50;} /*10像素*/ .margin10{margin-top: 10px;} .foot50{height: 50px; line-height: 50px;} /*共用按钮*/ .btn { width: 95%; margin: 20px auto; display: block; border: 0px; padding: 10px 0px; background: #FF7831; color: #fff; font-size: 14px; border-radius: 4px; } .file-btn { position: relative; width: 80px; height: 80px; border-radius: 50%; } .file-btn input[type="file"] { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; } .actions {padding: 5px 0;} .crop {display: none} /*便民*/ .bm-logo { width: 40px; height: 40px; padding: 0; } .mui-content{padding-bottom: 50px;} .mui-content2{padding-bottom: 0px; padding-top: 44px; height: 100%;} input:-webkit-autofill {-webkit-box-shadow:0 0 0 100px white inset; -webkit-text-fill-color: #FFFFFF; border-radius: 0;} input:-webkit-autofill:focus {-webkit-box-shadow:0 0 0 100px white inset; -webkit-text-fill-color: #FFFFFF; border-radius: 0;}
0.19888
0.061115
body { margin: 0; padding: 20px; font-family: sans-serif; } #root { margin: 0; padding: 0; font-family: sans-serif; font-size: 2rem; } #survey { margin: 0 auto; } .alert.alert-danger { margin-bottom: 5px; } h5 span, .alert.alert-danger { font-size: 21px; } input[type=button] { font-size: 2.0rem; } .main-logo { padding: 20px 0 40px 5px; height: 150px; } body { background-image: url('/icons/family_food_2.jpg'); background-size: 120%; background-repeat: no-repeat; } .header-items-container { padding-left: 10px; } .page-container { opacity: 0.9; } .jumbotron { -webkit-box-shadow: 9px 9px 6px 0px rgba(50, 50, 50, 0.7); -moz-box-shadow: 9px 9px 6px 0px rgba(50, 50, 50, 0.7); box-shadow: 9px 9px 6px 0px rgba(50, 50, 50, 0.7); } /* Don't center things */ .survey input { max-width: 10em; } .survey .panel-body { height: 200px; } .survey .form-inline .radio { width: auto !important; padding-right: 1rem; } .panel-body .progress.center-block { margin: 10px 0; } .alert { text-align: center; font-size: 1.6rem; margin-bottom: 10px; /* match progress bar width */ width: 60%; } .panel-footer { /* match progress bar width */ width: 60%; } .call-forimmediate-help { background-color: #FFF; padding: 15px; margin-bottom: 20px; } .resource-map { width: 100%; height: 600px; } .card-deck .card .card-sub-text { font-size: 2rem; font-weight: bold; max-width: 300px; } /* mobile */ @media only screen and (max-width: 767px) { body { padding-left: 13px; background-size: 300%; background-repeat: repeat-y; } .header-items-container .display-3 { font-size: 1.7rem; } .header-items-container .lead { font-size: 1.4rem; } .header-items-container .btn-lg { font-size: 1.4rem; } h5 span, .form-inline, .panel-footer input, .alert.alert-danger, .jumbotron .call-forimmediate-help p { font-size: 1.4rem; } .form-inline .radio.radio { margin: 0; } .survey .panel-body { height: 170px; } .alert.alert-danger { line-height: initial; width: 100%; padding: 5px; } .card-deck .card .card-sub-text { font-size: 1.2rem; } } /* mobile - landscape */ @media only screen and (max-width: 767px) and (orientation: landscape) { body { padding-top: 5px; padding-right: 25px; background-size: 100%; } .header-items-container .display-3 { margin-top: 0; margin-bottom: 2px; } .page-container .jumbotron { padding: 5px; } .page-container .btn-lg { padding: 5px 8px; } .page-container .jumbotron p { margin-bottom: 6px; } .survey .panel-body { height: 120px; } #sq_page { padding-top: 0px; padding-bottom: 0px; } #sq_page h5 { margin: 0 0 5px; } .my-4 { margin: 5px !important; } .main-logo { padding: 5px; height: 70px; } .jumbotron .lead { margin-bottom: 10px; } .card-deck .card .card-sub-text, .card-body .card-text { font-size: 1.4rem; } }
wic/src/index.css
body { margin: 0; padding: 20px; font-family: sans-serif; } #root { margin: 0; padding: 0; font-family: sans-serif; font-size: 2rem; } #survey { margin: 0 auto; } .alert.alert-danger { margin-bottom: 5px; } h5 span, .alert.alert-danger { font-size: 21px; } input[type=button] { font-size: 2.0rem; } .main-logo { padding: 20px 0 40px 5px; height: 150px; } body { background-image: url('/icons/family_food_2.jpg'); background-size: 120%; background-repeat: no-repeat; } .header-items-container { padding-left: 10px; } .page-container { opacity: 0.9; } .jumbotron { -webkit-box-shadow: 9px 9px 6px 0px rgba(50, 50, 50, 0.7); -moz-box-shadow: 9px 9px 6px 0px rgba(50, 50, 50, 0.7); box-shadow: 9px 9px 6px 0px rgba(50, 50, 50, 0.7); } /* Don't center things */ .survey input { max-width: 10em; } .survey .panel-body { height: 200px; } .survey .form-inline .radio { width: auto !important; padding-right: 1rem; } .panel-body .progress.center-block { margin: 10px 0; } .alert { text-align: center; font-size: 1.6rem; margin-bottom: 10px; /* match progress bar width */ width: 60%; } .panel-footer { /* match progress bar width */ width: 60%; } .call-forimmediate-help { background-color: #FFF; padding: 15px; margin-bottom: 20px; } .resource-map { width: 100%; height: 600px; } .card-deck .card .card-sub-text { font-size: 2rem; font-weight: bold; max-width: 300px; } /* mobile */ @media only screen and (max-width: 767px) { body { padding-left: 13px; background-size: 300%; background-repeat: repeat-y; } .header-items-container .display-3 { font-size: 1.7rem; } .header-items-container .lead { font-size: 1.4rem; } .header-items-container .btn-lg { font-size: 1.4rem; } h5 span, .form-inline, .panel-footer input, .alert.alert-danger, .jumbotron .call-forimmediate-help p { font-size: 1.4rem; } .form-inline .radio.radio { margin: 0; } .survey .panel-body { height: 170px; } .alert.alert-danger { line-height: initial; width: 100%; padding: 5px; } .card-deck .card .card-sub-text { font-size: 1.2rem; } } /* mobile - landscape */ @media only screen and (max-width: 767px) and (orientation: landscape) { body { padding-top: 5px; padding-right: 25px; background-size: 100%; } .header-items-container .display-3 { margin-top: 0; margin-bottom: 2px; } .page-container .jumbotron { padding: 5px; } .page-container .btn-lg { padding: 5px 8px; } .page-container .jumbotron p { margin-bottom: 6px; } .survey .panel-body { height: 120px; } #sq_page { padding-top: 0px; padding-bottom: 0px; } #sq_page h5 { margin: 0 0 5px; } .my-4 { margin: 5px !important; } .main-logo { padding: 5px; height: 70px; } .jumbotron .lead { margin-bottom: 10px; } .card-deck .card .card-sub-text, .card-body .card-text { font-size: 1.4rem; } }
0.278159
0.083479
@import url(http://fonts.googleapis.com/earlyaccess/notokufiarabic.css); @import url(http://fonts.googleapis.com/earlyaccess/droidarabicnaskh.css); @import url(http://fonts.googleapis.com/earlyaccess/droidarabickufi.css); .fileUpload { position: relative; overflow: hidden; margin: 10px } .navbar, .panel-head { margin-bottom: 0 } .form-no-border{ border: 0; } .panel-head, .searchItems strong { font-size: large } body { padding-top: 50px; font-family: 'Droid Arabic Naskh', serif; background: #f5f5f5 } a { font-family: 'Droid Arabic Kufi', serif } panel-primary .panel-body { padding: 0 } .search-filter ul { list-style: none; margin: 0 } .footer { border-top: 1px solid #d3d3d3; margin: 0; background: #fff } .navbar-default, .navbar-default .navbar-toggle { border-color: #c0392b } .navbar-default, .navbar-default .navbar-nav>li>.dropdown-menu { background-color: #bb0808 } .footer .soical { padding: 40px 0 } .padding { padding-top: 30px } .panel-head { padding: 20px } .font-dn { font-family: "Noto Kufi Arabic" } .navbar-default { background-color: #0094ff; border-color: #0b6f8f; } .navbar-default .navbar-brand { color: #ffffff; } .navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus { color: #dfd8e9; } .navbar-default .navbar-text { color: #ffffff; } .navbar-default .navbar-nav > li > a { color: #ffffff; } .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus { color: #dfd8e9; } .navbar-default .navbar-nav > li > .dropdown-menu { background-color: #0094ff; } .navbar-default .navbar-nav > li > .dropdown-menu > li > a { color: #ffffff; } .navbar-default .navbar-nav > li > .dropdown-menu > li > a:hover, .navbar-default .navbar-nav > li > .dropdown-menu > li > a:focus { color: #dfd8e9; background-color: #0b6f8f; } .navbar-default .navbar-nav > li > .dropdown-menu > li > .divider { background-color: #0b6f8f; } .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus { color: #dfd8e9; background-color: #0b6f8f; } .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus { color: #dfd8e9; background-color: #0b6f8f; } .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus { color: #dfd8e9; background-color: #0b6f8f; } .navbar-default .navbar-toggle { border-color: #0b6f8f; } .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus { background-color: #0b6f8f; } .navbar-default .navbar-toggle .icon-bar { background-color: #ffffff; } .navbar-default .navbar-collapse, .navbar-default .navbar-form { border-color: #ffffff; } .navbar-default .navbar-link { color: #ffffff; } .navbar-default .navbar-link:hover { color: #dfd8e9; } @media (max-width: 767px) { .navbar-default .navbar-nav .open .dropdown-menu > li > a { color: #ffffff; } .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { color: #dfd8e9; } .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus { color: #dfd8e9; background-color: #0b6f8f; } }
style/css/style.css
@import url(http://fonts.googleapis.com/earlyaccess/notokufiarabic.css); @import url(http://fonts.googleapis.com/earlyaccess/droidarabicnaskh.css); @import url(http://fonts.googleapis.com/earlyaccess/droidarabickufi.css); .fileUpload { position: relative; overflow: hidden; margin: 10px } .navbar, .panel-head { margin-bottom: 0 } .form-no-border{ border: 0; } .panel-head, .searchItems strong { font-size: large } body { padding-top: 50px; font-family: 'Droid Arabic Naskh', serif; background: #f5f5f5 } a { font-family: 'Droid Arabic Kufi', serif } panel-primary .panel-body { padding: 0 } .search-filter ul { list-style: none; margin: 0 } .footer { border-top: 1px solid #d3d3d3; margin: 0; background: #fff } .navbar-default, .navbar-default .navbar-toggle { border-color: #c0392b } .navbar-default, .navbar-default .navbar-nav>li>.dropdown-menu { background-color: #bb0808 } .footer .soical { padding: 40px 0 } .padding { padding-top: 30px } .panel-head { padding: 20px } .font-dn { font-family: "Noto Kufi Arabic" } .navbar-default { background-color: #0094ff; border-color: #0b6f8f; } .navbar-default .navbar-brand { color: #ffffff; } .navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus { color: #dfd8e9; } .navbar-default .navbar-text { color: #ffffff; } .navbar-default .navbar-nav > li > a { color: #ffffff; } .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus { color: #dfd8e9; } .navbar-default .navbar-nav > li > .dropdown-menu { background-color: #0094ff; } .navbar-default .navbar-nav > li > .dropdown-menu > li > a { color: #ffffff; } .navbar-default .navbar-nav > li > .dropdown-menu > li > a:hover, .navbar-default .navbar-nav > li > .dropdown-menu > li > a:focus { color: #dfd8e9; background-color: #0b6f8f; } .navbar-default .navbar-nav > li > .dropdown-menu > li > .divider { background-color: #0b6f8f; } .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus { color: #dfd8e9; background-color: #0b6f8f; } .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus { color: #dfd8e9; background-color: #0b6f8f; } .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus { color: #dfd8e9; background-color: #0b6f8f; } .navbar-default .navbar-toggle { border-color: #0b6f8f; } .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus { background-color: #0b6f8f; } .navbar-default .navbar-toggle .icon-bar { background-color: #ffffff; } .navbar-default .navbar-collapse, .navbar-default .navbar-form { border-color: #ffffff; } .navbar-default .navbar-link { color: #ffffff; } .navbar-default .navbar-link:hover { color: #dfd8e9; } @media (max-width: 767px) { .navbar-default .navbar-nav .open .dropdown-menu > li > a { color: #ffffff; } .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { color: #dfd8e9; } .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus { color: #dfd8e9; background-color: #0b6f8f; } }
0.285073
0.056418