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
@charset "utf-8"; /* New Perspectives on HTML5 and CSS3, 7th Edition Tutorial 4 Case Problem 4 Browyer Realty Layout Styles Author: <NAME> & <NAME> Date: Oct. 30, 2018 Filename: br_styles.css */ /* Structural Styles */ div, header, h1, h2, nav, p, img, section, article, footer { display: block; } /* Typographic Styles */ body, footer, h1, header, div, html, img, li, nav, p, section, ul { font-size: 100%; margin: 0; padding: 0; vertical-align: baseline; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } /* HTML Styles */ html { background-image: url(br_paper.png); background-attachment: fixed; } /* Body Styles */ body { font-family: 'Times New Roman', serif; min-width: 640px; max-width: 960px; margin-right: auto; margin-left: auto; background-color: white; background: radial-gradient(rgb(153, 153, 153), white); } /* Navigation Styles */ nav > img { width: 100%; } nav li { width: 20%; float: left; text-align: center; background-color: rgba(255, 204, 153, 0.6); padding-top: 5px; padding-bottom: 5px; margin-bottom: 5px; border-top-left-radius: 30px; border-top-right-radius: 30px; border-bottom: 3px solid black; box-shadow: rgb(0, 0, 0) -1px -10px 5px; } /* Section Styles */ section { margin: 5px; padding: 5px; float: left; } section h1 { font-size: 1.5em; text-align: center; padding-bottom: 15px; text-decoration: underline; color: rgb(0, 75, 255); text-shadow: rgb(0, 0, 0) -5px -5px 15px; } /* Section Image Styles */ section img { border-radius: 15px; box-shadow: rgb(0, 0, 0) -5px -10px 15px; } section#front img { transform: perspective(300px); transform: rotate3d(30, -30, 0, 30deg); } section#side img { transform: perspective(300px); transform: rotate3d(30, 30, 0, 30deg); } section#dining img { -webkit-filter: brightness(2.3); filter: brightness(2.3); } section#b1 img { transform: perspective(300px); transform: rotate3d(-30, -30, 0, 30deg); } section#b3 img { -webkit-filter: brightness(2); filter: brightness(2); transform: perspective(300px); transform: rotate3d(-30, 30, 0, 30deg); } /* Article Styles */ article { padding-left: 20px; padding-right: 20px; padding-bottom: 10px; font-size: 1.1em; line-height: 1.3em; } article h2 { padding-left: 30px; text-decoration: underline; font-size: 1.3em; line-height: 1.5em; } article li { padding-left: 30px; list-style-type: circle; } /* Div Styles */ div a { width: 25%; float: left; text-decoration: none; text-align: center; background-color: rgba(255, 204, 153, 0.6); padding-top: 5px; padding-bottom: 5px; margin-bottom: 5px; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top: 3px solid black; border-bottom: 1.5px solid black; } /* Footer Styles */ footer { padding-bottom: 10px; text-align: center; width: 100%; font-size: 1.05em; background: linear-gradient(60deg, white, rgb(153, 153, 153), rgba(255, 204, 153, 0.6)); }
Work/html04/html04/case4/br_styles.css
@charset "utf-8"; /* New Perspectives on HTML5 and CSS3, 7th Edition Tutorial 4 Case Problem 4 Browyer Realty Layout Styles Author: <NAME> & <NAME> Date: Oct. 30, 2018 Filename: br_styles.css */ /* Structural Styles */ div, header, h1, h2, nav, p, img, section, article, footer { display: block; } /* Typographic Styles */ body, footer, h1, header, div, html, img, li, nav, p, section, ul { font-size: 100%; margin: 0; padding: 0; vertical-align: baseline; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } /* HTML Styles */ html { background-image: url(br_paper.png); background-attachment: fixed; } /* Body Styles */ body { font-family: 'Times New Roman', serif; min-width: 640px; max-width: 960px; margin-right: auto; margin-left: auto; background-color: white; background: radial-gradient(rgb(153, 153, 153), white); } /* Navigation Styles */ nav > img { width: 100%; } nav li { width: 20%; float: left; text-align: center; background-color: rgba(255, 204, 153, 0.6); padding-top: 5px; padding-bottom: 5px; margin-bottom: 5px; border-top-left-radius: 30px; border-top-right-radius: 30px; border-bottom: 3px solid black; box-shadow: rgb(0, 0, 0) -1px -10px 5px; } /* Section Styles */ section { margin: 5px; padding: 5px; float: left; } section h1 { font-size: 1.5em; text-align: center; padding-bottom: 15px; text-decoration: underline; color: rgb(0, 75, 255); text-shadow: rgb(0, 0, 0) -5px -5px 15px; } /* Section Image Styles */ section img { border-radius: 15px; box-shadow: rgb(0, 0, 0) -5px -10px 15px; } section#front img { transform: perspective(300px); transform: rotate3d(30, -30, 0, 30deg); } section#side img { transform: perspective(300px); transform: rotate3d(30, 30, 0, 30deg); } section#dining img { -webkit-filter: brightness(2.3); filter: brightness(2.3); } section#b1 img { transform: perspective(300px); transform: rotate3d(-30, -30, 0, 30deg); } section#b3 img { -webkit-filter: brightness(2); filter: brightness(2); transform: perspective(300px); transform: rotate3d(-30, 30, 0, 30deg); } /* Article Styles */ article { padding-left: 20px; padding-right: 20px; padding-bottom: 10px; font-size: 1.1em; line-height: 1.3em; } article h2 { padding-left: 30px; text-decoration: underline; font-size: 1.3em; line-height: 1.5em; } article li { padding-left: 30px; list-style-type: circle; } /* Div Styles */ div a { width: 25%; float: left; text-decoration: none; text-align: center; background-color: rgba(255, 204, 153, 0.6); padding-top: 5px; padding-bottom: 5px; margin-bottom: 5px; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top: 3px solid black; border-bottom: 1.5px solid black; } /* Footer Styles */ footer { padding-bottom: 10px; text-align: center; width: 100%; font-size: 1.05em; background: linear-gradient(60deg, white, rgb(153, 153, 153), rgba(255, 204, 153, 0.6)); }
0.367384
0.116136
@charset "utf-8"; /* CSS Document */ .preloader { position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 999999; background: #000; overflow:hidden; } .preloader > .logo-preload{ position: relative; margin:21% auto; width: 100px; clear:both; } .preloader > .logo-preload > img{ width:100%; height:auto; position: relative; } .preloader > i { color:#FFF; position: absolute; font-size: 36px; line-height: 36px; top: 50%; left: 50%; height: 36px; width: 36px; margin-top: -15px; margin-left: -15px; display: inline-block; } body{ border:0 0; margin:0 0; background: #000; font-family: 'Philosopher', sans-serif; } .login{ width:100%; height: auto; min-height:100%; position: fixed; background-color:#000; float:none; z-index:5000; overflow:hidden; font-family: 'Philosopher', sans-serif; } .login .logo{ width:250px; visibility:visible; margin:5% auto; } .login .logo img{ width:100%; } .login form{ width:250px; margin:0 auto; color:#fff; } .login form input{ width:100%; } .fa{ font-size: 20px; line-height:10px; } hr{ border-color:#666; margin:0px 0px; } #locais{ width:90%; margin:0 auto; border-color:#333; } .header{ width:100%; position:fixed; top:0px; background-color:#000; z-index:290; border-bottom: inset #333 1px; -moz-box-shadow: 0px 3px 14px #000000; -webkit-box-shadow: 0px 3px 14px #000000; box-shadow: 0px 3px 14px #000000; } .busca{ font-family: 'Philosopher', sans-serif; width:30%; position:absolute; float:right; top:80px; right:5%; z-index:200; } .busca input{ width:100%; height:40px; font-size:24px; background-color:rgba(255, 255, 255, .1); } .busca #livesearch{ position:relative; font-size:24px; width:100%; background-color:rgba(0,0,0,.7); } .menu-logo, .menu-logo img, #pag_contato .menu-logo, #pag_contato .menu-logo img{ visibility:hidden; height:40px; } .logo{ visibility:hidden; } .logo_top{ width: 12%; background: none; position: absolute; top: 0px; visibility: visible; } .logo_top img{ width:100%; left:55%; background:#900; position: absolute; padding:20px 20px 20px 20px; -moz-border-radius:0px 0px 10px 10px; -webkit-border-radius:0px 0px 10px 10px; border-radius:0px 0px 10px 10px; border:inset 3px #FFF; z-index:300; -moz-box-shadow: 0px 3px 14px #000000; -webkit-box-shadow: 0px 3px 14px #000000; box-shadow: 0px 3px 14px #000000; } .logo-form{ width:15%; min-width:100px; max-width:250px; margin:3% auto; } .logo-form img{ width:100%; margin:0 auto; } .carousel{ margin-top:-100px; z-index:100; border-bottom:solid 1px #900; clear:both; } .parallax-window{ width:100%; margin:0px 0px; } .parallax-content{ margin-top:-100px; position:relative; padding-top:220px; padding-bottom:220px; } .swiper-slider{ position:relative; padding-top:50px; padding-bottom:20px; } .footer .parallax-content{ position:relative; padding-top:30px; padding-bottom:50px; } .anterior{ position: absolute; width:60px; height:60px; top:450px; left:15px; border:solid 1px #990000; -moz-border-radius:50px 50px 50px 50px; -webkit-border-radius:50px 50px 50px 50px; border-radius:50px 50px 50px 50px; background:#000; z-index:200; opacity:0.3; } .anterior:hover{ opacity:0.7; } .btn .fa{ font-size:36px; margin-left:0px; margin-top:17px; color:#fff; } .proximo{ position: absolute; width:60px; height:60px; top:450px; right:15px; border:solid 1px #990000; -moz-border-radius:50px 50px 50px 50px; -webkit-border-radius:50px 50px 50px 50px; border-radius:50px 50px 50px 50px; background:#000; z-index:200; opacity:0.3; } .proximo:hover{ opacity:0.7; } .rotator p{ font-family: 'Philosopher', sans-serif; } #depoimentos{ width:100%; } .content-depoimentos p{ font-family: 'Philosopher', sans-serif; } .content-depoimentos{ font-family: 'Philosopher', sans-serif; position:relative; float:left; width:30.33%; text-align:justify; background:#000; word-break:break-all; margin-left:3%; } .content-depoimentos .swiper-testimonials h2{ margin-top:-30px; } .swiper-testimonials h2, .onde-comprar h2, .canal h2{ text-align:left; } .content-depoimentos .color-link{ color:#900; } .content-depoimentos p{ color:#FFF; } .content-depoimentos #cadastro{ float: right; z-index:100; } .onde-comprar{ width:30.33%; position:relative; float:left; margin-left:1%; } .canal{ width:30.33%; position:relative; float:left; margin-left:1%; } .onde-comprar iframe{ width:100%; height:100%; min-height:250px; } .canal iframe{ width:100%; height:100%; min-height:250px; } .bg-color-sky-light{ -moz-box-shadow:inset 0px 0px 75px #000000; -webkit-box-shadow:inset 0px 0px 75px #000000; box-shadow:inset 0px 0px 75px #000000; } .container .row .service .service-info{ width:80%; } .destaques p{ font-family: 'Philosopher', sans-serif; text-align:justify; color:#F0F0F0; } .destaques{ background-image:url(../imagens/banner_bg/Cachacas-Destaques-Engenho-da-Cana.jpg); background-attachment:fixed; border-top: solid 1px #333; border-bottom: solid 1px #333; width:100%; padding:0px 0px; margin:0px 0px; } .slidernav i{ font-size:36px; } /** posts slider nav **/ .previous, .next{ position: absolute; clear:both; margin-top:-20%; } .previous{ float:left; left:5%; } .next{ float:right; right:5%; } .slidernav a { text-transform:uppercase; display: inline-block; padding: 5px 5px; margin-right: 8px; font-size: 1.6em; color: #FFF; text-decoration: none; -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px; -webkit-box-shadow: 2px 2px 0px rgba(0,0,0,0.2); -moz-box-shadow: 2px 2px 0px rgba(0,0,0,0.2); box-shadow: 2px 2px 0px rgba(0,0,0,0.2); } .slidernav a:hover{ color:#900; } .slidernav a:active { -webkit-box-shadow: 1px 1px 0 rgba(0,0,0,0.2); -moz-box-shadow: 1px 1px 0 rgba(0,0,0,0.2); box-shadow: 1px 1px 0 rgba(0,0,0,0.2); } .premios .row-space-1{ max-height:500px; overflow:auto; } .destaques .row{ background-color:rgba(0,0,0,.7); margin:0px auto; padding:0px 60px; } .destaques .row h4, .destaques .row h4 a{ text-align:left; font-family: 'Kaushan Script', cursive; color:#FFF; } .destaques .row h4 a:hover{ color:#900; } .eventos{ width:100%; padding-top:70px; padding-bottom:70px; } #agenda_list{ position: relative; left:5%; width:55%; max-width:650px; min-height:400px; height:100%; } #agenda_list h2{ margin-left:-3%; } .lista{ width:100%; max-height:300px; overflow:auto; font-family: 'Philosopher', sans-serif; } .promo-section #contato{ padding-top:70px; } .promo-section #contato ul, .footer-seperator #contato ul{ line-height:250%; } .promo-section #contato ul li, .footer-seperator #contato ul li{ margin-bottom:10px; color:#FFF; font-family: 'Philosopher', sans-serif; } .depoimento .data, .depoimento .hora, .depoimento .nome, .depoimento .email, .depoimento .telefone, .depoimento .movel, .cadastro_evento .email, .cadastro_evento .nome, .cadastro_evento .data, .cadastro_evento .hora, .edita_evento .email, .edita_evento .nome, .edita_evento .data, .edita_evento .hora, .cadastro_depo .email, .cadastro_depo .nome, .cadastro_depo .data, .cadastro_depo .hora, .edita_depo .email, .edita_depo .nome, .edita_depo .data, .edita_depo .hora, #form_contato .nome, #form_contato .email, #form_contato .telefone, #form_contato .movel{ position: relative; text-align:left; width:49.5%; font-family: 'Philosopher', sans-serif; } .envia_depo, .envia_evento{ width:100%; height:100%; z-index:5000; visibility:hidden; clear:both; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 999999; background-image:url(../imagens/banner_bg/armazenamento-cachacas-engenho-da-cana.jpg); } .envia_depo form, .envia_evento form{ width:50%; height:80%; min-width:250px; position: relative; margin:0 auto; color:#fff; min-height:250px; max-height:500px; overflow:auto; font-family: 'Philosopher', sans-serif; } .envia_depo form h2, .envia_evento form h2{ text-align:center; font-size:180%; font-family: 'Philosopher', sans-serif; } .envia_depo textarea, .envia_evento textarea{ width:100%; height:200px; color:#000; } .envia_depo form .tooltip-inner{ height:40px; color:#fff; font-size:100%; width:100%; text-align: left; background-color:#000; border:none; } .assinatura{ width:80%; margin:10px auto; } .eventos .assinatura h2{ text-align: center; margin:20px auto; } .assinatura input{ width:85%; position:relative; float:left; } .sucesso p{ margin-top:25px; color:#900; font-size:14px; font-weight:bold; } .footer .parallax-content{ position:relative; padding-top:70px; padding-bottom:20px; bottom:0px; } .footer .parallax-content .container{ position:relative; width:100%; margin:0px auto; } .footer a{ font-family: 'Philosopher', sans-serif; } .footer p{ position:relative; padding:35px; font-family: 'Philosopher', sans-serif; } .assinatura .footer-input, .login .footer-input, .busca .footer-input, .envia_depo .footer-input, .envia_evento .footer-input, .footer-seperator .footer-input{ background:rgba(255,255,255,.1); font-size:150%; color:#F5F5F5; } #form .container{ background:rgba(0,0,0,.5); min-width:100%; padding: 50px 7%; } .marca{ text-align:center; } .marca img{ width:50%; margin:17% auto; } #cachacas { margin:0 auto; left:5%; } #cachacas h3{ margin-left:-5%; margin-bottom:10%; } .fb-page{ margin-top:2%; } .ouro{ color:#CFAA16 } .ouro:hover{ color:#FC0; } .prata{ color:#CCC; } .prata:hover{ color:#F0F0F0; }.overflow-h h2{ text-align:center; } .overflow-h{ position:relative; background-color:#000; width: 100%; height:400px; } .mapa iframe{ position:relative; width:100%; } .mapa { height:100%; position:relative; background:none; -moz-box-shadow: 0px 10px 30px #000000; -webkit-box-shadow: 0px 10px 30px #000000; box-shadow: 0px 10px 30px #000000; } @media all and (max-width: 1640px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1024px), only screen and (min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min-resolution: 192dpi) and (max-width: 1024px), only screen and (min-resolution: 2dppx) and (max-width: 1024px) { .preloader > .logo-preload{ margin:0 auto; top:40%; } .logo_top{ width: 10%; background: none; position: absolute; top: 0px; visibility: visible; } .logo_top img{ width:100%; left:30%; background:#900; position: absolute; padding:10px 10px 10px 10px; -moz-border-radius:0px 0px 10px 10px; -webkit-border-radius:0px 0px 10px 10px; border-radius:0px 0px 10px 10px; border:inset 3px #FFF; z-index:300; -moz-box-shadow: 0px 3px 14px #000000; -webkit-box-shadow: 0px 3px 14px #000000; box-shadow: 0px 3px 14px #000000; } .postdate{ width:45%; } .content-depoimentos{ width:32%; margin-right:1%; } .content-lg .container .marcas{ width:100%; } .container .row .service .service-info{ width:80%; } #agenda_list{ margin-left:3%; width:65%; } .promo-section #contato{ left:-75px; } /** posts slider nav **/ .previous, .next{ margin-top:0; } } @media (max-width:1210px){ .preloader > .logo-preload{ margin:0 auto; top:37%; } .logo_top{ visibility: hidden; } .topo{ width:100%; height:200px; position: absolute; top:50px; visibility: visible; z-index:290; } .logo{ width:100%; max-width:150px; margin:0px auto; visibility: visible; border-bottom: inset #333 1px; -moz-box-shadow: 0px 3px 14px #000000; -webkit-box-shadow: 0px 3px 14px #000000; box-shadow: 0px 3px 14px #000000; -moz-border-radius:0px 0px 10px 10px; -webkit-border-radius:0px 0px 10px 10px; border-radius:0px 0px 10px 10px; } .logo img{ max-width:150px; background:#900; padding:10px 10px 10px 10px; -moz-border-radius:0px 0px 10px 10px; -webkit-border-radius:0px 0px 10px 10px; border-radius:0px 0px 10px 10px; border:inset 3px #FFF; } .content-depoimentos{ width:30%; margin-left:1%; } .onde-comprar, .canal{ width:45%; margin-left:3%; } .assinatura input{ width:80%; } } @media (max-width:1209px){ .header{ width:100%; position:fixed; top:0px; background:#000; } .busca{ clear:both; } .carousel{ margin-top:0px; } .content-depoimentos{ width:90%; margin-left:5%; } .onde-comprar{ width:45%; left:1%; } .canal{ margin-left:5%; width:45%; } .onde-comprar iframe{ width:100%; min-height:250px; } .canal iframe{ width:100%; min-height:250px; } .container, .container .row{ width:100%; } .container .row .service,.container .row .service .col-sm-4{ width:100%; } .container .row .service h3{ font-size:120%; } .container .row .service .service-info{ width:60%; max-height:200px; } .envia_depo form, .envia_evento form{ width:60%; } .promo-section #contato{ position: relative; margin-left:0px; } #agenda_list{ width:50%; margin-left:0px; } } @media (max-width:980px){ .preloader > .logo-preload{ margin:0 auto; } .envia_depo form, .envia_evento form{ width:90%; } .assinatura{ width:40%; } .eventos .assinatura h2{ font-size:170%; text-align:left; margin-top:20%; } .assinatura input{ margin-left:0; } #agenda_list{ width:80%; margin:0 auto; left:0px; } .promo-section #contato{ position: relative; float:left; width:40%; } } @media (max-width:920px){ .footer-seperator #contato{ width:100%; float: left; position:relative; clear:both; } .footer-seperator #formulario{ width:100%; float: left; } #form_contato .nome, #form_contato .email{ position: relative; text-align:left; width:100%; } .menu-logo, .menu-logo img, #pag_contato .menu-logo, #pag_contato .menu-logo img{ padding:5px; position: fixed; float:left; z-index:9999; visibility: visible; } .eventos{ width:100%; } .assinatura{ width:45%; margin-left:55%; } .promo-section #contato{ margin-left:10%; width:50%; } } @media (max-width:768px){ .preloader > .logo-preload{ margin:0 auto; } .busca{ width:50%; top:9%; clear:both; } .content-depoimentos{ width:95%; margin-left:15%; } .onde-comprar, .canal{ width:98%; margin-left:15%; } .container, .container .row{ width:80%; } .container .row .service,.container .row .service{ margin-left:10%; } .container .row .service,.container .row .service .col-sm-4{ width:100%; max-width:350px; } .container .row .service h3{ font-size:160%; } .container .row .service .service-info{ width:70%; } .eventos{ width:100%; } .eventos #agenda_list{ width:100%; margin-left:5%; } .assinatura{ width:60%; margin-left:55%; } .promo-section #contato{ width:60%; margin-left:20%; } .promo-section #contato ul li{ font-size:100%; } .section-seperator .container{ width:70%; } .section-seperator .container .col-sm-3{ width:100%; } } @media (max-width:690px){ .preloader > .logo-preload{ margin:0 auto; top:30%; } .envia_depo form h2, .envia_evento form h2{ font-size:120%; } .destaques .row{ width:100%; } .busca{ top:5%; clear:both; } .depoimento .data, .depoimento .hora, .depoimento .nome, .depoimento .email, .cadastro_evento .email, .cadastro_evento .nome, .cadastro_evento .data, .cadastro_evento .hora, .edita_evento .email, .edita_evento .nome, .edita_evento .data, .edita_evento .hora, .cadastro_depo .email, .cadastro_depo .nome, .cadastro_depo .data, .cadastro_depo .hora, .edita_depo .email, .edita_depo .nome, .edita_depo .data, .edita_depo .hora { width: 100%; } .container .row .service,.container .row .service{ clear:both; } .container .row .service,.container .row .service .col-sm-4{ width:100%; max-width:500px; } .container .row .service .service-info{ margin-left:5%; } .assinatura{ width:100%; float:left; margin-left:0%; margin-top:80px; } .envia_depo form, .envia_evento form{ width:90%; } .assinatura input{ width:95%; } .promo-section #contato{ width:90%; margin-left:20%; top:100px; margin-bottom:200px; } .promo-section #contato ul li{ font-size:120%; } .footer #cachacas{ width:60%; margin-left:-5%; } .fb-page{ margin:0 auto; } } @media (max-width:580px){ .container h2, .container h1{ font-size:180%; } .container, .container .row{ width:100%; } .content-depoimentos{ margin-left:5%; } .onde-comprar, .canal{ margin-left:5%; } .container .row .service,.container .row .service{ margin-left:-5%; } .eventos #agenda_list{ width:90%; margin-left:10%; } .assinatura{ width:95%; margin-left:5%; clear:both; } .promo-section #contato{ width:90%; margin-left:20%; margin-top:-20%; } .promo-section #contato h2{ margin-left:0%; } .promo-section #contato ul li{ font-size:130%; } .footer #cachacas h2{ text-align:center; font-size:250%; } .footer #cachacas{ width:100%; margin:0 auto; text-align:center; clear:both; } .footer #cachacas a{ font-size:130%; line-height:150%; } .footer p{ font-size:90%; } .section-seperator .container{ width:90%; } .section-seperator .container .col-sm-3{ width:100%; } } @media (max-width:490px){ #form_contato .telefone, #form_contato .movel{ width:100%; } .envia_depo form, .envia_evento form{ width:95%; } .container .row .service,.container .row .service{ margin-left:10%; width:80%; } .container .row .service .service-info{ margin-left:-20%; } .promo-section #contato ul li{ font-size:100%; } .footer #cachacas a{ font-size:100%; } } @media (max-width:390px){ .container .row .service,.container .row .service{ margin-left:0%; width:95%; } .promo-section #contato{ margin-left:30%; } .promo-section #contato ul li{ font-size:90%; } }
css/style.css
@charset "utf-8"; /* CSS Document */ .preloader { position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 999999; background: #000; overflow:hidden; } .preloader > .logo-preload{ position: relative; margin:21% auto; width: 100px; clear:both; } .preloader > .logo-preload > img{ width:100%; height:auto; position: relative; } .preloader > i { color:#FFF; position: absolute; font-size: 36px; line-height: 36px; top: 50%; left: 50%; height: 36px; width: 36px; margin-top: -15px; margin-left: -15px; display: inline-block; } body{ border:0 0; margin:0 0; background: #000; font-family: 'Philosopher', sans-serif; } .login{ width:100%; height: auto; min-height:100%; position: fixed; background-color:#000; float:none; z-index:5000; overflow:hidden; font-family: 'Philosopher', sans-serif; } .login .logo{ width:250px; visibility:visible; margin:5% auto; } .login .logo img{ width:100%; } .login form{ width:250px; margin:0 auto; color:#fff; } .login form input{ width:100%; } .fa{ font-size: 20px; line-height:10px; } hr{ border-color:#666; margin:0px 0px; } #locais{ width:90%; margin:0 auto; border-color:#333; } .header{ width:100%; position:fixed; top:0px; background-color:#000; z-index:290; border-bottom: inset #333 1px; -moz-box-shadow: 0px 3px 14px #000000; -webkit-box-shadow: 0px 3px 14px #000000; box-shadow: 0px 3px 14px #000000; } .busca{ font-family: 'Philosopher', sans-serif; width:30%; position:absolute; float:right; top:80px; right:5%; z-index:200; } .busca input{ width:100%; height:40px; font-size:24px; background-color:rgba(255, 255, 255, .1); } .busca #livesearch{ position:relative; font-size:24px; width:100%; background-color:rgba(0,0,0,.7); } .menu-logo, .menu-logo img, #pag_contato .menu-logo, #pag_contato .menu-logo img{ visibility:hidden; height:40px; } .logo{ visibility:hidden; } .logo_top{ width: 12%; background: none; position: absolute; top: 0px; visibility: visible; } .logo_top img{ width:100%; left:55%; background:#900; position: absolute; padding:20px 20px 20px 20px; -moz-border-radius:0px 0px 10px 10px; -webkit-border-radius:0px 0px 10px 10px; border-radius:0px 0px 10px 10px; border:inset 3px #FFF; z-index:300; -moz-box-shadow: 0px 3px 14px #000000; -webkit-box-shadow: 0px 3px 14px #000000; box-shadow: 0px 3px 14px #000000; } .logo-form{ width:15%; min-width:100px; max-width:250px; margin:3% auto; } .logo-form img{ width:100%; margin:0 auto; } .carousel{ margin-top:-100px; z-index:100; border-bottom:solid 1px #900; clear:both; } .parallax-window{ width:100%; margin:0px 0px; } .parallax-content{ margin-top:-100px; position:relative; padding-top:220px; padding-bottom:220px; } .swiper-slider{ position:relative; padding-top:50px; padding-bottom:20px; } .footer .parallax-content{ position:relative; padding-top:30px; padding-bottom:50px; } .anterior{ position: absolute; width:60px; height:60px; top:450px; left:15px; border:solid 1px #990000; -moz-border-radius:50px 50px 50px 50px; -webkit-border-radius:50px 50px 50px 50px; border-radius:50px 50px 50px 50px; background:#000; z-index:200; opacity:0.3; } .anterior:hover{ opacity:0.7; } .btn .fa{ font-size:36px; margin-left:0px; margin-top:17px; color:#fff; } .proximo{ position: absolute; width:60px; height:60px; top:450px; right:15px; border:solid 1px #990000; -moz-border-radius:50px 50px 50px 50px; -webkit-border-radius:50px 50px 50px 50px; border-radius:50px 50px 50px 50px; background:#000; z-index:200; opacity:0.3; } .proximo:hover{ opacity:0.7; } .rotator p{ font-family: 'Philosopher', sans-serif; } #depoimentos{ width:100%; } .content-depoimentos p{ font-family: 'Philosopher', sans-serif; } .content-depoimentos{ font-family: 'Philosopher', sans-serif; position:relative; float:left; width:30.33%; text-align:justify; background:#000; word-break:break-all; margin-left:3%; } .content-depoimentos .swiper-testimonials h2{ margin-top:-30px; } .swiper-testimonials h2, .onde-comprar h2, .canal h2{ text-align:left; } .content-depoimentos .color-link{ color:#900; } .content-depoimentos p{ color:#FFF; } .content-depoimentos #cadastro{ float: right; z-index:100; } .onde-comprar{ width:30.33%; position:relative; float:left; margin-left:1%; } .canal{ width:30.33%; position:relative; float:left; margin-left:1%; } .onde-comprar iframe{ width:100%; height:100%; min-height:250px; } .canal iframe{ width:100%; height:100%; min-height:250px; } .bg-color-sky-light{ -moz-box-shadow:inset 0px 0px 75px #000000; -webkit-box-shadow:inset 0px 0px 75px #000000; box-shadow:inset 0px 0px 75px #000000; } .container .row .service .service-info{ width:80%; } .destaques p{ font-family: 'Philosopher', sans-serif; text-align:justify; color:#F0F0F0; } .destaques{ background-image:url(../imagens/banner_bg/Cachacas-Destaques-Engenho-da-Cana.jpg); background-attachment:fixed; border-top: solid 1px #333; border-bottom: solid 1px #333; width:100%; padding:0px 0px; margin:0px 0px; } .slidernav i{ font-size:36px; } /** posts slider nav **/ .previous, .next{ position: absolute; clear:both; margin-top:-20%; } .previous{ float:left; left:5%; } .next{ float:right; right:5%; } .slidernav a { text-transform:uppercase; display: inline-block; padding: 5px 5px; margin-right: 8px; font-size: 1.6em; color: #FFF; text-decoration: none; -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px; -webkit-box-shadow: 2px 2px 0px rgba(0,0,0,0.2); -moz-box-shadow: 2px 2px 0px rgba(0,0,0,0.2); box-shadow: 2px 2px 0px rgba(0,0,0,0.2); } .slidernav a:hover{ color:#900; } .slidernav a:active { -webkit-box-shadow: 1px 1px 0 rgba(0,0,0,0.2); -moz-box-shadow: 1px 1px 0 rgba(0,0,0,0.2); box-shadow: 1px 1px 0 rgba(0,0,0,0.2); } .premios .row-space-1{ max-height:500px; overflow:auto; } .destaques .row{ background-color:rgba(0,0,0,.7); margin:0px auto; padding:0px 60px; } .destaques .row h4, .destaques .row h4 a{ text-align:left; font-family: 'Kaushan Script', cursive; color:#FFF; } .destaques .row h4 a:hover{ color:#900; } .eventos{ width:100%; padding-top:70px; padding-bottom:70px; } #agenda_list{ position: relative; left:5%; width:55%; max-width:650px; min-height:400px; height:100%; } #agenda_list h2{ margin-left:-3%; } .lista{ width:100%; max-height:300px; overflow:auto; font-family: 'Philosopher', sans-serif; } .promo-section #contato{ padding-top:70px; } .promo-section #contato ul, .footer-seperator #contato ul{ line-height:250%; } .promo-section #contato ul li, .footer-seperator #contato ul li{ margin-bottom:10px; color:#FFF; font-family: 'Philosopher', sans-serif; } .depoimento .data, .depoimento .hora, .depoimento .nome, .depoimento .email, .depoimento .telefone, .depoimento .movel, .cadastro_evento .email, .cadastro_evento .nome, .cadastro_evento .data, .cadastro_evento .hora, .edita_evento .email, .edita_evento .nome, .edita_evento .data, .edita_evento .hora, .cadastro_depo .email, .cadastro_depo .nome, .cadastro_depo .data, .cadastro_depo .hora, .edita_depo .email, .edita_depo .nome, .edita_depo .data, .edita_depo .hora, #form_contato .nome, #form_contato .email, #form_contato .telefone, #form_contato .movel{ position: relative; text-align:left; width:49.5%; font-family: 'Philosopher', sans-serif; } .envia_depo, .envia_evento{ width:100%; height:100%; z-index:5000; visibility:hidden; clear:both; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 999999; background-image:url(../imagens/banner_bg/armazenamento-cachacas-engenho-da-cana.jpg); } .envia_depo form, .envia_evento form{ width:50%; height:80%; min-width:250px; position: relative; margin:0 auto; color:#fff; min-height:250px; max-height:500px; overflow:auto; font-family: 'Philosopher', sans-serif; } .envia_depo form h2, .envia_evento form h2{ text-align:center; font-size:180%; font-family: 'Philosopher', sans-serif; } .envia_depo textarea, .envia_evento textarea{ width:100%; height:200px; color:#000; } .envia_depo form .tooltip-inner{ height:40px; color:#fff; font-size:100%; width:100%; text-align: left; background-color:#000; border:none; } .assinatura{ width:80%; margin:10px auto; } .eventos .assinatura h2{ text-align: center; margin:20px auto; } .assinatura input{ width:85%; position:relative; float:left; } .sucesso p{ margin-top:25px; color:#900; font-size:14px; font-weight:bold; } .footer .parallax-content{ position:relative; padding-top:70px; padding-bottom:20px; bottom:0px; } .footer .parallax-content .container{ position:relative; width:100%; margin:0px auto; } .footer a{ font-family: 'Philosopher', sans-serif; } .footer p{ position:relative; padding:35px; font-family: 'Philosopher', sans-serif; } .assinatura .footer-input, .login .footer-input, .busca .footer-input, .envia_depo .footer-input, .envia_evento .footer-input, .footer-seperator .footer-input{ background:rgba(255,255,255,.1); font-size:150%; color:#F5F5F5; } #form .container{ background:rgba(0,0,0,.5); min-width:100%; padding: 50px 7%; } .marca{ text-align:center; } .marca img{ width:50%; margin:17% auto; } #cachacas { margin:0 auto; left:5%; } #cachacas h3{ margin-left:-5%; margin-bottom:10%; } .fb-page{ margin-top:2%; } .ouro{ color:#CFAA16 } .ouro:hover{ color:#FC0; } .prata{ color:#CCC; } .prata:hover{ color:#F0F0F0; }.overflow-h h2{ text-align:center; } .overflow-h{ position:relative; background-color:#000; width: 100%; height:400px; } .mapa iframe{ position:relative; width:100%; } .mapa { height:100%; position:relative; background:none; -moz-box-shadow: 0px 10px 30px #000000; -webkit-box-shadow: 0px 10px 30px #000000; box-shadow: 0px 10px 30px #000000; } @media all and (max-width: 1640px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1024px), only screen and (min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min-resolution: 192dpi) and (max-width: 1024px), only screen and (min-resolution: 2dppx) and (max-width: 1024px) { .preloader > .logo-preload{ margin:0 auto; top:40%; } .logo_top{ width: 10%; background: none; position: absolute; top: 0px; visibility: visible; } .logo_top img{ width:100%; left:30%; background:#900; position: absolute; padding:10px 10px 10px 10px; -moz-border-radius:0px 0px 10px 10px; -webkit-border-radius:0px 0px 10px 10px; border-radius:0px 0px 10px 10px; border:inset 3px #FFF; z-index:300; -moz-box-shadow: 0px 3px 14px #000000; -webkit-box-shadow: 0px 3px 14px #000000; box-shadow: 0px 3px 14px #000000; } .postdate{ width:45%; } .content-depoimentos{ width:32%; margin-right:1%; } .content-lg .container .marcas{ width:100%; } .container .row .service .service-info{ width:80%; } #agenda_list{ margin-left:3%; width:65%; } .promo-section #contato{ left:-75px; } /** posts slider nav **/ .previous, .next{ margin-top:0; } } @media (max-width:1210px){ .preloader > .logo-preload{ margin:0 auto; top:37%; } .logo_top{ visibility: hidden; } .topo{ width:100%; height:200px; position: absolute; top:50px; visibility: visible; z-index:290; } .logo{ width:100%; max-width:150px; margin:0px auto; visibility: visible; border-bottom: inset #333 1px; -moz-box-shadow: 0px 3px 14px #000000; -webkit-box-shadow: 0px 3px 14px #000000; box-shadow: 0px 3px 14px #000000; -moz-border-radius:0px 0px 10px 10px; -webkit-border-radius:0px 0px 10px 10px; border-radius:0px 0px 10px 10px; } .logo img{ max-width:150px; background:#900; padding:10px 10px 10px 10px; -moz-border-radius:0px 0px 10px 10px; -webkit-border-radius:0px 0px 10px 10px; border-radius:0px 0px 10px 10px; border:inset 3px #FFF; } .content-depoimentos{ width:30%; margin-left:1%; } .onde-comprar, .canal{ width:45%; margin-left:3%; } .assinatura input{ width:80%; } } @media (max-width:1209px){ .header{ width:100%; position:fixed; top:0px; background:#000; } .busca{ clear:both; } .carousel{ margin-top:0px; } .content-depoimentos{ width:90%; margin-left:5%; } .onde-comprar{ width:45%; left:1%; } .canal{ margin-left:5%; width:45%; } .onde-comprar iframe{ width:100%; min-height:250px; } .canal iframe{ width:100%; min-height:250px; } .container, .container .row{ width:100%; } .container .row .service,.container .row .service .col-sm-4{ width:100%; } .container .row .service h3{ font-size:120%; } .container .row .service .service-info{ width:60%; max-height:200px; } .envia_depo form, .envia_evento form{ width:60%; } .promo-section #contato{ position: relative; margin-left:0px; } #agenda_list{ width:50%; margin-left:0px; } } @media (max-width:980px){ .preloader > .logo-preload{ margin:0 auto; } .envia_depo form, .envia_evento form{ width:90%; } .assinatura{ width:40%; } .eventos .assinatura h2{ font-size:170%; text-align:left; margin-top:20%; } .assinatura input{ margin-left:0; } #agenda_list{ width:80%; margin:0 auto; left:0px; } .promo-section #contato{ position: relative; float:left; width:40%; } } @media (max-width:920px){ .footer-seperator #contato{ width:100%; float: left; position:relative; clear:both; } .footer-seperator #formulario{ width:100%; float: left; } #form_contato .nome, #form_contato .email{ position: relative; text-align:left; width:100%; } .menu-logo, .menu-logo img, #pag_contato .menu-logo, #pag_contato .menu-logo img{ padding:5px; position: fixed; float:left; z-index:9999; visibility: visible; } .eventos{ width:100%; } .assinatura{ width:45%; margin-left:55%; } .promo-section #contato{ margin-left:10%; width:50%; } } @media (max-width:768px){ .preloader > .logo-preload{ margin:0 auto; } .busca{ width:50%; top:9%; clear:both; } .content-depoimentos{ width:95%; margin-left:15%; } .onde-comprar, .canal{ width:98%; margin-left:15%; } .container, .container .row{ width:80%; } .container .row .service,.container .row .service{ margin-left:10%; } .container .row .service,.container .row .service .col-sm-4{ width:100%; max-width:350px; } .container .row .service h3{ font-size:160%; } .container .row .service .service-info{ width:70%; } .eventos{ width:100%; } .eventos #agenda_list{ width:100%; margin-left:5%; } .assinatura{ width:60%; margin-left:55%; } .promo-section #contato{ width:60%; margin-left:20%; } .promo-section #contato ul li{ font-size:100%; } .section-seperator .container{ width:70%; } .section-seperator .container .col-sm-3{ width:100%; } } @media (max-width:690px){ .preloader > .logo-preload{ margin:0 auto; top:30%; } .envia_depo form h2, .envia_evento form h2{ font-size:120%; } .destaques .row{ width:100%; } .busca{ top:5%; clear:both; } .depoimento .data, .depoimento .hora, .depoimento .nome, .depoimento .email, .cadastro_evento .email, .cadastro_evento .nome, .cadastro_evento .data, .cadastro_evento .hora, .edita_evento .email, .edita_evento .nome, .edita_evento .data, .edita_evento .hora, .cadastro_depo .email, .cadastro_depo .nome, .cadastro_depo .data, .cadastro_depo .hora, .edita_depo .email, .edita_depo .nome, .edita_depo .data, .edita_depo .hora { width: 100%; } .container .row .service,.container .row .service{ clear:both; } .container .row .service,.container .row .service .col-sm-4{ width:100%; max-width:500px; } .container .row .service .service-info{ margin-left:5%; } .assinatura{ width:100%; float:left; margin-left:0%; margin-top:80px; } .envia_depo form, .envia_evento form{ width:90%; } .assinatura input{ width:95%; } .promo-section #contato{ width:90%; margin-left:20%; top:100px; margin-bottom:200px; } .promo-section #contato ul li{ font-size:120%; } .footer #cachacas{ width:60%; margin-left:-5%; } .fb-page{ margin:0 auto; } } @media (max-width:580px){ .container h2, .container h1{ font-size:180%; } .container, .container .row{ width:100%; } .content-depoimentos{ margin-left:5%; } .onde-comprar, .canal{ margin-left:5%; } .container .row .service,.container .row .service{ margin-left:-5%; } .eventos #agenda_list{ width:90%; margin-left:10%; } .assinatura{ width:95%; margin-left:5%; clear:both; } .promo-section #contato{ width:90%; margin-left:20%; margin-top:-20%; } .promo-section #contato h2{ margin-left:0%; } .promo-section #contato ul li{ font-size:130%; } .footer #cachacas h2{ text-align:center; font-size:250%; } .footer #cachacas{ width:100%; margin:0 auto; text-align:center; clear:both; } .footer #cachacas a{ font-size:130%; line-height:150%; } .footer p{ font-size:90%; } .section-seperator .container{ width:90%; } .section-seperator .container .col-sm-3{ width:100%; } } @media (max-width:490px){ #form_contato .telefone, #form_contato .movel{ width:100%; } .envia_depo form, .envia_evento form{ width:95%; } .container .row .service,.container .row .service{ margin-left:10%; width:80%; } .container .row .service .service-info{ margin-left:-20%; } .promo-section #contato ul li{ font-size:100%; } .footer #cachacas a{ font-size:100%; } } @media (max-width:390px){ .container .row .service,.container .row .service{ margin-left:0%; width:95%; } .promo-section #contato{ margin-left:30%; } .promo-section #contato ul li{ font-size:90%; } }
0.228156
0.039788
body { 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; font-family: Rubik, sans-serif; color: #4d4d4d; font-size: 14px; line-height: 1.4; } h1 { margin-top: 20px; margin-bottom: 10px; color: #000; font-size: 38px; line-height: 1; font-weight: 400; } h2 { margin-top: 20px; margin-bottom: 10px; color: #000; font-size: 28px; font-weight: 700; } h3 { margin-top: 20px; margin-bottom: 10px; color: #000; font-size: 22px; line-height: 1.2; font-weight: 500; } h4 { margin-top: 10px; margin-bottom: 10px; font-size: 18px; line-height: 1.2; font-weight: 500; } h5 { margin-top: 10px; margin-bottom: 10px; } h6 { margin-top: 10px; margin-bottom: 10px; color: grey; font-size: 12px; line-height: 1.2; font-weight: 400; } p { margin-bottom: 10px; } a { color: #a52b30; text-decoration: underline; } ul { margin-top: 0px; margin-bottom: 0px; padding-left: 30px; } ol { margin-top: 0px; margin-bottom: 10px; padding-left: 30px; } li { margin-bottom: 10px; padding-left: 10px; } img { display: inline-block; max-width: 100%; margin-top: 16px; margin-bottom: 16px; } figure { margin-bottom: 10px; } .nav { position: fixed; left: 0%; top: 0%; right: 0%; bottom: auto; z-index: 100; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; height: 60px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; background-color: #fff; } .container { position: relative; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; max-width: 1170px; margin-right: auto; margin-left: auto; padding-right: 24px; padding-left: 24px; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; } .container.container--grid { display: -ms-grid; display: grid; grid-auto-columns: 1fr; grid-column-gap: 48px; grid-row-gap: 48px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .container.container--position-none { position: static; } .container.container--position-none.container--align-top { -webkit-align-self: flex-start; -ms-flex-item-align: start; align-self: flex-start; } .container.container--underline { padding-bottom: 64px; border-bottom: 1px solid rgba(0, 0, 0, 0.08); } .navigation { height: 60px; } .div-block-2 { height: 380px; background-color: #fff; } .nav-inner { display: -ms-grid; display: grid; height: 44px; margin-top: auto; margin-bottom: auto; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; grid-auto-columns: 1fr; grid-column-gap: 8px; -ms-grid-columns: -webkit-max-content auto -webkit-min-content; -ms-grid-columns: max-content auto min-content; grid-template-columns: -webkit-max-content auto -webkit-min-content; grid-template-columns: max-content auto min-content; -ms-grid-rows: auto; grid-template-rows: auto; } .nav-logo { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-top: 0px; margin-bottom: 0px; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; flex: 0 0 auto; color: #a52b30; } .nav-items { display: -ms-grid; display: grid; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; grid-auto-flow: column; grid-auto-columns: -webkit-max-content; grid-auto-columns: max-content; grid-column-gap: 8px; -ms-grid-columns: -webkit-max-content; -ms-grid-columns: max-content; grid-template-columns: -webkit-max-content; grid-template-columns: max-content; -ms-grid-rows: auto; grid-template-rows: auto; } .nav-search { position: relative; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: end; -webkit-justify-content: flex-end; -ms-flex-pack: end; justify-content: flex-end; } .nav-search.nav-search--mobile { margin-bottom: 16px; } .nav-search.webflow { width: 300px; } .nav-link { position: relative; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; height: 44px; padding-right: 12px; padding-left: 12px; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; flex: 0 0 auto; color: #4d4d4d; line-height: 100%; text-decoration: none; } .nav-link:hover { color: #000; } .nav-link.w--current { color: #a52b30; } .nav-link.nav-link--mobile { height: 36px; margin-right: 0px; margin-left: 0px; padding-right: 10px; padding-left: 10px; } .nav-link.hidden { display: none; } .home-link { position: relative; z-index: 1; 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; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; text-decoration: none; } .nav-search__menu { position: absolute; left: 0%; right: 0%; bottom: auto; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; overflow: hidden; height: 0px; opacity: 0; -webkit-transition: all 400ms ease; transition: all 400ms ease; } .nav-search__menu.visible { overflow: visible; height: 450px; opacity: 1; } .link-text { position: relative; } .link-text.link-text--site-nav { -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; flex: 0 0 auto; } .plate { position: absolute; left: 0%; top: 0%; right: 0%; bottom: 0%; background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)); background-image: linear-gradient(180deg, transparent, transparent); background-position: 0px 0px; background-size: auto; -webkit-transition: background-color 200ms ease; transition: background-color 200ms ease; } .plate.plate--shadow-large { box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.12); } .plate.plate--rounded { border-radius: 4px; } .plate.plate--rounded.plate--hover-blue:hover { background-image: -webkit-gradient(linear, left top, left bottom, from(#a52b30), to(#a52b30)), -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)); background-image: linear-gradient(180deg, #a52b30, #a52b30), linear-gradient(180deg, transparent, transparent); opacity: 0.1; } .plate.plate--shadow { box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.12); } .plate.plate--black-trans-4 { background-image: -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)), -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)); background-image: linear-gradient(180deg, #000, #000), linear-gradient(180deg, transparent, transparent); opacity: 0.04; } .plate.plate--black-trans-4:hover { opacity: 0.08; } .plate.plate--black-trans-4.plate--no-hover:hover { opacity: 0.04; } .plate.plate--white { background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)), -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)); background-image: linear-gradient(180deg, #fff, #fff), linear-gradient(180deg, transparent, transparent); background-position: 0px 0px, 0px 0px; background-size: auto, auto; } .plate.plate--hover-grey:hover { background-image: -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)), -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)); background-image: linear-gradient(180deg, #000, #000), linear-gradient(180deg, transparent, transparent); opacity: 0.04; } .plate.plate--black-4.plate--no-hover { background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#f5f5f5)), -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)); background-image: linear-gradient(180deg, #f5f5f5, #f5f5f5), linear-gradient(180deg, transparent, transparent); background-position: 0px 0px, 0px 0px; background-size: auto, auto; } .plate.plate--black-4.plate--no-hover:hover { background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#f5f5f5)), -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)); background-image: linear-gradient(180deg, #f5f5f5, #f5f5f5), linear-gradient(180deg, transparent, transparent); background-position: 0px 0px, 0px 0px; background-size: auto, auto; } .plate.plate--gradient { background-image: -webkit-gradient(linear, left top, left bottom, from(#a52b30), to(#791719)), -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)); background-image: linear-gradient(180deg, #a52b30, #791719), linear-gradient(180deg, transparent, transparent); background-position: 0px 0px, 0px 0px; background-size: auto, auto; } .plate.plate--dots { background-image: url('../images/subtle_dots_white_trans2X_1subtle_dots_white_trans@2X.png'), -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)); background-image: url('../images/subtle_dots_white_trans2X_1subtle_dots_white_trans@2X.png'), linear-gradient(180deg, transparent, transparent); background-position: 0px 0px, 0px 0px; background-size: 27px, auto; } .plate.plate--dots.plate--gradient { background-image: url('../images/subtle_dots_white_trans2X_1subtle_dots_white_trans@2X.png'), -webkit-gradient(linear, left top, left bottom, from(#a52b30), to(#791719)), -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)); background-image: url('../images/subtle_dots_white_trans2X_1subtle_dots_white_trans@2X.png'), linear-gradient(180deg, #a52b30, #791719), linear-gradient(180deg, transparent, transparent); background-position: 0px 0px, 0px 0px, 0px 0px; background-size: 27px, auto, auto; } .plate.plate--primary { background-image: -webkit-gradient(linear, left top, left bottom, from(#a52b30), to(#a52b30)), -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)); background-image: linear-gradient(180deg, #a52b30, #a52b30), linear-gradient(180deg, transparent, transparent); background-position: 0px 0px, 0px 0px; background-size: auto, auto; } .plate.plate--round { border-radius: 100px; } .plate.plate--black-4 { background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#f5f5f5)), -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)); background-image: linear-gradient(180deg, #f5f5f5, #f5f5f5), linear-gradient(180deg, transparent, transparent); background-position: 0px 0px, 0px 0px; background-size: auto, auto; } .plate.plate--black-4:hover { background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.08)), to(rgba(0, 0, 0, 0.08))), -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)); background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08)), linear-gradient(180deg, transparent, transparent); background-position: 0px 0px, 0px 0px; background-size: auto, auto; } .plate.plate--black-8 { background-image: -webkit-gradient(linear, left top, left bottom, from(#ebebeb), to(#ebebeb)), -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)); background-image: linear-gradient(180deg, #ebebeb, #ebebeb), linear-gradient(180deg, transparent, transparent); background-position: 0px 0px, 0px 0px; background-size: auto, auto; } .plate.plate--shadow-medium { box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.08); } .plate.plate--status-green { background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 166, 81, 0.1)), to(rgba(0, 166, 81, 0.1))), -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)); background-image: linear-gradient(180deg, rgba(0, 166, 81, 0.1), rgba(0, 166, 81, 0.1)), linear-gradient(180deg, transparent, transparent); background-position: 0px 0px, 0px 0px; background-size: auto, auto; } .plate.plate--status-yellow { background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(251, 176, 59, 0.1)), to(rgba(251, 176, 59, 0.1))), -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)); background-image: linear-gradient(180deg, rgba(251, 176, 59, 0.1), rgba(251, 176, 59, 0.1)), linear-gradient(180deg, transparent, transparent); background-position: 0px 0px, 0px 0px; background-size: auto, auto; } .plate.plate--status-red { background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(237, 28, 36, 0.1)), to(rgba(237, 28, 36, 0.1))), -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)); background-image: linear-gradient(180deg, rgba(237, 28, 36, 0.1), rgba(237, 28, 36, 0.1)), linear-gradient(180deg, transparent, transparent); background-position: 0px 0px, 0px 0px; background-size: auto, auto; } .plate.plate--black-2 { background-image: -webkit-gradient(linear, left top, left bottom, from(#fafafa), to(#fafafa)), -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)); background-image: linear-gradient(180deg, #fafafa, #fafafa), linear-gradient(180deg, transparent, transparent); background-position: 0px 0px, 0px 0px; background-size: auto, auto; } .plate.plate--primary-trans-4 { background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(66, 133, 244, 0.04)), to(rgba(66, 133, 244, 0.04))), -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)); background-image: linear-gradient(180deg, rgba(66, 133, 244, 0.04), rgba(66, 133, 244, 0.04)), linear-gradient(180deg, transparent, transparent); background-position: 0px 0px, 0px 0px; background-size: auto, auto; } .components { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; } .components.hidden { display: none; } .components-buttons { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; padding-top: 24px; padding-bottom: 24px; } .components-plates { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; padding-top: 23px; padding-bottom: 23px; } .components__wrapper { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; } .component-block { position: relative; width: 44px; height: 44px; margin: 16px; } .components-swatches { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; padding-top: 24px; padding-bottom: 24px; } .component-swatch { width: 100%; height: 100%; } .component-swatch.primary { background-color: #a52b30; } .component-swatch.primary--brighter { background-color: #59cdff; } .nav-search___input { position: relative; z-index: 1; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-bottom: 0px; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; } .search-input__field { position: relative; z-index: 1; width: 200px; height: 100%; margin-bottom: 0px; padding-right: 12px; padding-left: 40px; border: 1px solid transparent; border-radius: 6px; background-color: transparent; -webkit-transition: width 200ms ease; transition: width 200ms ease; } .search-input__field:hover { border-color: #a52b30; } .search-input__field:focus { width: 300px; border-color: #a52b30; } .search-input__field::-webkit-input-placeholder { color: #4d4d4d; } .search-input__field:-ms-input-placeholder { color: #4d4d4d; } .search-input__field::-ms-input-placeholder { color: #4d4d4d; } .search-input__field::placeholder { color: #4d4d4d; } .search-input__field.search-input__field--mobile { -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; } .search-input__field.search-input__field--hero { width: 100%; box-shadow: 0 10px 20px -7px rgba(0, 0, 0, 0.16); -webkit-transition: box-shadow 200ms ease, width 200ms ease; transition: box-shadow 200ms ease, width 200ms ease; } .search-input__field.search-input__field--hero:focus { box-shadow: none; } .search-input { position: relative; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; height: 44px; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; border-radius: 4px; -webkit-transition: all 400ms ease; transition: all 400ms ease; } .search-input:hover { background-color: rgba(0, 0, 0, 0.04); } .search-input__icon { position: absolute; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 32px; height: 100%; -webkit-box-pack: end; -webkit-justify-content: flex-end; -ms-flex-pack: end; justify-content: flex-end; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; color: #a52b30; } .fas { height: auto; } .menu-items { position: relative; display: -ms-grid; display: grid; margin-right: 4px; margin-bottom: 4px; padding: 6px 6px 8px 10px; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; grid-auto-columns: 1fr; grid-auto-rows: -webkit-min-content; grid-auto-rows: min-content; grid-row-gap: 8px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: -webkit-min-content -webkit-min-content; -ms-grid-rows: min-content min-content; grid-template-rows: -webkit-min-content -webkit-min-content; grid-template-rows: min-content min-content; } .small-heading { margin-top: 0px; margin-bottom: 0px; } .small-heading.small-heading--mobile-only { display: none; } .menu-items__inner { display: -ms-grid; display: grid; margin-bottom: 8px; grid-auto-columns: 1fr; grid-row-gap: 6px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .link { position: relative; display: -ms-grid; display: grid; min-height: 36px; padding: 6px 10px; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; grid-auto-columns: 1fr; grid-column-gap: 8px; grid-row-gap: 0px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto; grid-template-rows: auto; color: #4d4d4d; text-decoration: none; } .link.link--with-chip { -ms-grid-columns: 1fr auto; grid-template-columns: 1fr auto; } .link.link--inline { margin-right: 8px; margin-bottom: 8px; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; flex: 0 0 auto; } .chip { position: relative; padding: 5px 4px; border-radius: 3px; background-color: rgba(0, 0, 0, 0.04); font-size: 11px; line-height: 1; } .nav-search__menu_panel { position: absolute; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; height: 100%; padding-top: 52px; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; flex: 0 0 auto; -webkit-transition: opacity 200ms ease; transition: opacity 200ms ease; } .nav-search__menu_panel.visible { z-index: 100; opacity: 1; } .nav-search__menu_panel.hidden { opacity: 0; } .nav-search__menu_panels { position: relative; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; overflow: hidden; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; } .nav-mobile { position: relative; display: none; grid-auto-flow: column; grid-auto-columns: 1fr; -ms-grid-columns: -webkit-min-content -webkit-min-content; -ms-grid-columns: min-content min-content; grid-template-columns: -webkit-min-content -webkit-min-content; grid-template-columns: min-content min-content; -ms-grid-rows: auto; grid-template-rows: auto; } .icon { position: relative; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 44px; height: 100%; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; flex: 0 0 auto; font-size: 28px; text-decoration: none; } .icon.icon--m-8px { margin-right: 8px; margin-bottom: 8px; } .icon.icon--32px { width: 32px; height: 32px; } .icon.icon--primary { color: #a52b30; } .icon.icon--16px { width: 16px; font-size: 16px; } .icon.icon--margin-right-8px { margin-right: 8px; } .components-icons { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; padding-top: 24px; padding-bottom: 24px; } .div-block-3 { height: 200vh; background-image: -webkit-gradient(linear, left top, left bottom, from(#a52b30), to(#1500ff)); background-image: linear-gradient(180deg, #a52b30, #1500ff); } .mobile-menu { position: fixed; left: 0%; top: 0%; right: auto; bottom: 0%; z-index: 99; display: none; width: 300px; padding-top: 84px; padding-bottom: 32px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; } .menu-footer { display: -ms-grid; display: grid; padding-top: 16px; padding-right: 16px; padding-left: 16px; grid-auto-columns: 1fr; grid-row-gap: 16px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto auto; grid-template-rows: auto auto; } .menu-footer__links { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-bottom: -8px; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; } .menu-footer__social { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; } .fab { height: auto; } .mobile-menu__toggle { position: relative; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 44px; height: 44px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; font-size: 16px; } .mobile-menu__open-icon { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 44px; height: 44px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; flex: 0 0 auto; } .mobile-menu__close-icon { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 44px; height: 44px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; flex: 0 0 auto; } .mobile-search__toggle { position: relative; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 44px; height: 44px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; font-size: 16px; } .mobile-search__open-icon { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 44px; height: 44px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; flex: 0 0 auto; } .mobile-search__close-icon { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 44px; height: 44px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; flex: 0 0 auto; } .mobile-search { position: fixed; left: 0%; top: 0%; right: auto; bottom: 0%; z-index: 99; display: none; width: 300px; padding-top: 84px; padding-bottom: 32px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; } .mobile-search.webflow { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; } .info-block { position: relative; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; min-height: 36px; padding: 6px 10px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; color: #b3b3b3; text-align: center; } .info-block.hidden { display: none; } .loading-gif { position: relative; z-index: 1; width: 36px; height: 36px; } .components-elements { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; padding-top: 24px; padding-bottom: 24px; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; } .loading-block { position: relative; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; min-height: 36px; padding: 6px 10px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; color: #b3b3b3; } .loading-block.hidden { display: none; } .menu-close { position: fixed; left: 0%; top: 0%; right: 0%; bottom: 0%; z-index: 98; } .section { position: relative; z-index: 1; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; padding-bottom: 64px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .section.section--hero { position: relative; min-height: 200px; padding-top: 64px; padding-bottom: 64px; color: #fff; } .section.section--map { z-index: 1; height: 350px; padding-top: 20px; padding-bottom: 20px; -webkit-box-align: stretch; -webkit-align-items: stretch; -ms-flex-align: stretch; align-items: stretch; } .section.section--grey { background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.04)), to(rgba(0, 0, 0, 0.04))); background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.04)); background-position: 0px 0px; background-size: auto; } .section.section--padding-top { padding-top: 64px; } .section.section--bg-image { overflow: hidden; min-height: 350px; } .section.section--last { padding-bottom: 128px; } .section.section--home-hero { z-index: 97; padding-top: 96px; padding-bottom: 96px; } .section.section--home-map { z-index: 1; height: 500px; padding-top: 20px; padding-bottom: 20px; -webkit-box-align: stretch; -webkit-align-items: stretch; -ms-flex-align: stretch; align-items: stretch; } .section.section--no-padding-bottom { padding-bottom: 0px; } .section.section--padding-bottom-more { padding-bottom: 90px; } .page-heading__title { margin-top: 0px; margin-bottom: 0px; padding: 6px 12px; border-radius: 4px; background-color: #000; box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.12); color: #fff; } .dummy-block { height: 300vh; } .layout-grid { display: -ms-grid; display: grid; width: 100%; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; grid-auto-flow: row; grid-auto-columns: 1fr; grid-column-gap: 32px; grid-row-gap: 32px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .layout-grid.layout-grid--sidebar-right { -webkit-box-align: start; -webkit-align-items: start; -ms-flex-align: start; align-items: start; -ms-grid-columns: 1fr 25%; grid-template-columns: 1fr 25%; } .layout-grid.layout-grid--1-4-3-4 { -webkit-box-align: start; -webkit-align-items: start; -ms-flex-align: start; align-items: start; -ms-grid-columns: 25% 1fr; grid-template-columns: 25% 1fr; } .layout-grid.layout-grid--4-col { -ms-grid-columns: 1fr 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr 1fr; } .layout-grid.layout-grid--1-3-2-3 { -ms-grid-columns: 33.3333333333% 1fr; grid-template-columns: 33.3333333333% 1fr; } .layout-grid.layout-grid--1-3-2-3.layout-grid--income { -ms-grid-rows: auto auto; grid-template-rows: auto auto; } .layout-grid.layout-grid--1-4-3-4 { -ms-grid-columns: 33.3333333333% 1fr; grid-template-columns: 33.3333333333% 1fr; } .layout-grid.layout-grid--3-col { -ms-grid-columns: 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr; } .layout-grid.layout-grid--6-col { -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr; } .layout-grid.layout-grid--align-top { -webkit-box-align: start; -webkit-align-items: start; -ms-flex-align: start; align-items: start; } .layout-grid.layout-grid--3-4-1-4 { -ms-grid-columns: 75% 1fr; grid-template-columns: 75% 1fr; } .layout-grid.layout-grid--2-col { -ms-grid-columns: 1fr 1fr; grid-template-columns: 1fr 1fr; } .layout-grid.layout-grid--align-center { -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .layout-grid.layout-grid--1-5-4-5 { -ms-grid-columns: 20% 1fr; grid-template-columns: 20% 1fr; } .layout-grid.layout-grid--2-3-1-3 { -ms-grid-columns: 1fr 33.3333333333%; grid-template-columns: 1fr 33.3333333333%; } .footer { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-top: auto; padding-top: 80px; padding-bottom: 80px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; background-color: rgba(0, 0, 0, 0.08); color: grey; } .sidebar-wrapper { position: -webkit-sticky; position: sticky; top: 120px; } .sidebar-wrapper.sidebar-wrapper--left { padding-right: 32px; border-right: 1px solid rgba(0, 0, 0, 0.08); } .sidebar { position: relative; margin-top: -16px; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; } .grid { display: -ms-grid; display: grid; width: 100%; -webkit-align-content: start; -ms-flex-line-pack: start; align-content: start; grid-auto-columns: 1fr; grid-column-gap: 0px; grid-row-gap: 0px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .grid.grid--8px { grid-column-gap: 12px; grid-row-gap: 8px; } .grid.grid--32px { grid-column-gap: 32px; grid-row-gap: 32px; } .grid.grid--16px { grid-column-gap: 16px; grid-row-gap: 16px; } .grid.grid--24px { grid-column-gap: 24px; grid-row-gap: 24px; } .grid.grid--48px { grid-column-gap: 48px; grid-row-gap: 48px; } .sidebar-link { position: relative; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; height: 36px; padding-right: 16px; padding-left: 16px; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; color: #4d4d4d; text-decoration: none; } .sidebar-link__label { position: relative; } .sidebar-heading { font-weight: 500; } .sidebar-section { margin-top: 16px; margin-bottom: 16px; } .sub-section { padding-bottom: 64px; } .sub-section.tabs-section { grid-row-gap: 32px; } .sub-section__link { position: relative; top: -94px; height: 0px; } .margin-none { margin-top: 0px; margin-bottom: 0px; } .margin-bottom--24px { margin-top: 0px; margin-bottom: 24px; } .section__heading { margin-top: 0px; margin-bottom: 0px; } .section__heading.margin-none { color: #a52b30; } .expand-block { position: relative; margin-bottom: -1px; border-top: 1px solid #ebebeb; border-bottom: 1px solid #ebebeb; -webkit-transition: border-color 200ms ease; transition: border-color 200ms ease; } .expand-block:hover { z-index: 1; border-top-color: #d6d6d6; border-bottom-color: #d6d6d6; color: #333; } .expand-block__trigger { position: relative; display: -ms-grid; display: grid; min-height: 44px; padding-left: 4px; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; grid-auto-columns: 1fr; grid-column-gap: 16px; grid-row-gap: 16px; -ms-grid-columns: 1fr -webkit-max-content; -ms-grid-columns: 1fr max-content; grid-template-columns: 1fr -webkit-max-content; grid-template-columns: 1fr max-content; -ms-grid-rows: auto; grid-template-rows: auto; -webkit-transition: color 200ms ease; transition: color 200ms ease; cursor: pointer; } .expand-block__trigger:hover { color: #000; } .expand-block__content { overflow: hidden; } .heading { margin-top: 12px; margin-bottom: 32px; padding-bottom: 24px; } .heading.heading--clear { margin-top: 0px; margin-bottom: 0px; padding-top: 0px; padding-bottom: 0px; } .heading.heading--underline { border-bottom: 1px solid rgba(0, 0, 0, 0.08); } .heading.heading--clear-top { margin-top: 0px; } .heading.heading--clear-bottom { margin-bottom: 0px; } .expand-block__trigger_icon { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; overflow: hidden; width: 44px; height: 100%; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .expand-block__trigger_icon.expand-block__trigger_icon--last { display: none; } .expand-block__content_inner { padding: 16px 4px 24px; } .expand-block__trigger_icon--first { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 44px; height: 44px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; flex: 0 0 auto; } .expand-block__trigger_icon--last { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 44px; height: 44px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; flex: 0 0 auto; } .sidebar-link__wrapper { display: -ms-grid; display: grid; grid-auto-columns: 1fr; grid-column-gap: 8px; grid-row-gap: 8px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .section-heading__wrapper { display: -ms-grid; display: grid; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; grid-auto-flow: column; grid-auto-columns: 1fr; grid-column-gap: 12px; grid-row-gap: 0px; -ms-grid-columns: -webkit-max-content 1fr; -ms-grid-columns: max-content 1fr; grid-template-columns: -webkit-max-content 1fr; grid-template-columns: max-content 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .section-heading__icon { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; height: 100%; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; color: #a52b30; font-size: 24px; } .profile-heading { position: relative; z-index: 1; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; padding-top: 32px; padding-bottom: 32px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; -webkit-align-self: flex-start; -ms-flex-item-align: start; align-self: flex-start; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; } .page-heading__muni-info { margin-top: 12px; padding: 4px 12px; border-radius: 4px; background-color: #fff; box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.12); color: #4d4d4d; } .page-heading__muni-info.page-heading__muni-info--local { display: none; } .page-heading__muni-info.page-heading__muni-info--district { display: none; } .page-heading__muni-info.page-heading__muni-info--metro { display: none; } .page-nav__trigger_label { position: relative; z-index: 1; overflow: hidden; padding-left: 18px; white-space: nowrap; } .content-sections__wrapper { display: -ms-grid; display: grid; grid-auto-flow: row; grid-auto-columns: 1fr; grid-column-gap: 16px; grid-row-gap: 48px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .table { position: relative; } .expand-block__heading { -webkit-transition: all 400ms cubic-bezier(.23, 1, .32, 1); transition: all 400ms cubic-bezier(.23, 1, .32, 1); } .expand-block__heading.expand-block__heading--large { font-size: 16px; } .cta { position: relative; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; } .div-block-4 { display: none; } .page-nav { position: -webkit-sticky; position: sticky; top: 60px; z-index: 99; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; } .page-nav__inner { z-index: 1; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; max-width: 1170px; margin-right: auto; margin-left: auto; padding-right: 24px; padding-left: 24px; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; align-self: center; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; grid-auto-columns: 1fr; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .page-nav__section-links { display: -ms-grid; display: grid; margin-right: -8px; margin-left: -8px; padding-top: 12px; padding-bottom: 8px; -webkit-box-pack: start; -webkit-justify-content: start; -ms-flex-pack: start; justify-content: start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; grid-auto-flow: column; grid-auto-columns: -webkit-max-content; grid-auto-columns: max-content; -ms-grid-columns: -webkit-max-content; -ms-grid-columns: max-content; grid-template-columns: -webkit-max-content; grid-template-columns: max-content; -ms-grid-rows: auto; grid-template-rows: auto; } .page-nav__link { position: relative; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; height: 36px; margin-right: 8px; padding-right: 12px; padding-left: 12px; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; flex: 0 0 auto; border-radius: 4px; background-color: rgba(0, 0, 0, 0.04); color: #666; line-height: 100%; text-decoration: none; } .page-nav__link:hover { border-right-color: transparent; background-color: rgba(0, 0, 0, 0.08); color: #000; } .page-nav__link.w--current { background-color: rgba(165, 43, 48, 0.16); color: #a52b30; } .page-nav__link.nav-link--mobile { height: 36px; margin-right: 0px; margin-left: 0px; padding-right: 10px; padding-left: 10px; } .page-nav__link.hidden { display: none; } .page-nav__icon { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 16px; margin-right: 8px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-align-self: stretch; -ms-flex-item-align: stretch; align-self: stretch; color: #a52b30; } .section__link { position: absolute; top: -120px; height: 100%; } .profile-map { position: absolute; left: 0%; top: 0%; right: 0%; bottom: 0%; background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.08)), to(rgba(0, 0, 0, 0.08))), url('../images/topography.png'); background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08)), url('../images/topography.png'); background-position: 0px 0px, 50% 50%; opacity: 1; } .profile-map.demo { background-image: url('../images/dummy-map-2.jpg'), -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.08)), to(rgba(0, 0, 0, 0.08))), url('../images/topography.png'); background-image: url('../images/dummy-map-2.jpg'), linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08)), url('../images/topography.png'); background-position: 0px 0px, 0px 0px, 50% 50%; background-size: cover, auto, auto; } .profile-metrics { z-index: 1; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; } .page-heading__subtitle_link { display: inline-block; -webkit-transition: color 200ms ease, background-color 200ms ease; transition: color 200ms ease, background-color 200ms ease; text-decoration: underline; } .page-heading__subtitle_link:hover { background-color: #fff; color: #a52b30; } .page-heading__subtitle_link:focus { background-color: #fff; color: #a52b30; } .profile-metrics__block { position: relative; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-right: 8px; margin-bottom: 8px; padding: 12px; color: #4d4d4d; } .profile-metric__label { position: relative; text-shadow: none; } .profile-metrics__wrapper { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; grid-auto-flow: column; grid-auto-columns: -webkit-max-content; grid-auto-columns: max-content; -ms-grid-columns: -webkit-max-content; -ms-grid-columns: max-content; grid-template-columns: -webkit-max-content; grid-template-columns: max-content; -ms-grid-rows: auto; grid-template-rows: auto; } .profile-info__inner { display: -ms-grid; display: grid; -webkit-box-align: start; -webkit-align-items: start; -ms-flex-align: start; align-items: start; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; grid-auto-columns: 1fr; grid-column-gap: 32px; grid-row-gap: 32px; -ms-grid-columns: 1fr 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .profile-info__item { position: relative; display: -ms-grid; display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; grid-column-gap: 12px; -ms-grid-columns: -webkit-max-content 1fr; -ms-grid-columns: max-content 1fr; grid-template-columns: -webkit-max-content 1fr; grid-template-columns: max-content 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .profile-item__item_icon { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 24px; padding-right: 8px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-right: 1px solid rgba(0, 0, 0, 0.08); } .profile-info__heading { margin-top: 8px; font-weight: 500; } .status-block { position: relative; padding: 16px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; } .status-block.status-block--green { background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(52, 168, 83, 0.1)), to(rgba(52, 168, 83, 0.1))); background-image: linear-gradient(180deg, rgba(52, 168, 83, 0.1), rgba(52, 168, 83, 0.1)); } .status-block.status-block--yellow { background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(251, 188, 5, 0.1)), to(rgba(251, 188, 5, 0.1))); background-image: linear-gradient(180deg, rgba(251, 188, 5, 0.1), rgba(251, 188, 5, 0.1)); } .status-block.status-block--red { background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(214, 40, 40, 0.1)), to(rgba(214, 40, 40, 0.1))); background-image: linear-gradient(180deg, rgba(214, 40, 40, 0.1), rgba(214, 40, 40, 0.1)); } .content-wrap { position: relative; z-index: 1; 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; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; } .content-wrap.content-wrap--align-center { -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .content-wrap.content-wrap--justify-center { text-align: center; } .audit-icon { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 44px; margin-right: 12px; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-right: 1px solid rgba(0, 0, 0, 0.08); font-size: 20px; } .audit-icon.audit-icon--green { color: #00a651; } .block { position: relative; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; padding: 24px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; } .button { position: relative; display: -ms-grid; display: grid; padding: 12px; grid-auto-columns: 1fr; grid-column-gap: 8px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto; grid-template-rows: auto; border-radius: 4px; background-color: rgba(0, 0, 0, 0.08); color: #4d4d4d; text-align: center; text-decoration: none; cursor: pointer; } .button:hover { background-color: rgba(0, 0, 0, 0.16); color: #000; } .button:active { background-color: rgba(165, 43, 48, 0.16); } .button:focus { background-color: rgba(0, 0, 0, 0.16); color: #000; } .button.button--align-left { justify-items: start; text-align: left; } .button.button--icon-left { -ms-grid-columns: -webkit-max-content 1fr; -ms-grid-columns: max-content 1fr; grid-template-columns: -webkit-max-content 1fr; grid-template-columns: max-content 1fr; } .button.button--icon-left.button--align-left.button--email-muni { display: none; } .button.button--icon-left.button--align-left.button--muni-site { display: none; } .button.button--icon-left.button--align-left.button--muni-address { display: none; } .button.button--icon-left.button--align-left.button--phone-muni { display: none; grid-auto-columns: 1fr; -ms-grid-columns: -webkit-max-content 1fr; -ms-grid-columns: max-content 1fr; grid-template-columns: -webkit-max-content 1fr; grid-template-columns: max-content 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .button.button--primary { background-color: #a52b30; -webkit-transition: all 200ms ease; transition: all 200ms ease; color: #fff; } .button.button--primary:hover { background-color: #791719; } .div-block-5 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-align: stretch; -webkit-align-items: stretch; -ms-flex-align: stretch; align-items: stretch; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; } .audit-status__title { margin-top: 0px; margin-bottom: 0px; } .audit-status__detail { margin-top: 0px; margin-bottom: 0px; font-weight: 400; } .layout-grid__col.layout-grid__col--padding-left { padding-left: 32px; } .layout-grid__col.layout-grid__col--padding-right { padding-right: 32px; } .layout-grid__col.layout-grid__col--padding-right.layout-grid__col--tabs-wrap { display: -ms-grid; display: grid; padding-right: 0px; -webkit-box-align: start; -webkit-align-items: start; -ms-flex-align: start; align-items: start; grid-auto-columns: 1fr; grid-row-gap: 8px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto auto; grid-template-rows: auto auto; } .layout-grid__col.layout-grid__col--border-right { border-right: 1px solid rgba(0, 0, 0, 0.08); } .layout-grid__col.layout-grid__col--padding-top { padding-top: 32px; } .layout-grid__col.layout-grid__col--padding-top.layout-grid__col--tabs-wrap { display: -ms-grid; display: grid; padding-right: 0px; -webkit-box-align: start; -webkit-align-items: start; -ms-flex-align: start; align-items: start; grid-auto-columns: 1fr; grid-row-gap: 8px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto auto; grid-template-rows: auto auto; } .layout-grid__col.layout-grid__col--border-top { border-top: 1px solid rgba(0, 0, 0, 0.08); } .layout-grid__col.layout-grid__col--v { 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; } .layout-grid__col.layout-grid__col--v.layout-grid__col--justify-center { -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; } .layout-grid__col.layout-grid__col--border-left { border-left: 1px solid rgba(0, 0, 0, 0.08); } .indicator-metric { position: relative; display: -ms-grid; display: grid; margin-bottom: 16px; padding: 12px 6px 12px 12px; grid-auto-columns: 1fr; grid-column-gap: 8px; -ms-grid-columns: 1fr -webkit-max-content; -ms-grid-columns: 1fr max-content; grid-template-columns: 1fr -webkit-max-content; grid-template-columns: 1fr max-content; -ms-grid-rows: auto; grid-template-rows: auto; border-radius: 4px; background-color: rgba(0, 0, 0, 0.04); font-size: 20px; } .indicator-metric.indicator-metric--status-green { background-color: rgba(0, 166, 81, 0.1); color: #00a651; } .indicator-metric.indicator-metric--status-yellow { background-color: rgba(251, 176, 59, 0.1); color: #fbb03b; } .indicator-metric.indicator-metric--status-red { background-color: rgba(237, 28, 36, 0.1); color: #ed1c24; } .indicator-metric__icon { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 44px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .indicator-metric__value { position: relative; font-weight: 500; } .far { width: 32px; height: auto; } .indicator-detail { margin-bottom: 8px; padding-right: 12px; padding-bottom: 8px; padding-left: 12px; } .expand-block__trigger_content { display: -ms-grid; display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; grid-column-gap: 8px; -ms-grid-columns: -webkit-max-content 1fr; -ms-grid-columns: max-content 1fr; grid-template-columns: -webkit-max-content 1fr; grid-template-columns: max-content 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .expand-block__content_icon { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 32px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; color: #a52b30; font-size: 20px; } .indicator-legend { position: relative; display: -ms-grid; display: grid; height: 44px; padding-right: 10px; padding-left: 8px; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; grid-auto-flow: column; grid-auto-columns: 1fr; -ms-grid-columns: -webkit-max-content 1fr -webkit-max-content; -ms-grid-columns: max-content 1fr max-content; grid-template-columns: -webkit-max-content 1fr -webkit-max-content; grid-template-columns: max-content 1fr max-content; -ms-grid-rows: auto; grid-template-rows: auto; } .indicator-legend__icon { position: relative; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 32px; height: 100%; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; font-size: 20px; } .indicator-legend__icon.indicator-legend__icon--green { color: #00a651; } .indicator-legend__icon.indicator-legend__icon--yellow { color: #fbb03b; } .indicator-legend__icon.indicator-legend__icon--red { color: #ed1c24; } .indicator-legend__info { padding-left: 8px; } .text-block { position: relative; } .icon-label-dropdown { position: relative; display: -ms-grid; display: grid; min-width: 200px; padding-left: 8px; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; grid-auto-columns: 1fr; grid-column-gap: 10px; grid-template-areas: "."; -ms-grid-columns: 1fr 10px minmax(auto, 200px); grid-template-columns: 1fr minmax(auto, 200px); -ms-grid-rows: auto; grid-template-rows: auto; } .icon-label-dropdown.muni-compare { grid-auto-columns: 1fr; } .indicator-compare__icon { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 32px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; font-size: 16px; } .label.label--small { font-size: 12px; } .label.label--light { color: grey; } .dropdown { position: relative; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; } .dropdown-toggle { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100px; height: 44px; padding: 0px 36px 0px 12px; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-align-self: center; -ms-flex-item-align: center; align-self: center; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; background-image: none; } .dropdown-toggle.dropdown-toggle--grey:hover { background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.04)), to(rgba(0, 0, 0, 0.04))); background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.04)); } .dropdown-list { background-color: transparent; } .dropdown-list.w--open { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-top: -4px; padding-top: 4px; padding-bottom: 4px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; } .dropdown-icon { margin-right: 12px; } .dropdown-link { z-index: 1; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; height: 44px; padding: 0px 12px; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; color: #4d4d4d; } .dropdown-link:hover { background-color: rgba(0, 0, 0, 0.04); color: #000; } .dropdown-link:focus { background-color: rgba(0, 0, 0, 0.04); color: #000; } .dropdown-link.dropdown-link--current { color: #a52b30; } .hidden { display: none; } .rich-text__default { margin-bottom: -10px; } .rich-text__default figure { overflow: hidden; margin-top: 24px; border-radius: 4px; } .tabs-menu { 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; } .tab-link { margin-top: 4px; margin-right: 48px; margin-bottom: 4px; padding: 10px 8px 10px 12px; border-radius: 4px; background-color: rgba(0, 0, 0, 0.04); -webkit-transition: all 200ms ease; transition: all 200ms ease; color: #666; } .tab-link:hover { margin-right: 32px; background-color: rgba(0, 0, 0, 0.08); color: #000; } .tab-link.w--current { margin-right: 32px; background-color: rgba(165, 43, 48, 0.16); color: #a52b30; } .div-block-6 { display: -ms-grid; display: grid; grid-auto-columns: 1fr; grid-column-gap: 16px; grid-row-gap: 16px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto auto; grid-template-rows: auto auto; } .sub-section__heading--tab { margin-top: 0px; margin-bottom: 0px; } .sub-section__heading--tab.margin-none { color: #a52b30; } .heading--item-right { display: -ms-grid; display: grid; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; grid-auto-columns: 1fr; grid-column-gap: 16px; grid-row-gap: 16px; -ms-grid-columns: 1fr -webkit-max-content; -ms-grid-columns: 1fr max-content; grid-template-columns: 1fr -webkit-max-content; grid-template-columns: 1fr max-content; -ms-grid-rows: auto; grid-template-rows: auto; } .financial-year { position: relative; display: -ms-grid; display: grid; padding-left: 8px; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; grid-auto-columns: 1fr; grid-column-gap: 8px; grid-template-areas: "icon title dropdown"; -ms-grid-columns: -webkit-max-content 8px 1fr 8px minmax(auto, 200px); -ms-grid-columns: max-content 8px 1fr 8px minmax(auto, 200px); grid-template-columns: -webkit-max-content 1fr minmax(auto, 200px); grid-template-columns: max-content 1fr minmax(auto, 200px); -ms-grid-rows: auto; grid-template-rows: auto; } .question-block { position: relative; border: 1px solid transparent; border-radius: 4px; } .question-block:hover { border-color: rgba(0, 0, 0, 0.08); } .tabs-section { display: -ms-grid; display: grid; grid-auto-columns: 1fr; grid-column-gap: 32px; -ms-grid-columns: 33.3333333333% 1fr; grid-template-columns: 33.3333333333% 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .tabs-col { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; height: 100%; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: stretch; -webkit-align-items: stretch; -ms-flex-align: stretch; align-items: stretch; grid-auto-columns: 1fr; grid-auto-rows: -webkit-max-content; grid-auto-rows: max-content; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: -webkit-max-content; -ms-grid-rows: max-content; grid-template-rows: -webkit-max-content; grid-template-rows: max-content; border-right: 1px solid rgba(0, 0, 0, 0.08); } .content-col { overflow: visible; } .question-block__trigger { position: relative; z-index: 1; display: -ms-grid; display: grid; min-height: 44px; padding-left: 8px; -webkit-align-content: center; -ms-flex-line-pack: center; align-content: center; grid-auto-columns: 1fr; grid-row-gap: 16px; -ms-grid-columns: -webkit-min-content 1fr -webkit-min-content; -ms-grid-columns: min-content 1fr min-content; grid-template-columns: -webkit-min-content 1fr -webkit-min-content; grid-template-columns: min-content 1fr min-content; -ms-grid-rows: auto; grid-template-rows: auto; border-radius: 4px; -webkit-transition: color 200ms ease; transition: color 200ms ease; color: #4d4d4d; font-weight: 500; text-decoration: none; } .question-block__trigger:hover { color: #000; } .question-block__content { position: relative; z-index: 1; overflow: hidden; } .question-block__trigger_icon { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; overflow: hidden; width: 44px; height: 100%; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .question-block__trigger_icon.expand-block__trigger_icon--last { display: none; } .question-block__content_inner { padding: 16px 16px 6px; border-top: 1px solid rgba(0, 0, 0, 0.08); } .section-header { display: -ms-grid; display: grid; margin-top: 12px; margin-bottom: 32px; padding-bottom: 24px; grid-auto-columns: 1fr; grid-column-gap: 12px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .section-header.section-header--item-right { display: -ms-grid; display: grid; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; grid-auto-columns: 1fr; -ms-grid-columns: 1fr -webkit-max-content; -ms-grid-columns: 1fr max-content; grid-template-columns: 1fr -webkit-max-content; grid-template-columns: 1fr max-content; -ms-grid-rows: auto; grid-template-rows: auto; } .section-header.section-header--clear { margin-top: 0px; margin-bottom: 0px; padding-bottom: 0px; } .section-header.section-header--clear.section-header--item-right { -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .section-header.section-header--clear.section-header--item-right.section-header--gap { -ms-grid-columns: -webkit-max-content 1fr -webkit-max-content; -ms-grid-columns: max-content 1fr max-content; grid-template-columns: -webkit-max-content 1fr -webkit-max-content; grid-template-columns: max-content 1fr max-content; } .section-header.section-header--clear.section-header--item-right.section-header--icon-left { -ms-grid-columns: -webkit-max-content 1fr -webkit-max-content; -ms-grid-columns: max-content 1fr max-content; grid-template-columns: -webkit-max-content 1fr -webkit-max-content; grid-template-columns: max-content 1fr max-content; } .section-header.section-header--clear.section-header--icon-left.section-header--info-right { -ms-grid-columns: -webkit-max-content 1fr -webkit-max-content; -ms-grid-columns: max-content 1fr max-content; grid-template-columns: -webkit-max-content 1fr -webkit-max-content; grid-template-columns: max-content 1fr max-content; } .section-header.section-header--underline { border-bottom: 1px solid rgba(0, 0, 0, 0.08); } .section-header.section-header--underline.section-header--item-right.section-header--icon-left { -ms-grid-columns: -webkit-max-content 1fr -webkit-max-content; -ms-grid-columns: max-content 1fr max-content; grid-template-columns: -webkit-max-content 1fr -webkit-max-content; grid-template-columns: max-content 1fr max-content; } .section-header.section-header--icon-left { -ms-grid-columns: -webkit-max-content 1fr; -ms-grid-columns: max-content 1fr; grid-template-columns: -webkit-max-content 1fr; grid-template-columns: max-content 1fr; } .gap { height: 100%; } .gap.gap--underline { border-bottom: 1px solid rgba(0, 0, 0, 0.08); } .value.value--medium { font-size: 16px; } .bar-chart { display: -ms-grid; display: grid; grid-auto-columns: 1fr; grid-row-gap: 8px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .bar-chart__row { position: relative; display: -ms-grid; display: grid; height: 24px; justify-items: start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; grid-auto-columns: 1fr; grid-column-gap: 8px; -ms-grid-columns: 150px 1fr; grid-template-columns: 150px 1fr; -ms-grid-rows: auto; grid-template-rows: auto; color: grey; } .bar-chart__row:hover { color: #4d4d4d; } .chart-label { font-size: 12px; cursor: default; } .bar-chart__bar-wrapper { position: relative; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; height: 100%; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; background-color: rgba(0, 0, 0, 0.02); cursor: default; } .bar-chart__bar-wrapper:hover { background-color: rgba(0, 0, 0, 0.04); } .bar-chart__bar { position: relative; z-index: 1; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 70%; height: 100%; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-radius: 2px; background-color: #a52b30; } .bar-chart__bar-bg { position: absolute; left: 0%; top: 0%; right: 0%; bottom: 0%; border-radius: 2px; background-color: rgba(0, 0, 0, 0.04); } .bar-chart__bar_value { position: absolute; left: 100%; z-index: 1; margin-left: 6px; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; flex: 0 0 auto; letter-spacing: 0.7px; white-space: nowrap; } .bar-chart__legend { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-top: 16px; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; } .legend-item { display: -ms-grid; display: grid; margin-right: 24px; margin-bottom: 8px; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; grid-auto-columns: 1fr; grid-column-gap: 8px; grid-row-gap: 0px; -ms-grid-columns: -webkit-min-content 1fr; -ms-grid-columns: min-content 1fr; grid-template-columns: -webkit-min-content 1fr; grid-template-columns: min-content 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .legend-item__block { width: 16px; height: 16px; border-radius: 2px; background-color: rgba(0, 0, 0, 0.04); } .colour { background-image: -webkit-gradient(linear, left top, left bottom, from(#791719), to(#791719)); background-image: linear-gradient(180deg, #791719, #791719); } .colour.colour--primary { background-image: -webkit-gradient(linear, left top, left bottom, from(#a52b30), to(#a52b30)); background-image: linear-gradient(180deg, #a52b30, #a52b30); } .colour.colour--1 { background-image: -webkit-gradient(linear, left top, left bottom, from(#3289a5), to(#3289a5)); background-image: linear-gradient(180deg, #3289a5, #3289a5); } .colour.colour--2 { background-image: -webkit-gradient(linear, left top, left bottom, from(#6d3aad), to(#6d3aad)); background-image: linear-gradient(180deg, #6d3aad, #6d3aad); } .components-utility { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; padding-top: 24px; padding-bottom: 24px; } .section-header__info-right { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; color: #b3b3b3; text-decoration: none; } .bar-chart__bar_percentage { position: absolute; left: auto; top: auto; right: 0%; bottom: auto; z-index: 1; margin-right: 6px; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; flex: 0 0 auto; color: hsla(0, 0%, 100%, 0.7); letter-spacing: 0.7px; white-space: nowrap; } .bar-chart__hover-label { position: absolute; left: 0%; top: 0%; right: auto; bottom: 0%; z-index: 0; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-left: -8px; padding-right: 8px; padding-left: 8px; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-radius: 4px; background-color: #fff; box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.16); opacity: 0; white-space: nowrap; cursor: default; } .bar-chart__hover-label:hover { z-index: 2; opacity: 1; } .footer-logo { position: relative; z-index: 1; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 170px; margin-bottom: 12px; } .footer-link { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; height: 32px; padding-right: 6px; padding-left: 6px; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-radius: 4px; color: grey; text-decoration: none; } .footer-link:hover { background-color: rgba(0, 0, 0, 0.08); color: #000; } .footer-link.footer-link--primary { background-color: rgba(165, 43, 48, 0.16); color: #791719; } .footer-link.footer-link--primary:hover { background-color: rgba(165, 43, 48, 0.32); } .footer__links { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-left: -6px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; grid-auto-columns: 1fr; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .footer-heading { color: #000; } .footer__partner-logos { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .footer__partner-logo { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100px; } .logo { margin-top: 0px; margin-bottom: 0px; } .footer-meta { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; padding-top: 32px; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; border-top: 1px solid rgba(0, 0, 0, 0.08); } .footer-meta.layout-grid.layout-grid--4-col { -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-top: 1px solid rgba(0, 0, 0, 0.08); } .footer-meta__partner { display: -ms-grid; display: grid; -webkit-box-pack: end; -webkit-justify-content: flex-end; -ms-flex-pack: end; justify-content: flex-end; grid-auto-columns: -webkit-max-content; grid-auto-columns: max-content; grid-column-gap: 16px; grid-row-gap: 16px; -ms-grid-columns: -webkit-max-content -webkit-max-content; -ms-grid-columns: max-content max-content; grid-template-columns: -webkit-max-content -webkit-max-content; grid-template-columns: max-content max-content; -ms-grid-rows: auto; grid-template-rows: auto; } .expand-blocks.expand-blocks--m-bottom { margin-bottom: 8px; } .audit-outcome { position: relative; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; height: 100%; padding: 24px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; border-radius: 4px; background-color: rgba(0, 0, 0, 0.02); text-align: center; } .audit-outcome.audit-outcome--green { background-color: rgba(0, 166, 81, 0.1); } .audit-outcome.audit-outcome--red { background-color: rgba(237, 28, 36, 0.1); } .audit-outcome.audit-outcome--summary { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; text-align: left; } .inner { position: relative; z-index: 1; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; } .audit-outcome__icon { position: relative; z-index: 1; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 32px; height: 32px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .audit-outcome__icon.audit-outcome__icon--green { color: #00a651; } .audit-outcome__icon.audit-outcome__icon--red { color: #ed1c24; } .audit-outcome__icon.audit-outcome__icon--yellow { color: #fbb03b; } .audit-outcome__heading { margin-top: 4px; margin-bottom: 4px; } .audit-outcome__subheading { min-height: 0px; } .audit-outcome__icons { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; font-size: 20px; } .audit-outcome__icons.audit-outcome--summary { position: relative; padding: 8px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-align-self: stretch; -ms-flex-item-align: stretch; -ms-grid-row-align: stretch; align-self: stretch; } .audit-outcome__icons.hidden { display: none; } .audit-outcome__download { position: relative; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; height: 32px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; justify-items: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; grid-auto-columns: 1fr; -ms-grid-columns: -webkit-max-content 1fr; -ms-grid-columns: max-content 1fr; grid-template-columns: -webkit-max-content 1fr; grid-template-columns: max-content 1fr; -ms-grid-rows: auto; grid-template-rows: auto; color: #666; text-align: left; text-decoration: none; } .audit-outcome__download_icon { width: 20px; height: 20px; } .audit-outcome__year { margin-top: 0px; margin-bottom: 24px; padding-bottom: 8px; border-bottom: 1px solid rgba(0, 0, 0, 0.08); } .audit-outcome__button-wrapper { margin-top: auto; padding-top: 20px; } .section-footer { margin-top: 32px; } .audit-outcome__definition { margin-top: 20px; margin-bottom: 0px; } .audit-outcome__definition-wrapper { margin-top: auto; padding-top: 20px; } .profile-header__inner { 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; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; } .profile-heading__wrapper { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; } .profile-notice { position: relative; padding-top: 12px; padding-bottom: 12px; color: #fff; } .profile-notice__inner { z-index: 1; display: -ms-grid; display: grid; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; grid-auto-columns: 1fr; grid-column-gap: 8px; -ms-grid-columns: -webkit-max-content 1fr; -ms-grid-columns: max-content 1fr; grid-template-columns: -webkit-max-content 1fr; grid-template-columns: max-content 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .profile-notice__icon { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 20px; height: 20px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; opacity: 0.5; } .outcome-summary { position: relative; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; height: 100%; padding: 24px; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; border-radius: 4px; background-color: rgba(0, 0, 0, 0.02); text-align: center; } .outcome-summary.audit-outcome--green { background-color: rgba(0, 166, 81, 0.1); } .outcome-summary.audit-outcome--red { background-color: rgba(237, 28, 36, 0.1); } .audit-outcome__inner { margin-left: 24px; } .icon-label-dropdown__inner { position: relative; z-index: 1; display: -ms-grid; display: grid; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; grid-auto-columns: 1fr; grid-column-gap: 4px; -ms-grid-columns: -webkit-max-content 1fr; -ms-grid-columns: max-content 1fr; grid-template-columns: -webkit-max-content 1fr; grid-template-columns: max-content 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .footer-description { margin-top: 24px; } .municipal-office-map { height: 200px; } .table-row { display: -ms-grid; display: grid; min-height: 52px; margin-bottom: -1px; padding-top: 10px; padding-bottom: 10px; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; grid-auto-flow: column; grid-auto-columns: 1fr; grid-column-gap: 16px; -ms-grid-columns: 1fr 1fr; grid-template-columns: 1fr 1fr; -ms-grid-rows: auto; grid-template-rows: auto; border-top: 1px solid rgba(0, 0, 0, 0.08); border-bottom: 1px solid transparent; -webkit-transition: all 200ms ease; transition: all 200ms ease; color: #4d4d4d; text-decoration: none; } .table-row:hover { position: relative; z-index: 1; border-top-style: solid; border-top-color: #d6d6d6; border-bottom-color: #d6d6d6; background-color: #fff; box-shadow: 0 12px 10px -10px rgba(0, 0, 0, 0.16); color: #a52b30; } .table-row.table-row--2-col-value-right { -ms-grid-columns: 75% minmax(120px, 25%); grid-template-columns: 75% minmax(120px, 25%); } .table-row.table-row--2-col-value-right.table-row--value-right { -ms-grid-columns: auto 200px; grid-template-columns: auto 200px; } .table-row.table-row__header { margin-bottom: 0px; border: 1px none #000; color: #666; font-weight: 600; } .table-row.table-row__header:hover { background-color: transparent; box-shadow: none; color: #666; } .table-row.table-row--2-col-value-right-with-icon { grid-column-gap: 0px; -ms-grid-columns: auto 200px 24px; grid-template-columns: auto 200px 24px; } .table-row.table-row--2-col-value-right-with-icon.table-row--value-right { -ms-grid-columns: auto 200px; grid-template-columns: auto 200px; } .table-col { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; height: 100%; min-height: 0px; padding-left: 12px; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .table-col.table-col--border-right { padding-right: 16px; border-right: 1px solid rgba(0, 0, 0, 0.08); } .table-row__value { text-decoration: none; } .table-row__icon { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 24px; height: 100%; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .table-footer { display: -ms-grid; display: grid; padding-top: 24px; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-align-content: center; -ms-flex-line-pack: center; align-content: center; grid-auto-columns: -webkit-max-content; grid-auto-columns: max-content; grid-column-gap: 16px; grid-row-gap: 16px; -ms-grid-columns: -webkit-max-content -webkit-max-content; -ms-grid-columns: max-content max-content; grid-template-columns: -webkit-max-content -webkit-max-content; grid-template-columns: max-content max-content; -ms-grid-rows: auto; grid-template-rows: auto; border-top: 1px solid rgba(0, 0, 0, 0.08); color: #b3b3b3; } .button__inner { position: relative; z-index: 1; } .page-heading__district-muni { margin-top: 6px; padding-top: 4px; padding-bottom: 4px; padding-left: 12px; } .page-heading__metro { margin-top: 6px; } .button__icon { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 16px; height: 100%; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; color: #a52b30; } .button__icon.button__icon--white { color: #fff; } .bg-image { position: absolute; left: 0%; top: 0%; right: 0%; bottom: 0%; width: 100%; } .bg-image.bg-image--overlay-black-16 { background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.16)), to(rgba(0, 0, 0, 0.16))); background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.16)); } .bg-image.bg-image--tutorial { background-image: url('../images/video-thumb-narrow.jpg'); background-position: 50% 50%; background-size: 100%; background-repeat: no-repeat; } .video-block { border-radius: 4px; } .ytdefer { width: 100%; min-height: 350px; } .video-thumb { position: absolute; left: 0%; top: 0%; right: 0%; bottom: 0%; overflow: hidden; margin-top: 0px; margin-bottom: 0px; border-radius: 4px; } .tutorial-video__main { position: relative; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; height: 250px; padding: 24px; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; border-radius: 4px; text-decoration: none; } .video-lightbox__play { position: absolute; left: 0%; top: 0%; right: 0%; bottom: 0%; z-index: 1; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-radius: 4px; background-color: rgba(0, 0, 0, 0.16); -webkit-transition: all 200ms ease; transition: all 200ms ease; color: #fff; font-size: 44px; text-shadow: 0 0 20px rgba(0, 0, 0, 0.16); } .video-lightbox__play:hover { background-color: transparent; color: #a52b30; text-shadow: 0 0 5px rgba(0, 0, 0, 0.16); } .video-thumb__bg-image { height: 100%; background-image: url('../images/video-thumb.jpg'); background-position: 50% 80%; background-size: cover; background-repeat: no-repeat; } .tutorial-video { position: relative; display: -ms-grid; display: grid; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; grid-auto-columns: 1fr; grid-row-gap: 16px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .video-lightbox__label { position: relative; z-index: 100; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: auto; padding: 6px 12px; border-radius: 4px; background-color: hsla(0, 0%, 100%, 0.16); color: #fff; font-weight: 500; letter-spacing: 0.5px; } .tutorial-video__alt-languages { position: absolute; left: 0%; top: auto; right: 0%; bottom: 6px; z-index: 1; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; padding-right: 24px; padding-bottom: 8px; padding-left: 24px; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; grid-auto-flow: column; grid-auto-columns: -webkit-max-content; grid-auto-columns: max-content; -ms-grid-columns: -webkit-max-content; -ms-grid-columns: max-content; grid-template-columns: -webkit-max-content; grid-template-columns: max-content; -ms-grid-rows: auto; grid-template-rows: auto; } .tutorial-video__language { margin-right: 8px; margin-bottom: 8px; padding: 6px 8px; border-radius: 4px; background-color: #fff; color: #4d4d4d; font-size: 12px; text-decoration: none; } .tutorial-video__language:hover { background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.08)), to(rgba(0, 0, 0, 0.08))); background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08)); color: #000; } .page-nav__trigger { position: fixed; left: auto; top: auto; right: 16px; bottom: 24px; z-index: 98; display: none; height: 44px; padding-right: 10px; padding-left: 10px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-radius: 100px; background-color: #a52b30; box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.16); color: #fff; cursor: pointer; } .page-nav__menu { -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; } .page-nav___deselect { position: fixed; left: 0%; top: 0%; right: 0%; bottom: 0%; z-index: 101; display: none; background-color: rgba(0, 0, 0, 0.16); opacity: 0; } .page-nav__trigger-icon { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 24px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .page-nav__trigger-label-wrap { overflow: hidden; } .page-nav__trigger-label { padding-right: 8px; padding-left: 8px; } .page-options__link { position: relative; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; height: 36px; margin-right: 8px; padding-right: 6px; padding-left: 6px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; flex: 0 0 auto; border-radius: 4px; background-color: rgba(0, 0, 0, 0.04); font-size: 16px; line-height: 100%; text-decoration: none; } .page-options__link:hover { border-right-color: transparent; background-color: rgba(0, 0, 0, 0.08); } .page-options__link.w--current { background-color: rgba(165, 43, 48, 0.16); color: #a52b30; } .page-options__link.nav-link--mobile { height: 36px; margin-right: 0px; margin-left: 0px; padding-right: 10px; padding-left: 10px; } .page-options__link.hidden { display: none; } .page-options__icon { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 24px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-align-self: stretch; -ms-flex-item-align: stretch; align-self: stretch; } .page-nav__options-links { display: -ms-grid; display: grid; margin-right: -8px; margin-left: -8px; padding-top: 12px; padding-bottom: 8px; -webkit-box-pack: start; -webkit-justify-content: start; -ms-flex-pack: start; justify-content: start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; grid-auto-flow: column; grid-auto-columns: -webkit-max-content; grid-auto-columns: max-content; -ms-grid-columns: -webkit-max-content; -ms-grid-columns: max-content; grid-template-columns: -webkit-max-content; grid-template-columns: max-content; -ms-grid-rows: auto; grid-template-rows: auto; } .menu-deselect { position: fixed; left: 0%; top: 0%; right: 0%; bottom: 0%; z-index: 98; background-color: rgba(0, 0, 0, 0.16); } .location-block { position: relative; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; padding: 24px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; } .location-block.location-block--found { display: none; color: #00a651; } .location-block.location-block--not-found { display: none; color: #ed1c24; } .location-loading__text { position: relative; z-index: 1; margin-left: 8px; } .location-found { position: relative; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; padding: 24px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; } .location-icon { position: relative; z-index: 1; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 44px; height: 44px; margin-right: 8px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; font-size: 24px; } .location-block__label { position: relative; z-index: 1; } .div-block-7 { position: absolute; top: 0px; bottom: 0px; width: 30%; margin-left: -5%; } .home-map { position: absolute; left: 0%; top: 0%; right: 0%; bottom: 0%; background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.08)), to(rgba(0, 0, 0, 0.08))), url('../images/topography.png'); background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08)), url('../images/topography.png'); background-position: 0px 0px, 50% 50%; opacity: 1; } .home-map.demo { background-image: url('../images/dummy-map-2.jpg'), -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.08)), to(rgba(0, 0, 0, 0.08))), url('../images/topography.png'); background-image: url('../images/dummy-map-2.jpg'), linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08)), url('../images/topography.png'); background-position: 0px 0px, 0px 0px, 50% 50%; background-size: cover, auto, auto; } .home-map__inner { position: relative; z-index: 1; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-top: -44px; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-align-self: flex-start; -ms-flex-item-align: start; align-self: flex-start; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; } .hero-search { position: relative; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: end; -webkit-justify-content: flex-end; -ms-flex-pack: end; justify-content: flex-end; } .hero-search.nav-search--mobile { margin-bottom: 16px; } .hero-search___input { position: relative; z-index: 1; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-bottom: 0px; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; } .hero-search__wrap { display: -ms-grid; display: grid; margin-top: 8px; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; grid-auto-columns: 1fr; grid-column-gap: 16px; grid-row-gap: 16px; -ms-grid-columns: 1fr -webkit-max-content; -ms-grid-columns: 1fr max-content; grid-template-columns: 1fr -webkit-max-content; grid-template-columns: 1fr max-content; -ms-grid-rows: auto; grid-template-rows: auto; } .home-map__title { margin-top: 0px; margin-bottom: 0px; padding: 6px 12px; border-radius: 4px; background-color: #000; box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.12); color: #fff; font-weight: 400; } .div-block-9 { margin-top: 24px; } .paragraph-large { margin-bottom: 0px; font-size: 18px; } .button-wrap { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; } .button-wrap.button-wrap--margin-top { margin-top: 24px; } .home-hero__inner { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 95%; height: 100%; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; } .page-heading__subtitle { margin-top: 12px; padding: 4px 12px; border-radius: 4px; background-color: #fff; box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.12); color: #4d4d4d; } .page-heading__subtitle.page-heading__muni-info--local { display: none; } .page-heading__subtitle.page-heading__muni-info--district { display: none; } .page-heading__subtitle.page-heading__muni-info--metro { display: none; } .tutorial-image { width: 100%; margin-top: 0px; margin-bottom: 0px; border-radius: 4px 4px 0px 0px; } .tutorial-instruction { margin-bottom: 0px; padding: 24px 24px 14px; background-color: #fff; } .tutorial-block { border-radius: 4px; background-color: #fff; box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.12); } .cta-block { position: relative; padding: 48px; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; } .cta-block__inner { position: relative; z-index: 1; } .cta-block__image-left { margin-top: 0px; margin-bottom: 0px; } .clear { margin-top: 0px; margin-bottom: 0px; } .clear--top { margin-top: 0px; } .nav-logo__text { font-size: 8px; text-decoration: none; } .search-result { position: relative; display: -ms-grid; display: grid; padding: 8px; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; grid-auto-columns: 1fr; grid-column-gap: 8px; grid-row-gap: 0px; -ms-grid-columns: 1fr -webkit-max-content; -ms-grid-columns: 1fr max-content; grid-template-columns: 1fr -webkit-max-content; grid-template-columns: 1fr max-content; -ms-grid-rows: auto; grid-template-rows: auto; color: #000; text-decoration: none; } .search-result__muni-name { font-size: 13px; } .search-result__muni-type { color: #b3b3b3; font-size: 12px; } .page-nav__muni-name { display: none; } .page-nav__muni-type { display: none; } .page-options__label { display: none; padding-right: 6px; padding-left: 4px; color: #666; font-size: 14px; } .tooltip { position: absolute; left: auto; top: 100%; right: auto; bottom: auto; display: none; width: auto; margin-top: 12px; padding: 8px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; font-size: 14px; white-space: nowrap; } .tooltip.webflow { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; } .tooltip__label { position: relative; z-index: 1; color: #4d4d4d; } .tooltip__notch { position: absolute; top: -4px; z-index: 1; width: 8px; height: 8px; background-color: #fff; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg); } .components-content { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; padding-top: 24px; padding-bottom: 24px; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; } .fas { min-height: 0px; } .muni-address { display: none; } .highlight-block { position: relative; padding: 24px; } .highlight-block__inner { position: relative; z-index: 1; display: -ms-grid; display: grid; grid-auto-columns: 1fr; grid-column-gap: 24px; -ms-grid-columns: -webkit-max-content 1fr; -ms-grid-columns: max-content 1fr; grid-template-columns: -webkit-max-content 1fr; grid-template-columns: max-content 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .highlight-block__heading { margin-top: 0px; margin-bottom: 24px; padding-bottom: 8px; border-bottom: 1px solid rgba(0, 0, 0, 0.08); } .highlight-block__icon { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 48px; min-height: 48px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-radius: 4px; background-color: rgba(0, 0, 0, 0.04); font-size: 24px; } .highlight-block__icon.highlight-block__icon--green { background-color: rgba(0, 166, 81, 0.1); color: #00a651; } .highlight-block__icon.highlight-block__icon--red { background-color: rgba(237, 28, 36, 0.1); color: #ed1c24; } .rich-text__highlight-block { margin-bottom: -5px; } .rich-text__highlight-block figure { overflow: hidden; margin-top: 24px; border-radius: 4px; } .rich-text__highlight-block li { margin-bottom: 5px; } @media screen and (max-width: 991px) { h1 { font-size: 32px; } h2 { font-size: 24px; } h3 { font-size: 18px; } h4 { font-size: 16px; } .container { width: 100%; max-width: 100%; -webkit-box-flex: 0; -webkit-flex: 0 auto; -ms-flex: 0 auto; flex: 0 auto; } .search-input__field:focus { width: 260px; } .section { padding-top: 40px; padding-bottom: 40px; } .section.section--hero { min-height: 180px; } .section.section--padding-top { padding-top: 40px; } .section.section--last { padding-bottom: 80px; } .section.section--home-hero { padding-top: 64px; padding-bottom: 64px; } .layout-grid { grid-column-gap: 24px; grid-row-gap: 24px; } .layout-grid.layout-grid--sidebar-right { -ms-grid-columns: 1fr 33.3333333333%; grid-template-columns: 1fr 33.3333333333%; } .layout-grid.layout-grid--1-3-2-3 { -ms-grid-columns: 1fr; grid-template-columns: 1fr; } .layout-grid.layout-grid--3-col { -ms-grid-columns: 1fr; grid-template-columns: 1fr; } .layout-grid.layout-grid--2-col { -ms-grid-columns: 1fr; grid-template-columns: 1fr; } .sidebar-wrapper.sidebar-wrapper--left { padding-right: 24px; } .grid.grid--32px { grid-column-gap: 24px; grid-row-gap: 24px; } .sub-section.tabs-section { -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto auto; grid-template-rows: auto auto; } .sub-section__link { top: -80px; } .heading { margin-bottom: 16px; padding-bottom: 16px; } .page-nav__icon { display: none; } .section__link { top: -80px; } .layout-grid__col.layout-grid__col--padding-right { padding-right: 0px; } .layout-grid__col.layout-grid__col--padding-right.layout-grid__col--border-right { border-right-style: none; } .layout-grid__col.layout-grid__col--padding-top { padding-right: 0px; } .layout-grid__col.layout-grid__col--padding-top.layout-grid__col--border-right { border-right-style: none; } .tab-link { margin-right: 8px; padding-right: 12px; } .tab-link:hover { margin-right: 8px; } .tab-link.w--current { margin-right: 8px; } .tabs-col { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; border-right-style: none; } .footer-meta { -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .footer-meta__partner { margin-top: 8px; } .paragraph-large { font-size: 16px; } .home-hero__inner { width: 80%; } } @media screen and (max-width: 767px) { h1 { font-size: 26px; } h2 { font-size: 22px; } h4 { font-size: 14px; } .nav { top: 0px; max-width: 100%; } .container { padding-right: 20px; padding-left: 20px; } .nav-inner { -ms-grid-columns: -webkit-max-content auto; -ms-grid-columns: max-content auto; grid-template-columns: -webkit-max-content auto; grid-template-columns: max-content auto; } .nav-items { display: none; } .nav-search { display: none; } .nav-search.nav-search--mobile { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; } .small-heading { display: block; width: 100%; } .small-heading.small-heading--mobile-only { display: block; } .nav-mobile { display: -ms-grid; display: grid; -webkit-box-pack: end; -webkit-justify-content: end; -ms-flex-pack: end; justify-content: end; justify-items: end; grid-auto-flow: column; grid-auto-columns: 1fr; -ms-grid-columns: auto auto; grid-template-columns: auto auto; -ms-grid-rows: auto; grid-template-rows: auto; } .mobile-menu { display: none; } .mobile-menu__toggle { margin-left: 8px; cursor: pointer; } .mobile-search__toggle { margin-left: 8px; cursor: pointer; } .info-block { padding-top: 6px; } .loading-block { padding-top: 6px; } .menu-title { margin-top: 0px; margin-bottom: 8px; } .menu-close { display: none; background-color: #000; } .section { padding-top: 32px; padding-bottom: 32px; } .section.section--padding-top { padding-top: 32px; } .section.section--last { padding-bottom: 48px; } .layout-grid { grid-column-gap: 24px; grid-row-gap: 24px; } .layout-grid.layout-grid--sidebar-right { -ms-grid-columns: 1fr; grid-template-columns: 1fr; } .layout-grid.layout-grid--1-4-3-4 { -ms-grid-columns: 1fr; grid-template-columns: 1fr; } .layout-grid.layout-grid--4-col { -ms-grid-columns: 1fr 1fr; grid-template-columns: 1fr 1fr; } .layout-grid.layout-grid--1-3-2-3 { grid-auto-flow: row; -ms-grid-columns: 1fr; grid-template-columns: 1fr; } .layout-grid.layout-grid--1-5-4-5 { -ms-grid-columns: 1fr; grid-template-columns: 1fr; } .layout-grid.layout-grid--2-3-1-3 { -ms-grid-columns: 1fr; grid-template-columns: 1fr; } .sidebar-wrapper.sidebar-wrapper--left { position: static; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-bottom: 32px; padding-right: 0px; padding-bottom: 16px; border-bottom: 1px solid rgba(0, 0, 0, 0.08); border-right-style: none; } .sidebar-section { margin-bottom: 16px; } .sub-section.tabs-section { -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto auto; grid-template-rows: auto auto; } .expand-block__trigger { padding-left: 0px; } .expand-block__content_inner { padding-right: 0px; padding-left: 0px; } .sidebar-link__wrapper { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; } .table { font-size: 12px; } .div-block-4 { display: none; } .page-nav { position: fixed; left: auto; top: 0%; right: -300px; bottom: 0%; z-index: 102; display: none; width: 300px; max-width: 90%; box-shadow: -2px 0 10px 0 rgba(0, 0, 0, 0.08); } .page-nav.webflow { right: 0px; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; } .page-nav__inner { position: relative; width: 100%; height: 100%; padding: 24px 16px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -ms-grid-row-align: stretch; align-self: stretch; -ms-grid-rows: -webkit-max-content; -ms-grid-rows: max-content; grid-template-rows: -webkit-max-content; grid-template-rows: max-content; } .page-nav__section-links { width: 100%; margin-left: 0px; padding-top: 0px; grid-auto-flow: row; grid-auto-columns: 100%; grid-row-gap: 8px; -ms-grid-columns: 100%; grid-template-columns: 100%; } .page-nav__link { width: 100%; margin-right: 0px; background-color: rgba(0, 0, 0, 0.04); } .page-nav__link:hover { background-color: rgba(0, 0, 0, 0.08); } .page-nav__link:active { background-color: rgba(165, 43, 48, 0.16); } .page-nav__link.w--current { background-color: rgba(165, 43, 48, 0.16); } .page-nav__icon { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; } .section__link { top: -24px; } .profile-metrics__block { padding: 8px 10px; } .layout-grid__col.layout-grid__col--padding-left { padding-top: 24px; padding-left: 0px; } .layout-grid__col.layout-grid__col--border-right { border-bottom: 1px solid rgba(0, 0, 0, 0.08); border-right-style: none; } .layout-grid__col.layout-grid__col--border-top { border-bottom: 1px solid rgba(0, 0, 0, 0.08); border-right-style: none; } .layout-grid__col.layout-grid__col--border-left { border-top: 1px solid rgba(0, 0, 0, 0.08); border-left-style: none; } .icon-label-dropdown { padding-left: 0px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto auto; grid-template-rows: auto auto; } .heading--item-right { -ms-grid-columns: 1fr; grid-template-columns: 1fr; } .section-header.section-header--clear.section-header--icon-left.section-header--info-right { grid-row-gap: 8px; -ms-grid-columns: -webkit-max-content 1fr; -ms-grid-columns: max-content 1fr; grid-template-columns: -webkit-max-content 1fr; grid-template-columns: max-content 1fr; } .section-header.section-header--underline.section-header--item-right { grid-row-gap: 8px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; } .audit-outcome { padding: 16px; } .audit-outcome.audit-outcome--summary { padding: 16px; } .icon-label-dropdown__inner { padding-top: 6px; padding-bottom: 6px; padding-left: 8px; } .table-row { padding-right: 0px; padding-left: 0px; } .table-row.table-row--2-col-value-right { grid-column-gap: 8px; -ms-grid-columns: minmax(100px, 75%) 25%; grid-template-columns: minmax(100px, 75%) 25%; } .table-row.table-row__header { font-size: 14px; } .table-row.table-row--2-col-value-right-with-icon { -ms-grid-columns: auto 140px 24px; grid-template-columns: auto 140px 24px; } .table-col.table-col--border-right { padding-right: 12px; } .table-footer { font-size: 14px; } .tutorial-video__main { height: 240px; padding: 16px; } .video-lightbox__label { font-size: 12px; } .tutorial-video__alt-languages { position: static; padding-right: 16px; padding-bottom: 0px; padding-left: 0px; font-size: 12px; } .tutorial-video__language { padding: 6px 8px; background-color: #4d4d4d; color: #fff; } .page-nav__trigger { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; } .page-nav__menu { position: fixed; left: auto; top: 0%; right: 0%; bottom: 0%; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 300px; height: 100vh; max-width: 90%; padding-top: 84px; -webkit-box-flex: 0; -webkit-flex: 0 auto; -ms-flex: 0 auto; flex: 0 auto; } .page-options__link { width: 100%; margin-top: 8px; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; } .page-options__link.w--current { background-color: rgba(165, 43, 48, 0.16); } .page-options__icon { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; } .page-nav__options-links { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; margin-left: 0px; justify-items: start; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; grid-auto-flow: row; grid-auto-columns: 100%; -ms-grid-columns: 100%; grid-template-columns: 100%; } .hero-search { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; } .hero-search.nav-search--mobile { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; } .paragraph-large { font-size: 14px; } .home-hero__inner { width: 100%; } .cta-block { padding: 24px; } .cta-block__image-left { width: 50%; } .page-nav__muni-name { display: block; font-size: 18px; font-weight: 500; } .page-nav__muni-type { display: block; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid rgba(0, 0, 0, 0.08); color: grey; font-size: 12px; } .page-options__label { display: block; } .highlight-block { padding: 16px; } .highlight-block__inner { grid-row-gap: 16px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: -webkit-max-content auto; -ms-grid-rows: max-content auto; grid-template-rows: -webkit-max-content auto; grid-template-rows: max-content auto; } .highlight-block__icon { height: 32px; } } @media screen and (max-width: 479px) { h1 { font-size: 28px; } .container { padding-right: 16px; padding-left: 16px; } .section.section--hero { min-height: 180px; } .layout-grid.layout-grid--4-col { grid-column-gap: 16px; grid-row-gap: 16px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; } .page-nav { display: none; max-width: 80%; } .section-header.section-header--underline.section-header--item-right { -ms-grid-columns: 1fr; grid-template-columns: 1fr; } .audit-outcome.audit-outcome--summary { -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; } .audit-outcome__icons.audit-outcome--summary { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-align-self: flex-start; -ms-flex-item-align: start; align-self: flex-start; } .audit-outcome__inner { margin-top: 8px; margin-left: 0px; } .table-row.table-row--2-col-value-right-with-icon { -ms-grid-columns: auto 110px 24px; grid-template-columns: auto 110px 24px; } .table-footer { -ms-grid-columns: 1fr; grid-template-columns: 1fr; } .home-map__inner { margin-top: -40px; } .hero-search__wrap { -ms-grid-columns: 1fr; grid-template-columns: 1fr; } .home-map__title { padding-top: 4px; padding-bottom: 4px; font-size: 16px; } } #w-node-b6481327a004-501c5c19 { -webkit-box-ordinal-group: -9998; -webkit-order: -9999; -ms-flex-order: -9999; order: -9999; } #w-node-b6481327a007-501c5c19 { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-4db17d075bb2-501c5c19 { -webkit-align-self: center; -ms-flex-item-align: center; -ms-grid-row-align: center; align-self: center; } #w-node-7ad7223a4871-501c5c19 { -webkit-box-ordinal-group: -9998; -webkit-order: -9999; -ms-flex-order: -9999; order: -9999; } #w-node-3df19d1689bb-501c5c19 { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-12d9c7607429-501c5c19 { -ms-grid-column-align: stretch; justify-self: stretch; } #w-node-12d9c7607435-501c5c19 { -ms-grid-column-align: stretch; justify-self: stretch; } #w-node-08d68630fc3e-8630fc3e { -webkit-box-ordinal-group: -9998; -webkit-order: -9999; -ms-flex-order: -9999; order: -9999; } #w-node-08d68630fc41-8630fc3e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-d7309853ccab-9853ccab { -webkit-box-ordinal-group: -9998; -webkit-order: -9999; -ms-flex-order: -9999; order: -9999; } #w-node-d7309853ccae-9853ccab { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-0c6d18356ae9-18356ae7 { -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; } #w-node-a2e6e9d831a0-e9d8319d { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-a2e6e9d831e8-e9d8319d { -ms-grid-column: span 2; grid-column-start: span 2; -ms-grid-column-span: 2; grid-column-end: span 2; } #w-node-a2e6e9d831ed-e9d8319d { -ms-grid-column: span 2; grid-column-start: span 2; -ms-grid-column-span: 2; grid-column-end: span 2; } #w-node-133d4c7ba194-4c7ba190 { -webkit-align-self: center; -ms-flex-item-align: center; -ms-grid-row-align: center; align-self: center; -ms-grid-column-align: start; justify-self: start; } #w-node-133d4c7ba1a7-4c7ba190 { -ms-grid-column-align: end; justify-self: end; } #w-node-5acb3e7e720d-121c5c1b { -webkit-align-self: center; -ms-flex-item-align: center; -ms-grid-row-align: center; align-self: center; -ms-grid-column-align: start; justify-self: start; } #w-node-242411ec71cc-121c5c1b { -ms-grid-column-align: end; justify-self: end; } #w-node-52567e6c1f52-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-52567e6c1f59-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 2; grid-column-start: span 2; -ms-grid-column-span: 2; grid-column-end: span 2; } #w-node-52567e6c1f67-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 2; grid-column-start: span 2; -ms-grid-column-span: 2; grid-column-end: span 2; } #w-node-52567e6c1f73-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 2; grid-column-start: span 2; -ms-grid-column-span: 2; grid-column-end: span 2; } #w-node-52567e6c1f7e-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 2; grid-column-start: span 2; -ms-grid-column-span: 2; grid-column-end: span 2; } #w-node-52567e6c1f88-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 2; grid-column-start: span 2; -ms-grid-column-span: 2; grid-column-end: span 2; } #w-node-52567e6c1f93-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 2; grid-column-start: span 2; -ms-grid-column-span: 2; grid-column-end: span 2; } #w-node-52567e6c1fb3-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-52567e6c1fc4-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-52567e6c1fe6-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-52567e6c1ff7-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-52567e6c201a-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-52567e6c202d-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-52567e6c2050-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-52567e6c2063-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-52567e6c207e-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-52567e6c2085-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-52567e6c20ad-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-52567e6c20c0-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-52567e6c20e2-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-52567e6c20fb-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-52567e6c211d-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-52567e6c212e-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-52567e6c2151-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-52567e6c2164-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-52567e6c2186-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-52567e6c2197-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-5748d825feeb-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-5748d825fef5-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-98a4e7a85f83-121c5c1b { -webkit-box-ordinal-group: -9998; -webkit-order: -9999; -ms-flex-order: -9999; order: -9999; } #w-node-98a4e7a85f86-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-98a4e7a85f88-121c5c1b { -webkit-box-ordinal-group: -9998; -webkit-order: -9999; -ms-flex-order: -9999; order: -9999; } #w-node-98a4e7a85f8b-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-9f00652ed460-652ed45a { -webkit-align-self: center; -ms-flex-item-align: center; -ms-grid-row-align: center; align-self: center; } #w-node-b73a9fe7aaf3-f51c5c1c { -ms-grid-column-align: stretch; justify-self: stretch; } #w-node-b73a9fe7aaff-f51c5c1c { -ms-grid-column-align: stretch; justify-self: stretch; } #w-node-fdfc8001be0b-201c5c1d { -ms-grid-column-align: stretch; justify-self: stretch; } #w-node-fdfc8001be17-201c5c1d { -ms-grid-column-align: stretch; justify-self: stretch; } #w-node-332542d0088c-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-17003541d290-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-3f6650fe079e-b71c5c1e { -webkit-box-ordinal-group: -9998; -webkit-order: -9999; -ms-flex-order: -9999; order: -9999; } #w-node-b01f7852b163-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-09a0e8c9c610-b71c5c1e { -webkit-box-ordinal-group: -9998; -webkit-order: -9999; -ms-flex-order: -9999; order: -9999; } #w-node-09a0e8c9c613-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-ecdf5e07da7b-b71c5c1e { -webkit-box-ordinal-group: -9998; -webkit-order: -9999; -ms-flex-order: -9999; order: -9999; } #w-node-ecdf5e07da7e-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-b183081dce86-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-bd0501ae0838-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 2; grid-column-start: span 2; -ms-grid-column-span: 2; grid-column-end: span 2; } #w-node-7ee055317fb9-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 2; grid-column-start: span 2; -ms-grid-column-span: 2; grid-column-end: span 2; } #w-node-eca7e872adb6-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 2; grid-column-start: span 2; -ms-grid-column-span: 2; grid-column-end: span 2; } #w-node-6f7436277fbf-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 2; grid-column-start: span 2; -ms-grid-column-span: 2; grid-column-end: span 2; } #w-node-d7bb64db2d22-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 2; grid-column-start: span 2; -ms-grid-column-span: 2; grid-column-end: span 2; } #w-node-8f735fd51abb-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 2; grid-column-start: span 2; -ms-grid-column-span: 2; grid-column-end: span 2; } #w-node-f0cd4c84fe05-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-2884925a60a1-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-231826fa8af5-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-231826fa8b01-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-c4d344a87936-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-c4d344a87942-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-018c941f40d3-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-018c941f40df-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-bdea92a8c253-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-bdea92a8c25a-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-09b1705c207d-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-09b1705c2089-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-c26b5c417209-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-c26b5c417215-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-2f110018504e-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-2f110018505a-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-abbebfa2a1d6-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-abbebfa2a1e2-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-f0ac6bee84dc-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-f0ac6bee84e8-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-1bdd81590a68-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-c952cb9a7d3e-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-c952cb9a7d4a-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-5253af290693-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-5253af29069f-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-6c67f2a83113-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-c4def8d3bc43-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-8e05e2ad3cdb-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-7039fef01e03-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-bf62ae30caef-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-8a250d11f34d-b71c5c1e { -ms-grid-column-align: stretch; justify-self: stretch; } #w-node-8a250d11f359-b71c5c1e { -ms-grid-column-align: stretch; justify-self: stretch; } #w-node-c95744d297ba-b71c5c1e { -ms-grid-column-span: 1; grid-column-end: 2; -ms-grid-column: 1; grid-column-start: 1; -ms-grid-row-span: 1; grid-row-end: 2; -ms-grid-row: 1; grid-row-start: 1; -ms-grid-row-align: start; align-self: start; } #w-node-c95744d297c4-b71c5c1e { -ms-grid-column-span: 1; grid-column-end: 3; -ms-grid-column: 2; grid-column-start: 2; -ms-grid-row-span: 1; grid-row-end: 2; -ms-grid-row: 1; grid-row-start: 1; } #w-node-c95744d297d0-b71c5c1e { -webkit-align-self: center; -ms-flex-item-align: center; -ms-grid-row-align: center; align-self: center; } #w-node-c95744d297ed-b71c5c1e { -webkit-align-self: center; -ms-flex-item-align: center; -ms-grid-row-align: center; align-self: center; } #w-node-c95744d2980a-b71c5c1e { -webkit-align-self: center; -ms-flex-item-align: center; -ms-grid-row-align: center; align-self: center; } #w-node-e706fee7d0d3-551c5c1f { -ms-grid-column-align: stretch; justify-self: stretch; } #w-node-e706fee7d0df-551c5c1f { -ms-grid-column-align: stretch; justify-self: stretch; } #w-node-e706fee7d0d3-1f2243b1 { -ms-grid-column-align: stretch; justify-self: stretch; } #w-node-e706fee7d0df-1f2243b1 { -ms-grid-column-align: stretch; justify-self: stretch; } @media screen and (max-width: 991px) { #w-node-a2e6e9d831a0-e9d8319d { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 2; grid-column-start: span 2; -ms-grid-column-span: 2; grid-column-end: span 2; } #w-node-a2e6e9d831c1-e9d8319d { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 2; grid-column-start: span 2; -ms-grid-column-span: 2; grid-column-end: span 2; } #w-node-a2e6e9d831ce-e9d8319d { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 2; grid-column-start: span 2; -ms-grid-column-span: 2; grid-column-end: span 2; } #w-node-5748d825feeb-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-332542d0088c-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-c95744d297ba-b71c5c1e { -ms-grid-column-span: 3; grid-column-end: 3; } #w-node-c95744d297c4-b71c5c1e { -ms-grid-column: 1; grid-column-start: 1; -ms-grid-row: 2; grid-row-start: 2; } } @media screen and (max-width: 767px) { #w-node-133d4c7ba1c8-4c7ba190 { -ms-grid-column-align: end; justify-self: end; } #w-node-522402cd09b3-121c5c1b { -ms-grid-column-align: end; justify-self: end; } #w-node-5748d825fef0-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 2; grid-column-start: span 2; -ms-grid-column-span: 2; grid-column-end: span 2; } #w-node-d95600f53877-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 2; grid-column-start: span 2; -ms-grid-column-span: 2; grid-column-end: span 2; } #w-node-ec500838a616-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-c95744d297c4-b71c5c1e { -ms-grid-column: 1; grid-column-start: 1; -ms-grid-column-span: 2; grid-column-end: 3; -ms-grid-row: 2; grid-row-start: 2; -ms-grid-row-span: 1; grid-row-end: 3; } } @media screen and (max-width: 479px) { #w-node-b6481327a003-501c5c19 { -ms-grid-column-align: start; justify-self: start; } }
webflow/static/webflow/css/municipalmoney.css
body { 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; font-family: Rubik, sans-serif; color: #4d4d4d; font-size: 14px; line-height: 1.4; } h1 { margin-top: 20px; margin-bottom: 10px; color: #000; font-size: 38px; line-height: 1; font-weight: 400; } h2 { margin-top: 20px; margin-bottom: 10px; color: #000; font-size: 28px; font-weight: 700; } h3 { margin-top: 20px; margin-bottom: 10px; color: #000; font-size: 22px; line-height: 1.2; font-weight: 500; } h4 { margin-top: 10px; margin-bottom: 10px; font-size: 18px; line-height: 1.2; font-weight: 500; } h5 { margin-top: 10px; margin-bottom: 10px; } h6 { margin-top: 10px; margin-bottom: 10px; color: grey; font-size: 12px; line-height: 1.2; font-weight: 400; } p { margin-bottom: 10px; } a { color: #a52b30; text-decoration: underline; } ul { margin-top: 0px; margin-bottom: 0px; padding-left: 30px; } ol { margin-top: 0px; margin-bottom: 10px; padding-left: 30px; } li { margin-bottom: 10px; padding-left: 10px; } img { display: inline-block; max-width: 100%; margin-top: 16px; margin-bottom: 16px; } figure { margin-bottom: 10px; } .nav { position: fixed; left: 0%; top: 0%; right: 0%; bottom: auto; z-index: 100; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; height: 60px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; background-color: #fff; } .container { position: relative; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; max-width: 1170px; margin-right: auto; margin-left: auto; padding-right: 24px; padding-left: 24px; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; } .container.container--grid { display: -ms-grid; display: grid; grid-auto-columns: 1fr; grid-column-gap: 48px; grid-row-gap: 48px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .container.container--position-none { position: static; } .container.container--position-none.container--align-top { -webkit-align-self: flex-start; -ms-flex-item-align: start; align-self: flex-start; } .container.container--underline { padding-bottom: 64px; border-bottom: 1px solid rgba(0, 0, 0, 0.08); } .navigation { height: 60px; } .div-block-2 { height: 380px; background-color: #fff; } .nav-inner { display: -ms-grid; display: grid; height: 44px; margin-top: auto; margin-bottom: auto; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; grid-auto-columns: 1fr; grid-column-gap: 8px; -ms-grid-columns: -webkit-max-content auto -webkit-min-content; -ms-grid-columns: max-content auto min-content; grid-template-columns: -webkit-max-content auto -webkit-min-content; grid-template-columns: max-content auto min-content; -ms-grid-rows: auto; grid-template-rows: auto; } .nav-logo { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-top: 0px; margin-bottom: 0px; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; flex: 0 0 auto; color: #a52b30; } .nav-items { display: -ms-grid; display: grid; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; grid-auto-flow: column; grid-auto-columns: -webkit-max-content; grid-auto-columns: max-content; grid-column-gap: 8px; -ms-grid-columns: -webkit-max-content; -ms-grid-columns: max-content; grid-template-columns: -webkit-max-content; grid-template-columns: max-content; -ms-grid-rows: auto; grid-template-rows: auto; } .nav-search { position: relative; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: end; -webkit-justify-content: flex-end; -ms-flex-pack: end; justify-content: flex-end; } .nav-search.nav-search--mobile { margin-bottom: 16px; } .nav-search.webflow { width: 300px; } .nav-link { position: relative; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; height: 44px; padding-right: 12px; padding-left: 12px; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; flex: 0 0 auto; color: #4d4d4d; line-height: 100%; text-decoration: none; } .nav-link:hover { color: #000; } .nav-link.w--current { color: #a52b30; } .nav-link.nav-link--mobile { height: 36px; margin-right: 0px; margin-left: 0px; padding-right: 10px; padding-left: 10px; } .nav-link.hidden { display: none; } .home-link { position: relative; z-index: 1; 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; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; text-decoration: none; } .nav-search__menu { position: absolute; left: 0%; right: 0%; bottom: auto; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; overflow: hidden; height: 0px; opacity: 0; -webkit-transition: all 400ms ease; transition: all 400ms ease; } .nav-search__menu.visible { overflow: visible; height: 450px; opacity: 1; } .link-text { position: relative; } .link-text.link-text--site-nav { -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; flex: 0 0 auto; } .plate { position: absolute; left: 0%; top: 0%; right: 0%; bottom: 0%; background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)); background-image: linear-gradient(180deg, transparent, transparent); background-position: 0px 0px; background-size: auto; -webkit-transition: background-color 200ms ease; transition: background-color 200ms ease; } .plate.plate--shadow-large { box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.12); } .plate.plate--rounded { border-radius: 4px; } .plate.plate--rounded.plate--hover-blue:hover { background-image: -webkit-gradient(linear, left top, left bottom, from(#a52b30), to(#a52b30)), -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)); background-image: linear-gradient(180deg, #a52b30, #a52b30), linear-gradient(180deg, transparent, transparent); opacity: 0.1; } .plate.plate--shadow { box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.12); } .plate.plate--black-trans-4 { background-image: -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)), -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)); background-image: linear-gradient(180deg, #000, #000), linear-gradient(180deg, transparent, transparent); opacity: 0.04; } .plate.plate--black-trans-4:hover { opacity: 0.08; } .plate.plate--black-trans-4.plate--no-hover:hover { opacity: 0.04; } .plate.plate--white { background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)), -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)); background-image: linear-gradient(180deg, #fff, #fff), linear-gradient(180deg, transparent, transparent); background-position: 0px 0px, 0px 0px; background-size: auto, auto; } .plate.plate--hover-grey:hover { background-image: -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)), -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)); background-image: linear-gradient(180deg, #000, #000), linear-gradient(180deg, transparent, transparent); opacity: 0.04; } .plate.plate--black-4.plate--no-hover { background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#f5f5f5)), -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)); background-image: linear-gradient(180deg, #f5f5f5, #f5f5f5), linear-gradient(180deg, transparent, transparent); background-position: 0px 0px, 0px 0px; background-size: auto, auto; } .plate.plate--black-4.plate--no-hover:hover { background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#f5f5f5)), -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)); background-image: linear-gradient(180deg, #f5f5f5, #f5f5f5), linear-gradient(180deg, transparent, transparent); background-position: 0px 0px, 0px 0px; background-size: auto, auto; } .plate.plate--gradient { background-image: -webkit-gradient(linear, left top, left bottom, from(#a52b30), to(#791719)), -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)); background-image: linear-gradient(180deg, #a52b30, #791719), linear-gradient(180deg, transparent, transparent); background-position: 0px 0px, 0px 0px; background-size: auto, auto; } .plate.plate--dots { background-image: url('../images/subtle_dots_white_trans2X_1subtle_dots_white_trans@2X.png'), -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)); background-image: url('../images/subtle_dots_white_trans2X_1subtle_dots_white_trans@2X.png'), linear-gradient(180deg, transparent, transparent); background-position: 0px 0px, 0px 0px; background-size: 27px, auto; } .plate.plate--dots.plate--gradient { background-image: url('../images/subtle_dots_white_trans2X_1subtle_dots_white_trans@2X.png'), -webkit-gradient(linear, left top, left bottom, from(#a52b30), to(#791719)), -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)); background-image: url('../images/subtle_dots_white_trans2X_1subtle_dots_white_trans@2X.png'), linear-gradient(180deg, #a52b30, #791719), linear-gradient(180deg, transparent, transparent); background-position: 0px 0px, 0px 0px, 0px 0px; background-size: 27px, auto, auto; } .plate.plate--primary { background-image: -webkit-gradient(linear, left top, left bottom, from(#a52b30), to(#a52b30)), -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)); background-image: linear-gradient(180deg, #a52b30, #a52b30), linear-gradient(180deg, transparent, transparent); background-position: 0px 0px, 0px 0px; background-size: auto, auto; } .plate.plate--round { border-radius: 100px; } .plate.plate--black-4 { background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#f5f5f5)), -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)); background-image: linear-gradient(180deg, #f5f5f5, #f5f5f5), linear-gradient(180deg, transparent, transparent); background-position: 0px 0px, 0px 0px; background-size: auto, auto; } .plate.plate--black-4:hover { background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.08)), to(rgba(0, 0, 0, 0.08))), -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)); background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08)), linear-gradient(180deg, transparent, transparent); background-position: 0px 0px, 0px 0px; background-size: auto, auto; } .plate.plate--black-8 { background-image: -webkit-gradient(linear, left top, left bottom, from(#ebebeb), to(#ebebeb)), -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)); background-image: linear-gradient(180deg, #ebebeb, #ebebeb), linear-gradient(180deg, transparent, transparent); background-position: 0px 0px, 0px 0px; background-size: auto, auto; } .plate.plate--shadow-medium { box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.08); } .plate.plate--status-green { background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 166, 81, 0.1)), to(rgba(0, 166, 81, 0.1))), -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)); background-image: linear-gradient(180deg, rgba(0, 166, 81, 0.1), rgba(0, 166, 81, 0.1)), linear-gradient(180deg, transparent, transparent); background-position: 0px 0px, 0px 0px; background-size: auto, auto; } .plate.plate--status-yellow { background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(251, 176, 59, 0.1)), to(rgba(251, 176, 59, 0.1))), -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)); background-image: linear-gradient(180deg, rgba(251, 176, 59, 0.1), rgba(251, 176, 59, 0.1)), linear-gradient(180deg, transparent, transparent); background-position: 0px 0px, 0px 0px; background-size: auto, auto; } .plate.plate--status-red { background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(237, 28, 36, 0.1)), to(rgba(237, 28, 36, 0.1))), -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)); background-image: linear-gradient(180deg, rgba(237, 28, 36, 0.1), rgba(237, 28, 36, 0.1)), linear-gradient(180deg, transparent, transparent); background-position: 0px 0px, 0px 0px; background-size: auto, auto; } .plate.plate--black-2 { background-image: -webkit-gradient(linear, left top, left bottom, from(#fafafa), to(#fafafa)), -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)); background-image: linear-gradient(180deg, #fafafa, #fafafa), linear-gradient(180deg, transparent, transparent); background-position: 0px 0px, 0px 0px; background-size: auto, auto; } .plate.plate--primary-trans-4 { background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(66, 133, 244, 0.04)), to(rgba(66, 133, 244, 0.04))), -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)); background-image: linear-gradient(180deg, rgba(66, 133, 244, 0.04), rgba(66, 133, 244, 0.04)), linear-gradient(180deg, transparent, transparent); background-position: 0px 0px, 0px 0px; background-size: auto, auto; } .components { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; } .components.hidden { display: none; } .components-buttons { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; padding-top: 24px; padding-bottom: 24px; } .components-plates { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; padding-top: 23px; padding-bottom: 23px; } .components__wrapper { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; } .component-block { position: relative; width: 44px; height: 44px; margin: 16px; } .components-swatches { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; padding-top: 24px; padding-bottom: 24px; } .component-swatch { width: 100%; height: 100%; } .component-swatch.primary { background-color: #a52b30; } .component-swatch.primary--brighter { background-color: #59cdff; } .nav-search___input { position: relative; z-index: 1; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-bottom: 0px; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; } .search-input__field { position: relative; z-index: 1; width: 200px; height: 100%; margin-bottom: 0px; padding-right: 12px; padding-left: 40px; border: 1px solid transparent; border-radius: 6px; background-color: transparent; -webkit-transition: width 200ms ease; transition: width 200ms ease; } .search-input__field:hover { border-color: #a52b30; } .search-input__field:focus { width: 300px; border-color: #a52b30; } .search-input__field::-webkit-input-placeholder { color: #4d4d4d; } .search-input__field:-ms-input-placeholder { color: #4d4d4d; } .search-input__field::-ms-input-placeholder { color: #4d4d4d; } .search-input__field::placeholder { color: #4d4d4d; } .search-input__field.search-input__field--mobile { -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; } .search-input__field.search-input__field--hero { width: 100%; box-shadow: 0 10px 20px -7px rgba(0, 0, 0, 0.16); -webkit-transition: box-shadow 200ms ease, width 200ms ease; transition: box-shadow 200ms ease, width 200ms ease; } .search-input__field.search-input__field--hero:focus { box-shadow: none; } .search-input { position: relative; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; height: 44px; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; border-radius: 4px; -webkit-transition: all 400ms ease; transition: all 400ms ease; } .search-input:hover { background-color: rgba(0, 0, 0, 0.04); } .search-input__icon { position: absolute; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 32px; height: 100%; -webkit-box-pack: end; -webkit-justify-content: flex-end; -ms-flex-pack: end; justify-content: flex-end; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; color: #a52b30; } .fas { height: auto; } .menu-items { position: relative; display: -ms-grid; display: grid; margin-right: 4px; margin-bottom: 4px; padding: 6px 6px 8px 10px; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; grid-auto-columns: 1fr; grid-auto-rows: -webkit-min-content; grid-auto-rows: min-content; grid-row-gap: 8px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: -webkit-min-content -webkit-min-content; -ms-grid-rows: min-content min-content; grid-template-rows: -webkit-min-content -webkit-min-content; grid-template-rows: min-content min-content; } .small-heading { margin-top: 0px; margin-bottom: 0px; } .small-heading.small-heading--mobile-only { display: none; } .menu-items__inner { display: -ms-grid; display: grid; margin-bottom: 8px; grid-auto-columns: 1fr; grid-row-gap: 6px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .link { position: relative; display: -ms-grid; display: grid; min-height: 36px; padding: 6px 10px; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; grid-auto-columns: 1fr; grid-column-gap: 8px; grid-row-gap: 0px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto; grid-template-rows: auto; color: #4d4d4d; text-decoration: none; } .link.link--with-chip { -ms-grid-columns: 1fr auto; grid-template-columns: 1fr auto; } .link.link--inline { margin-right: 8px; margin-bottom: 8px; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; flex: 0 0 auto; } .chip { position: relative; padding: 5px 4px; border-radius: 3px; background-color: rgba(0, 0, 0, 0.04); font-size: 11px; line-height: 1; } .nav-search__menu_panel { position: absolute; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; height: 100%; padding-top: 52px; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; flex: 0 0 auto; -webkit-transition: opacity 200ms ease; transition: opacity 200ms ease; } .nav-search__menu_panel.visible { z-index: 100; opacity: 1; } .nav-search__menu_panel.hidden { opacity: 0; } .nav-search__menu_panels { position: relative; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; overflow: hidden; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; } .nav-mobile { position: relative; display: none; grid-auto-flow: column; grid-auto-columns: 1fr; -ms-grid-columns: -webkit-min-content -webkit-min-content; -ms-grid-columns: min-content min-content; grid-template-columns: -webkit-min-content -webkit-min-content; grid-template-columns: min-content min-content; -ms-grid-rows: auto; grid-template-rows: auto; } .icon { position: relative; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 44px; height: 100%; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; flex: 0 0 auto; font-size: 28px; text-decoration: none; } .icon.icon--m-8px { margin-right: 8px; margin-bottom: 8px; } .icon.icon--32px { width: 32px; height: 32px; } .icon.icon--primary { color: #a52b30; } .icon.icon--16px { width: 16px; font-size: 16px; } .icon.icon--margin-right-8px { margin-right: 8px; } .components-icons { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; padding-top: 24px; padding-bottom: 24px; } .div-block-3 { height: 200vh; background-image: -webkit-gradient(linear, left top, left bottom, from(#a52b30), to(#1500ff)); background-image: linear-gradient(180deg, #a52b30, #1500ff); } .mobile-menu { position: fixed; left: 0%; top: 0%; right: auto; bottom: 0%; z-index: 99; display: none; width: 300px; padding-top: 84px; padding-bottom: 32px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; } .menu-footer { display: -ms-grid; display: grid; padding-top: 16px; padding-right: 16px; padding-left: 16px; grid-auto-columns: 1fr; grid-row-gap: 16px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto auto; grid-template-rows: auto auto; } .menu-footer__links { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-bottom: -8px; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; } .menu-footer__social { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; } .fab { height: auto; } .mobile-menu__toggle { position: relative; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 44px; height: 44px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; font-size: 16px; } .mobile-menu__open-icon { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 44px; height: 44px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; flex: 0 0 auto; } .mobile-menu__close-icon { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 44px; height: 44px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; flex: 0 0 auto; } .mobile-search__toggle { position: relative; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 44px; height: 44px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; font-size: 16px; } .mobile-search__open-icon { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 44px; height: 44px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; flex: 0 0 auto; } .mobile-search__close-icon { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 44px; height: 44px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; flex: 0 0 auto; } .mobile-search { position: fixed; left: 0%; top: 0%; right: auto; bottom: 0%; z-index: 99; display: none; width: 300px; padding-top: 84px; padding-bottom: 32px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; } .mobile-search.webflow { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; } .info-block { position: relative; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; min-height: 36px; padding: 6px 10px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; color: #b3b3b3; text-align: center; } .info-block.hidden { display: none; } .loading-gif { position: relative; z-index: 1; width: 36px; height: 36px; } .components-elements { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; padding-top: 24px; padding-bottom: 24px; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; } .loading-block { position: relative; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; min-height: 36px; padding: 6px 10px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; color: #b3b3b3; } .loading-block.hidden { display: none; } .menu-close { position: fixed; left: 0%; top: 0%; right: 0%; bottom: 0%; z-index: 98; } .section { position: relative; z-index: 1; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; padding-bottom: 64px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .section.section--hero { position: relative; min-height: 200px; padding-top: 64px; padding-bottom: 64px; color: #fff; } .section.section--map { z-index: 1; height: 350px; padding-top: 20px; padding-bottom: 20px; -webkit-box-align: stretch; -webkit-align-items: stretch; -ms-flex-align: stretch; align-items: stretch; } .section.section--grey { background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.04)), to(rgba(0, 0, 0, 0.04))); background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.04)); background-position: 0px 0px; background-size: auto; } .section.section--padding-top { padding-top: 64px; } .section.section--bg-image { overflow: hidden; min-height: 350px; } .section.section--last { padding-bottom: 128px; } .section.section--home-hero { z-index: 97; padding-top: 96px; padding-bottom: 96px; } .section.section--home-map { z-index: 1; height: 500px; padding-top: 20px; padding-bottom: 20px; -webkit-box-align: stretch; -webkit-align-items: stretch; -ms-flex-align: stretch; align-items: stretch; } .section.section--no-padding-bottom { padding-bottom: 0px; } .section.section--padding-bottom-more { padding-bottom: 90px; } .page-heading__title { margin-top: 0px; margin-bottom: 0px; padding: 6px 12px; border-radius: 4px; background-color: #000; box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.12); color: #fff; } .dummy-block { height: 300vh; } .layout-grid { display: -ms-grid; display: grid; width: 100%; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; grid-auto-flow: row; grid-auto-columns: 1fr; grid-column-gap: 32px; grid-row-gap: 32px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .layout-grid.layout-grid--sidebar-right { -webkit-box-align: start; -webkit-align-items: start; -ms-flex-align: start; align-items: start; -ms-grid-columns: 1fr 25%; grid-template-columns: 1fr 25%; } .layout-grid.layout-grid--1-4-3-4 { -webkit-box-align: start; -webkit-align-items: start; -ms-flex-align: start; align-items: start; -ms-grid-columns: 25% 1fr; grid-template-columns: 25% 1fr; } .layout-grid.layout-grid--4-col { -ms-grid-columns: 1fr 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr 1fr; } .layout-grid.layout-grid--1-3-2-3 { -ms-grid-columns: 33.3333333333% 1fr; grid-template-columns: 33.3333333333% 1fr; } .layout-grid.layout-grid--1-3-2-3.layout-grid--income { -ms-grid-rows: auto auto; grid-template-rows: auto auto; } .layout-grid.layout-grid--1-4-3-4 { -ms-grid-columns: 33.3333333333% 1fr; grid-template-columns: 33.3333333333% 1fr; } .layout-grid.layout-grid--3-col { -ms-grid-columns: 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr; } .layout-grid.layout-grid--6-col { -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr; } .layout-grid.layout-grid--align-top { -webkit-box-align: start; -webkit-align-items: start; -ms-flex-align: start; align-items: start; } .layout-grid.layout-grid--3-4-1-4 { -ms-grid-columns: 75% 1fr; grid-template-columns: 75% 1fr; } .layout-grid.layout-grid--2-col { -ms-grid-columns: 1fr 1fr; grid-template-columns: 1fr 1fr; } .layout-grid.layout-grid--align-center { -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .layout-grid.layout-grid--1-5-4-5 { -ms-grid-columns: 20% 1fr; grid-template-columns: 20% 1fr; } .layout-grid.layout-grid--2-3-1-3 { -ms-grid-columns: 1fr 33.3333333333%; grid-template-columns: 1fr 33.3333333333%; } .footer { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-top: auto; padding-top: 80px; padding-bottom: 80px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; background-color: rgba(0, 0, 0, 0.08); color: grey; } .sidebar-wrapper { position: -webkit-sticky; position: sticky; top: 120px; } .sidebar-wrapper.sidebar-wrapper--left { padding-right: 32px; border-right: 1px solid rgba(0, 0, 0, 0.08); } .sidebar { position: relative; margin-top: -16px; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; } .grid { display: -ms-grid; display: grid; width: 100%; -webkit-align-content: start; -ms-flex-line-pack: start; align-content: start; grid-auto-columns: 1fr; grid-column-gap: 0px; grid-row-gap: 0px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .grid.grid--8px { grid-column-gap: 12px; grid-row-gap: 8px; } .grid.grid--32px { grid-column-gap: 32px; grid-row-gap: 32px; } .grid.grid--16px { grid-column-gap: 16px; grid-row-gap: 16px; } .grid.grid--24px { grid-column-gap: 24px; grid-row-gap: 24px; } .grid.grid--48px { grid-column-gap: 48px; grid-row-gap: 48px; } .sidebar-link { position: relative; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; height: 36px; padding-right: 16px; padding-left: 16px; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; color: #4d4d4d; text-decoration: none; } .sidebar-link__label { position: relative; } .sidebar-heading { font-weight: 500; } .sidebar-section { margin-top: 16px; margin-bottom: 16px; } .sub-section { padding-bottom: 64px; } .sub-section.tabs-section { grid-row-gap: 32px; } .sub-section__link { position: relative; top: -94px; height: 0px; } .margin-none { margin-top: 0px; margin-bottom: 0px; } .margin-bottom--24px { margin-top: 0px; margin-bottom: 24px; } .section__heading { margin-top: 0px; margin-bottom: 0px; } .section__heading.margin-none { color: #a52b30; } .expand-block { position: relative; margin-bottom: -1px; border-top: 1px solid #ebebeb; border-bottom: 1px solid #ebebeb; -webkit-transition: border-color 200ms ease; transition: border-color 200ms ease; } .expand-block:hover { z-index: 1; border-top-color: #d6d6d6; border-bottom-color: #d6d6d6; color: #333; } .expand-block__trigger { position: relative; display: -ms-grid; display: grid; min-height: 44px; padding-left: 4px; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; grid-auto-columns: 1fr; grid-column-gap: 16px; grid-row-gap: 16px; -ms-grid-columns: 1fr -webkit-max-content; -ms-grid-columns: 1fr max-content; grid-template-columns: 1fr -webkit-max-content; grid-template-columns: 1fr max-content; -ms-grid-rows: auto; grid-template-rows: auto; -webkit-transition: color 200ms ease; transition: color 200ms ease; cursor: pointer; } .expand-block__trigger:hover { color: #000; } .expand-block__content { overflow: hidden; } .heading { margin-top: 12px; margin-bottom: 32px; padding-bottom: 24px; } .heading.heading--clear { margin-top: 0px; margin-bottom: 0px; padding-top: 0px; padding-bottom: 0px; } .heading.heading--underline { border-bottom: 1px solid rgba(0, 0, 0, 0.08); } .heading.heading--clear-top { margin-top: 0px; } .heading.heading--clear-bottom { margin-bottom: 0px; } .expand-block__trigger_icon { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; overflow: hidden; width: 44px; height: 100%; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .expand-block__trigger_icon.expand-block__trigger_icon--last { display: none; } .expand-block__content_inner { padding: 16px 4px 24px; } .expand-block__trigger_icon--first { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 44px; height: 44px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; flex: 0 0 auto; } .expand-block__trigger_icon--last { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 44px; height: 44px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; flex: 0 0 auto; } .sidebar-link__wrapper { display: -ms-grid; display: grid; grid-auto-columns: 1fr; grid-column-gap: 8px; grid-row-gap: 8px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .section-heading__wrapper { display: -ms-grid; display: grid; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; grid-auto-flow: column; grid-auto-columns: 1fr; grid-column-gap: 12px; grid-row-gap: 0px; -ms-grid-columns: -webkit-max-content 1fr; -ms-grid-columns: max-content 1fr; grid-template-columns: -webkit-max-content 1fr; grid-template-columns: max-content 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .section-heading__icon { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; height: 100%; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; color: #a52b30; font-size: 24px; } .profile-heading { position: relative; z-index: 1; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; padding-top: 32px; padding-bottom: 32px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; -webkit-align-self: flex-start; -ms-flex-item-align: start; align-self: flex-start; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; } .page-heading__muni-info { margin-top: 12px; padding: 4px 12px; border-radius: 4px; background-color: #fff; box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.12); color: #4d4d4d; } .page-heading__muni-info.page-heading__muni-info--local { display: none; } .page-heading__muni-info.page-heading__muni-info--district { display: none; } .page-heading__muni-info.page-heading__muni-info--metro { display: none; } .page-nav__trigger_label { position: relative; z-index: 1; overflow: hidden; padding-left: 18px; white-space: nowrap; } .content-sections__wrapper { display: -ms-grid; display: grid; grid-auto-flow: row; grid-auto-columns: 1fr; grid-column-gap: 16px; grid-row-gap: 48px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .table { position: relative; } .expand-block__heading { -webkit-transition: all 400ms cubic-bezier(.23, 1, .32, 1); transition: all 400ms cubic-bezier(.23, 1, .32, 1); } .expand-block__heading.expand-block__heading--large { font-size: 16px; } .cta { position: relative; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; } .div-block-4 { display: none; } .page-nav { position: -webkit-sticky; position: sticky; top: 60px; z-index: 99; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; } .page-nav__inner { z-index: 1; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; max-width: 1170px; margin-right: auto; margin-left: auto; padding-right: 24px; padding-left: 24px; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; align-self: center; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; grid-auto-columns: 1fr; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .page-nav__section-links { display: -ms-grid; display: grid; margin-right: -8px; margin-left: -8px; padding-top: 12px; padding-bottom: 8px; -webkit-box-pack: start; -webkit-justify-content: start; -ms-flex-pack: start; justify-content: start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; grid-auto-flow: column; grid-auto-columns: -webkit-max-content; grid-auto-columns: max-content; -ms-grid-columns: -webkit-max-content; -ms-grid-columns: max-content; grid-template-columns: -webkit-max-content; grid-template-columns: max-content; -ms-grid-rows: auto; grid-template-rows: auto; } .page-nav__link { position: relative; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; height: 36px; margin-right: 8px; padding-right: 12px; padding-left: 12px; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; flex: 0 0 auto; border-radius: 4px; background-color: rgba(0, 0, 0, 0.04); color: #666; line-height: 100%; text-decoration: none; } .page-nav__link:hover { border-right-color: transparent; background-color: rgba(0, 0, 0, 0.08); color: #000; } .page-nav__link.w--current { background-color: rgba(165, 43, 48, 0.16); color: #a52b30; } .page-nav__link.nav-link--mobile { height: 36px; margin-right: 0px; margin-left: 0px; padding-right: 10px; padding-left: 10px; } .page-nav__link.hidden { display: none; } .page-nav__icon { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 16px; margin-right: 8px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-align-self: stretch; -ms-flex-item-align: stretch; align-self: stretch; color: #a52b30; } .section__link { position: absolute; top: -120px; height: 100%; } .profile-map { position: absolute; left: 0%; top: 0%; right: 0%; bottom: 0%; background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.08)), to(rgba(0, 0, 0, 0.08))), url('../images/topography.png'); background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08)), url('../images/topography.png'); background-position: 0px 0px, 50% 50%; opacity: 1; } .profile-map.demo { background-image: url('../images/dummy-map-2.jpg'), -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.08)), to(rgba(0, 0, 0, 0.08))), url('../images/topography.png'); background-image: url('../images/dummy-map-2.jpg'), linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08)), url('../images/topography.png'); background-position: 0px 0px, 0px 0px, 50% 50%; background-size: cover, auto, auto; } .profile-metrics { z-index: 1; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; } .page-heading__subtitle_link { display: inline-block; -webkit-transition: color 200ms ease, background-color 200ms ease; transition: color 200ms ease, background-color 200ms ease; text-decoration: underline; } .page-heading__subtitle_link:hover { background-color: #fff; color: #a52b30; } .page-heading__subtitle_link:focus { background-color: #fff; color: #a52b30; } .profile-metrics__block { position: relative; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-right: 8px; margin-bottom: 8px; padding: 12px; color: #4d4d4d; } .profile-metric__label { position: relative; text-shadow: none; } .profile-metrics__wrapper { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; grid-auto-flow: column; grid-auto-columns: -webkit-max-content; grid-auto-columns: max-content; -ms-grid-columns: -webkit-max-content; -ms-grid-columns: max-content; grid-template-columns: -webkit-max-content; grid-template-columns: max-content; -ms-grid-rows: auto; grid-template-rows: auto; } .profile-info__inner { display: -ms-grid; display: grid; -webkit-box-align: start; -webkit-align-items: start; -ms-flex-align: start; align-items: start; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; grid-auto-columns: 1fr; grid-column-gap: 32px; grid-row-gap: 32px; -ms-grid-columns: 1fr 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .profile-info__item { position: relative; display: -ms-grid; display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; grid-column-gap: 12px; -ms-grid-columns: -webkit-max-content 1fr; -ms-grid-columns: max-content 1fr; grid-template-columns: -webkit-max-content 1fr; grid-template-columns: max-content 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .profile-item__item_icon { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 24px; padding-right: 8px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-right: 1px solid rgba(0, 0, 0, 0.08); } .profile-info__heading { margin-top: 8px; font-weight: 500; } .status-block { position: relative; padding: 16px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; } .status-block.status-block--green { background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(52, 168, 83, 0.1)), to(rgba(52, 168, 83, 0.1))); background-image: linear-gradient(180deg, rgba(52, 168, 83, 0.1), rgba(52, 168, 83, 0.1)); } .status-block.status-block--yellow { background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(251, 188, 5, 0.1)), to(rgba(251, 188, 5, 0.1))); background-image: linear-gradient(180deg, rgba(251, 188, 5, 0.1), rgba(251, 188, 5, 0.1)); } .status-block.status-block--red { background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(214, 40, 40, 0.1)), to(rgba(214, 40, 40, 0.1))); background-image: linear-gradient(180deg, rgba(214, 40, 40, 0.1), rgba(214, 40, 40, 0.1)); } .content-wrap { position: relative; z-index: 1; 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; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; } .content-wrap.content-wrap--align-center { -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .content-wrap.content-wrap--justify-center { text-align: center; } .audit-icon { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 44px; margin-right: 12px; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-right: 1px solid rgba(0, 0, 0, 0.08); font-size: 20px; } .audit-icon.audit-icon--green { color: #00a651; } .block { position: relative; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; padding: 24px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; } .button { position: relative; display: -ms-grid; display: grid; padding: 12px; grid-auto-columns: 1fr; grid-column-gap: 8px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto; grid-template-rows: auto; border-radius: 4px; background-color: rgba(0, 0, 0, 0.08); color: #4d4d4d; text-align: center; text-decoration: none; cursor: pointer; } .button:hover { background-color: rgba(0, 0, 0, 0.16); color: #000; } .button:active { background-color: rgba(165, 43, 48, 0.16); } .button:focus { background-color: rgba(0, 0, 0, 0.16); color: #000; } .button.button--align-left { justify-items: start; text-align: left; } .button.button--icon-left { -ms-grid-columns: -webkit-max-content 1fr; -ms-grid-columns: max-content 1fr; grid-template-columns: -webkit-max-content 1fr; grid-template-columns: max-content 1fr; } .button.button--icon-left.button--align-left.button--email-muni { display: none; } .button.button--icon-left.button--align-left.button--muni-site { display: none; } .button.button--icon-left.button--align-left.button--muni-address { display: none; } .button.button--icon-left.button--align-left.button--phone-muni { display: none; grid-auto-columns: 1fr; -ms-grid-columns: -webkit-max-content 1fr; -ms-grid-columns: max-content 1fr; grid-template-columns: -webkit-max-content 1fr; grid-template-columns: max-content 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .button.button--primary { background-color: #a52b30; -webkit-transition: all 200ms ease; transition: all 200ms ease; color: #fff; } .button.button--primary:hover { background-color: #791719; } .div-block-5 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-align: stretch; -webkit-align-items: stretch; -ms-flex-align: stretch; align-items: stretch; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; } .audit-status__title { margin-top: 0px; margin-bottom: 0px; } .audit-status__detail { margin-top: 0px; margin-bottom: 0px; font-weight: 400; } .layout-grid__col.layout-grid__col--padding-left { padding-left: 32px; } .layout-grid__col.layout-grid__col--padding-right { padding-right: 32px; } .layout-grid__col.layout-grid__col--padding-right.layout-grid__col--tabs-wrap { display: -ms-grid; display: grid; padding-right: 0px; -webkit-box-align: start; -webkit-align-items: start; -ms-flex-align: start; align-items: start; grid-auto-columns: 1fr; grid-row-gap: 8px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto auto; grid-template-rows: auto auto; } .layout-grid__col.layout-grid__col--border-right { border-right: 1px solid rgba(0, 0, 0, 0.08); } .layout-grid__col.layout-grid__col--padding-top { padding-top: 32px; } .layout-grid__col.layout-grid__col--padding-top.layout-grid__col--tabs-wrap { display: -ms-grid; display: grid; padding-right: 0px; -webkit-box-align: start; -webkit-align-items: start; -ms-flex-align: start; align-items: start; grid-auto-columns: 1fr; grid-row-gap: 8px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto auto; grid-template-rows: auto auto; } .layout-grid__col.layout-grid__col--border-top { border-top: 1px solid rgba(0, 0, 0, 0.08); } .layout-grid__col.layout-grid__col--v { 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; } .layout-grid__col.layout-grid__col--v.layout-grid__col--justify-center { -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; } .layout-grid__col.layout-grid__col--border-left { border-left: 1px solid rgba(0, 0, 0, 0.08); } .indicator-metric { position: relative; display: -ms-grid; display: grid; margin-bottom: 16px; padding: 12px 6px 12px 12px; grid-auto-columns: 1fr; grid-column-gap: 8px; -ms-grid-columns: 1fr -webkit-max-content; -ms-grid-columns: 1fr max-content; grid-template-columns: 1fr -webkit-max-content; grid-template-columns: 1fr max-content; -ms-grid-rows: auto; grid-template-rows: auto; border-radius: 4px; background-color: rgba(0, 0, 0, 0.04); font-size: 20px; } .indicator-metric.indicator-metric--status-green { background-color: rgba(0, 166, 81, 0.1); color: #00a651; } .indicator-metric.indicator-metric--status-yellow { background-color: rgba(251, 176, 59, 0.1); color: #fbb03b; } .indicator-metric.indicator-metric--status-red { background-color: rgba(237, 28, 36, 0.1); color: #ed1c24; } .indicator-metric__icon { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 44px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .indicator-metric__value { position: relative; font-weight: 500; } .far { width: 32px; height: auto; } .indicator-detail { margin-bottom: 8px; padding-right: 12px; padding-bottom: 8px; padding-left: 12px; } .expand-block__trigger_content { display: -ms-grid; display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; grid-column-gap: 8px; -ms-grid-columns: -webkit-max-content 1fr; -ms-grid-columns: max-content 1fr; grid-template-columns: -webkit-max-content 1fr; grid-template-columns: max-content 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .expand-block__content_icon { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 32px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; color: #a52b30; font-size: 20px; } .indicator-legend { position: relative; display: -ms-grid; display: grid; height: 44px; padding-right: 10px; padding-left: 8px; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; grid-auto-flow: column; grid-auto-columns: 1fr; -ms-grid-columns: -webkit-max-content 1fr -webkit-max-content; -ms-grid-columns: max-content 1fr max-content; grid-template-columns: -webkit-max-content 1fr -webkit-max-content; grid-template-columns: max-content 1fr max-content; -ms-grid-rows: auto; grid-template-rows: auto; } .indicator-legend__icon { position: relative; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 32px; height: 100%; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; font-size: 20px; } .indicator-legend__icon.indicator-legend__icon--green { color: #00a651; } .indicator-legend__icon.indicator-legend__icon--yellow { color: #fbb03b; } .indicator-legend__icon.indicator-legend__icon--red { color: #ed1c24; } .indicator-legend__info { padding-left: 8px; } .text-block { position: relative; } .icon-label-dropdown { position: relative; display: -ms-grid; display: grid; min-width: 200px; padding-left: 8px; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; grid-auto-columns: 1fr; grid-column-gap: 10px; grid-template-areas: "."; -ms-grid-columns: 1fr 10px minmax(auto, 200px); grid-template-columns: 1fr minmax(auto, 200px); -ms-grid-rows: auto; grid-template-rows: auto; } .icon-label-dropdown.muni-compare { grid-auto-columns: 1fr; } .indicator-compare__icon { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 32px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; font-size: 16px; } .label.label--small { font-size: 12px; } .label.label--light { color: grey; } .dropdown { position: relative; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; } .dropdown-toggle { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100px; height: 44px; padding: 0px 36px 0px 12px; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-align-self: center; -ms-flex-item-align: center; align-self: center; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; background-image: none; } .dropdown-toggle.dropdown-toggle--grey:hover { background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.04)), to(rgba(0, 0, 0, 0.04))); background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.04)); } .dropdown-list { background-color: transparent; } .dropdown-list.w--open { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-top: -4px; padding-top: 4px; padding-bottom: 4px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; } .dropdown-icon { margin-right: 12px; } .dropdown-link { z-index: 1; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; height: 44px; padding: 0px 12px; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; color: #4d4d4d; } .dropdown-link:hover { background-color: rgba(0, 0, 0, 0.04); color: #000; } .dropdown-link:focus { background-color: rgba(0, 0, 0, 0.04); color: #000; } .dropdown-link.dropdown-link--current { color: #a52b30; } .hidden { display: none; } .rich-text__default { margin-bottom: -10px; } .rich-text__default figure { overflow: hidden; margin-top: 24px; border-radius: 4px; } .tabs-menu { 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; } .tab-link { margin-top: 4px; margin-right: 48px; margin-bottom: 4px; padding: 10px 8px 10px 12px; border-radius: 4px; background-color: rgba(0, 0, 0, 0.04); -webkit-transition: all 200ms ease; transition: all 200ms ease; color: #666; } .tab-link:hover { margin-right: 32px; background-color: rgba(0, 0, 0, 0.08); color: #000; } .tab-link.w--current { margin-right: 32px; background-color: rgba(165, 43, 48, 0.16); color: #a52b30; } .div-block-6 { display: -ms-grid; display: grid; grid-auto-columns: 1fr; grid-column-gap: 16px; grid-row-gap: 16px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto auto; grid-template-rows: auto auto; } .sub-section__heading--tab { margin-top: 0px; margin-bottom: 0px; } .sub-section__heading--tab.margin-none { color: #a52b30; } .heading--item-right { display: -ms-grid; display: grid; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; grid-auto-columns: 1fr; grid-column-gap: 16px; grid-row-gap: 16px; -ms-grid-columns: 1fr -webkit-max-content; -ms-grid-columns: 1fr max-content; grid-template-columns: 1fr -webkit-max-content; grid-template-columns: 1fr max-content; -ms-grid-rows: auto; grid-template-rows: auto; } .financial-year { position: relative; display: -ms-grid; display: grid; padding-left: 8px; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; grid-auto-columns: 1fr; grid-column-gap: 8px; grid-template-areas: "icon title dropdown"; -ms-grid-columns: -webkit-max-content 8px 1fr 8px minmax(auto, 200px); -ms-grid-columns: max-content 8px 1fr 8px minmax(auto, 200px); grid-template-columns: -webkit-max-content 1fr minmax(auto, 200px); grid-template-columns: max-content 1fr minmax(auto, 200px); -ms-grid-rows: auto; grid-template-rows: auto; } .question-block { position: relative; border: 1px solid transparent; border-radius: 4px; } .question-block:hover { border-color: rgba(0, 0, 0, 0.08); } .tabs-section { display: -ms-grid; display: grid; grid-auto-columns: 1fr; grid-column-gap: 32px; -ms-grid-columns: 33.3333333333% 1fr; grid-template-columns: 33.3333333333% 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .tabs-col { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; height: 100%; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: stretch; -webkit-align-items: stretch; -ms-flex-align: stretch; align-items: stretch; grid-auto-columns: 1fr; grid-auto-rows: -webkit-max-content; grid-auto-rows: max-content; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: -webkit-max-content; -ms-grid-rows: max-content; grid-template-rows: -webkit-max-content; grid-template-rows: max-content; border-right: 1px solid rgba(0, 0, 0, 0.08); } .content-col { overflow: visible; } .question-block__trigger { position: relative; z-index: 1; display: -ms-grid; display: grid; min-height: 44px; padding-left: 8px; -webkit-align-content: center; -ms-flex-line-pack: center; align-content: center; grid-auto-columns: 1fr; grid-row-gap: 16px; -ms-grid-columns: -webkit-min-content 1fr -webkit-min-content; -ms-grid-columns: min-content 1fr min-content; grid-template-columns: -webkit-min-content 1fr -webkit-min-content; grid-template-columns: min-content 1fr min-content; -ms-grid-rows: auto; grid-template-rows: auto; border-radius: 4px; -webkit-transition: color 200ms ease; transition: color 200ms ease; color: #4d4d4d; font-weight: 500; text-decoration: none; } .question-block__trigger:hover { color: #000; } .question-block__content { position: relative; z-index: 1; overflow: hidden; } .question-block__trigger_icon { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; overflow: hidden; width: 44px; height: 100%; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .question-block__trigger_icon.expand-block__trigger_icon--last { display: none; } .question-block__content_inner { padding: 16px 16px 6px; border-top: 1px solid rgba(0, 0, 0, 0.08); } .section-header { display: -ms-grid; display: grid; margin-top: 12px; margin-bottom: 32px; padding-bottom: 24px; grid-auto-columns: 1fr; grid-column-gap: 12px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .section-header.section-header--item-right { display: -ms-grid; display: grid; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; grid-auto-columns: 1fr; -ms-grid-columns: 1fr -webkit-max-content; -ms-grid-columns: 1fr max-content; grid-template-columns: 1fr -webkit-max-content; grid-template-columns: 1fr max-content; -ms-grid-rows: auto; grid-template-rows: auto; } .section-header.section-header--clear { margin-top: 0px; margin-bottom: 0px; padding-bottom: 0px; } .section-header.section-header--clear.section-header--item-right { -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .section-header.section-header--clear.section-header--item-right.section-header--gap { -ms-grid-columns: -webkit-max-content 1fr -webkit-max-content; -ms-grid-columns: max-content 1fr max-content; grid-template-columns: -webkit-max-content 1fr -webkit-max-content; grid-template-columns: max-content 1fr max-content; } .section-header.section-header--clear.section-header--item-right.section-header--icon-left { -ms-grid-columns: -webkit-max-content 1fr -webkit-max-content; -ms-grid-columns: max-content 1fr max-content; grid-template-columns: -webkit-max-content 1fr -webkit-max-content; grid-template-columns: max-content 1fr max-content; } .section-header.section-header--clear.section-header--icon-left.section-header--info-right { -ms-grid-columns: -webkit-max-content 1fr -webkit-max-content; -ms-grid-columns: max-content 1fr max-content; grid-template-columns: -webkit-max-content 1fr -webkit-max-content; grid-template-columns: max-content 1fr max-content; } .section-header.section-header--underline { border-bottom: 1px solid rgba(0, 0, 0, 0.08); } .section-header.section-header--underline.section-header--item-right.section-header--icon-left { -ms-grid-columns: -webkit-max-content 1fr -webkit-max-content; -ms-grid-columns: max-content 1fr max-content; grid-template-columns: -webkit-max-content 1fr -webkit-max-content; grid-template-columns: max-content 1fr max-content; } .section-header.section-header--icon-left { -ms-grid-columns: -webkit-max-content 1fr; -ms-grid-columns: max-content 1fr; grid-template-columns: -webkit-max-content 1fr; grid-template-columns: max-content 1fr; } .gap { height: 100%; } .gap.gap--underline { border-bottom: 1px solid rgba(0, 0, 0, 0.08); } .value.value--medium { font-size: 16px; } .bar-chart { display: -ms-grid; display: grid; grid-auto-columns: 1fr; grid-row-gap: 8px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .bar-chart__row { position: relative; display: -ms-grid; display: grid; height: 24px; justify-items: start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; grid-auto-columns: 1fr; grid-column-gap: 8px; -ms-grid-columns: 150px 1fr; grid-template-columns: 150px 1fr; -ms-grid-rows: auto; grid-template-rows: auto; color: grey; } .bar-chart__row:hover { color: #4d4d4d; } .chart-label { font-size: 12px; cursor: default; } .bar-chart__bar-wrapper { position: relative; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; height: 100%; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; background-color: rgba(0, 0, 0, 0.02); cursor: default; } .bar-chart__bar-wrapper:hover { background-color: rgba(0, 0, 0, 0.04); } .bar-chart__bar { position: relative; z-index: 1; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 70%; height: 100%; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-radius: 2px; background-color: #a52b30; } .bar-chart__bar-bg { position: absolute; left: 0%; top: 0%; right: 0%; bottom: 0%; border-radius: 2px; background-color: rgba(0, 0, 0, 0.04); } .bar-chart__bar_value { position: absolute; left: 100%; z-index: 1; margin-left: 6px; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; flex: 0 0 auto; letter-spacing: 0.7px; white-space: nowrap; } .bar-chart__legend { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-top: 16px; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; } .legend-item { display: -ms-grid; display: grid; margin-right: 24px; margin-bottom: 8px; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; grid-auto-columns: 1fr; grid-column-gap: 8px; grid-row-gap: 0px; -ms-grid-columns: -webkit-min-content 1fr; -ms-grid-columns: min-content 1fr; grid-template-columns: -webkit-min-content 1fr; grid-template-columns: min-content 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .legend-item__block { width: 16px; height: 16px; border-radius: 2px; background-color: rgba(0, 0, 0, 0.04); } .colour { background-image: -webkit-gradient(linear, left top, left bottom, from(#791719), to(#791719)); background-image: linear-gradient(180deg, #791719, #791719); } .colour.colour--primary { background-image: -webkit-gradient(linear, left top, left bottom, from(#a52b30), to(#a52b30)); background-image: linear-gradient(180deg, #a52b30, #a52b30); } .colour.colour--1 { background-image: -webkit-gradient(linear, left top, left bottom, from(#3289a5), to(#3289a5)); background-image: linear-gradient(180deg, #3289a5, #3289a5); } .colour.colour--2 { background-image: -webkit-gradient(linear, left top, left bottom, from(#6d3aad), to(#6d3aad)); background-image: linear-gradient(180deg, #6d3aad, #6d3aad); } .components-utility { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; padding-top: 24px; padding-bottom: 24px; } .section-header__info-right { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; color: #b3b3b3; text-decoration: none; } .bar-chart__bar_percentage { position: absolute; left: auto; top: auto; right: 0%; bottom: auto; z-index: 1; margin-right: 6px; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; flex: 0 0 auto; color: hsla(0, 0%, 100%, 0.7); letter-spacing: 0.7px; white-space: nowrap; } .bar-chart__hover-label { position: absolute; left: 0%; top: 0%; right: auto; bottom: 0%; z-index: 0; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-left: -8px; padding-right: 8px; padding-left: 8px; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-radius: 4px; background-color: #fff; box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.16); opacity: 0; white-space: nowrap; cursor: default; } .bar-chart__hover-label:hover { z-index: 2; opacity: 1; } .footer-logo { position: relative; z-index: 1; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 170px; margin-bottom: 12px; } .footer-link { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; height: 32px; padding-right: 6px; padding-left: 6px; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-radius: 4px; color: grey; text-decoration: none; } .footer-link:hover { background-color: rgba(0, 0, 0, 0.08); color: #000; } .footer-link.footer-link--primary { background-color: rgba(165, 43, 48, 0.16); color: #791719; } .footer-link.footer-link--primary:hover { background-color: rgba(165, 43, 48, 0.32); } .footer__links { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-left: -6px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; grid-auto-columns: 1fr; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .footer-heading { color: #000; } .footer__partner-logos { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .footer__partner-logo { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100px; } .logo { margin-top: 0px; margin-bottom: 0px; } .footer-meta { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; padding-top: 32px; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; border-top: 1px solid rgba(0, 0, 0, 0.08); } .footer-meta.layout-grid.layout-grid--4-col { -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-top: 1px solid rgba(0, 0, 0, 0.08); } .footer-meta__partner { display: -ms-grid; display: grid; -webkit-box-pack: end; -webkit-justify-content: flex-end; -ms-flex-pack: end; justify-content: flex-end; grid-auto-columns: -webkit-max-content; grid-auto-columns: max-content; grid-column-gap: 16px; grid-row-gap: 16px; -ms-grid-columns: -webkit-max-content -webkit-max-content; -ms-grid-columns: max-content max-content; grid-template-columns: -webkit-max-content -webkit-max-content; grid-template-columns: max-content max-content; -ms-grid-rows: auto; grid-template-rows: auto; } .expand-blocks.expand-blocks--m-bottom { margin-bottom: 8px; } .audit-outcome { position: relative; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; height: 100%; padding: 24px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; border-radius: 4px; background-color: rgba(0, 0, 0, 0.02); text-align: center; } .audit-outcome.audit-outcome--green { background-color: rgba(0, 166, 81, 0.1); } .audit-outcome.audit-outcome--red { background-color: rgba(237, 28, 36, 0.1); } .audit-outcome.audit-outcome--summary { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; text-align: left; } .inner { position: relative; z-index: 1; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; } .audit-outcome__icon { position: relative; z-index: 1; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 32px; height: 32px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .audit-outcome__icon.audit-outcome__icon--green { color: #00a651; } .audit-outcome__icon.audit-outcome__icon--red { color: #ed1c24; } .audit-outcome__icon.audit-outcome__icon--yellow { color: #fbb03b; } .audit-outcome__heading { margin-top: 4px; margin-bottom: 4px; } .audit-outcome__subheading { min-height: 0px; } .audit-outcome__icons { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; font-size: 20px; } .audit-outcome__icons.audit-outcome--summary { position: relative; padding: 8px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-align-self: stretch; -ms-flex-item-align: stretch; -ms-grid-row-align: stretch; align-self: stretch; } .audit-outcome__icons.hidden { display: none; } .audit-outcome__download { position: relative; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; height: 32px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; justify-items: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; grid-auto-columns: 1fr; -ms-grid-columns: -webkit-max-content 1fr; -ms-grid-columns: max-content 1fr; grid-template-columns: -webkit-max-content 1fr; grid-template-columns: max-content 1fr; -ms-grid-rows: auto; grid-template-rows: auto; color: #666; text-align: left; text-decoration: none; } .audit-outcome__download_icon { width: 20px; height: 20px; } .audit-outcome__year { margin-top: 0px; margin-bottom: 24px; padding-bottom: 8px; border-bottom: 1px solid rgba(0, 0, 0, 0.08); } .audit-outcome__button-wrapper { margin-top: auto; padding-top: 20px; } .section-footer { margin-top: 32px; } .audit-outcome__definition { margin-top: 20px; margin-bottom: 0px; } .audit-outcome__definition-wrapper { margin-top: auto; padding-top: 20px; } .profile-header__inner { 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; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; } .profile-heading__wrapper { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; } .profile-notice { position: relative; padding-top: 12px; padding-bottom: 12px; color: #fff; } .profile-notice__inner { z-index: 1; display: -ms-grid; display: grid; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; grid-auto-columns: 1fr; grid-column-gap: 8px; -ms-grid-columns: -webkit-max-content 1fr; -ms-grid-columns: max-content 1fr; grid-template-columns: -webkit-max-content 1fr; grid-template-columns: max-content 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .profile-notice__icon { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 20px; height: 20px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; opacity: 0.5; } .outcome-summary { position: relative; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; height: 100%; padding: 24px; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; border-radius: 4px; background-color: rgba(0, 0, 0, 0.02); text-align: center; } .outcome-summary.audit-outcome--green { background-color: rgba(0, 166, 81, 0.1); } .outcome-summary.audit-outcome--red { background-color: rgba(237, 28, 36, 0.1); } .audit-outcome__inner { margin-left: 24px; } .icon-label-dropdown__inner { position: relative; z-index: 1; display: -ms-grid; display: grid; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; grid-auto-columns: 1fr; grid-column-gap: 4px; -ms-grid-columns: -webkit-max-content 1fr; -ms-grid-columns: max-content 1fr; grid-template-columns: -webkit-max-content 1fr; grid-template-columns: max-content 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .footer-description { margin-top: 24px; } .municipal-office-map { height: 200px; } .table-row { display: -ms-grid; display: grid; min-height: 52px; margin-bottom: -1px; padding-top: 10px; padding-bottom: 10px; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; grid-auto-flow: column; grid-auto-columns: 1fr; grid-column-gap: 16px; -ms-grid-columns: 1fr 1fr; grid-template-columns: 1fr 1fr; -ms-grid-rows: auto; grid-template-rows: auto; border-top: 1px solid rgba(0, 0, 0, 0.08); border-bottom: 1px solid transparent; -webkit-transition: all 200ms ease; transition: all 200ms ease; color: #4d4d4d; text-decoration: none; } .table-row:hover { position: relative; z-index: 1; border-top-style: solid; border-top-color: #d6d6d6; border-bottom-color: #d6d6d6; background-color: #fff; box-shadow: 0 12px 10px -10px rgba(0, 0, 0, 0.16); color: #a52b30; } .table-row.table-row--2-col-value-right { -ms-grid-columns: 75% minmax(120px, 25%); grid-template-columns: 75% minmax(120px, 25%); } .table-row.table-row--2-col-value-right.table-row--value-right { -ms-grid-columns: auto 200px; grid-template-columns: auto 200px; } .table-row.table-row__header { margin-bottom: 0px; border: 1px none #000; color: #666; font-weight: 600; } .table-row.table-row__header:hover { background-color: transparent; box-shadow: none; color: #666; } .table-row.table-row--2-col-value-right-with-icon { grid-column-gap: 0px; -ms-grid-columns: auto 200px 24px; grid-template-columns: auto 200px 24px; } .table-row.table-row--2-col-value-right-with-icon.table-row--value-right { -ms-grid-columns: auto 200px; grid-template-columns: auto 200px; } .table-col { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; height: 100%; min-height: 0px; padding-left: 12px; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .table-col.table-col--border-right { padding-right: 16px; border-right: 1px solid rgba(0, 0, 0, 0.08); } .table-row__value { text-decoration: none; } .table-row__icon { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 24px; height: 100%; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .table-footer { display: -ms-grid; display: grid; padding-top: 24px; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-align-content: center; -ms-flex-line-pack: center; align-content: center; grid-auto-columns: -webkit-max-content; grid-auto-columns: max-content; grid-column-gap: 16px; grid-row-gap: 16px; -ms-grid-columns: -webkit-max-content -webkit-max-content; -ms-grid-columns: max-content max-content; grid-template-columns: -webkit-max-content -webkit-max-content; grid-template-columns: max-content max-content; -ms-grid-rows: auto; grid-template-rows: auto; border-top: 1px solid rgba(0, 0, 0, 0.08); color: #b3b3b3; } .button__inner { position: relative; z-index: 1; } .page-heading__district-muni { margin-top: 6px; padding-top: 4px; padding-bottom: 4px; padding-left: 12px; } .page-heading__metro { margin-top: 6px; } .button__icon { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 16px; height: 100%; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; color: #a52b30; } .button__icon.button__icon--white { color: #fff; } .bg-image { position: absolute; left: 0%; top: 0%; right: 0%; bottom: 0%; width: 100%; } .bg-image.bg-image--overlay-black-16 { background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.16)), to(rgba(0, 0, 0, 0.16))); background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.16)); } .bg-image.bg-image--tutorial { background-image: url('../images/video-thumb-narrow.jpg'); background-position: 50% 50%; background-size: 100%; background-repeat: no-repeat; } .video-block { border-radius: 4px; } .ytdefer { width: 100%; min-height: 350px; } .video-thumb { position: absolute; left: 0%; top: 0%; right: 0%; bottom: 0%; overflow: hidden; margin-top: 0px; margin-bottom: 0px; border-radius: 4px; } .tutorial-video__main { position: relative; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; height: 250px; padding: 24px; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; border-radius: 4px; text-decoration: none; } .video-lightbox__play { position: absolute; left: 0%; top: 0%; right: 0%; bottom: 0%; z-index: 1; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-radius: 4px; background-color: rgba(0, 0, 0, 0.16); -webkit-transition: all 200ms ease; transition: all 200ms ease; color: #fff; font-size: 44px; text-shadow: 0 0 20px rgba(0, 0, 0, 0.16); } .video-lightbox__play:hover { background-color: transparent; color: #a52b30; text-shadow: 0 0 5px rgba(0, 0, 0, 0.16); } .video-thumb__bg-image { height: 100%; background-image: url('../images/video-thumb.jpg'); background-position: 50% 80%; background-size: cover; background-repeat: no-repeat; } .tutorial-video { position: relative; display: -ms-grid; display: grid; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; grid-auto-columns: 1fr; grid-row-gap: 16px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .video-lightbox__label { position: relative; z-index: 100; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: auto; padding: 6px 12px; border-radius: 4px; background-color: hsla(0, 0%, 100%, 0.16); color: #fff; font-weight: 500; letter-spacing: 0.5px; } .tutorial-video__alt-languages { position: absolute; left: 0%; top: auto; right: 0%; bottom: 6px; z-index: 1; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; padding-right: 24px; padding-bottom: 8px; padding-left: 24px; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; grid-auto-flow: column; grid-auto-columns: -webkit-max-content; grid-auto-columns: max-content; -ms-grid-columns: -webkit-max-content; -ms-grid-columns: max-content; grid-template-columns: -webkit-max-content; grid-template-columns: max-content; -ms-grid-rows: auto; grid-template-rows: auto; } .tutorial-video__language { margin-right: 8px; margin-bottom: 8px; padding: 6px 8px; border-radius: 4px; background-color: #fff; color: #4d4d4d; font-size: 12px; text-decoration: none; } .tutorial-video__language:hover { background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.08)), to(rgba(0, 0, 0, 0.08))); background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08)); color: #000; } .page-nav__trigger { position: fixed; left: auto; top: auto; right: 16px; bottom: 24px; z-index: 98; display: none; height: 44px; padding-right: 10px; padding-left: 10px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-radius: 100px; background-color: #a52b30; box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.16); color: #fff; cursor: pointer; } .page-nav__menu { -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; } .page-nav___deselect { position: fixed; left: 0%; top: 0%; right: 0%; bottom: 0%; z-index: 101; display: none; background-color: rgba(0, 0, 0, 0.16); opacity: 0; } .page-nav__trigger-icon { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 24px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .page-nav__trigger-label-wrap { overflow: hidden; } .page-nav__trigger-label { padding-right: 8px; padding-left: 8px; } .page-options__link { position: relative; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; height: 36px; margin-right: 8px; padding-right: 6px; padding-left: 6px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; flex: 0 0 auto; border-radius: 4px; background-color: rgba(0, 0, 0, 0.04); font-size: 16px; line-height: 100%; text-decoration: none; } .page-options__link:hover { border-right-color: transparent; background-color: rgba(0, 0, 0, 0.08); } .page-options__link.w--current { background-color: rgba(165, 43, 48, 0.16); color: #a52b30; } .page-options__link.nav-link--mobile { height: 36px; margin-right: 0px; margin-left: 0px; padding-right: 10px; padding-left: 10px; } .page-options__link.hidden { display: none; } .page-options__icon { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 24px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-align-self: stretch; -ms-flex-item-align: stretch; align-self: stretch; } .page-nav__options-links { display: -ms-grid; display: grid; margin-right: -8px; margin-left: -8px; padding-top: 12px; padding-bottom: 8px; -webkit-box-pack: start; -webkit-justify-content: start; -ms-flex-pack: start; justify-content: start; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; grid-auto-flow: column; grid-auto-columns: -webkit-max-content; grid-auto-columns: max-content; -ms-grid-columns: -webkit-max-content; -ms-grid-columns: max-content; grid-template-columns: -webkit-max-content; grid-template-columns: max-content; -ms-grid-rows: auto; grid-template-rows: auto; } .menu-deselect { position: fixed; left: 0%; top: 0%; right: 0%; bottom: 0%; z-index: 98; background-color: rgba(0, 0, 0, 0.16); } .location-block { position: relative; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; padding: 24px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; } .location-block.location-block--found { display: none; color: #00a651; } .location-block.location-block--not-found { display: none; color: #ed1c24; } .location-loading__text { position: relative; z-index: 1; margin-left: 8px; } .location-found { position: relative; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; padding: 24px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; } .location-icon { position: relative; z-index: 1; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 44px; height: 44px; margin-right: 8px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; font-size: 24px; } .location-block__label { position: relative; z-index: 1; } .div-block-7 { position: absolute; top: 0px; bottom: 0px; width: 30%; margin-left: -5%; } .home-map { position: absolute; left: 0%; top: 0%; right: 0%; bottom: 0%; background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.08)), to(rgba(0, 0, 0, 0.08))), url('../images/topography.png'); background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08)), url('../images/topography.png'); background-position: 0px 0px, 50% 50%; opacity: 1; } .home-map.demo { background-image: url('../images/dummy-map-2.jpg'), -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.08)), to(rgba(0, 0, 0, 0.08))), url('../images/topography.png'); background-image: url('../images/dummy-map-2.jpg'), linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08)), url('../images/topography.png'); background-position: 0px 0px, 0px 0px, 50% 50%; background-size: cover, auto, auto; } .home-map__inner { position: relative; z-index: 1; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-top: -44px; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-align-self: flex-start; -ms-flex-item-align: start; align-self: flex-start; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; } .hero-search { position: relative; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: end; -webkit-justify-content: flex-end; -ms-flex-pack: end; justify-content: flex-end; } .hero-search.nav-search--mobile { margin-bottom: 16px; } .hero-search___input { position: relative; z-index: 1; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-bottom: 0px; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; } .hero-search__wrap { display: -ms-grid; display: grid; margin-top: 8px; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; grid-auto-columns: 1fr; grid-column-gap: 16px; grid-row-gap: 16px; -ms-grid-columns: 1fr -webkit-max-content; -ms-grid-columns: 1fr max-content; grid-template-columns: 1fr -webkit-max-content; grid-template-columns: 1fr max-content; -ms-grid-rows: auto; grid-template-rows: auto; } .home-map__title { margin-top: 0px; margin-bottom: 0px; padding: 6px 12px; border-radius: 4px; background-color: #000; box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.12); color: #fff; font-weight: 400; } .div-block-9 { margin-top: 24px; } .paragraph-large { margin-bottom: 0px; font-size: 18px; } .button-wrap { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; } .button-wrap.button-wrap--margin-top { margin-top: 24px; } .home-hero__inner { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 95%; height: 100%; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; } .page-heading__subtitle { margin-top: 12px; padding: 4px 12px; border-radius: 4px; background-color: #fff; box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.12); color: #4d4d4d; } .page-heading__subtitle.page-heading__muni-info--local { display: none; } .page-heading__subtitle.page-heading__muni-info--district { display: none; } .page-heading__subtitle.page-heading__muni-info--metro { display: none; } .tutorial-image { width: 100%; margin-top: 0px; margin-bottom: 0px; border-radius: 4px 4px 0px 0px; } .tutorial-instruction { margin-bottom: 0px; padding: 24px 24px 14px; background-color: #fff; } .tutorial-block { border-radius: 4px; background-color: #fff; box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.12); } .cta-block { position: relative; padding: 48px; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; } .cta-block__inner { position: relative; z-index: 1; } .cta-block__image-left { margin-top: 0px; margin-bottom: 0px; } .clear { margin-top: 0px; margin-bottom: 0px; } .clear--top { margin-top: 0px; } .nav-logo__text { font-size: 8px; text-decoration: none; } .search-result { position: relative; display: -ms-grid; display: grid; padding: 8px; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; grid-auto-columns: 1fr; grid-column-gap: 8px; grid-row-gap: 0px; -ms-grid-columns: 1fr -webkit-max-content; -ms-grid-columns: 1fr max-content; grid-template-columns: 1fr -webkit-max-content; grid-template-columns: 1fr max-content; -ms-grid-rows: auto; grid-template-rows: auto; color: #000; text-decoration: none; } .search-result__muni-name { font-size: 13px; } .search-result__muni-type { color: #b3b3b3; font-size: 12px; } .page-nav__muni-name { display: none; } .page-nav__muni-type { display: none; } .page-options__label { display: none; padding-right: 6px; padding-left: 4px; color: #666; font-size: 14px; } .tooltip { position: absolute; left: auto; top: 100%; right: auto; bottom: auto; display: none; width: auto; margin-top: 12px; padding: 8px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; font-size: 14px; white-space: nowrap; } .tooltip.webflow { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; } .tooltip__label { position: relative; z-index: 1; color: #4d4d4d; } .tooltip__notch { position: absolute; top: -4px; z-index: 1; width: 8px; height: 8px; background-color: #fff; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg); } .components-content { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; padding-top: 24px; padding-bottom: 24px; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; } .fas { min-height: 0px; } .muni-address { display: none; } .highlight-block { position: relative; padding: 24px; } .highlight-block__inner { position: relative; z-index: 1; display: -ms-grid; display: grid; grid-auto-columns: 1fr; grid-column-gap: 24px; -ms-grid-columns: -webkit-max-content 1fr; -ms-grid-columns: max-content 1fr; grid-template-columns: -webkit-max-content 1fr; grid-template-columns: max-content 1fr; -ms-grid-rows: auto; grid-template-rows: auto; } .highlight-block__heading { margin-top: 0px; margin-bottom: 24px; padding-bottom: 8px; border-bottom: 1px solid rgba(0, 0, 0, 0.08); } .highlight-block__icon { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 48px; min-height: 48px; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-radius: 4px; background-color: rgba(0, 0, 0, 0.04); font-size: 24px; } .highlight-block__icon.highlight-block__icon--green { background-color: rgba(0, 166, 81, 0.1); color: #00a651; } .highlight-block__icon.highlight-block__icon--red { background-color: rgba(237, 28, 36, 0.1); color: #ed1c24; } .rich-text__highlight-block { margin-bottom: -5px; } .rich-text__highlight-block figure { overflow: hidden; margin-top: 24px; border-radius: 4px; } .rich-text__highlight-block li { margin-bottom: 5px; } @media screen and (max-width: 991px) { h1 { font-size: 32px; } h2 { font-size: 24px; } h3 { font-size: 18px; } h4 { font-size: 16px; } .container { width: 100%; max-width: 100%; -webkit-box-flex: 0; -webkit-flex: 0 auto; -ms-flex: 0 auto; flex: 0 auto; } .search-input__field:focus { width: 260px; } .section { padding-top: 40px; padding-bottom: 40px; } .section.section--hero { min-height: 180px; } .section.section--padding-top { padding-top: 40px; } .section.section--last { padding-bottom: 80px; } .section.section--home-hero { padding-top: 64px; padding-bottom: 64px; } .layout-grid { grid-column-gap: 24px; grid-row-gap: 24px; } .layout-grid.layout-grid--sidebar-right { -ms-grid-columns: 1fr 33.3333333333%; grid-template-columns: 1fr 33.3333333333%; } .layout-grid.layout-grid--1-3-2-3 { -ms-grid-columns: 1fr; grid-template-columns: 1fr; } .layout-grid.layout-grid--3-col { -ms-grid-columns: 1fr; grid-template-columns: 1fr; } .layout-grid.layout-grid--2-col { -ms-grid-columns: 1fr; grid-template-columns: 1fr; } .sidebar-wrapper.sidebar-wrapper--left { padding-right: 24px; } .grid.grid--32px { grid-column-gap: 24px; grid-row-gap: 24px; } .sub-section.tabs-section { -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto auto; grid-template-rows: auto auto; } .sub-section__link { top: -80px; } .heading { margin-bottom: 16px; padding-bottom: 16px; } .page-nav__icon { display: none; } .section__link { top: -80px; } .layout-grid__col.layout-grid__col--padding-right { padding-right: 0px; } .layout-grid__col.layout-grid__col--padding-right.layout-grid__col--border-right { border-right-style: none; } .layout-grid__col.layout-grid__col--padding-top { padding-right: 0px; } .layout-grid__col.layout-grid__col--padding-top.layout-grid__col--border-right { border-right-style: none; } .tab-link { margin-right: 8px; padding-right: 12px; } .tab-link:hover { margin-right: 8px; } .tab-link.w--current { margin-right: 8px; } .tabs-col { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; border-right-style: none; } .footer-meta { -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: start; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .footer-meta__partner { margin-top: 8px; } .paragraph-large { font-size: 16px; } .home-hero__inner { width: 80%; } } @media screen and (max-width: 767px) { h1 { font-size: 26px; } h2 { font-size: 22px; } h4 { font-size: 14px; } .nav { top: 0px; max-width: 100%; } .container { padding-right: 20px; padding-left: 20px; } .nav-inner { -ms-grid-columns: -webkit-max-content auto; -ms-grid-columns: max-content auto; grid-template-columns: -webkit-max-content auto; grid-template-columns: max-content auto; } .nav-items { display: none; } .nav-search { display: none; } .nav-search.nav-search--mobile { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; } .small-heading { display: block; width: 100%; } .small-heading.small-heading--mobile-only { display: block; } .nav-mobile { display: -ms-grid; display: grid; -webkit-box-pack: end; -webkit-justify-content: end; -ms-flex-pack: end; justify-content: end; justify-items: end; grid-auto-flow: column; grid-auto-columns: 1fr; -ms-grid-columns: auto auto; grid-template-columns: auto auto; -ms-grid-rows: auto; grid-template-rows: auto; } .mobile-menu { display: none; } .mobile-menu__toggle { margin-left: 8px; cursor: pointer; } .mobile-search__toggle { margin-left: 8px; cursor: pointer; } .info-block { padding-top: 6px; } .loading-block { padding-top: 6px; } .menu-title { margin-top: 0px; margin-bottom: 8px; } .menu-close { display: none; background-color: #000; } .section { padding-top: 32px; padding-bottom: 32px; } .section.section--padding-top { padding-top: 32px; } .section.section--last { padding-bottom: 48px; } .layout-grid { grid-column-gap: 24px; grid-row-gap: 24px; } .layout-grid.layout-grid--sidebar-right { -ms-grid-columns: 1fr; grid-template-columns: 1fr; } .layout-grid.layout-grid--1-4-3-4 { -ms-grid-columns: 1fr; grid-template-columns: 1fr; } .layout-grid.layout-grid--4-col { -ms-grid-columns: 1fr 1fr; grid-template-columns: 1fr 1fr; } .layout-grid.layout-grid--1-3-2-3 { grid-auto-flow: row; -ms-grid-columns: 1fr; grid-template-columns: 1fr; } .layout-grid.layout-grid--1-5-4-5 { -ms-grid-columns: 1fr; grid-template-columns: 1fr; } .layout-grid.layout-grid--2-3-1-3 { -ms-grid-columns: 1fr; grid-template-columns: 1fr; } .sidebar-wrapper.sidebar-wrapper--left { position: static; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; margin-bottom: 32px; padding-right: 0px; padding-bottom: 16px; border-bottom: 1px solid rgba(0, 0, 0, 0.08); border-right-style: none; } .sidebar-section { margin-bottom: 16px; } .sub-section.tabs-section { -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto auto; grid-template-rows: auto auto; } .expand-block__trigger { padding-left: 0px; } .expand-block__content_inner { padding-right: 0px; padding-left: 0px; } .sidebar-link__wrapper { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; } .table { font-size: 12px; } .div-block-4 { display: none; } .page-nav { position: fixed; left: auto; top: 0%; right: -300px; bottom: 0%; z-index: 102; display: none; width: 300px; max-width: 90%; box-shadow: -2px 0 10px 0 rgba(0, 0, 0, 0.08); } .page-nav.webflow { right: 0px; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; } .page-nav__inner { position: relative; width: 100%; height: 100%; padding: 24px 16px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -ms-grid-row-align: stretch; align-self: stretch; -ms-grid-rows: -webkit-max-content; -ms-grid-rows: max-content; grid-template-rows: -webkit-max-content; grid-template-rows: max-content; } .page-nav__section-links { width: 100%; margin-left: 0px; padding-top: 0px; grid-auto-flow: row; grid-auto-columns: 100%; grid-row-gap: 8px; -ms-grid-columns: 100%; grid-template-columns: 100%; } .page-nav__link { width: 100%; margin-right: 0px; background-color: rgba(0, 0, 0, 0.04); } .page-nav__link:hover { background-color: rgba(0, 0, 0, 0.08); } .page-nav__link:active { background-color: rgba(165, 43, 48, 0.16); } .page-nav__link.w--current { background-color: rgba(165, 43, 48, 0.16); } .page-nav__icon { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; } .section__link { top: -24px; } .profile-metrics__block { padding: 8px 10px; } .layout-grid__col.layout-grid__col--padding-left { padding-top: 24px; padding-left: 0px; } .layout-grid__col.layout-grid__col--border-right { border-bottom: 1px solid rgba(0, 0, 0, 0.08); border-right-style: none; } .layout-grid__col.layout-grid__col--border-top { border-bottom: 1px solid rgba(0, 0, 0, 0.08); border-right-style: none; } .layout-grid__col.layout-grid__col--border-left { border-top: 1px solid rgba(0, 0, 0, 0.08); border-left-style: none; } .icon-label-dropdown { padding-left: 0px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: auto auto; grid-template-rows: auto auto; } .heading--item-right { -ms-grid-columns: 1fr; grid-template-columns: 1fr; } .section-header.section-header--clear.section-header--icon-left.section-header--info-right { grid-row-gap: 8px; -ms-grid-columns: -webkit-max-content 1fr; -ms-grid-columns: max-content 1fr; grid-template-columns: -webkit-max-content 1fr; grid-template-columns: max-content 1fr; } .section-header.section-header--underline.section-header--item-right { grid-row-gap: 8px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; } .audit-outcome { padding: 16px; } .audit-outcome.audit-outcome--summary { padding: 16px; } .icon-label-dropdown__inner { padding-top: 6px; padding-bottom: 6px; padding-left: 8px; } .table-row { padding-right: 0px; padding-left: 0px; } .table-row.table-row--2-col-value-right { grid-column-gap: 8px; -ms-grid-columns: minmax(100px, 75%) 25%; grid-template-columns: minmax(100px, 75%) 25%; } .table-row.table-row__header { font-size: 14px; } .table-row.table-row--2-col-value-right-with-icon { -ms-grid-columns: auto 140px 24px; grid-template-columns: auto 140px 24px; } .table-col.table-col--border-right { padding-right: 12px; } .table-footer { font-size: 14px; } .tutorial-video__main { height: 240px; padding: 16px; } .video-lightbox__label { font-size: 12px; } .tutorial-video__alt-languages { position: static; padding-right: 16px; padding-bottom: 0px; padding-left: 0px; font-size: 12px; } .tutorial-video__language { padding: 6px 8px; background-color: #4d4d4d; color: #fff; } .page-nav__trigger { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; } .page-nav__menu { position: fixed; left: auto; top: 0%; right: 0%; bottom: 0%; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 300px; height: 100vh; max-width: 90%; padding-top: 84px; -webkit-box-flex: 0; -webkit-flex: 0 auto; -ms-flex: 0 auto; flex: 0 auto; } .page-options__link { width: 100%; margin-top: 8px; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; } .page-options__link.w--current { background-color: rgba(165, 43, 48, 0.16); } .page-options__icon { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; } .page-nav__options-links { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; margin-left: 0px; justify-items: start; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; grid-auto-flow: row; grid-auto-columns: 100%; -ms-grid-columns: 100%; grid-template-columns: 100%; } .hero-search { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; } .hero-search.nav-search--mobile { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; } .paragraph-large { font-size: 14px; } .home-hero__inner { width: 100%; } .cta-block { padding: 24px; } .cta-block__image-left { width: 50%; } .page-nav__muni-name { display: block; font-size: 18px; font-weight: 500; } .page-nav__muni-type { display: block; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid rgba(0, 0, 0, 0.08); color: grey; font-size: 12px; } .page-options__label { display: block; } .highlight-block { padding: 16px; } .highlight-block__inner { grid-row-gap: 16px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; -ms-grid-rows: -webkit-max-content auto; -ms-grid-rows: max-content auto; grid-template-rows: -webkit-max-content auto; grid-template-rows: max-content auto; } .highlight-block__icon { height: 32px; } } @media screen and (max-width: 479px) { h1 { font-size: 28px; } .container { padding-right: 16px; padding-left: 16px; } .section.section--hero { min-height: 180px; } .layout-grid.layout-grid--4-col { grid-column-gap: 16px; grid-row-gap: 16px; -ms-grid-columns: 1fr; grid-template-columns: 1fr; } .page-nav { display: none; max-width: 80%; } .section-header.section-header--underline.section-header--item-right { -ms-grid-columns: 1fr; grid-template-columns: 1fr; } .audit-outcome.audit-outcome--summary { -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; } .audit-outcome__icons.audit-outcome--summary { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: start; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-align-self: flex-start; -ms-flex-item-align: start; align-self: flex-start; } .audit-outcome__inner { margin-top: 8px; margin-left: 0px; } .table-row.table-row--2-col-value-right-with-icon { -ms-grid-columns: auto 110px 24px; grid-template-columns: auto 110px 24px; } .table-footer { -ms-grid-columns: 1fr; grid-template-columns: 1fr; } .home-map__inner { margin-top: -40px; } .hero-search__wrap { -ms-grid-columns: 1fr; grid-template-columns: 1fr; } .home-map__title { padding-top: 4px; padding-bottom: 4px; font-size: 16px; } } #w-node-b6481327a004-501c5c19 { -webkit-box-ordinal-group: -9998; -webkit-order: -9999; -ms-flex-order: -9999; order: -9999; } #w-node-b6481327a007-501c5c19 { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-4db17d075bb2-501c5c19 { -webkit-align-self: center; -ms-flex-item-align: center; -ms-grid-row-align: center; align-self: center; } #w-node-7ad7223a4871-501c5c19 { -webkit-box-ordinal-group: -9998; -webkit-order: -9999; -ms-flex-order: -9999; order: -9999; } #w-node-3df19d1689bb-501c5c19 { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-12d9c7607429-501c5c19 { -ms-grid-column-align: stretch; justify-self: stretch; } #w-node-12d9c7607435-501c5c19 { -ms-grid-column-align: stretch; justify-self: stretch; } #w-node-08d68630fc3e-8630fc3e { -webkit-box-ordinal-group: -9998; -webkit-order: -9999; -ms-flex-order: -9999; order: -9999; } #w-node-08d68630fc41-8630fc3e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-d7309853ccab-9853ccab { -webkit-box-ordinal-group: -9998; -webkit-order: -9999; -ms-flex-order: -9999; order: -9999; } #w-node-d7309853ccae-9853ccab { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-0c6d18356ae9-18356ae7 { -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; } #w-node-a2e6e9d831a0-e9d8319d { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-a2e6e9d831e8-e9d8319d { -ms-grid-column: span 2; grid-column-start: span 2; -ms-grid-column-span: 2; grid-column-end: span 2; } #w-node-a2e6e9d831ed-e9d8319d { -ms-grid-column: span 2; grid-column-start: span 2; -ms-grid-column-span: 2; grid-column-end: span 2; } #w-node-133d4c7ba194-4c7ba190 { -webkit-align-self: center; -ms-flex-item-align: center; -ms-grid-row-align: center; align-self: center; -ms-grid-column-align: start; justify-self: start; } #w-node-133d4c7ba1a7-4c7ba190 { -ms-grid-column-align: end; justify-self: end; } #w-node-5acb3e7e720d-121c5c1b { -webkit-align-self: center; -ms-flex-item-align: center; -ms-grid-row-align: center; align-self: center; -ms-grid-column-align: start; justify-self: start; } #w-node-242411ec71cc-121c5c1b { -ms-grid-column-align: end; justify-self: end; } #w-node-52567e6c1f52-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-52567e6c1f59-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 2; grid-column-start: span 2; -ms-grid-column-span: 2; grid-column-end: span 2; } #w-node-52567e6c1f67-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 2; grid-column-start: span 2; -ms-grid-column-span: 2; grid-column-end: span 2; } #w-node-52567e6c1f73-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 2; grid-column-start: span 2; -ms-grid-column-span: 2; grid-column-end: span 2; } #w-node-52567e6c1f7e-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 2; grid-column-start: span 2; -ms-grid-column-span: 2; grid-column-end: span 2; } #w-node-52567e6c1f88-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 2; grid-column-start: span 2; -ms-grid-column-span: 2; grid-column-end: span 2; } #w-node-52567e6c1f93-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 2; grid-column-start: span 2; -ms-grid-column-span: 2; grid-column-end: span 2; } #w-node-52567e6c1fb3-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-52567e6c1fc4-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-52567e6c1fe6-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-52567e6c1ff7-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-52567e6c201a-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-52567e6c202d-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-52567e6c2050-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-52567e6c2063-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-52567e6c207e-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-52567e6c2085-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-52567e6c20ad-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-52567e6c20c0-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-52567e6c20e2-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-52567e6c20fb-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-52567e6c211d-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-52567e6c212e-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-52567e6c2151-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-52567e6c2164-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-52567e6c2186-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-52567e6c2197-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-5748d825feeb-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-5748d825fef5-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-98a4e7a85f83-121c5c1b { -webkit-box-ordinal-group: -9998; -webkit-order: -9999; -ms-flex-order: -9999; order: -9999; } #w-node-98a4e7a85f86-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-98a4e7a85f88-121c5c1b { -webkit-box-ordinal-group: -9998; -webkit-order: -9999; -ms-flex-order: -9999; order: -9999; } #w-node-98a4e7a85f8b-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-9f00652ed460-652ed45a { -webkit-align-self: center; -ms-flex-item-align: center; -ms-grid-row-align: center; align-self: center; } #w-node-b73a9fe7aaf3-f51c5c1c { -ms-grid-column-align: stretch; justify-self: stretch; } #w-node-b73a9fe7aaff-f51c5c1c { -ms-grid-column-align: stretch; justify-self: stretch; } #w-node-fdfc8001be0b-201c5c1d { -ms-grid-column-align: stretch; justify-self: stretch; } #w-node-fdfc8001be17-201c5c1d { -ms-grid-column-align: stretch; justify-self: stretch; } #w-node-332542d0088c-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-17003541d290-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-3f6650fe079e-b71c5c1e { -webkit-box-ordinal-group: -9998; -webkit-order: -9999; -ms-flex-order: -9999; order: -9999; } #w-node-b01f7852b163-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-09a0e8c9c610-b71c5c1e { -webkit-box-ordinal-group: -9998; -webkit-order: -9999; -ms-flex-order: -9999; order: -9999; } #w-node-09a0e8c9c613-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-ecdf5e07da7b-b71c5c1e { -webkit-box-ordinal-group: -9998; -webkit-order: -9999; -ms-flex-order: -9999; order: -9999; } #w-node-ecdf5e07da7e-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-b183081dce86-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-bd0501ae0838-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 2; grid-column-start: span 2; -ms-grid-column-span: 2; grid-column-end: span 2; } #w-node-7ee055317fb9-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 2; grid-column-start: span 2; -ms-grid-column-span: 2; grid-column-end: span 2; } #w-node-eca7e872adb6-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 2; grid-column-start: span 2; -ms-grid-column-span: 2; grid-column-end: span 2; } #w-node-6f7436277fbf-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 2; grid-column-start: span 2; -ms-grid-column-span: 2; grid-column-end: span 2; } #w-node-d7bb64db2d22-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 2; grid-column-start: span 2; -ms-grid-column-span: 2; grid-column-end: span 2; } #w-node-8f735fd51abb-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 2; grid-column-start: span 2; -ms-grid-column-span: 2; grid-column-end: span 2; } #w-node-f0cd4c84fe05-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-2884925a60a1-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-231826fa8af5-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-231826fa8b01-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-c4d344a87936-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-c4d344a87942-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-018c941f40d3-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-018c941f40df-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-bdea92a8c253-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-bdea92a8c25a-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-09b1705c207d-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-09b1705c2089-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-c26b5c417209-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-c26b5c417215-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-2f110018504e-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-2f110018505a-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-abbebfa2a1d6-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-abbebfa2a1e2-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-f0ac6bee84dc-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-f0ac6bee84e8-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-1bdd81590a68-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-c952cb9a7d3e-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-c952cb9a7d4a-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-5253af290693-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-5253af29069f-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-6c67f2a83113-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-c4def8d3bc43-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-8e05e2ad3cdb-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-7039fef01e03-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-bf62ae30caef-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-8a250d11f34d-b71c5c1e { -ms-grid-column-align: stretch; justify-self: stretch; } #w-node-8a250d11f359-b71c5c1e { -ms-grid-column-align: stretch; justify-self: stretch; } #w-node-c95744d297ba-b71c5c1e { -ms-grid-column-span: 1; grid-column-end: 2; -ms-grid-column: 1; grid-column-start: 1; -ms-grid-row-span: 1; grid-row-end: 2; -ms-grid-row: 1; grid-row-start: 1; -ms-grid-row-align: start; align-self: start; } #w-node-c95744d297c4-b71c5c1e { -ms-grid-column-span: 1; grid-column-end: 3; -ms-grid-column: 2; grid-column-start: 2; -ms-grid-row-span: 1; grid-row-end: 2; -ms-grid-row: 1; grid-row-start: 1; } #w-node-c95744d297d0-b71c5c1e { -webkit-align-self: center; -ms-flex-item-align: center; -ms-grid-row-align: center; align-self: center; } #w-node-c95744d297ed-b71c5c1e { -webkit-align-self: center; -ms-flex-item-align: center; -ms-grid-row-align: center; align-self: center; } #w-node-c95744d2980a-b71c5c1e { -webkit-align-self: center; -ms-flex-item-align: center; -ms-grid-row-align: center; align-self: center; } #w-node-e706fee7d0d3-551c5c1f { -ms-grid-column-align: stretch; justify-self: stretch; } #w-node-e706fee7d0df-551c5c1f { -ms-grid-column-align: stretch; justify-self: stretch; } #w-node-e706fee7d0d3-1f2243b1 { -ms-grid-column-align: stretch; justify-self: stretch; } #w-node-e706fee7d0df-1f2243b1 { -ms-grid-column-align: stretch; justify-self: stretch; } @media screen and (max-width: 991px) { #w-node-a2e6e9d831a0-e9d8319d { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 2; grid-column-start: span 2; -ms-grid-column-span: 2; grid-column-end: span 2; } #w-node-a2e6e9d831c1-e9d8319d { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 2; grid-column-start: span 2; -ms-grid-column-span: 2; grid-column-end: span 2; } #w-node-a2e6e9d831ce-e9d8319d { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 2; grid-column-start: span 2; -ms-grid-column-span: 2; grid-column-end: span 2; } #w-node-5748d825feeb-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-332542d0088c-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-c95744d297ba-b71c5c1e { -ms-grid-column-span: 3; grid-column-end: 3; } #w-node-c95744d297c4-b71c5c1e { -ms-grid-column: 1; grid-column-start: 1; -ms-grid-row: 2; grid-row-start: 2; } } @media screen and (max-width: 767px) { #w-node-133d4c7ba1c8-4c7ba190 { -ms-grid-column-align: end; justify-self: end; } #w-node-522402cd09b3-121c5c1b { -ms-grid-column-align: end; justify-self: end; } #w-node-5748d825fef0-121c5c1b { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 2; grid-column-start: span 2; -ms-grid-column-span: 2; grid-column-end: span 2; } #w-node-d95600f53877-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 2; grid-column-start: span 2; -ms-grid-column-span: 2; grid-column-end: span 2; } #w-node-ec500838a616-b71c5c1e { -ms-grid-row: span 1; grid-row-start: span 1; -ms-grid-row-span: 1; grid-row-end: span 1; -ms-grid-column: span 1; grid-column-start: span 1; -ms-grid-column-span: 1; grid-column-end: span 1; } #w-node-c95744d297c4-b71c5c1e { -ms-grid-column: 1; grid-column-start: 1; -ms-grid-column-span: 2; grid-column-end: 3; -ms-grid-row: 2; grid-row-start: 2; -ms-grid-row-span: 1; grid-row-end: 3; } } @media screen and (max-width: 479px) { #w-node-b6481327a003-501c5c19 { -ms-grid-column-align: start; justify-self: start; } }
0.281603
0.045395
.main_page { background: #43af4d url(../img/bg_main.png) no-repeat center / 100% 100%; } button:hover { cursor: pointer; } .header { min-height: 220px; background: rgba( 41, 231, 59, 0.95); } .logo { min-height: 220px; width: 100%; background: url(../img/logo.png) no-repeat center / 60% 60%; } .header_text_lg { color: #fff; font-size: 35px; text-decoration: underline; } .header_text_sm { color: #fff; font-size: 25px; text-decoration: underline; } .auth_block { padding: 10px 30px; } .auth_block div { width: 100%; text-align: center; } .btn_login { background: url(../img/btn_login_bg.png) repeat no-repeat; border: none; border-radius: 5px; width: 70%; color: #fff; text-decoration: underline; font-weight: 700; height: 30px; margin-bottom: 10px; } .btn_reg { background: url(../img/btn_reg_bg.png) repeat no-repeat; border: none; border-radius: 5px; width: 100%; color: #fff; text-decoration: underline; font-weight: 700; height: 35px; margin-bottom: 10px; } .odnoklasniky, .facebook, .twitter, .vk { width: 25px; height: 25px; border: none; border-radius: 5px; margin-right: 5px; } .auth_block input { margin-bottom: 10px; width: 100%; } .odnoklasniky { background: url(../img/odnoklasniky.png) no-repeat center / contain; } .facebook { background: url(../img/facebook.png) no-repeat center / contain; } .twitter { background: url(../img/twitter.png) no-repeat center / contain; } .vk { background: url(../img/vk.png) no-repeat center / contain; } #navbarNav ul { margin: 0 auto; } .bg-faded { background-color: rgba(45, 177, 58, 0.95); width: 100%; min-height: 55px; } .navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link, .navbar-light .navbar-nav .active>.nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.open, .navbar-light .navbar-nav .open>.nav-link { color: #fff; font-size: 25px; text-decoration: underline; } .content_main { min-height: 700px; } .main_page_content { background: rgba(62, 64, 62, 0.95); min-height: 700px; } .chat_block { background: #363836; width: 100%; min-height: 400px; } .chat { margin-left: -15px; padding: 0; } .buttons_area { padding-top: 15px; } .buttons_area button { background: #b4e391; background: -moz-linear-gradient(top, #b4e391 0%, #61c419 50%, #b4e391 100%); background: -webkit-linear-gradient(top, #b4e391 0%,#61c419 50%,#b4e391 100%); background: linear-gradient(to bottom, #b4e391 0%,#61c419 50%,#b4e391 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b4e391', endColorstr='#b4e391',GradientType=0 ); border: none; color: #fff; padding: 5px; text-decoration: underline; } .chat_header { color: #fff; text-decoration: underline; font-size: 28px; text-transform: uppercase; } .chat_header img { max-width: 50px; margin-right: 25px; } footer { padding: 20px; } footer img { max-width: 50px; margin-right: 20px; }
client/src/assets/css/style.css
.main_page { background: #43af4d url(../img/bg_main.png) no-repeat center / 100% 100%; } button:hover { cursor: pointer; } .header { min-height: 220px; background: rgba( 41, 231, 59, 0.95); } .logo { min-height: 220px; width: 100%; background: url(../img/logo.png) no-repeat center / 60% 60%; } .header_text_lg { color: #fff; font-size: 35px; text-decoration: underline; } .header_text_sm { color: #fff; font-size: 25px; text-decoration: underline; } .auth_block { padding: 10px 30px; } .auth_block div { width: 100%; text-align: center; } .btn_login { background: url(../img/btn_login_bg.png) repeat no-repeat; border: none; border-radius: 5px; width: 70%; color: #fff; text-decoration: underline; font-weight: 700; height: 30px; margin-bottom: 10px; } .btn_reg { background: url(../img/btn_reg_bg.png) repeat no-repeat; border: none; border-radius: 5px; width: 100%; color: #fff; text-decoration: underline; font-weight: 700; height: 35px; margin-bottom: 10px; } .odnoklasniky, .facebook, .twitter, .vk { width: 25px; height: 25px; border: none; border-radius: 5px; margin-right: 5px; } .auth_block input { margin-bottom: 10px; width: 100%; } .odnoklasniky { background: url(../img/odnoklasniky.png) no-repeat center / contain; } .facebook { background: url(../img/facebook.png) no-repeat center / contain; } .twitter { background: url(../img/twitter.png) no-repeat center / contain; } .vk { background: url(../img/vk.png) no-repeat center / contain; } #navbarNav ul { margin: 0 auto; } .bg-faded { background-color: rgba(45, 177, 58, 0.95); width: 100%; min-height: 55px; } .navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link, .navbar-light .navbar-nav .active>.nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.open, .navbar-light .navbar-nav .open>.nav-link { color: #fff; font-size: 25px; text-decoration: underline; } .content_main { min-height: 700px; } .main_page_content { background: rgba(62, 64, 62, 0.95); min-height: 700px; } .chat_block { background: #363836; width: 100%; min-height: 400px; } .chat { margin-left: -15px; padding: 0; } .buttons_area { padding-top: 15px; } .buttons_area button { background: #b4e391; background: -moz-linear-gradient(top, #b4e391 0%, #61c419 50%, #b4e391 100%); background: -webkit-linear-gradient(top, #b4e391 0%,#61c419 50%,#b4e391 100%); background: linear-gradient(to bottom, #b4e391 0%,#61c419 50%,#b4e391 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b4e391', endColorstr='#b4e391',GradientType=0 ); border: none; color: #fff; padding: 5px; text-decoration: underline; } .chat_header { color: #fff; text-decoration: underline; font-size: 28px; text-transform: uppercase; } .chat_header img { max-width: 50px; margin-right: 25px; } footer { padding: 20px; } footer img { max-width: 50px; margin-right: 20px; }
0.35421
0.077797
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500&display=swap'); *{ margin: 0; border: 0; box-sizing: border-box; font-family: 'Poppins'; } body, html, .container { height: 100%; background: #f5f5f5; } header { width: 100%; height: 50px; background: #3670a7; display: flex; justify-content: space-between; padding: 0 15px; } .baar { display: flex; align-items: center; justify-content: center; } .icon-baar { display: flex; align-items: center; } .icon-baar > i { color: #fff; font-size: 25px; } .baar > h1 { color: #fff; margin-left: 18px; } .info { display: flex; } .user { display: flex; flex-direction: column; justify-content: center; align-items: flex-end; margin-right: 20px; } .user > h6 { display: flex; align-items: center; color: #fff; font-weight: 400; font-size: .6rem; } h6 > i { font-size: 14px; margin-right: 5px; } #date { margin-right: 5px; } #marca { margin-right: 5px; } .icons { display: flex; align-items: center; justify-content: center; } .icons > div { height: 100%; display: flex; align-items: center; justify-content: center; } .icons a { display: flex; align-items: center; justify-content: center; height: 100%; padding: 0 15px; text-decoration: none; } .icons a > i { color: #fff; font-size: 20px; } .icons a:hover { background: #3f83c2; } main { height: calc(100% - 50px); display: flex; } .menu-lateral { width: 50px; } #icon-menu { height: 40px; width: 100%; display: flex; align-items: center; justify-content: center; } #icon-menu > i { width: 100%; height: 40px; display: flex; align-items: center; justify-content: center; font-size: 22px; color: #3670a7; } #icon-menu > i:hover { background: #3670a7a2; color: #fff; } #icon-menu > a { width: 100%; height: 40px; display: flex; align-items: center; justify-content: center; cursor: default; text-decoration: none; color: #3670a7; } #icon-menu > a:hover { background: #3670a7a2; color: #fff; } .fieldset-sup { width: 100%; border-top: 1px solid #b3b3b3; border-left: 1px solid #b3b3b3; margin-top: 30px; } .fieldset-sup > .legend-sup { width: 200px; height: 25px; display: flex; align-items: flex-end; background: rgba(252, 252, 252, 0.575); font-size: 12px; font-weight: 300; margin-top: -50px; margin-left: -5px; padding-left: 5px; border-left: 1px solid #b3b3b3; border-top: 1px solid #b3b3b3; border-right: 1px solid #b3b3b3; }
styles/home.css
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500&display=swap'); *{ margin: 0; border: 0; box-sizing: border-box; font-family: 'Poppins'; } body, html, .container { height: 100%; background: #f5f5f5; } header { width: 100%; height: 50px; background: #3670a7; display: flex; justify-content: space-between; padding: 0 15px; } .baar { display: flex; align-items: center; justify-content: center; } .icon-baar { display: flex; align-items: center; } .icon-baar > i { color: #fff; font-size: 25px; } .baar > h1 { color: #fff; margin-left: 18px; } .info { display: flex; } .user { display: flex; flex-direction: column; justify-content: center; align-items: flex-end; margin-right: 20px; } .user > h6 { display: flex; align-items: center; color: #fff; font-weight: 400; font-size: .6rem; } h6 > i { font-size: 14px; margin-right: 5px; } #date { margin-right: 5px; } #marca { margin-right: 5px; } .icons { display: flex; align-items: center; justify-content: center; } .icons > div { height: 100%; display: flex; align-items: center; justify-content: center; } .icons a { display: flex; align-items: center; justify-content: center; height: 100%; padding: 0 15px; text-decoration: none; } .icons a > i { color: #fff; font-size: 20px; } .icons a:hover { background: #3f83c2; } main { height: calc(100% - 50px); display: flex; } .menu-lateral { width: 50px; } #icon-menu { height: 40px; width: 100%; display: flex; align-items: center; justify-content: center; } #icon-menu > i { width: 100%; height: 40px; display: flex; align-items: center; justify-content: center; font-size: 22px; color: #3670a7; } #icon-menu > i:hover { background: #3670a7a2; color: #fff; } #icon-menu > a { width: 100%; height: 40px; display: flex; align-items: center; justify-content: center; cursor: default; text-decoration: none; color: #3670a7; } #icon-menu > a:hover { background: #3670a7a2; color: #fff; } .fieldset-sup { width: 100%; border-top: 1px solid #b3b3b3; border-left: 1px solid #b3b3b3; margin-top: 30px; } .fieldset-sup > .legend-sup { width: 200px; height: 25px; display: flex; align-items: flex-end; background: rgba(252, 252, 252, 0.575); font-size: 12px; font-weight: 300; margin-top: -50px; margin-left: -5px; padding-left: 5px; border-left: 1px solid #b3b3b3; border-top: 1px solid #b3b3b3; border-right: 1px solid #b3b3b3; }
0.38122
0.089375
@font-face{ font-family: 'Vollkorn'; font-weight: 500; font-style: normal; font-stretch: normal; src: url('/fonts/vollkorn/Vollkorn-Regular.woff2') format('woff2'), url('/fonts/vollkorn/Vollkorn-Regular.woff') format('woff'), url('/fonts/vollkorn/Vollkorn-Regular.otf') format('opentype'), url('/fonts/vollkorn/Vollkorn-Regular.ttf') format('truetype'); } @font-face{ font-family: 'Vollkorn'; font-weight: 500; font-style: italic; font-stretch: normal; src: url('/fonts/vollkorn/Vollkorn-Italic.woff2') format('woff2'), url('/fonts/vollkorn/Vollkorn-Italic.woff') format('woff'), url('/fonts/vollkorn/Vollkorn-Italic.otf') format('opentype'), url('/fonts/vollkorn/Vollkorn-Italic.ttf') format('truetype'); } @font-face{ font-family: 'Vollkorn'; font-weight: 600; font-style: normal; font-stretch: normal; src: url('/fonts/vollkorn/Vollkorn-SemiBold.woff2') format('woff2'), url('/fonts/vollkorn/Vollkorn-SemiBold.woff') format('woff'), url('/fonts/vollkorn/Vollkorn-SemiBold.otf') format('opentype'), url('/fonts/vollkorn/Vollkorn-SemiBold.ttf') format('truetype'); } @font-face{ font-family: 'Vollkorn'; font-weight: 600; font-style: italic; font-stretch: normal; src: url('/fonts/vollkorn/Vollkorn-SemiBoldItalic.woff2') format('woff2'), url('/fonts/vollkorn/Vollkorn-SemiBoldItalic.woff') format('woff'), url('/fonts/vollkorn/Vollkorn-SemiBoldItalic.otf') format('opentype'), url('/fonts/vollkorn/Vollkorn-SemiBoldItalic.ttf') format('truetype'); } @font-face{ font-family: 'Vollkorn'; font-weight: 700; font-style: normal; font-stretch: normal; src: url('/fonts/vollkorn/Vollkorn-Bold.woff2') format('woff2'), url('/fonts/vollkorn/Vollkorn-Bold.woff') format('woff'), url('/fonts/vollkorn/Vollkorn-Bold.otf') format('opentype'), url('/fonts/vollkorn/Vollkorn-Bold.ttf') format('truetype'); } @font-face{ font-family: 'Vollkorn'; font-weight: 700; font-style: italic; font-stretch: normal; src: url('/fonts/vollkorn/Vollkorn-BoldItalic.woff2') format('woff2'), url('/fonts/vollkorn/Vollkorn-BoldItalic.woff') format('woff'), url('/fonts/vollkorn/Vollkorn-BoldItalic.otf') format('opentype'), url('/fonts/vollkorn/Vollkorn-BoldItalic.ttf') format('truetype'); } @font-face{ font-family: 'Vollkorn'; font-weight: 800; font-style: normal; font-stretch: normal; src: url('/fonts/vollkorn/Vollkorn-ExtraBold.woff2') format('woff2'), url('/fonts/vollkorn/Vollkorn-ExtraBold.woff') format('woff'), url('/fonts/vollkorn/Vollkorn-ExtraBold.otf') format('opentype'), url('/fonts/vollkorn/Vollkorn-ExtraBold.ttf') format('truetype'); } @font-face{ font-family: 'Vollkorn'; font-weight: 800; font-style: italic; font-stretch: normal; src: url('/fonts/vollkorn/Vollkorn-ExtraBoldItalic.woff2') format('woff2'), url('/fonts/vollkorn/Vollkorn-ExtraBoldItalic.woff') format('woff'), url('/fonts/vollkorn/Vollkorn-ExtraBoldItalic.otf') format('opentype'), url('/fonts/vollkorn/Vollkorn-ExtraBoldItalic.ttf') format('truetype'); } @font-face{ font-family: 'Vollkorn'; font-weight: 900; font-style: normal; font-stretch: normal; src: url('/fonts/vollkorn/Vollkorn-Black.woff2') format('woff2'), url('/fonts/vollkorn/Vollkorn-Black.woff') format('woff'), url('/fonts/vollkorn/Vollkorn-Black.otf') format('opentype'), url('/fonts/vollkorn/Vollkorn-Black.ttf') format('truetype'); } @font-face{ font-family: 'Vollkorn'; font-weight: 900; font-style: italic; font-stretch: normal; src: url('/fonts/vollkorn/Vollkorn-BlackItalic.woff2') format('woff2'), url('/fonts/vollkorn/Vollkorn-BlackItalic.woff') format('woff'), url('/fonts/vollkorn/Vollkorn-BlackItalic.otf') format('opentype'), url('/fonts/vollkorn/Vollkorn-BlackItalic.ttf') format('truetype'); }
assets/css/fonts/vollkorn.css
@font-face{ font-family: 'Vollkorn'; font-weight: 500; font-style: normal; font-stretch: normal; src: url('/fonts/vollkorn/Vollkorn-Regular.woff2') format('woff2'), url('/fonts/vollkorn/Vollkorn-Regular.woff') format('woff'), url('/fonts/vollkorn/Vollkorn-Regular.otf') format('opentype'), url('/fonts/vollkorn/Vollkorn-Regular.ttf') format('truetype'); } @font-face{ font-family: 'Vollkorn'; font-weight: 500; font-style: italic; font-stretch: normal; src: url('/fonts/vollkorn/Vollkorn-Italic.woff2') format('woff2'), url('/fonts/vollkorn/Vollkorn-Italic.woff') format('woff'), url('/fonts/vollkorn/Vollkorn-Italic.otf') format('opentype'), url('/fonts/vollkorn/Vollkorn-Italic.ttf') format('truetype'); } @font-face{ font-family: 'Vollkorn'; font-weight: 600; font-style: normal; font-stretch: normal; src: url('/fonts/vollkorn/Vollkorn-SemiBold.woff2') format('woff2'), url('/fonts/vollkorn/Vollkorn-SemiBold.woff') format('woff'), url('/fonts/vollkorn/Vollkorn-SemiBold.otf') format('opentype'), url('/fonts/vollkorn/Vollkorn-SemiBold.ttf') format('truetype'); } @font-face{ font-family: 'Vollkorn'; font-weight: 600; font-style: italic; font-stretch: normal; src: url('/fonts/vollkorn/Vollkorn-SemiBoldItalic.woff2') format('woff2'), url('/fonts/vollkorn/Vollkorn-SemiBoldItalic.woff') format('woff'), url('/fonts/vollkorn/Vollkorn-SemiBoldItalic.otf') format('opentype'), url('/fonts/vollkorn/Vollkorn-SemiBoldItalic.ttf') format('truetype'); } @font-face{ font-family: 'Vollkorn'; font-weight: 700; font-style: normal; font-stretch: normal; src: url('/fonts/vollkorn/Vollkorn-Bold.woff2') format('woff2'), url('/fonts/vollkorn/Vollkorn-Bold.woff') format('woff'), url('/fonts/vollkorn/Vollkorn-Bold.otf') format('opentype'), url('/fonts/vollkorn/Vollkorn-Bold.ttf') format('truetype'); } @font-face{ font-family: 'Vollkorn'; font-weight: 700; font-style: italic; font-stretch: normal; src: url('/fonts/vollkorn/Vollkorn-BoldItalic.woff2') format('woff2'), url('/fonts/vollkorn/Vollkorn-BoldItalic.woff') format('woff'), url('/fonts/vollkorn/Vollkorn-BoldItalic.otf') format('opentype'), url('/fonts/vollkorn/Vollkorn-BoldItalic.ttf') format('truetype'); } @font-face{ font-family: 'Vollkorn'; font-weight: 800; font-style: normal; font-stretch: normal; src: url('/fonts/vollkorn/Vollkorn-ExtraBold.woff2') format('woff2'), url('/fonts/vollkorn/Vollkorn-ExtraBold.woff') format('woff'), url('/fonts/vollkorn/Vollkorn-ExtraBold.otf') format('opentype'), url('/fonts/vollkorn/Vollkorn-ExtraBold.ttf') format('truetype'); } @font-face{ font-family: 'Vollkorn'; font-weight: 800; font-style: italic; font-stretch: normal; src: url('/fonts/vollkorn/Vollkorn-ExtraBoldItalic.woff2') format('woff2'), url('/fonts/vollkorn/Vollkorn-ExtraBoldItalic.woff') format('woff'), url('/fonts/vollkorn/Vollkorn-ExtraBoldItalic.otf') format('opentype'), url('/fonts/vollkorn/Vollkorn-ExtraBoldItalic.ttf') format('truetype'); } @font-face{ font-family: 'Vollkorn'; font-weight: 900; font-style: normal; font-stretch: normal; src: url('/fonts/vollkorn/Vollkorn-Black.woff2') format('woff2'), url('/fonts/vollkorn/Vollkorn-Black.woff') format('woff'), url('/fonts/vollkorn/Vollkorn-Black.otf') format('opentype'), url('/fonts/vollkorn/Vollkorn-Black.ttf') format('truetype'); } @font-face{ font-family: 'Vollkorn'; font-weight: 900; font-style: italic; font-stretch: normal; src: url('/fonts/vollkorn/Vollkorn-BlackItalic.woff2') format('woff2'), url('/fonts/vollkorn/Vollkorn-BlackItalic.woff') format('woff'), url('/fonts/vollkorn/Vollkorn-BlackItalic.otf') format('opentype'), url('/fonts/vollkorn/Vollkorn-BlackItalic.ttf') format('truetype'); }
0.218586
0.034782
.workflow-list-title { height: 58px; background: rgba(245, 245, 250, 1); box-shadow: -2px 0 2px #888; overflow: hidden; /* border-bottom: 1px dotted rgba(235, 235, 245, 1); */ } .workflow-list-title>h2 { font-size: 18px; font-family: MicrosoftYaHei; font-weight: 400; color: rgba(51, 51, 51, 1); line-height: 58px; float: left; text-indent: 20px; } .workflow-list-title .workflow-list-title-menu { float: right; line-height: 58px; } .workflow-list-title .workflow-list-title-menu>span { font-size: 14px; font-family: MicrosoftYaHei; font-weight: 400; color: rgba(128, 128, 128, 1); line-height: 40px; cursor: pointer; } .workflow-list-search { overflow: hidden; /* float: left; */ } .search-add-btn { width: 154px; height: 40px!important; text-align: center!important; margin: 15px; float: left; } .search-add-btn>i { font-size: 16px; } .workflow-list-search-right { float: right; display: flex; } .workflow-list-search-right .checked, .workflow-list-search-right .xiala, .workflow-list-search-right .Search { display: block; /* float: left; */ } .workflow-list-search-right>.checked { /* float: left; */ width: 75px; height: 40px; margin: 15px 0; padding: 10px 0; } .workflow-list-search-right .xiala { width: 150px; height: 40px; margin: 15px 0; border-radius: 4px; } .workflow-list-search-right .Search { width: 300px; height: 40px; margin: 15px 0; } .workflow-list-search-right .xiala .ng-star-inserted { line-height: 40px; } .new-box { margin-top: 20px; } .new-box>label { display: inline-block; width: 70px; } .set-w-473 { width: 437px; } .workflow-list-search-right .xiala .ng-star-inserted { line-height: 40px; } .xiala1 { width: 221px; } .xiala2 { width: 442px; } .workflow-template { margin: 15px; padding: 15px; background: #fff; border-radius: 4px; /* overflow-y: scroll; */ } .workflow-template-title { height: 40px; overflow: hidden; outline: none; cursor: pointer; } .workflow-template-title>p { font-size: 14px; font-family: MicrosoftYaHei; font-weight: bold; color: rgba(51, 51, 51, 1); float: left; line-height: 40px; outline: none; cursor: pointer; } .label-boxs { margin-bottom: 20px; } .label-boxs td { cursor: pointer; width: 20%; } .workflow-template-title>label { display: block; width: 3px; height: 15px; background: rgba(51, 124, 251, 1); float: left; margin-right: 10px; margin-top: 13px; }
src/app/routes/workflow/pages/template-type/template-type.component.css
.workflow-list-title { height: 58px; background: rgba(245, 245, 250, 1); box-shadow: -2px 0 2px #888; overflow: hidden; /* border-bottom: 1px dotted rgba(235, 235, 245, 1); */ } .workflow-list-title>h2 { font-size: 18px; font-family: MicrosoftYaHei; font-weight: 400; color: rgba(51, 51, 51, 1); line-height: 58px; float: left; text-indent: 20px; } .workflow-list-title .workflow-list-title-menu { float: right; line-height: 58px; } .workflow-list-title .workflow-list-title-menu>span { font-size: 14px; font-family: MicrosoftYaHei; font-weight: 400; color: rgba(128, 128, 128, 1); line-height: 40px; cursor: pointer; } .workflow-list-search { overflow: hidden; /* float: left; */ } .search-add-btn { width: 154px; height: 40px!important; text-align: center!important; margin: 15px; float: left; } .search-add-btn>i { font-size: 16px; } .workflow-list-search-right { float: right; display: flex; } .workflow-list-search-right .checked, .workflow-list-search-right .xiala, .workflow-list-search-right .Search { display: block; /* float: left; */ } .workflow-list-search-right>.checked { /* float: left; */ width: 75px; height: 40px; margin: 15px 0; padding: 10px 0; } .workflow-list-search-right .xiala { width: 150px; height: 40px; margin: 15px 0; border-radius: 4px; } .workflow-list-search-right .Search { width: 300px; height: 40px; margin: 15px 0; } .workflow-list-search-right .xiala .ng-star-inserted { line-height: 40px; } .new-box { margin-top: 20px; } .new-box>label { display: inline-block; width: 70px; } .set-w-473 { width: 437px; } .workflow-list-search-right .xiala .ng-star-inserted { line-height: 40px; } .xiala1 { width: 221px; } .xiala2 { width: 442px; } .workflow-template { margin: 15px; padding: 15px; background: #fff; border-radius: 4px; /* overflow-y: scroll; */ } .workflow-template-title { height: 40px; overflow: hidden; outline: none; cursor: pointer; } .workflow-template-title>p { font-size: 14px; font-family: MicrosoftYaHei; font-weight: bold; color: rgba(51, 51, 51, 1); float: left; line-height: 40px; outline: none; cursor: pointer; } .label-boxs { margin-bottom: 20px; } .label-boxs td { cursor: pointer; width: 20%; } .workflow-template-title>label { display: block; width: 3px; height: 15px; background: rgba(51, 124, 251, 1); float: left; margin-right: 10px; margin-top: 13px; }
0.568895
0.125574
.acorn-player.access { float: none; position: relative; overflow: hidden; font-family: Arial, Helvetica, sans-serif; } /* <video> element */ .acorn-player.access video { float: left; clear: both; background-color: #000; } /* Player Controls */ .acorn-player.access .acorn-controls { position: relative; float: left; clear: both; width: 100%; padding-top: 15px; background: #3F3F3F; } /* <button>s */ .acorn-player.access button { position: relative; margin: 0; padding-left: 25px; height: 35px; border: 1px solid #333; background-color: #3F3F3F; background-position: 5px center, top left; background-repeat: no-repeat, repeat-x; font-weight: 100; color: #fff; font-size:.8em; cursor: pointer; } .acorn-player.access button:hover, .acorn-player.access button:focus { background-color: #292929; background-position: 5px center, left -33px; } .acorn-player.access button:active { top: 1px; box-shadow: inset 1px 1px 10px #000; } /* Playback Controls(Play, Pause) */ .acorn-player.access .acorn-play-button { float: left; display: block; width: 75px; background-image: url(access-play.png), url(button-background-dark.png); } .acorn-player.access .acorn-paused-button { background-image: url(access-pause.png), url(button-background-dark.png); } /* Seek Slider */ .acorn-player.access .acorn-seek-slider { position:absolute; top: 0px; display: block; width: 100%; height: 15px; background: #7289A8; z-index: 2; } .acorn-player.access .acorn-seek-slider .ui-slider-handle { display: block; position: absolute; width: 13px; height: 13px; border: 3px solid #fff; top: -2px; -moz-border-radius: 10px; -webkit-border-radius: 10px; border-radius: 10px; -moz-box-shadow: 0px 2px 8px #000; -webkit-box-shadow: 0px 2px 8px #000; box-shadow: 0px 2px 8px #000; background: #888; } .acorn-player.access .acorn-seek-slider .ui-slider-range { background:#DADDE2; } .acorn-player.access .acorn-buffer { background: #8E9DAF !important; } .acorn-player.access .acorn-seek-slider .ui-state-focus, .acorn-player.access .acorn-seek-slider .ui-slider-handle.ui-state-hover { background:#3F3F3F !important; -moz-box-shadow: 0px 2px 15px #000; -webkit-box-shadow: 0px 2px 15px #000; box-shadow: 0px 2px 15px #000; } /* Timer */ .acorn-player.access .acorn-timer { position: absolute; top: 25px; left: 260px; color: #efefef; font-size: 14px; font-weight: bold; } /* Volume Container */ .acorn-player.access .acorn-volume-box { float: left; overflow: hidden; padding-right: 10px; } /* Volume Button */ .acorn-player.access .acorn-volume-button { float: left; width: 85px; border-left: none; background-image: url(access-volume-full.png); } .acorn-player.access .acorn-volume-mute { background-image: url(access-volume.png); } /* Volume Slider */ .acorn-player.access .acorn-volume-slider { float: left; height: 5px; width: 70px; margin-left: 10px; margin-top: 15px; border: 1px solid #333; background: #111; } .acorn-player.access .acorn-volume-slider .ui-slider-handle { width: 5px; height: 15px; margin-top: -5px; margin-left: -5px; border: 1px solid #333; background: #BCBCBC; } .acorn-player.access .acorn-volume-slider .ui-slider-handle.ui-state-hover, .acorn-player.access .acorn-volume-slider .ui-slider-handle.ui-state-focus { background: #fff !important; } .acorn-player.access .acorn-volume-slider .ui-slider-range { background: #636F7C; } /* Fullscreen Button */ .acorn-player.access .acorn-fullscreen-button { float: right; background-image: url(access-fullscreen.png); } /* Fullscreen Mode */ .acorn-player.access .fullscreen-controls { left: 0px; bottom: 0px; } .acorn-player.access .fullscreen-controls .acorn-fullscreen-button { background-image: url(access-exit-fullscreen.png), url(button-background-dark.png); } /* Tooltip */ .acorn-player.access .acorn-tooltip { position: absolute; top: 20px; right: 20px; padding: 10px; background: rgba(70, 70, 70, 0.7); font-size: 14px; font-weight: bold; color: #fff; text-shadow: 0px -1px 1px #000; -webkit-border-radius: 6px; border-radius: 6px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; z-index: 9999; opacity: 0; visibility: hidden; -webkit-transition: all 0.3s ease-out; -moz-transition: all 0.3s ease-out; -o-transition: all 0.3s ease-out; transition: all 0.3s ease-out; } .acorn-player.access .acorn-tooltip.show-tooltip{ opacity: 1; visibility: visible; } /* Caption Button */ .acorn-player.access .acorn-caption-button { float: right; border-right: none; background-image: url(access-captions.png), url(button-background-dark.png); -moz-box-shadow: -2px 0px 5px #111; -webkit-box-shadow: -2px 0px 5px #111; box-shadow: -2px 0px 5px #111; } .acorn-player.access .acorn-caption { font-size: 14px; font-weight: bold; color: #fff; text-shadow: 0px 1px 5px #000; } /* Transcript */ .acorn-player.access .acorn-transcript-button { float: right; border-right: none; background-image: url(access-transcript.png), url(button-background-dark.png); -moz-box-shadow: -2px 0px 5px #111; -webkit-box-shadow: -2px 0px 5px #111; box-shadow: -2px 0px 5px #111; } .acorn-player.access .acorn-caption-active, .acorn-player.access .acorn-transcript-active { background-position: 5px center, left bottom; } /* * acesslight Child Theme */ .acorn-player.access.accesslight .acorn-controls { background-image: url(controls-background-light.png); } /* <button>s */ .acorn-player.access.accesslight button { border: 1px solid #bdbdbd; color: #333; text-shadow: 0px 1px 0px #fff; } /* Playback Controls(Play, Pause) */ .acorn-player.access.accesslight .acorn-play-button { background-image: url(access-play-dark.png), url(button-background-light.png); } .acorn-player.access.accesslight .acorn-paused-button { background-image: url(access-pause-dark.png), url(button-background-light.png); } /* Volume Button */ .acorn-player.access.accesslight .acorn-volume-button { background-image: url(access-volume-full-dark.png), url(button-background-light.png); -moz-box-shadow: 2px 0px 5px #8c8c8c; -webkit-box-shadow: 2px 0px 5px #8c8c8c; box-shadow: 2px 0px 5px #8c8c8c; } .acorn-player.access.accesslight .acorn-volume-mute { background-image: url(access-volume-dark.png), url(button-background-light.png); } /* Caption Buttton */ .acorn-player.access.accesslight .acorn-caption-button { background-image: url(access-captions-dark.png), url(button-background-light.png); -moz-box-shadow: -2px 0px 5px #8c8c8c; -webkit-box-shadow: -2px 0px 5px #8c8c8c; box-shadow: -2px 0px 5px #8c8c8c; } /* Transcript */ .acorn-player.access.accesslight .acorn-transcript-button { background-image: url(access-transcript-dark.png), url(button-background-light.png); -moz-box-shadow: -2px 0px 5px #8c8c8c; -webkit-box-shadow: -2px 0px 5px #8c8c8c; box-shadow: -2px 0px 5px #8c8c8c; } .acorn-player.access.accesslight .acorn-caption-active, .acorn-player.access.accesslight .acorn-transcript-active { color: #000; text-shadow: none; } /* Fullscreen Button */ .acorn-player.access.accesslight .acorn-fullscreen-button { background-image: url(access-fullscreen-dark.png), url(button-background-light.png); -moz-box-shadow: -2px 0px 5px #8c8c8c; -webkit-box-shadow: -2px 0px 5px #8c8c8c; box-shadow: -2px 0px 5px #8c8c8c; } /* Volume Container */ .acorn-player.access.accesslight .acorn-volume-box { -moz-box-shadow: 2px 0px 5px #8c8c8c; -webkit-box-shadow: 2px 0px 5px #8c8c8c; box-shadow: 2px 0px 5px #8c8c8c; } /* Timer */ .acorn-player.access.accesslight .acorn-timer { color: #333; text-shadow: 0px 1px 2px #fff; } /* Volume Slider */ .acorn-player.access.accesslight .acorn-volume-slider { border: 1px solid #333; background: #c1c1c1; -moz-box-shadow: 0px 1px 1px #fff; -webkit-box-shadow: 0px 1px 1px #fff; box-shadow: 0px 1px 1px #fff; } @media (max-width: 1080px){ .acorn-player.access .acorn-timer { left: 240px; } } @media (max-width: 768px){ .acorn-player.access .acorn-timer { left: 255px; } } @media (max-width:320px){ .acorn-player.access .acorn-play-button { width: 55px; } .acorn-player.access button { padding-left: 21px; font-size: .7em; } .acorn-player.access .acorn-volume-button { width: 60px; } .acorn-player.access .acorn-volume-slider { width: 40px; } .acorn-player.access .acorn-timer { left: 169px; font-size: 10px; } }
acornmediaplayer/acorn.access.css
.acorn-player.access { float: none; position: relative; overflow: hidden; font-family: Arial, Helvetica, sans-serif; } /* <video> element */ .acorn-player.access video { float: left; clear: both; background-color: #000; } /* Player Controls */ .acorn-player.access .acorn-controls { position: relative; float: left; clear: both; width: 100%; padding-top: 15px; background: #3F3F3F; } /* <button>s */ .acorn-player.access button { position: relative; margin: 0; padding-left: 25px; height: 35px; border: 1px solid #333; background-color: #3F3F3F; background-position: 5px center, top left; background-repeat: no-repeat, repeat-x; font-weight: 100; color: #fff; font-size:.8em; cursor: pointer; } .acorn-player.access button:hover, .acorn-player.access button:focus { background-color: #292929; background-position: 5px center, left -33px; } .acorn-player.access button:active { top: 1px; box-shadow: inset 1px 1px 10px #000; } /* Playback Controls(Play, Pause) */ .acorn-player.access .acorn-play-button { float: left; display: block; width: 75px; background-image: url(access-play.png), url(button-background-dark.png); } .acorn-player.access .acorn-paused-button { background-image: url(access-pause.png), url(button-background-dark.png); } /* Seek Slider */ .acorn-player.access .acorn-seek-slider { position:absolute; top: 0px; display: block; width: 100%; height: 15px; background: #7289A8; z-index: 2; } .acorn-player.access .acorn-seek-slider .ui-slider-handle { display: block; position: absolute; width: 13px; height: 13px; border: 3px solid #fff; top: -2px; -moz-border-radius: 10px; -webkit-border-radius: 10px; border-radius: 10px; -moz-box-shadow: 0px 2px 8px #000; -webkit-box-shadow: 0px 2px 8px #000; box-shadow: 0px 2px 8px #000; background: #888; } .acorn-player.access .acorn-seek-slider .ui-slider-range { background:#DADDE2; } .acorn-player.access .acorn-buffer { background: #8E9DAF !important; } .acorn-player.access .acorn-seek-slider .ui-state-focus, .acorn-player.access .acorn-seek-slider .ui-slider-handle.ui-state-hover { background:#3F3F3F !important; -moz-box-shadow: 0px 2px 15px #000; -webkit-box-shadow: 0px 2px 15px #000; box-shadow: 0px 2px 15px #000; } /* Timer */ .acorn-player.access .acorn-timer { position: absolute; top: 25px; left: 260px; color: #efefef; font-size: 14px; font-weight: bold; } /* Volume Container */ .acorn-player.access .acorn-volume-box { float: left; overflow: hidden; padding-right: 10px; } /* Volume Button */ .acorn-player.access .acorn-volume-button { float: left; width: 85px; border-left: none; background-image: url(access-volume-full.png); } .acorn-player.access .acorn-volume-mute { background-image: url(access-volume.png); } /* Volume Slider */ .acorn-player.access .acorn-volume-slider { float: left; height: 5px; width: 70px; margin-left: 10px; margin-top: 15px; border: 1px solid #333; background: #111; } .acorn-player.access .acorn-volume-slider .ui-slider-handle { width: 5px; height: 15px; margin-top: -5px; margin-left: -5px; border: 1px solid #333; background: #BCBCBC; } .acorn-player.access .acorn-volume-slider .ui-slider-handle.ui-state-hover, .acorn-player.access .acorn-volume-slider .ui-slider-handle.ui-state-focus { background: #fff !important; } .acorn-player.access .acorn-volume-slider .ui-slider-range { background: #636F7C; } /* Fullscreen Button */ .acorn-player.access .acorn-fullscreen-button { float: right; background-image: url(access-fullscreen.png); } /* Fullscreen Mode */ .acorn-player.access .fullscreen-controls { left: 0px; bottom: 0px; } .acorn-player.access .fullscreen-controls .acorn-fullscreen-button { background-image: url(access-exit-fullscreen.png), url(button-background-dark.png); } /* Tooltip */ .acorn-player.access .acorn-tooltip { position: absolute; top: 20px; right: 20px; padding: 10px; background: rgba(70, 70, 70, 0.7); font-size: 14px; font-weight: bold; color: #fff; text-shadow: 0px -1px 1px #000; -webkit-border-radius: 6px; border-radius: 6px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; z-index: 9999; opacity: 0; visibility: hidden; -webkit-transition: all 0.3s ease-out; -moz-transition: all 0.3s ease-out; -o-transition: all 0.3s ease-out; transition: all 0.3s ease-out; } .acorn-player.access .acorn-tooltip.show-tooltip{ opacity: 1; visibility: visible; } /* Caption Button */ .acorn-player.access .acorn-caption-button { float: right; border-right: none; background-image: url(access-captions.png), url(button-background-dark.png); -moz-box-shadow: -2px 0px 5px #111; -webkit-box-shadow: -2px 0px 5px #111; box-shadow: -2px 0px 5px #111; } .acorn-player.access .acorn-caption { font-size: 14px; font-weight: bold; color: #fff; text-shadow: 0px 1px 5px #000; } /* Transcript */ .acorn-player.access .acorn-transcript-button { float: right; border-right: none; background-image: url(access-transcript.png), url(button-background-dark.png); -moz-box-shadow: -2px 0px 5px #111; -webkit-box-shadow: -2px 0px 5px #111; box-shadow: -2px 0px 5px #111; } .acorn-player.access .acorn-caption-active, .acorn-player.access .acorn-transcript-active { background-position: 5px center, left bottom; } /* * acesslight Child Theme */ .acorn-player.access.accesslight .acorn-controls { background-image: url(controls-background-light.png); } /* <button>s */ .acorn-player.access.accesslight button { border: 1px solid #bdbdbd; color: #333; text-shadow: 0px 1px 0px #fff; } /* Playback Controls(Play, Pause) */ .acorn-player.access.accesslight .acorn-play-button { background-image: url(access-play-dark.png), url(button-background-light.png); } .acorn-player.access.accesslight .acorn-paused-button { background-image: url(access-pause-dark.png), url(button-background-light.png); } /* Volume Button */ .acorn-player.access.accesslight .acorn-volume-button { background-image: url(access-volume-full-dark.png), url(button-background-light.png); -moz-box-shadow: 2px 0px 5px #8c8c8c; -webkit-box-shadow: 2px 0px 5px #8c8c8c; box-shadow: 2px 0px 5px #8c8c8c; } .acorn-player.access.accesslight .acorn-volume-mute { background-image: url(access-volume-dark.png), url(button-background-light.png); } /* Caption Buttton */ .acorn-player.access.accesslight .acorn-caption-button { background-image: url(access-captions-dark.png), url(button-background-light.png); -moz-box-shadow: -2px 0px 5px #8c8c8c; -webkit-box-shadow: -2px 0px 5px #8c8c8c; box-shadow: -2px 0px 5px #8c8c8c; } /* Transcript */ .acorn-player.access.accesslight .acorn-transcript-button { background-image: url(access-transcript-dark.png), url(button-background-light.png); -moz-box-shadow: -2px 0px 5px #8c8c8c; -webkit-box-shadow: -2px 0px 5px #8c8c8c; box-shadow: -2px 0px 5px #8c8c8c; } .acorn-player.access.accesslight .acorn-caption-active, .acorn-player.access.accesslight .acorn-transcript-active { color: #000; text-shadow: none; } /* Fullscreen Button */ .acorn-player.access.accesslight .acorn-fullscreen-button { background-image: url(access-fullscreen-dark.png), url(button-background-light.png); -moz-box-shadow: -2px 0px 5px #8c8c8c; -webkit-box-shadow: -2px 0px 5px #8c8c8c; box-shadow: -2px 0px 5px #8c8c8c; } /* Volume Container */ .acorn-player.access.accesslight .acorn-volume-box { -moz-box-shadow: 2px 0px 5px #8c8c8c; -webkit-box-shadow: 2px 0px 5px #8c8c8c; box-shadow: 2px 0px 5px #8c8c8c; } /* Timer */ .acorn-player.access.accesslight .acorn-timer { color: #333; text-shadow: 0px 1px 2px #fff; } /* Volume Slider */ .acorn-player.access.accesslight .acorn-volume-slider { border: 1px solid #333; background: #c1c1c1; -moz-box-shadow: 0px 1px 1px #fff; -webkit-box-shadow: 0px 1px 1px #fff; box-shadow: 0px 1px 1px #fff; } @media (max-width: 1080px){ .acorn-player.access .acorn-timer { left: 240px; } } @media (max-width: 768px){ .acorn-player.access .acorn-timer { left: 255px; } } @media (max-width:320px){ .acorn-player.access .acorn-play-button { width: 55px; } .acorn-player.access button { padding-left: 21px; font-size: .7em; } .acorn-player.access .acorn-volume-button { width: 60px; } .acorn-player.access .acorn-volume-slider { width: 40px; } .acorn-player.access .acorn-timer { left: 169px; font-size: 10px; } }
0.238107
0.039343
html { font-size: 100%; height: 100%; margin-bottom: 1px; /* Always show a scrollbar to avoid jumping when the scrollbar appears */ } body { font-family: Arial, Helvetica, sans-serif; color: #555; background: #f0f0f0 url('/static/static/h-ui.admin/images/bg-body.gif') top left repeat-y; font-size: 12px; } #body-wrapper { background: url('/static/static/h-ui.admin/images/bg-radial-gradient.gif') fixed 230px top no-repeat; } /******************************** Elements styling ********************************/ h1, h2, h3, h4, h5, h6 { font-family: Helvetica, Arial, sans-serif; color: #222; font-weight: bold; } h1 { font-family: Calibri, Helvetica, Arial, sans-serif; font-size: 31px; font-weight: bold; color: #fff; position: absolute; top: -1000px; /* Remove this line and delete the logo (in the HTML) if you don't want an image as a logo */ } h2 { font-size: 26px; padding: 0 0 10px 0; } h3 { font-size: 17px; padding: 0 0 10px 0; } h4 { font-size: 16px; padding: 0 0 5px 0; } h5 { font-size: 14px; padding: 0 0 5px 0; } h6 { font-size: 12px; padding: 0 0 5px 0; } a { color: #57a000; text-decoration: none; } a:hover { color: #000; } a:active { color: #777; } a:focus { outline: 1px; } strong { font-weight: bold; color: #333; } small { font-size: 0.85em; } pre { font-family: monospace; } p { padding: 5px 0 10px 0; line-height: 1.6em; } /******************************** General Classes ********************************/ .clear { clear: both; } .align-left { float: left; } .align-right { float: right; } /************ Button ************/ .button { font-family: Verdana, Arial, sans-serif; display: inline-block; background: #459300 url('/static/static/h-ui.admin/images/bg-button-green.gif') top left repeat-x !important; border: 1px solid #459300 !important; padding: 4px 7px 4px 7px !important; color: #fff !important; font-size: 11px !important; cursor: pointer; } .button:hover { text-decoration: underline; } .button:active { padding: 5px 7px 3px 7px !important; } a.remove-link { color: #bb0000; } a.remove-link:hover { color: #000; } /*************** Forms ***************/ form label { display: block; padding: 0 0 10px; font-weight: bold; } form fieldset legend { font-weight: bold; margin-bottom: 10px; padding-top: 10px; } form p small { font-size: 0.75em; color: #777; } form input.text-input, form select, form textarea, form .wysiwyg { padding: 6px; font-size: 13px; background: #fff url('/static/static/h-ui.admin/images/bg-form-field.gif') top left repeat-x; border: 1px solid #d5d5d5; color: #333; } form .small-input { width: 25% !important; } form .medium-input { width: 50% !important; } form .large-input { width: 97.5% !important; font-size: 16px !important; padding: 8px !important; } form textarea { width: 97.5% !important; font-family: Arial, Helvetica, sans-serif; } form select { padding: 4px; background: #fff; } form input[type="checkbox"], form input[type="radio"] { padding: 0; background: none; border: 0; } /* Notification for form inputs */ .input-notification { background-position: left 2px; background-repeat: no-repeat; padding: 2px 0 2px 22px; background-color: transparent; margin: 0 0 0 5px; } /* Notification for login page */ #login-wrapper #login-content .notification { border: 0; background-color: #141414; color: #fff !important; } /******************************** Login Page ********************************/ body#login { color: #fff; background: #222 url('/static/static/h-ui.admin/images/bg-login.gif'); } #login-wrapper { background: url('/static/static/h-ui.admin/images/bg-login-top.png') top left repeat-x; } #login-wrapper #login-top { width: 100%; padding: 140px 0 50px 0; text-align: center; font-size: 35px; font-weight: bold; text-shadow: 0px 1px 1px #555; } #login-wrapper #login-top sup { font-size: 18px; font-style: normal; position: absolute; margin-left: 10px; } #login-wrapper #login-content { text-align: left; width: 300px; margin: 0 auto; } #login-wrapper #login-content label { color: #fff; font-weight: normal; font-size: 14px; font-family: Helvetica, Arial, sans-serif; float: left; width: 70px; padding: 0; } #login-wrapper #login-content input { width: 200px; float: right; margin: 0 0 20px 0; border: 0; background: #fff; } #login-wrapper #login-content p { padding: 0; } #login-wrapper #login-content p#remember-password { float: right; } #login-wrapper #login-content p#remember-password input { float: none; width: auto; border: 0; background: none; margin: 0 10px 0 0; } #login-wrapper #login-content p .button { width: auto; margin-top: 20px; }
public/static/static/h-ui.admin/css/login.css
html { font-size: 100%; height: 100%; margin-bottom: 1px; /* Always show a scrollbar to avoid jumping when the scrollbar appears */ } body { font-family: Arial, Helvetica, sans-serif; color: #555; background: #f0f0f0 url('/static/static/h-ui.admin/images/bg-body.gif') top left repeat-y; font-size: 12px; } #body-wrapper { background: url('/static/static/h-ui.admin/images/bg-radial-gradient.gif') fixed 230px top no-repeat; } /******************************** Elements styling ********************************/ h1, h2, h3, h4, h5, h6 { font-family: Helvetica, Arial, sans-serif; color: #222; font-weight: bold; } h1 { font-family: Calibri, Helvetica, Arial, sans-serif; font-size: 31px; font-weight: bold; color: #fff; position: absolute; top: -1000px; /* Remove this line and delete the logo (in the HTML) if you don't want an image as a logo */ } h2 { font-size: 26px; padding: 0 0 10px 0; } h3 { font-size: 17px; padding: 0 0 10px 0; } h4 { font-size: 16px; padding: 0 0 5px 0; } h5 { font-size: 14px; padding: 0 0 5px 0; } h6 { font-size: 12px; padding: 0 0 5px 0; } a { color: #57a000; text-decoration: none; } a:hover { color: #000; } a:active { color: #777; } a:focus { outline: 1px; } strong { font-weight: bold; color: #333; } small { font-size: 0.85em; } pre { font-family: monospace; } p { padding: 5px 0 10px 0; line-height: 1.6em; } /******************************** General Classes ********************************/ .clear { clear: both; } .align-left { float: left; } .align-right { float: right; } /************ Button ************/ .button { font-family: Verdana, Arial, sans-serif; display: inline-block; background: #459300 url('/static/static/h-ui.admin/images/bg-button-green.gif') top left repeat-x !important; border: 1px solid #459300 !important; padding: 4px 7px 4px 7px !important; color: #fff !important; font-size: 11px !important; cursor: pointer; } .button:hover { text-decoration: underline; } .button:active { padding: 5px 7px 3px 7px !important; } a.remove-link { color: #bb0000; } a.remove-link:hover { color: #000; } /*************** Forms ***************/ form label { display: block; padding: 0 0 10px; font-weight: bold; } form fieldset legend { font-weight: bold; margin-bottom: 10px; padding-top: 10px; } form p small { font-size: 0.75em; color: #777; } form input.text-input, form select, form textarea, form .wysiwyg { padding: 6px; font-size: 13px; background: #fff url('/static/static/h-ui.admin/images/bg-form-field.gif') top left repeat-x; border: 1px solid #d5d5d5; color: #333; } form .small-input { width: 25% !important; } form .medium-input { width: 50% !important; } form .large-input { width: 97.5% !important; font-size: 16px !important; padding: 8px !important; } form textarea { width: 97.5% !important; font-family: Arial, Helvetica, sans-serif; } form select { padding: 4px; background: #fff; } form input[type="checkbox"], form input[type="radio"] { padding: 0; background: none; border: 0; } /* Notification for form inputs */ .input-notification { background-position: left 2px; background-repeat: no-repeat; padding: 2px 0 2px 22px; background-color: transparent; margin: 0 0 0 5px; } /* Notification for login page */ #login-wrapper #login-content .notification { border: 0; background-color: #141414; color: #fff !important; } /******************************** Login Page ********************************/ body#login { color: #fff; background: #222 url('/static/static/h-ui.admin/images/bg-login.gif'); } #login-wrapper { background: url('/static/static/h-ui.admin/images/bg-login-top.png') top left repeat-x; } #login-wrapper #login-top { width: 100%; padding: 140px 0 50px 0; text-align: center; font-size: 35px; font-weight: bold; text-shadow: 0px 1px 1px #555; } #login-wrapper #login-top sup { font-size: 18px; font-style: normal; position: absolute; margin-left: 10px; } #login-wrapper #login-content { text-align: left; width: 300px; margin: 0 auto; } #login-wrapper #login-content label { color: #fff; font-weight: normal; font-size: 14px; font-family: Helvetica, Arial, sans-serif; float: left; width: 70px; padding: 0; } #login-wrapper #login-content input { width: 200px; float: right; margin: 0 0 20px 0; border: 0; background: #fff; } #login-wrapper #login-content p { padding: 0; } #login-wrapper #login-content p#remember-password { float: right; } #login-wrapper #login-content p#remember-password input { float: none; width: auto; border: 0; background: none; margin: 0 10px 0 0; } #login-wrapper #login-content p .button { width: auto; margin-top: 20px; }
0.26341
0.081593
.skin-blue .wrapper, .skin-blue .main-sidebar, .skin-blue .left-side { background-color: #242338 !important; } .skin-blue .sidebar-menu>li.header { background-color: #1e1d2d !important; color: #fbfbfb; } .skin-blue .sidebar-menu>li.active>a { border-left-color: #7289da !important; background-color: #1e1d2d !important; } .skin-blue .sidebar a:hover { background-color: #1e1d2d !important; } .skin-blue .main-header .navbar, .skin-blue .main-header .logo { background-color: #232338 !important; } .skin-blue .main-header .logo { color: #fbfbfb !important; } .nav-tabs-custom>.nav-tabs>li.active { border-top-color: #7289da !important; } .nav-tabs-custom, .box-header.with-border { background-color: #1e1d2d !important; border-radius: 15px !important; } .bg-gray { background-color: #1e1d2d !important; } .nav-tabs-custom>.nav-tabs>li.active>a, .nav-tabs-custom>.nav-tabs>li.active:hover>a { background-color: #1e1d2d !important; border-color: #1e1d2d !important; border-top-color: #7289da !important; } .nav-tabs-custom > .nav-tabs > li:hover, .box.box-primary { border-top-color: #7289da !important; } .box-body { background-color: #242338 !important; border-radius: 15px !important; } .box { box-shadow: none !important; background: none !important; border-top: none !important; } .box-header.with-border { border-bottom: none !important; margin-bottom: .5vw !important; } .box-footer { background-color: transparent !important; border-top: none !important; } .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-top-color: #413f66 !important; } .main-footer { background: transparent !important; border-color: #242338 !important; } .alert-danger { border-radius: 15px !important; } code { background-color: #7289da !important; color: #fbfbfb !important; border-radius: 15px !important; } .table>thead>tr>th { border-bottom: none !important; } .middle:hover, .align-middle:hover, .table-hover>tbody>tr:hover { background-color: #1e1d2d !important; } input.form-control, .select2-container--default .select2-selection--multiple, .select2-container--default .select2-selection--single, .form-control, .btn-default { background-color: #1e1d2d !important; border-color: #413f66 !important; border-radius: 15px !important; } .select2-dropdown, .select2-container--default { background: none !important; border: none !important; margin-top: .25vw !important; } .select2-container--default.select2-container--focus .select2-selection--multiple, .select2-container--default .select2-search--dropdown .select2-search__field { border-color: #413f66 !important; } .select2-container--default .select2-selection--multiple .select2-selection__choice { color: #fbfbfb !important; background-color: #7289da !important; border-radius: 15px !important; border-color: #7289da !important; } .select2-container--default .select2-results__option .select2-results__option, .select2-container--default .select2-results__group { color: #fbfbfb !important; } pre { background-color: #1e1d2d !important; } .btn-default:hover { color: #fbfbfb !important; } .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-top: 0 !important; } .content-wrapper { background:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIj48ZGVmcz48cGF0dGVybiBpZD0icGF0dGVybiIgd2lkdGg9IjQwIiBoZWlnaHQ9IjQwIiB2aWV3Qm94PSIwIDAgNDAsNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSgxMjApICI+PHJlY3QgaWQ9InBhdHRlcm4tYmFja2dyb3VuZCIgd2lkdG<KEY>; } .input-group .input-group-addon, .modal-content, .btn-primary, .btn-warning, .btn-success { background-color: #1e1d2d !important; border-color: #413f66 !important; border-radius: 15px !important; }
1.1.3/Twilight/Admin.css
.skin-blue .wrapper, .skin-blue .main-sidebar, .skin-blue .left-side { background-color: #242338 !important; } .skin-blue .sidebar-menu>li.header { background-color: #1e1d2d !important; color: #fbfbfb; } .skin-blue .sidebar-menu>li.active>a { border-left-color: #7289da !important; background-color: #1e1d2d !important; } .skin-blue .sidebar a:hover { background-color: #1e1d2d !important; } .skin-blue .main-header .navbar, .skin-blue .main-header .logo { background-color: #232338 !important; } .skin-blue .main-header .logo { color: #fbfbfb !important; } .nav-tabs-custom>.nav-tabs>li.active { border-top-color: #7289da !important; } .nav-tabs-custom, .box-header.with-border { background-color: #1e1d2d !important; border-radius: 15px !important; } .bg-gray { background-color: #1e1d2d !important; } .nav-tabs-custom>.nav-tabs>li.active>a, .nav-tabs-custom>.nav-tabs>li.active:hover>a { background-color: #1e1d2d !important; border-color: #1e1d2d !important; border-top-color: #7289da !important; } .nav-tabs-custom > .nav-tabs > li:hover, .box.box-primary { border-top-color: #7289da !important; } .box-body { background-color: #242338 !important; border-radius: 15px !important; } .box { box-shadow: none !important; background: none !important; border-top: none !important; } .box-header.with-border { border-bottom: none !important; margin-bottom: .5vw !important; } .box-footer { background-color: transparent !important; border-top: none !important; } .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-top-color: #413f66 !important; } .main-footer { background: transparent !important; border-color: #242338 !important; } .alert-danger { border-radius: 15px !important; } code { background-color: #7289da !important; color: #fbfbfb !important; border-radius: 15px !important; } .table>thead>tr>th { border-bottom: none !important; } .middle:hover, .align-middle:hover, .table-hover>tbody>tr:hover { background-color: #1e1d2d !important; } input.form-control, .select2-container--default .select2-selection--multiple, .select2-container--default .select2-selection--single, .form-control, .btn-default { background-color: #1e1d2d !important; border-color: #413f66 !important; border-radius: 15px !important; } .select2-dropdown, .select2-container--default { background: none !important; border: none !important; margin-top: .25vw !important; } .select2-container--default.select2-container--focus .select2-selection--multiple, .select2-container--default .select2-search--dropdown .select2-search__field { border-color: #413f66 !important; } .select2-container--default .select2-selection--multiple .select2-selection__choice { color: #fbfbfb !important; background-color: #7289da !important; border-radius: 15px !important; border-color: #7289da !important; } .select2-container--default .select2-results__option .select2-results__option, .select2-container--default .select2-results__group { color: #fbfbfb !important; } pre { background-color: #1e1d2d !important; } .btn-default:hover { color: #fbfbfb !important; } .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-top: 0 !important; } .content-wrapper { background:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIj48ZGVmcz48cGF0dGVybiBpZD0icGF0dGVybiIgd2lkdGg9IjQwIiBoZWlnaHQ9IjQwIiB2aWV3Qm94PSIwIDAgNDAsNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSgxMjApICI+PHJlY3QgaWQ9InBhdHRlcm4tYmFja2dyb3VuZCIgd2lkdG<KEY>; } .input-group .input-group-addon, .modal-content, .btn-primary, .btn-warning, .btn-success { background-color: #1e1d2d !important; border-color: #413f66 !important; border-radius: 15px !important; }
0.205336
0.077378
.clearfix:after { display: block; content: ''; height: 0; width: 100%; clear: both; } * { border: 0; list-style: none; margin: 0; padding: 0; text-decoration: none; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; -webkit-margin-before: 0px; -webkit-margin-after: 0px; -webkit-margin-start: 0px; -webkit-margin-end: 0px; -webkit-font-smoothing: antialiased !important; } header, section, main, footer, aside, nav { display: block; } textarea, input, button, button { -webkit-border-radius: 0; outline: none; resize: none; } input[type="text"], input[type="button"], input[type="submit"], textarea, button { -webkit-appearance: none; } @media screen and (min-width: 100px) { body { font-size: 47.5%; padding-top: 75px; } } @media screen and (min-width: 400px) { body { padding-top: 94px; } } @media screen and (min-width: 700px) { body { font-size: 52.5%; } } @media screen and (min-width: 800px) { body { padding-top: 0; } } @media screen and (min-width: 1100px) { body { font-size: 62.5%; } } #ajaxBusy, .ajax-content-loader { display: none !important; position: fixed; top: -1000px; } main { max-width: 1597px; margin: 0 auto; } .inner { width: 90%; max-width: 1497px; margin: 0 auto; } .inner.inner-medium { max-width: 1040px; } .tac { text-align: center; } a { color: inherit; } img { max-width: 100%; } strong { font-weight: 700; } .gold { color: #ff9900; } input, textarea { outline: none; resize: none; } .clearfix:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body { font-family: 'Montserrat', sans-serif; font-weight: 400; background: #ffffff; color: #2f2f2f; } .clearfix:after { display: block; content: ''; height: 0; width: 100%; clear: both; } #AmountItemsInCart { display: none !important; } #ico-menu { cursor: pointer; position: fixed; z-index: 1001; width: 40px; height: 40px; background: #000000; } #ico-menu span { width: 40px; height: 6px; background: #ffffff; position: absolute; top: 2px; left: 0; -webkit-transition: all 0.2s; -moz-transition: all 0.2s; -ms-transition: all 0.2s; -o-transition: all 0.2s; transition: all 0.2s; z-index: 2; -webkit-transform: rotate(0); -ms-transform: rotate(0); transform: rotate(0); } #ico-menu span.line-02 { top: 17px; z-index: 1; } #ico-menu span.line-03 { top: 32px; } #ico-menu.active span.line-02 { background: transparent; } #ico-menu.active span.line-01 { background: #ff9900; top: 16px; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg); } #ico-menu.active span.line-03 { background: #ff9900; top: 16px; -webkit-transform: rotate(-45deg); -ms-transform: rotate(-45deg); transform: rotate(-45deg); } #menu-touch { display: none; background: rgba(0, 0, 0, 0.8); height: 100%; width: 100%; position: fixed; top: 0; left: 0; z-index: 998; } #menu-touch #menu-touch-list { width: 100%; height: 100%; padding: 0 5% 50px; overflow-x: hidden; overflow-y: auto; -webkit-overflow-scrolling: touch; text-align: right; font-size: 2.0em; color: #ffffff; } #menu-touch #menu-touch-list li { margin-bottom: 10px; } #menu-touch #menu-touch-list li.mini_cart a:before { display: inline-block; content: ''; height: 18px; width: 18px; margin: 7px 5px 0 0; background: url('/arquivos/cuisinart_sprite.png?6') no-repeat -125px 0; } #menu-touch #menu-touch-list li.mini_cart a .CartItems { margin-right: 5px; } #menu-touch #menu-touch-list li.busca { padding-top: 5px; } #menu-touch #menu-touch-list li.busca:before { display: inline-block; content: ''; height: 17px; width: 17px; margin: 0 7px 0 0; background: url('/arquivos/cuisinart_sprite.png?6') no-repeat -145px 0; } #menu-touch #menu-touch-list h3 { margin-top: 15px; margin-bottom: 10px; padding-top: 10px; border-top: 1px solid #434343; } header { background: #000000; color: #ffffff; position: relative; z-index: 1000; width: 100%; } header .top_bar { border-bottom: 1px solid #434343; padding: 10px 0; position: fixed; z-index: 1000; top: 0; left: 0; width: 100%; background: #000000; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar ul { height: 32px; } header .top_bar ul li { font-size: 1.2em; height: 32px; line-height: 32px; display: inline-block; vertical-align: top; padding: 0 10px; } header .top_bar ul li.mini_cart { text-transform: uppercase; letter-spacing: 0.1em; } header .top_bar ul li.mini_cart a:before { display: inline-block; content: ''; height: 18px; width: 18px; margin: 7px 5px 0 0; background: url('/arquivos/cuisinart_sprite.png?6') no-repeat -125px 0; } header .top_bar ul li.mini_cart a .CartItems { margin-right: 5px; font-size: 1.4em; } header .top_bar ul li.busca a { display: block; text-indent: -3000px; overflow: hidden; height: 17px; width: 17px; margin-top: 9px; background: url('/arquivos/cuisinart_sprite.png?6') no-repeat -145px 0; } header .top_bar ul.list_1 { float: left; } header .top_bar ul.list_1 li:first-child { border-right: 1px solid #434343; } header .top_bar ul.list_1 li:first-child a { color: #ff9900; } header .top_bar ul.list_2 { float: right; } header .top_bar ul.list_2 li { border-right: 1px solid #434343; } header .top_bar ul.list_2 li:last-child { padding-right: 0; border-right: 0; } header .top_bar ul ul { display: none !important; } header .menu_bar { background: #ffffff; position: relative; display: none; } header .menu_bar .menu-departamento { width: 100%; text-align: center; position: relative; } header .menu_bar .menu-departamento h3 { display: inline-block; margin-right: 107px; padding: 20px 0; text-transform: uppercase; font-weight: 400; color: #808080; font-size: 1.2em; } header .menu_bar .menu-departamento h3:last-child { margin-right: 0; } header .menu_bar .menu-departamento h3:hover + ul { display: block; } header .menu_bar .menu-departamento ul { display: none; position: absolute; top: 100%; margin-top: -5px; z-index: 100; padding-top: 5px; border-right: 1px solid #f4f6f7; border-left: 1px solid #f4f6f7; text-transform: uppercase; background: #ffffff; } header .menu_bar .menu-departamento ul li { width: 100%; display: block; text-align: left; } header .menu_bar .menu-departamento ul li a { height: 100%; width: 100%; display: block; padding: 13px; font-size: 1em; color: #808080; } header .menu_bar .menu-departamento ul li a:hover { background: rgba(0, 0, 0, 0.05); } header .menu_bar .menu-departamento ul:after { display: block; content: ''; width: 100%; height: 3px; background: url('/arquivos/cuisinart-menu-shadow.png') repeat-x 0 0; position: absolute; left: 0; bottom: -3px; } header .menu_bar .menu-departamento ul:hover { display: block; } header .menu_bar ul { display: none; } header .menu_bar:after { display: block; content: ''; width: 100%; height: 3px; background: url('/arquivos/cuisinart-menu-shadow.png') repeat-x 0 0; position: absolute; left: 0; bottom: -3px; } header .brand_bar .inner { position: relative; } header .brand_bar h1 { height: 34px; width: 220px; display: inline-block; position: relative; top: 0; } header .brand_bar h1 a { background: url('/arquivos/cuisinart_sprite.png?6') no-repeat 0 -86px; display: block; width: 100%; height: 100%; text-indent: -3000px; overflow: hidden; } header .brand_bar .duvidas { color: #ffffff; position: absolute; right: 0; top: 30px; font-size: 1.4em; line-height: 34px; height: 34px; } header .brand_bar .duvidas li { float: left; } header .brand_bar .duvidas li span { color: #b5b5b5; } header .brand_bar .duvidas li.phone-televendas:after, header .brand_bar .duvidas li.phone-assistencia:after { display: inline-block; content: ''; margin: 0 5px; width: 13px; height: 13px; background: url('/arquivos/cuisinart_sprite.png?6') no-repeat 0 0; position: relative; top: 2px; } header .brand_bar .duvidas li.phone-assistencia { padding-left: 45px; } header .brand_bar .duvidas li.phone-assistencia:after { background-position: -15px 0; } @media screen and (min-width: 100px) { #ico-menu { display: block; top: 17px; right: 5%; } #menu-touch { padding: 100px 0 0; } header { position: fixed; top: 0; left: 0; } header .brand_bar h1 { margin: 30px 0; zoom: 0.8; } header .brand_bar .duvidas { display: none; } header .top_bar { display: none; } } @media screen and (min-width: 400px) { #ico-menu { top: 25px; } #menu-touch { padding: 120px 0 0; } header .brand_bar h1 { zoom: 1.0; } } @media screen and (min-width: 800px) { #ico-menu, #menu-touch { display: none !important; } header { padding-top: 53px; position: relative; } header .brand_bar .duvidas { display: inline-block; } header .brand_bar.fixed { background: #000000; position: fixed; width: 100%; left: 0; top: 53px !important; z-index: 999; } header .brand_bar.fixed h1 { margin: 20px 0; } header .brand_bar.fixed .duvidas { top: 20px; } header .menu_bar { display: block; } header .top_bar { display: block; } header .top_bar ul li.nao_e_voce { display: none; } } @media screen and (min-width: 970px) { header .top_bar ul li.nao_e_voce { display: inline-block; } } @media screen and (min-width: 1150px) { header .menu_bar ul li { letter-spacing: 0.1em; } } @media screen and (min-width: 1250px) { header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar ul li { padding: 0 20px; } header .top_bar ul li.mini_cart a:before { margin: 7px 9px 0 0; } header .top_bar ul li.mini_cart a .CartItems { margin-right: 10px; } header .top_bar ul.list_1 li:first-child { padding: 0 40px 0 0; } } @media screen and (min-width: 1350px) { header .menu_bar ul li { margin-right: 11%; } } .clearfix:after { display: block; content: ''; height: 0; width: 100%; clear: both; } #search_box { display: none; background: rgba(0, 0, 0, 0.8); position: fixed; top: 0; left: 0; height: 100%; width: 100%; z-index: 1001; } #search_box .inner { position: relative; height: 100%; } #search_box fieldset { position: absolute; left: 0; top: 20%; width: 100%; } #search_box legend, #search_box label, #search_box select { display: none; } #search_box a.close { position: absolute; top: 20px; right: 0; font-size: 0; display: block; width: 9px; height: 9px; } #search_box a.close:after { display: block; content: ''; height: 9px; width: 9px; background: url('/arquivos/cuisinart_sprite.png?6') no-repeat -44px -34px; } #search_box .btn-buscar { position: absolute; top: 0; right: 0; color: #ffffff; line-height: 23px; height: 63px; cursor: pointer; } #search_box .fulltext-search-box { background-color: #f4f6f7; line-height: 23px; height: 63px; width: 100%; color: #000000; } body.modal_busca #search_box { display: block; } @media screen and (min-width: 100px) { #search_box .btn-buscar { font-size: 0; padding: 20px; width: 70px; background: #ff9900 url('/arquivos/cuisinart-lupa.png') no-repeat 50% 50%; } #search_box .fulltext-search-box { padding: 20px 80px 20px 5%; font-size: 1.3em; } } @media screen and (min-width: 500px) { #search_box .btn-buscar { font-size: 2.0em; text-transform: uppercase; width: auto; padding-right: 70px; background-position: 85% 50%; } #search_box .fulltext-search-box { padding-right: 160px; font-size: 2.0em; } } @media screen and (max-width: 699px) { body.modal_busca .ui-autocomplete { display: none !important; } } @media screen and (min-width: 700px) { #search_box .fulltext-search-box { padding-right: 190px; } body.modal_busca .ui-autocomplete { width: 90%; max-width: 1497px; position: fixed !important; z-index: 12; } body.modal_busca .ui-autocomplete li { padding-left: 5%; background: #ffffff; height: 35px; line-height: 35px; } body.modal_busca .ui-autocomplete li a { cursor: pointer; display: block; height: 35px; padding: 5px 0; border-bottom: 1px solid #f4f6f7; width: 100%; font-size: 1.5em; } body.modal_busca .ui-autocomplete li a img { display: inline-block; margin-right: 10px; } body.modal_busca .ui-autocomplete li:hover { background: #f4f6f7; } } .clearfix:after { display: block; content: ''; height: 0; width: 100%; clear: both; } #gallery_bar .slick-slider { margin-bottom: 0; } #gallery_bar .box-banner { text-align: center; } #gallery_bar .box-banner img { max-width: 100%; width: auto !important; height: auto !important; margin: 0 auto; } #gallery_bar .slick-prev, #gallery_bar .slick-next { width: auto; height: auto; position: absolute; top: 70%; left: 50%; padding: 10px 23px; border: 1px solid #000000; } #gallery_bar .slick-prev:before, #gallery_bar .slick-next:before { display: none !important; } #gallery_bar .slick-prev:after, #gallery_bar .slick-next:after { display: block; content: ''; height: 9px; padding: 0; margin: 0; } #gallery_bar .slick-prev { margin-left: -161px; width: 161px; } #gallery_bar .slick-prev:after { width: 115px; background: url('/arquivos/cuisinart_sprite.png?6') no-repeat 0 -23px; } #gallery_bar .slick-next { margin-left: -1px; width: 96px; } #gallery_bar .slick-next:after { width: 50px; background: url('/arquivos/cuisinart_sprite.png?6') no-repeat -115px -23px; } #gallery_bar .slick-dots { width: auto; height: 12px; padding: 0; top: 70%; left: 50%; margin-left: -230px; background-color: transparent; } #gallery_bar .slick-dots li { margin: 0 6px; padding: 0; width: 12px; height: 12px; float: left; } #gallery_bar .slick-dots li button { margin: 0; height: 9px; width: 9px; border: 1px solid #000000; border-radius: 100%; } #gallery_bar .slick-dots li button:before { display: none !important; } #gallery_bar .slick-dots li.slick-active button { background: #000000; } @media screen and (min-width: 100px) { #gallery_bar .slick-prev, #gallery_bar .slick-next { display: none !important; } #gallery_bar .slick-dots { top: inherit; bottom: 10px; margin-left: 0; -webkit-transform: translateX(-50%); -ms-transform: translateX(-50%); transform: translateX(-50%); } } @media screen and (min-width: 850px) { #gallery_bar .slick-prev, #gallery_bar .slick-next { display: block !important; } #gallery_bar .slick-dots { top: 70%; bottom: inherit; margin-left: -230px; -webkit-transform: translateX(0%); -ms-transform: translateX(0%); transform: translateX(0%); } } .clearfix:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .destaques_home { text-align: center; } .destaques_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .destaques_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .destaques_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .destaques_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .destaques_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .destaques_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .destaques_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .destaques_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .destaques_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .destaques_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .destaques_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .destaques_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .destaques_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .destaques_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .destaques_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .destaques_home #box_destaque_01, .destaques_home #box_destaque_02 { display: inline-block; vertical-align: middle; text-align: center; } .destaques_home #box_destaque_01 .box-banner, .destaques_home #box_destaque_02 .box-banner { width: 100%; } .destaques_home #box_destaque_01 img, .destaques_home #box_destaque_02 img { display: block; margin: 0 auto; width: 100%; height: auto; max-width: 792px; } .destaques_home #box_destaque_01 img { float: left; } .destaques_home #box_destaque_02 img { float: right; } @media screen and (min-width: 100px) { #box_destaque_01, #box_destaque_02 { width: 100%; margin: 10px 0; } } @media screen and (min-width: 450px) { #box_destaque_01, #box_destaque_02 { width: 49.9%; margin: 0; } #box_destaque_01 { float: left; padding-right: 5px; } #box_destaque_02 { float: right; padding-left: 5px; } } .clearfix:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.home main > h2 { text-align: center; font-weight: lighter; font-size: 3.8em; color: #434343; margin-top: 50px; } .menu_vitrines_home { text-align: center; padding: 40px 0; } .menu_vitrines_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .menu_vitrines_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .menu_vitrines_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .menu_vitrines_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .menu_vitrines_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .menu_vitrines_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .menu_vitrines_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .menu_vitrines_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .menu_vitrines_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .menu_vitrines_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .menu_vitrines_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .menu_vitrines_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .menu_vitrines_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .menu_vitrines_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .menu_vitrines_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .menu_vitrines_home li { display: inline-block; padding: 10px; color: #b5b5b5; font-size: 1.4em; text-transform: uppercase; border: 1px solid transparent; cursor: pointer; margin: 0 5px; } .menu_vitrines_home li.active, .menu_vitrines_home li:hover { color: #ff9900; border-color: #ff9900; } .menu_vitrines_home li.active { cursor: default; } .vitrines_home { margin: 0 auto 50px; width: 100%; } .vitrines_home > div { display: none; } .vitrines_home > div.active { display: block; } .vitrines_home h2 { display: none; } .vitrines_home ul li { display: inline-block; margin: 30px 0; vertical-align: top; } .vitrines_home ul li .dados-produto { display: block; width: 100%; padding-bottom: 10px; margin-bottom: 10px; border-bottom: 1px solid #b5b5b5; position: relative; } .vitrines_home ul li .dados-produto .valor-produto { color: #b5b5b5; font-size: 1.4em; position: absolute; top: 0; right: 0; } .vitrines_home ul li .dados-produto .esgotado-produto { color: #b5b5b5; font-size: 1.4em; padding: 5px 0; clear: both; } .vitrines_home ul li h3 { font-size: 1.7em; color: #434343; float: left; display: inline-block; min-height: 90px; } .vitrines_home ul li .shelf-rating { float: left; } .vitrines_home ul li .buy-button-normal a { font-size: 0; float: right; } .vitrines_home ul li .buy-button-normal a:after { display: inline-block; text-align: right; content: 'Comprar'; text-transform: uppercase; color: #ff9900; font-weight: 700; } @media screen and (min-width: 100px) { .vitrines_home ul { text-align: center; } .vitrines_home ul li { text-align: left; width: 90%; max-width: 484px; } .vitrines_home ul li img { width: auto; max-width: 100%; display: block; margin-bottom: 25px; height: auto; } .vitrines_home ul li h3 { padding-right: 80px; } .vitrines_home ul li .buy-button-normal a:after { font-size: 10px; } .vitrines_home ul li .shelf-rating { background: url(/arquivos/cuisinart-shelf-rating.png) no-repeat 0 0; display: block; height: 14px; text-indent: -3000px; overflow: hidden; width: 75px; float: left; } .vitrines_home ul li .avaliacao5, .vitrines_home ul li .avaliacao10 { background-position: 0 -20px; } .vitrines_home ul li .avaliacao15, .vitrines_home ul li .avaliacao20 { background-position: 0 -40px; } .vitrines_home ul li .avaliacao25, .vitrines_home ul li .avaliacao30 { background-position: 0 -60px; } .vitrines_home ul li .avaliacao35, .vitrines_home ul li .avaliacao40 { background-position: 0 -80px; } .vitrines_home ul li .avaliacao45, .vitrines_home ul li .avaliacao50 { background-position: 0 -100px; } } @media screen and (min-width: 450px) { .vitrines_home ul li { width: 49.9%; padding: 0 20px; } .vitrines_home ul li h3 { padding-right: 90px; } } @media screen and (min-width: 1000px) { .vitrines_home ul li { width: 24.9%; padding: 0 30px; } .vitrines_home ul li img { margin-bottom: 50px; } .vitrines_home ul li h3 { padding-right: 80px; } .vitrines_home ul li .buy-button-normal a:after { font-size: 12px; } } .clearfix:after { display: block; content: ''; height: 0; width: 100%; clear: both; } #search_bar { background: #f4f6f7; width: 100%; position: relative; height: 63px; } #search_bar .btn-buscar { position: absolute; top: 0; right: 0; color: #ffffff; line-height: 23px; height: 63px; cursor: pointer; } #search_bar .fulltext-search-box { background-color: transparent; line-height: 23px; height: 63px; width: 100%; color: #000000; } #search_bar legend, #search_bar label, #search_bar select { display: none; } @media screen and (min-width: 100px) { #search_bar .btn-buscar { font-size: 0; padding: 20px; width: 70px; background: #ff9900 url('/arquivos/cuisinart-lupa.png') no-repeat 50% 50%; } #search_bar .fulltext-search-box { padding: 20px 80px 20px 5%; font-size: 1.3em; } } @media screen and (min-width: 500px) { #search_bar .btn-buscar { font-size: 2.0em; text-transform: uppercase; width: auto; padding-right: 70px; background-position: 85% 50%; } #search_bar .fulltext-search-box { padding-right: 160px; font-size: 2.0em; } } @media screen and (max-width: 699px) { .ui-autocomplete { display: none !important; } } @media screen and (min-width: 700px) { #search_bar .fulltext-search-box { padding-right: 190px; } .ui-autocomplete { width: 100%; } .ui-autocomplete li { padding-left: 5%; background: #ffffff; height: 35px; line-height: 35px; } .ui-autocomplete li a { cursor: pointer; display: block; height: 35px; padding: 5px 0; border-bottom: 1px solid #f4f6f7; width: 100%; font-size: 1.5em; } .ui-autocomplete li a img { display: inline-block; margin-right: 10px; } .ui-autocomplete li:hover { background: #f4f6f7; } } .clearfix:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main { margin: 0 auto; width: 90%; max-width: 1497px; } body.produtos main .pager, body.produtos main .resultado-busca-filtro .filterBy, body.produtos main .searchResultsTime, body.produtos main .resultado-busca-filtro .compare, body.produtos main .titulo-sessao, body.produtos main .didyoumean { display: none; } body.produtos main .scroll-loading { display: block; height: auto; background: #f4f6f7; text-align: center; padding: 20px 0; } body.produtos main .scroll-loading:before { display: inline-block; content: 'Carregar mais produtos'; color: #ff9900; font-size: 1.4em; height: 32px; width: auto; line-height: 32px; background: url('/arquivos/cuisinart-ajax-loader-grey.gif') no-repeat 0 0; padding-left: 42px; } body.produtos main .bread-crumb { border-bottom: 1px solid #b5b5b5; width: 100%; padding: 10px 0; margin-bottom: 20px; margin-top: 50px; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul li { float: left; color: #ff9900; margin-right: 15px; font-size: 1.4em; } body.produtos main .bread-crumb ul li:first-child a { display: block; height: 13px; width: 13px; text-indent: -3000px; overflow: hidden; background: url('/arquivos/cuisinart_sprite.png?6') no-repeat 0 -35px; } body.produtos main .main > h2 { color: #434343; font-size: 3.7em; font-weight: lighter; float: left; display: none !important; } body.produtos main .main .sub { display: block; float: left; clear: both; } body.produtos main .main .sub .orderBy { color: #b5b5b5; padding: 13px 0; } body.produtos main .main .sub .orderBy label { font-size: 1.4em; } body.produtos main .main .sub .orderBy select { background: #f4f6f7; padding: 5px; font-size: 1.2em; color: #808080; } body.produtos main .main > .vitrine { clear: both; } body.produtos main .main > .vitrine ul li { display: inline-block; margin: 15px 0; padding: 5px 5px 10px; vertical-align: top; border: 1px solid #ffffff; } body.produtos main .main > .vitrine ul li .dados-produto { display: block; width: 100%; padding-bottom: 10px; margin-bottom: 10px; border-bottom: 1px solid #b5b5b5; position: relative; } body.produtos main .main > .vitrine ul li .dados-produto .valor-produto { color: #b5b5b5; font-size: 1.4em; position: absolute; top: 0; right: 0; } body.produtos main .main > .vitrine ul li .dados-produto .esgotado-produto { color: #b5b5b5; font-size: 1.4em; padding: 5px 0; clear: both; } body.produtos main .main > .vitrine ul li h3 { font-size: 1.6em; color: #434343; float: left; display: inline-block; min-height: 90px; } body.produtos main .main > .vitrine ul li .shelf-rating { float: left; } body.produtos main .main > .vitrine ul li .buy-button-normal a { font-size: 0; float: right; } body.produtos main .main > .vitrine ul li .buy-button-normal a:after { display: inline-block; text-align: right; content: 'Comprar'; text-transform: uppercase; color: #ff9900; font-weight: 700; } body.produtos main .main > .vitrine ul li:hover { border: 1px solid #808080; } @media screen and (min-width: 100px) { body.produtos #sidebar { display: none; } body.produtos main .main > .vitrine { width: 100%; } body.produtos main .main > .vitrine ul { text-align: center; } body.produtos main .main > .vitrine ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .main > .vitrine ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .main > .vitrine ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .main > .vitrine ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .main > .vitrine ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .main > .vitrine ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .main > .vitrine ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .main > .vitrine ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .main > .vitrine ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .main > .vitrine ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .main > .vitrine ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .main > .vitrine ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .main > .vitrine ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .main > .vitrine ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .main > .vitrine ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .main > .vitrine ul li { text-align: left; width: 90%; max-width: 484px; } body.produtos main .main > .vitrine ul li img { width: auto; max-width: 100%; display: block; margin-bottom: 25px; height: auto; } body.produtos main .main > .vitrine ul li h3 { padding-right: 80px; } body.produtos main .main > .vitrine ul li .buy-button-normal a:after { font-size: 10px; } body.produtos main .main > .vitrine ul li .shelf-rating { background: url(/arquivos/cuisinart-shelf-rating.png) no-repeat 0 0; display: block; height: 14px; text-indent: -3000px; overflow: hidden; width: 75px; float: left; } body.produtos main .main > .vitrine ul li .avaliacao5, body.produtos main .main > .vitrine ul li .avaliacao10 { background-position: 0 -20px; } body.produtos main .main > .vitrine ul li .avaliacao15, body.produtos main .main > .vitrine ul li .avaliacao20 { background-position: 0 -40px; } body.produtos main .main > .vitrine ul li .avaliacao25, body.produtos main .main > .vitrine ul li .avaliacao30 { background-position: 0 -60px; } body.produtos main .main > .vitrine ul li .avaliacao35, body.produtos main .main > .vitrine ul li .avaliacao40 { background-position: 0 -80px; } body.produtos main .main > .vitrine ul li .avaliacao45, body.produtos main .main > .vitrine ul li .avaliacao50 { background-position: 0 -100px; } } @media screen and (min-width: 450px) { body.produtos main .main > .vitrine ul { text-align: left; } body.produtos main .main > .vitrine ul li { width: 49.9%; padding: 15px 20px 20px; } body.produtos main .main > .vitrine ul li h3 { padding-right: 90px; } } @media screen and (min-width: 1000px) { body.produtos #sidebar { padding-top: 50px; display: inline-block; width: 25%; vertical-align: top; font-size: 1.4em; text-transform: uppercase; } body.produtos #sidebar h3 { display: none; } body.produtos #sidebar h4 { margin: 15px 0 10px; } body.produtos #sidebar li { margin: 5px 0; } body.produtos #sidebar .menu-navegue { display: none; } body.produtos main .main { width: 75%; display: inline-block; } body.produtos main .main > .vitrine ul li .buy-button-normal a:after { font-size: 12px; } } @media screen and (min-width: 1100px) { body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul li:first-child a { margin-top: 2px; } } @media screen and (min-width: 1500px) { body.produtos main .main > .vitrine ul li { width: 33.3%; } body.produtos main .main > .vitrine ul li h3 { padding-right: 90px; } } .clearfix:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 main { margin: 0 auto; width: 90%; max-width: 1497px; } body.cuisinart-404 main .content-404 h2 { color: #434343; font-size: 2.5em; font-weight: lighter; margin-bottom: 50px; position: relative; padding-left: 46px; } body.cuisinart-404 main .content-404 h2:before { display: block; content: ''; position: absolute; top: 0; left: 0; width: 26px; height: 26px; background: url('/arquivos/cuisinart_sprite.png?6') no-repeat -79px -34px; } body.cuisinart-404 main .content-404 h3 { color: #434343; font-size: 2.6em; font-weight: lighter; margin: 50px 0 40px; } body.cuisinart-404 main .content-404 p.estara_disponivel { padding-left: 46px; margin-bottom: 20px; font-size: 3.8em; color: #434343; } body.cuisinart-404 main .content-404 ul.list { margin-bottom: 20px; font-size: 1.5em; line-height: 30px; color: #434343; padding-left: 46px; } body.cuisinart-404 main .content-404 ul.list li { color: #ff9900; margin-bottom: 10px; list-style: disc; } body.cuisinart-404 main .content-404 ul.list li span { color: #434343; } body.cuisinart-404 main .content-404 ul.list li:last-child { margin-bottom: 0; } body.cuisinart-404 .bread-crumb { border-bottom: 1px solid #b5b5b5; width: 100%; padding: 10px 0; margin-bottom: 20px; margin-top: 50px; } body.cuisinart-404 .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 .bread-crumb ul li { float: left; color: #ff9900; margin-right: 15px; font-size: 1.4em; } body.cuisinart-404 .bread-crumb ul li:first-child a { display: block; height: 13px; width: 13px; text-indent: -3000px; overflow: hidden; background: url('/arquivos/cuisinart_sprite.png?6') no-repeat 0 -35px; } @media screen and (min-width: 100px) { body.cuisinart-404 #sidebar { display: none; } } @media screen and (min-width: 700px) { body.cuisinart-404 #sidebar { padding-top: 50px; display: inline-block; width: 25%; vertical-align: top; font-size: 1.4em; text-transform: uppercase; } body.cuisinart-404 #sidebar h3 { margin: 25px 0 20px; } body.cuisinart-404 #sidebar h4 { margin: 20px 0 15px; } body.cuisinart-404 #sidebar li { margin: 10px 0; } body.cuisinart-404 #sidebar .menu-navegue { display: none; } body.cuisinart-404 main .content-404 { display: inline-block; width: 75%; padding-left: 20px; } } @media screen and (min-width: 1100px) { body.cuisinart-404 main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 main .bread-crumb ul li:first-child a { margin-top: 2px; } } .clearfix:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main { margin: 0 auto; width: 90%; max-width: 1497px; position: relative; } body.produto main .bread-crumb { border-bottom: 1px solid #b5b5b5; width: 100%; padding: 10px 0; margin-bottom: 20px; margin-top: 50px; } body.produto main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .bread-crumb ul li { float: left; color: #ff9900; margin-right: 15px; font-size: 1.4em; } body.produto main .bread-crumb ul li:first-child a { display: block; height: 13px; width: 13px; text-indent: -3000px; overflow: hidden; background: url('/arquivos/cuisinart_sprite.png?6') no-repeat 0 -35px; } body.produto main aside#produto { max-width: 484px; width: 100%; margin: 0 auto 25px; } body.produto main aside#produto:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main aside#produto:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main aside#produto:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main aside#produto:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main aside#produto:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main aside#produto:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main aside#produto:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main aside#produto:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main aside#produto:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main aside#produto:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main aside#produto:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main aside#produto:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main aside#produto:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main aside#produto:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main aside#produto:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main aside#produto .thumbs { width: 100%; text-align: center; padding-top: 10px; clear: both; } body.produto main aside#produto .thumbs li { display: inline-block; padding: 0 5px; width: 19%; } body.produto main aside#produto .thumbs li a { display: block; width: 100%; height: 100%; } body.produto main aside#produto .thumbs li a img { display: block; width: 100%; height: auto; max-width: 90px; margin: 0 auto; } body.produto main aside#produto .thumbs.thumbs_length_1 li { display: none !important; } body.produto main aside#produto .thumbs.thumbs_length_2 li { width: 49%; } body.produto main aside#produto .thumbs.thumbs_length_3 li { width: 32%; } body.produto main aside#produto .thumbs.thumbs_length_4 li { width: 24%; } body.produto main aside#produto .thumbs.thumbs_length_5 li { width: 19%; } body.produto main aside#produto .thumbs.thumbs_length_6 li { width: 32%; } body.produto main aside#produto .thumbs.thumbs_length_7 li, body.produto main aside#produto .thumbs.thumbs_length_8 li { width: 24%; } body.produto main .DescriptionBox { position: relative; clear: both; } body.produto main .DescriptionBox #resenha { position: absolute; top: 0; right: 0; } body.produto main .DescriptionBox #resenha .avalie-produto h5 { float: left; font-size: 1.3em; padding-right: 10px; color: #808080; } body.produto main .DescriptionBox #resenha .avalie-produto .rating-avalie-wrapper { float: left; } body.produto main .DescriptionBox #resenha .avalie-produto .rating-avalie-wrapper a span { float: left; margin: 0; padding: 0; background: url('/arquivos/cuisinart-shelf-rating.png') no-repeat 0 0; height: 13px; width: 15px; text-indent: -3000px; overflow: hidden; } body.produto main .DescriptionBox #resenha .avalie-produto .rating-avalie-wrapper a span.filledRatingStar { background-position: 0 -20px; } body.produto main .DescriptionBox #resenha .user-review > h4, body.produto main .DescriptionBox #resenha .avaliacao > .media, body.produto main .DescriptionBox #resenha .avaliacao > .rating, body.produto main .DescriptionBox #resenha .avaliacao > #ulPubliqueResenha, body.produto main .DescriptionBox #resenha .avaliacao > .links-resenha-usuario, body.produto main .DescriptionBox #resenha .avaliacao > #userReviewReturnMessages, body.produto main .DescriptionBox #resenha .avaliacao > .resenhas, body.produto main .DescriptionBox #resenha #userReviewAllComments, body.produto main .DescriptionBox #resenha #publishUserReview, body.produto main .DescriptionBox #resenha #publishedReviewMessage, body.produto main .DescriptionBox #resenha #opcoes-avalie { display: none !important; } body.produto main h2 { color: #808080; font-size: 2.4em; font-weight: lighter; display: inline-block; } body.produto main .productDescription { color: #808080; font-size: 1.3em; line-height: 23px; } body.produto main .unavailable-button { color: #808080; font-size: 1.3em; font-weight: lighter; } body.produto main #caracteristicas, body.produto main #ProdutoMaisInfos { display: none; } body.produto main #ProdutoMaisInfos.active { clear: both; display: block !important; border-bottom: 1px solid #b5b5b5; padding-top: 20px; } body.produto main #ProdutoMaisInfos.active h3 { font-size: 1.3em; color: #434343; margin-bottom: 20px; text-transform: uppercase; } body.produto main #ProdutoMaisInfos.active h3:before { display: inline-block; content: ''; margin-right: 18px; width: 25px; height: 13px; background: url('/arquivos/cuisinart_sprite.png?6') no-repeat -30px 0; } body.produto main #ProdutoMaisInfos.active p { margin-bottom: 20px; font-size: 1.3em; color: #808080; font-weight: lighter; } body.produto main #ProdutoMaisInfos.active p strong { text-transform: uppercase; padding-right: 5px; font-weight: lighter; } body.produto main #ProdutoMaisInfos.active p span { color: #434343; text-transform: uppercase; } body.produto main #ProdutoMaisInfos.active p#descricao_produto { line-height: 20px; } body.produto main #ProdutoMaisInfos.active p#manual_produto { font-size: 1.0em; text-transform: uppercase; color: #ff9900; } body.produto main #ProdutoMaisInfos.active p#manual_produto a { display: inline-block; padding: 10px 20px 10px 10px; border: 1px solid #ff9900; vertical-align: top; line-height: 15px; } body.produto main #ProdutoMaisInfos.active p#manual_produto a:before, body.produto main #ProdutoMaisInfos.active p#manual_produto a:after { display: inline-block; content: ''; } body.produto main #ProdutoMaisInfos.active p#manual_produto a:before { width: 19px; height: 15px; margin-right: 10px; background: url('/arquivos/cuisinart_sprite.png?6') no-repeat -57px 0; } body.produto main #ProdutoMaisInfos.active p#manual_produto a:after { width: 37px; height: 6px; margin-left: 10px; background: url('/arquivos/cuisinart_sprite.png?6') no-repeat -65px -76px; position: relative; top: -3px; } body.produto main .productPrice .valor-de, body.produto main .productPrice .preco-a-vista, body.produto main .productPrice .economia-de { display: none !important; } body.produto main .productPrice em { font-style: inherit; } body.produto main .productPrice .valor-por { font-size: 2.5em; color: #808080; } body.produto main .productPrice .valor-por strong { font-weight: lighter; } body.produto main .productPrice .valor-dividido { font-size: 3.0em; color: #ff9900; } body.produto main .buy-button { background: #ff9900; color: #ffffff; width: 245px; height: 58px; line-height: 58px; padding-left: 40px; margin: 20px auto 40px; font-size: 22px; text-transform: uppercase; text-align: left; font-weight: 700; border-radius: 29px; position: relative; } body.produto main .buy-button:before { display: block; content: ''; width: 23px; height: 32px; position: absolute; right: 40px; top: 13px; background: url('/arquivos/cuisinart_sprite.png?6') no-repeat 0 -51px; } body.produto main .buy-button:before:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .buy-button:before:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .buy-button:before:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .buy-button:before:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .buy-button:before:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .buy-button:before:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .buy-button:before:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .buy-button:before:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .buy-button:before:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .buy-button:before:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .buy-button:before:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .buy-button:before:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .buy-button:before:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .buy-button:before:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .buy-button:before:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #popupCalculoFreteWrapper { clear: both; border-top: 1px solid #b5b5b5; padding-top: 20px; } body.produto main #popupCalculoFreteWrapper a { display: block; font-size: 1.4em; color: #434343; line-height: 22px; } body.produto main #popupCalculoFreteWrapper a:before { display: inline-block; content: ''; width: 39px; height: 22px; background: url('/arquivos/cuisinart_sprite.png?6') no-repeat -110px -34px; margin-right: 15px; } body.produto main #calculoFrete { clear: both; padding-top: 20px; padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid #b5b5b5; } body.produto main #calculoFrete:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #calculoFrete:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #calculoFrete:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #calculoFrete:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #calculoFrete:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #calculoFrete:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #calculoFrete:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #calculoFrete:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #calculoFrete:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #calculoFrete:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #calculoFrete:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #calculoFrete:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #calculoFrete:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #calculoFrete:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #calculoFrete:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #calculoFrete h1, body.produto main #calculoFrete h2, body.produto main #calculoFrete .close, body.produto main #calculoFrete .quantity { display: none !important; } body.produto main #calculoFrete .prefixo { font-size: 1.2em; color: #b5b5b5; float: left; text-transform: uppercase; } body.produto main #calculoFrete .prefixo input { margin-left: 10px; height: 28px; border-radius: 14px 0 0 14px; background: #f4f6f7; line-height: 28px; padding: 0 10px; width: 100px; } body.produto main #calculoFrete .frete-calcular { float: left; background: #f4f6f7; border-radius: 0 14px 14px 0; overflow: hidden; margin-right: 15px; } body.produto main #calculoFrete .frete-calcular #btnFreteSimulacao { height: 28px; line-height: 28px; background: #ff9900; color: #ffffff; font-size: 1.2em; cursor: pointer; padding: 0 20px; border-radius: 14px 0 0 14px; } body.produto main #calculoFrete .cep-busca { float: left; } body.produto main #calculoFrete .cep-busca a { color: #ff9900; line-height: 28px; display: block; height: 28px; } body.produto main #calculoFrete .freight-values { padding-top: 20px; } body.produto main #calculoFrete .freight-values tr { line-height: 20px; } body.produto main #calculoFrete .freight-values thead { color: #ff9900; } body.produto main #produtos_similares { display: block !important; clear: both; padding-top: 50px; padding-bottom: 30px; } body.produto main #produtos_similares > h3 { font-size: 3.7em; font-weight: lighter; color: #434343; text-align: center; margin: 0 auto 50px; } body.produto main #produtos_similares h2 { display: none !important; } body.produto main #produtos_similares .slick-list ul li { display: inline-block; margin: 15px 0; padding: 5px 5px 10px; vertical-align: top; border: 1px solid #ffffff; } body.produto main #produtos_similares .slick-list ul li .dados-produto { display: block; width: 100%; padding-bottom: 10px; margin-bottom: 10px; border-bottom: 1px solid #b5b5b5; position: relative; } body.produto main #produtos_similares .slick-list ul li .dados-produto .valor-produto { color: #b5b5b5; font-size: 1.4em; position: absolute; top: 0; right: 0; } body.produto main #produtos_similares .slick-list ul li .dados-produto .esgotado-produto { color: #b5b5b5; font-size: 1.4em; padding: 5px 0; clear: both; } body.produto main #produtos_similares .slick-list ul li h3 { font-size: 1.6em; color: #434343; float: left; display: inline-block; min-height: 90px; } body.produto main #produtos_similares .slick-list ul li .shelf-rating { float: left; } body.produto main #produtos_similares .slick-list ul li .buy-button-normal a { font-size: 0; float: right; } body.produto main #produtos_similares .slick-list ul li .buy-button-normal a:after { display: inline-block; text-align: right; content: 'Comprar'; text-transform: uppercase; color: #ff9900; font-weight: 700; } body.produto main #produtos_similares .slick-list ul li:hover { border: 1px solid #808080; } @media screen and (min-width: 100px) { body.produto main h2 { padding-right: 80px; margin-bottom: 20px; } body.produto main .productDescription { padding-bottom: 20px; } body.produto main .DescriptionBox #resenha .avalie-produto h5 { display: none; } body.produto main #produtos_similares .slick-list ul { text-align: center; } body.produto main #produtos_similares .slick-list ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #produtos_similares .slick-list ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #produtos_similares .slick-list ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #produtos_similares .slick-list ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #produtos_similares .slick-list ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #produtos_similares .slick-list ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #produtos_similares .slick-list ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #produtos_similares .slick-list ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #produtos_similares .slick-list ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #produtos_similares .slick-list ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #produtos_similares .slick-list ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #produtos_similares .slick-list ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #produtos_similares .slick-list ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #produtos_similares .slick-list ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #produtos_similares .slick-list ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #produtos_similares .slick-list ul li { text-align: left; width: 90%; max-width: 484px; } body.produto main #produtos_similares .slick-list ul li img { width: auto; max-width: 100%; display: block; margin-bottom: 25px; height: auto; } body.produto main #produtos_similares .slick-list ul li h3 { padding-right: 80px; } body.produto main #produtos_similares .slick-list ul li .buy-button-normal a:after { font-size: 10px; } body.produto main #produtos_similares .slick-list ul li .shelf-rating { background: url(/arquivos/cuisinart-shelf-rating.png) no-repeat 0 0; display: block; height: 14px; text-indent: -3000px; overflow: hidden; width: 75px; float: left; } body.produto main #produtos_similares .slick-list ul li .avaliacao5, body.produto main #produtos_similares .slick-list ul li .avaliacao10 { background-position: 0 -20px; } body.produto main #produtos_similares .slick-list ul li .avaliacao15, body.produto main #produtos_similares .slick-list ul li .avaliacao20 { background-position: 0 -40px; } body.produto main #produtos_similares .slick-list ul li .avaliacao25, body.produto main #produtos_similares .slick-list ul li .avaliacao30 { background-position: 0 -60px; } body.produto main #produtos_similares .slick-list ul li .avaliacao35, body.produto main #produtos_similares .slick-list ul li .avaliacao40 { background-position: 0 -80px; } body.produto main #produtos_similares .slick-list ul li .avaliacao45, body.produto main #produtos_similares .slick-list ul li .avaliacao50 { background-position: 0 -100px; } body.produto main #produtos_similares .slick-prev, body.produto main #produtos_similares .slick-next { display: none !important; } body.produto main #produtos_similares .slick-dots { bottom: -20px; -webkit-transform: translateX(-50%); -ms-transform: translateX(-50%); transform: translateX(-50%); width: auto; height: 12px; padding: 0; left: 50%; background-color: transparent; } body.produto main #produtos_similares .slick-dots li { margin: 0 6px; padding: 0; width: 12px; height: 12px; float: left; } body.produto main #produtos_similares .slick-dots li button { margin: 0; height: 9px; width: 9px; border: 1px solid #000000; border-radius: 100%; } body.produto main #produtos_similares .slick-dots li button:before { display: none !important; } body.produto main #produtos_similares .slick-dots li.slick-active button { background: #000000; } } @media screen and (min-width: 450px) { body.produto main #produtos_similares .slick-list ul li { width: 49.9%; padding: 15px 20px 20px; } body.produto main #produtos_similares .slick-list ul li h3 { padding-right: 90px; } } @media screen and (min-width: 800px) { body.produto main aside#produto { float: left; width: 33%; } body.produto main h2 { padding-right: 200px; margin-bottom: 40px; } body.produto main .productDescription { padding-bottom: 40px; } body.produto main .DescriptionBox { clear: none; float: left; width: 66.9%; padding-left: 25px; } body.produto main .DescriptionBox #resenha .avalie-produto h5 { display: block; } body.produto main .buy-button { float: left; } } @media screen and (min-width: 1000px) { body.produto main #produtos_similares .slick-list ul li .buy-button-normal a:after { font-size: 12px; } } @media screen and (min-width: 1100px) { body.produto main h2 { padding-right: 230px; } } @media screen and (min-width: 1250px) { body.produto main #produtos_similares .slick-list ul li { width: 24.9%; } } .clearfix:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto .zoomPad { position: relative; float: left; cursor: crosshair; } body.produto .zoomPreload { -moz-opacity: .8; opacity: .8; filter: alpha(opacity=80); color: #333; font-size: 12px; font-family: Tahoma; text-decoration: none; border: 1px solid #CCC; background-color: #fff; padding: 8px; text-align: center; background-repeat: no-repeat; background-position: center center; z-index: 110; width: 100%; height: 100%; position: absolute; top: 0; left: 0; } body.produto .zoomPup { overflow: hidden; background-color: #FFF; -moz-opacity: .6; opacity: .6; filter: alpha(opacity=60); z-index: 120; position: absolute; border: 1px solid #CCC; z-index: 101; cursor: crosshair; } body.produto .zoomOverlay { position: absolute; left: 0; top: 0; background: #FFF; z-index: 5000; width: 100%; height: 100%; display: none; z-index: 101; } body.produto .zoomWindow { position: absolute; left: 100% !important; top: 40px; background: #FFF; z-index: 6000; width: 484px !important; height: 334px !important; } body.produto .zoomWrapper { position: relative; border: 1px solid #999; z-index: 110; width: 484px !important; height: 334px !important; } body.produto .zoomWrapperTitle { display: block; background: #999; color: #FFF; height: 18px; line-height: 18px; width: 100%; overflow: hidden; text-align: center; font-size: 10px; position: absolute; top: 0; left: 0; z-index: 120; -moz-opacity: .6; opacity: .6; filter: alpha(opacity=60); } body.produto .zoomWrapperImage { display: block; position: relative; overflow: hidden; z-index: 110; height: 332px !important; width: 482px !important; } body.produto .zoomWrapperImage img { border: 0; display: block; position: absolute; z-index: 101; height: auto !important; width: auto !important; max-width: 1000px; } body.produto .zoomIframe { z-index: -1; filter: alpha(opacity=0); -moz-opacity: .8; opacity: .8; position: absolute; display: block; } @media screen and (max-width: 799px) { body.produto .zoomPreload, body.produto .zoomPup, body.produto .zoomOverlay, body.produto .zoomWindow, body.produto .zoomWrapper, body.produto .zoomWrapperTitle, body.produto .zoomWrapperImage, body.produto .zoomIframe { display: none !important; } body.produto .zoomPad { cursor: default; } } .clearfix:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional main { margin: 0 auto; width: 90%; max-width: 1497px; } body.institucional main h2 { color: #434343; font-size: 3.7em; font-weight: lighter; margin-bottom: 50px; } body.institucional main h3 { color: #434343; font-size: 2.7em; font-weight: lighter; margin-bottom: 20px; } body.institucional main p, body.institucional main ul.list { margin-bottom: 20px; font-size: 1.5em; line-height: 30px; color: #434343; } body.institucional main ul.list { padding-left: 30px; } body.institucional main ul.list li { margin-bottom: 10px; list-style: disc; color: #ff9900; } body.institucional main ul.list li span { color: #434343; } body.institucional main ul.list li:last-child { margin-bottom: 0; } body.institucional .bread-crumb { border-bottom: 1px solid #b5b5b5; width: 100%; padding: 10px 0; margin-bottom: 20px; margin-top: 50px; } body.institucional .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional .bread-crumb ul li { float: left; color: #ff9900; margin-right: 15px; font-size: 1.4em; } body.institucional .bread-crumb ul li:first-child a { display: block; height: 13px; width: 13px; text-indent: -3000px; overflow: hidden; background: url('/arquivos/cuisinart_sprite.png?6') no-repeat 0 -35px; } @media screen and (min-width: 1100px) { body.institucional main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional main .bread-crumb ul li:first-child a { margin-top: 2px; } } .clearfix:after { display: block; content: ''; height: 0; width: 100%; clear: both; } footer { background: #f6f7f8 url('/arquivos/cuisinart-footer_bg.png') repeat-x 0 0; font-size: 1.3em; padding: 30px 0 60px; } #footer_text { font-size: 1.1em; line-height: 15px; padding: 15px 0; background: #ffffff; color: rgba(0, 0, 0, 0.59); } #newsletter_bar { clear: both; margin-top: 50px; background: #f5f5f5; padding: 15px 0; text-align: center; } #newsletter_bar h3 { display: none; } #newsletter_bar fieldset { font-size: 1.6em; } #newsletter_bar fieldset #newsletterClientName, #newsletter_bar fieldset #newsletterClientEmail { display: inline-block; font-size: 0.9em; padding: 0 15px; height: 40px; line-height: 40px; border-left: 1px solid #f1f1f1; border-top: 1px solid #d5d5d5; border-right: 1px solid #f1f1f1; color: #434343; margin-right: 10px; } #newsletter_bar fieldset p { display: inline-block; line-height: 40px; margin-right: 20px; text-align: left; } #newsletter_bar fieldset p:before { display: inline-block; content: ''; width: 22px; height: 15px; background: url('/arquivos/cuisinart_sprite.png?6') no-repeat -55px -34px; margin-right: 8px; position: relative; top: 2px; } #newsletter_bar #newsletterButtonOK, #newsletter_bar .bt-voltar { cursor: pointer; display: inline-block; padding: 0 15px; font-size: 0.9em; text-transform: uppercase; height: 40px; line-height: 40px; background: #ff9900; color: #ffffff; } #newsletter_bar .bt-voltar { margin-top: 15px; } .link_top { display: none; position: fixed; right: 40px; text-align: center; text-transform: uppercase; font-size: 1.2em; } .link_top:before { display: block; content: ''; margin: 0 auto 13px; width: 17px; height: 9px; background: url('/arquivos/cuisinart_sprite.png?6') no-repeat -24px -34px; } @media screen and (min-width: 100px) { .link_top { bottom: 210px; } #newsletter_bar fieldset #newsletterClientName, #newsletter_bar fieldset #newsletterClientEmail { width: 100%; margin-bottom: 20px; } #newsletter_bar fieldset p { width: 100%; text-align: center; } #footer-services { text-align: center; padding-bottom: 30px; } #footer-services .footer-services { display: block; text-align: center; } #footer-services .footer-services span { display: inline-block; vertical-align: top; line-height: 25px; } #footer-services .footer-services img { display: block; margin: 15px auto 25px; } #footer-menu { text-align: center; border-top: 1px solid #a9a9aa; position: relative; } #footer-menu .footer-col { padding-top: 30px; display: inline-block; text-align: left; width: 100%; vertical-align: top; } #footer-menu .footer-col li { margin-bottom: 10px; } #footer-menu .footer-col li strong { padding-bottom: 20px; display: block; } #footer-menu .footer-col li.small { font-size: 0.8em; margin-bottom: 3px; } #footer-menu .footer-col li .phone { font-size: 1.8em; color: #ff9900; font-weight: lighter; } #footer-menu .footer-col li.phone-televendas, #footer-menu .footer-col li.phone-assistencia { margin-bottom: 0; font-weight: bold; } #footer-menu .footer-col li.phone-televendas:before, #footer-menu .footer-col li.phone-assistencia:before { display: inline-block; content: ''; height: 13px; width: 13px; margin-right: 8px; position: relative; top: 3px; } #footer-menu .footer-col li.phone-televendas:before { background: url('/arquivos/cuisinart_sprite.png?6') no-repeat -107px 0; } #footer-menu .footer-col li.phone-assistencia:before { background: url('/arquivos/cuisinart_sprite.png?6') no-repeat -49px -70px; } #footer-menu:after { display: block; content: ''; width: 91px; height: 23px; background: url('/arquivos/cuisinart-vtex.png') no-repeat 0 0; position: absolute; left: 0; bottom: -38px; } } @media screen and (min-width: 500px) { #newsletter_bar fieldset #newsletterClientName, #newsletter_bar fieldset #newsletterClientEmail { width: 35%; margin-bottom: 0; } } @media screen and (min-width: 700px) { .link_top { bottom: 150px; } #footer-menu .footer-col { width: 25%; padding-right: 5px; } } @media screen and (min-width: 850px) { #newsletter_bar fieldset #newsletterClientName, #newsletter_bar fieldset #newsletterClientEmail { width: 25%; } #newsletter_bar fieldset p { width: auto; } } @media screen and (min-width: 1150px) { #footer-services .footer-services { display: inline-block; text-align: left; vertical-align: middle; min-height: 35px; padding-top: 10px; } #footer-services .footer-services img { display: inline-block; margin: 0 0 0 20px; } #footer-services .footer-services.formas-de-pagamento { padding-right: 40px; border-right: 1px solid #a9a9aa; } #footer-services .footer-services.certificado-de-seguranca { padding-left: 40px; } } .clearfix:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .ModalBack { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 200; } .ModalBack.FundoEscuro { background: #000; opacity: .5; filter: alpha(opacity=50); -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; } #modal-sacola { z-index: 11; position: relative; } #modal-sacola .tit { font-size: 1.7em; display: block; padding: 0 0 13px; } #modal-sacola article { border-radius: 4px; background: #fff; max-width: 450px; width: 100%; position: fixed; top: 50%; padding: 10px; left: 50%; z-index: 201; -webkit-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%); } #modal-sacola .RefeitaFechar { position: absolute; top: -25px; right: 10px; color: #ffffff; font-size: 1.2em; text-transform: uppercase; } #modal-sacola .bt-continuar { float: left; width: 48%; overflow: hidden; background: #808080 !important; color: #ffffff; margin: 3px 0; font-size: 1.2em; display: block; line-height: 40px; font-weight: bold; border-radius: 4px; text-align: center; } #modal-sacola .bt-carrinho { float: right; width: 48%; overflow: hidden; background: #ff9900 !important; color: #ffffff; margin: 3px 0; display: block; font-size: 1.2em; line-height: 40px; font-weight: bold; border-radius: 4px; text-align: center; clear: none; }
build/style/cuisinart.css
.clearfix:after { display: block; content: ''; height: 0; width: 100%; clear: both; } * { border: 0; list-style: none; margin: 0; padding: 0; text-decoration: none; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; -webkit-margin-before: 0px; -webkit-margin-after: 0px; -webkit-margin-start: 0px; -webkit-margin-end: 0px; -webkit-font-smoothing: antialiased !important; } header, section, main, footer, aside, nav { display: block; } textarea, input, button, button { -webkit-border-radius: 0; outline: none; resize: none; } input[type="text"], input[type="button"], input[type="submit"], textarea, button { -webkit-appearance: none; } @media screen and (min-width: 100px) { body { font-size: 47.5%; padding-top: 75px; } } @media screen and (min-width: 400px) { body { padding-top: 94px; } } @media screen and (min-width: 700px) { body { font-size: 52.5%; } } @media screen and (min-width: 800px) { body { padding-top: 0; } } @media screen and (min-width: 1100px) { body { font-size: 62.5%; } } #ajaxBusy, .ajax-content-loader { display: none !important; position: fixed; top: -1000px; } main { max-width: 1597px; margin: 0 auto; } .inner { width: 90%; max-width: 1497px; margin: 0 auto; } .inner.inner-medium { max-width: 1040px; } .tac { text-align: center; } a { color: inherit; } img { max-width: 100%; } strong { font-weight: 700; } .gold { color: #ff9900; } input, textarea { outline: none; resize: none; } .clearfix:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body { font-family: 'Montserrat', sans-serif; font-weight: 400; background: #ffffff; color: #2f2f2f; } .clearfix:after { display: block; content: ''; height: 0; width: 100%; clear: both; } #AmountItemsInCart { display: none !important; } #ico-menu { cursor: pointer; position: fixed; z-index: 1001; width: 40px; height: 40px; background: #000000; } #ico-menu span { width: 40px; height: 6px; background: #ffffff; position: absolute; top: 2px; left: 0; -webkit-transition: all 0.2s; -moz-transition: all 0.2s; -ms-transition: all 0.2s; -o-transition: all 0.2s; transition: all 0.2s; z-index: 2; -webkit-transform: rotate(0); -ms-transform: rotate(0); transform: rotate(0); } #ico-menu span.line-02 { top: 17px; z-index: 1; } #ico-menu span.line-03 { top: 32px; } #ico-menu.active span.line-02 { background: transparent; } #ico-menu.active span.line-01 { background: #ff9900; top: 16px; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg); } #ico-menu.active span.line-03 { background: #ff9900; top: 16px; -webkit-transform: rotate(-45deg); -ms-transform: rotate(-45deg); transform: rotate(-45deg); } #menu-touch { display: none; background: rgba(0, 0, 0, 0.8); height: 100%; width: 100%; position: fixed; top: 0; left: 0; z-index: 998; } #menu-touch #menu-touch-list { width: 100%; height: 100%; padding: 0 5% 50px; overflow-x: hidden; overflow-y: auto; -webkit-overflow-scrolling: touch; text-align: right; font-size: 2.0em; color: #ffffff; } #menu-touch #menu-touch-list li { margin-bottom: 10px; } #menu-touch #menu-touch-list li.mini_cart a:before { display: inline-block; content: ''; height: 18px; width: 18px; margin: 7px 5px 0 0; background: url('/arquivos/cuisinart_sprite.png?6') no-repeat -125px 0; } #menu-touch #menu-touch-list li.mini_cart a .CartItems { margin-right: 5px; } #menu-touch #menu-touch-list li.busca { padding-top: 5px; } #menu-touch #menu-touch-list li.busca:before { display: inline-block; content: ''; height: 17px; width: 17px; margin: 0 7px 0 0; background: url('/arquivos/cuisinart_sprite.png?6') no-repeat -145px 0; } #menu-touch #menu-touch-list h3 { margin-top: 15px; margin-bottom: 10px; padding-top: 10px; border-top: 1px solid #434343; } header { background: #000000; color: #ffffff; position: relative; z-index: 1000; width: 100%; } header .top_bar { border-bottom: 1px solid #434343; padding: 10px 0; position: fixed; z-index: 1000; top: 0; left: 0; width: 100%; background: #000000; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar ul { height: 32px; } header .top_bar ul li { font-size: 1.2em; height: 32px; line-height: 32px; display: inline-block; vertical-align: top; padding: 0 10px; } header .top_bar ul li.mini_cart { text-transform: uppercase; letter-spacing: 0.1em; } header .top_bar ul li.mini_cart a:before { display: inline-block; content: ''; height: 18px; width: 18px; margin: 7px 5px 0 0; background: url('/arquivos/cuisinart_sprite.png?6') no-repeat -125px 0; } header .top_bar ul li.mini_cart a .CartItems { margin-right: 5px; font-size: 1.4em; } header .top_bar ul li.busca a { display: block; text-indent: -3000px; overflow: hidden; height: 17px; width: 17px; margin-top: 9px; background: url('/arquivos/cuisinart_sprite.png?6') no-repeat -145px 0; } header .top_bar ul.list_1 { float: left; } header .top_bar ul.list_1 li:first-child { border-right: 1px solid #434343; } header .top_bar ul.list_1 li:first-child a { color: #ff9900; } header .top_bar ul.list_2 { float: right; } header .top_bar ul.list_2 li { border-right: 1px solid #434343; } header .top_bar ul.list_2 li:last-child { padding-right: 0; border-right: 0; } header .top_bar ul ul { display: none !important; } header .menu_bar { background: #ffffff; position: relative; display: none; } header .menu_bar .menu-departamento { width: 100%; text-align: center; position: relative; } header .menu_bar .menu-departamento h3 { display: inline-block; margin-right: 107px; padding: 20px 0; text-transform: uppercase; font-weight: 400; color: #808080; font-size: 1.2em; } header .menu_bar .menu-departamento h3:last-child { margin-right: 0; } header .menu_bar .menu-departamento h3:hover + ul { display: block; } header .menu_bar .menu-departamento ul { display: none; position: absolute; top: 100%; margin-top: -5px; z-index: 100; padding-top: 5px; border-right: 1px solid #f4f6f7; border-left: 1px solid #f4f6f7; text-transform: uppercase; background: #ffffff; } header .menu_bar .menu-departamento ul li { width: 100%; display: block; text-align: left; } header .menu_bar .menu-departamento ul li a { height: 100%; width: 100%; display: block; padding: 13px; font-size: 1em; color: #808080; } header .menu_bar .menu-departamento ul li a:hover { background: rgba(0, 0, 0, 0.05); } header .menu_bar .menu-departamento ul:after { display: block; content: ''; width: 100%; height: 3px; background: url('/arquivos/cuisinart-menu-shadow.png') repeat-x 0 0; position: absolute; left: 0; bottom: -3px; } header .menu_bar .menu-departamento ul:hover { display: block; } header .menu_bar ul { display: none; } header .menu_bar:after { display: block; content: ''; width: 100%; height: 3px; background: url('/arquivos/cuisinart-menu-shadow.png') repeat-x 0 0; position: absolute; left: 0; bottom: -3px; } header .brand_bar .inner { position: relative; } header .brand_bar h1 { height: 34px; width: 220px; display: inline-block; position: relative; top: 0; } header .brand_bar h1 a { background: url('/arquivos/cuisinart_sprite.png?6') no-repeat 0 -86px; display: block; width: 100%; height: 100%; text-indent: -3000px; overflow: hidden; } header .brand_bar .duvidas { color: #ffffff; position: absolute; right: 0; top: 30px; font-size: 1.4em; line-height: 34px; height: 34px; } header .brand_bar .duvidas li { float: left; } header .brand_bar .duvidas li span { color: #b5b5b5; } header .brand_bar .duvidas li.phone-televendas:after, header .brand_bar .duvidas li.phone-assistencia:after { display: inline-block; content: ''; margin: 0 5px; width: 13px; height: 13px; background: url('/arquivos/cuisinart_sprite.png?6') no-repeat 0 0; position: relative; top: 2px; } header .brand_bar .duvidas li.phone-assistencia { padding-left: 45px; } header .brand_bar .duvidas li.phone-assistencia:after { background-position: -15px 0; } @media screen and (min-width: 100px) { #ico-menu { display: block; top: 17px; right: 5%; } #menu-touch { padding: 100px 0 0; } header { position: fixed; top: 0; left: 0; } header .brand_bar h1 { margin: 30px 0; zoom: 0.8; } header .brand_bar .duvidas { display: none; } header .top_bar { display: none; } } @media screen and (min-width: 400px) { #ico-menu { top: 25px; } #menu-touch { padding: 120px 0 0; } header .brand_bar h1 { zoom: 1.0; } } @media screen and (min-width: 800px) { #ico-menu, #menu-touch { display: none !important; } header { padding-top: 53px; position: relative; } header .brand_bar .duvidas { display: inline-block; } header .brand_bar.fixed { background: #000000; position: fixed; width: 100%; left: 0; top: 53px !important; z-index: 999; } header .brand_bar.fixed h1 { margin: 20px 0; } header .brand_bar.fixed .duvidas { top: 20px; } header .menu_bar { display: block; } header .top_bar { display: block; } header .top_bar ul li.nao_e_voce { display: none; } } @media screen and (min-width: 970px) { header .top_bar ul li.nao_e_voce { display: inline-block; } } @media screen and (min-width: 1150px) { header .menu_bar ul li { letter-spacing: 0.1em; } } @media screen and (min-width: 1250px) { header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar:after { display: block; content: ''; height: 0; width: 100%; clear: both; } header .top_bar ul li { padding: 0 20px; } header .top_bar ul li.mini_cart a:before { margin: 7px 9px 0 0; } header .top_bar ul li.mini_cart a .CartItems { margin-right: 10px; } header .top_bar ul.list_1 li:first-child { padding: 0 40px 0 0; } } @media screen and (min-width: 1350px) { header .menu_bar ul li { margin-right: 11%; } } .clearfix:after { display: block; content: ''; height: 0; width: 100%; clear: both; } #search_box { display: none; background: rgba(0, 0, 0, 0.8); position: fixed; top: 0; left: 0; height: 100%; width: 100%; z-index: 1001; } #search_box .inner { position: relative; height: 100%; } #search_box fieldset { position: absolute; left: 0; top: 20%; width: 100%; } #search_box legend, #search_box label, #search_box select { display: none; } #search_box a.close { position: absolute; top: 20px; right: 0; font-size: 0; display: block; width: 9px; height: 9px; } #search_box a.close:after { display: block; content: ''; height: 9px; width: 9px; background: url('/arquivos/cuisinart_sprite.png?6') no-repeat -44px -34px; } #search_box .btn-buscar { position: absolute; top: 0; right: 0; color: #ffffff; line-height: 23px; height: 63px; cursor: pointer; } #search_box .fulltext-search-box { background-color: #f4f6f7; line-height: 23px; height: 63px; width: 100%; color: #000000; } body.modal_busca #search_box { display: block; } @media screen and (min-width: 100px) { #search_box .btn-buscar { font-size: 0; padding: 20px; width: 70px; background: #ff9900 url('/arquivos/cuisinart-lupa.png') no-repeat 50% 50%; } #search_box .fulltext-search-box { padding: 20px 80px 20px 5%; font-size: 1.3em; } } @media screen and (min-width: 500px) { #search_box .btn-buscar { font-size: 2.0em; text-transform: uppercase; width: auto; padding-right: 70px; background-position: 85% 50%; } #search_box .fulltext-search-box { padding-right: 160px; font-size: 2.0em; } } @media screen and (max-width: 699px) { body.modal_busca .ui-autocomplete { display: none !important; } } @media screen and (min-width: 700px) { #search_box .fulltext-search-box { padding-right: 190px; } body.modal_busca .ui-autocomplete { width: 90%; max-width: 1497px; position: fixed !important; z-index: 12; } body.modal_busca .ui-autocomplete li { padding-left: 5%; background: #ffffff; height: 35px; line-height: 35px; } body.modal_busca .ui-autocomplete li a { cursor: pointer; display: block; height: 35px; padding: 5px 0; border-bottom: 1px solid #f4f6f7; width: 100%; font-size: 1.5em; } body.modal_busca .ui-autocomplete li a img { display: inline-block; margin-right: 10px; } body.modal_busca .ui-autocomplete li:hover { background: #f4f6f7; } } .clearfix:after { display: block; content: ''; height: 0; width: 100%; clear: both; } #gallery_bar .slick-slider { margin-bottom: 0; } #gallery_bar .box-banner { text-align: center; } #gallery_bar .box-banner img { max-width: 100%; width: auto !important; height: auto !important; margin: 0 auto; } #gallery_bar .slick-prev, #gallery_bar .slick-next { width: auto; height: auto; position: absolute; top: 70%; left: 50%; padding: 10px 23px; border: 1px solid #000000; } #gallery_bar .slick-prev:before, #gallery_bar .slick-next:before { display: none !important; } #gallery_bar .slick-prev:after, #gallery_bar .slick-next:after { display: block; content: ''; height: 9px; padding: 0; margin: 0; } #gallery_bar .slick-prev { margin-left: -161px; width: 161px; } #gallery_bar .slick-prev:after { width: 115px; background: url('/arquivos/cuisinart_sprite.png?6') no-repeat 0 -23px; } #gallery_bar .slick-next { margin-left: -1px; width: 96px; } #gallery_bar .slick-next:after { width: 50px; background: url('/arquivos/cuisinart_sprite.png?6') no-repeat -115px -23px; } #gallery_bar .slick-dots { width: auto; height: 12px; padding: 0; top: 70%; left: 50%; margin-left: -230px; background-color: transparent; } #gallery_bar .slick-dots li { margin: 0 6px; padding: 0; width: 12px; height: 12px; float: left; } #gallery_bar .slick-dots li button { margin: 0; height: 9px; width: 9px; border: 1px solid #000000; border-radius: 100%; } #gallery_bar .slick-dots li button:before { display: none !important; } #gallery_bar .slick-dots li.slick-active button { background: #000000; } @media screen and (min-width: 100px) { #gallery_bar .slick-prev, #gallery_bar .slick-next { display: none !important; } #gallery_bar .slick-dots { top: inherit; bottom: 10px; margin-left: 0; -webkit-transform: translateX(-50%); -ms-transform: translateX(-50%); transform: translateX(-50%); } } @media screen and (min-width: 850px) { #gallery_bar .slick-prev, #gallery_bar .slick-next { display: block !important; } #gallery_bar .slick-dots { top: 70%; bottom: inherit; margin-left: -230px; -webkit-transform: translateX(0%); -ms-transform: translateX(0%); transform: translateX(0%); } } .clearfix:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .destaques_home { text-align: center; } .destaques_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .destaques_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .destaques_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .destaques_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .destaques_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .destaques_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .destaques_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .destaques_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .destaques_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .destaques_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .destaques_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .destaques_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .destaques_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .destaques_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .destaques_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .destaques_home #box_destaque_01, .destaques_home #box_destaque_02 { display: inline-block; vertical-align: middle; text-align: center; } .destaques_home #box_destaque_01 .box-banner, .destaques_home #box_destaque_02 .box-banner { width: 100%; } .destaques_home #box_destaque_01 img, .destaques_home #box_destaque_02 img { display: block; margin: 0 auto; width: 100%; height: auto; max-width: 792px; } .destaques_home #box_destaque_01 img { float: left; } .destaques_home #box_destaque_02 img { float: right; } @media screen and (min-width: 100px) { #box_destaque_01, #box_destaque_02 { width: 100%; margin: 10px 0; } } @media screen and (min-width: 450px) { #box_destaque_01, #box_destaque_02 { width: 49.9%; margin: 0; } #box_destaque_01 { float: left; padding-right: 5px; } #box_destaque_02 { float: right; padding-left: 5px; } } .clearfix:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.home main > h2 { text-align: center; font-weight: lighter; font-size: 3.8em; color: #434343; margin-top: 50px; } .menu_vitrines_home { text-align: center; padding: 40px 0; } .menu_vitrines_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .menu_vitrines_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .menu_vitrines_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .menu_vitrines_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .menu_vitrines_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .menu_vitrines_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .menu_vitrines_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .menu_vitrines_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .menu_vitrines_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .menu_vitrines_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .menu_vitrines_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .menu_vitrines_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .menu_vitrines_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .menu_vitrines_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .menu_vitrines_home:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .menu_vitrines_home li { display: inline-block; padding: 10px; color: #b5b5b5; font-size: 1.4em; text-transform: uppercase; border: 1px solid transparent; cursor: pointer; margin: 0 5px; } .menu_vitrines_home li.active, .menu_vitrines_home li:hover { color: #ff9900; border-color: #ff9900; } .menu_vitrines_home li.active { cursor: default; } .vitrines_home { margin: 0 auto 50px; width: 100%; } .vitrines_home > div { display: none; } .vitrines_home > div.active { display: block; } .vitrines_home h2 { display: none; } .vitrines_home ul li { display: inline-block; margin: 30px 0; vertical-align: top; } .vitrines_home ul li .dados-produto { display: block; width: 100%; padding-bottom: 10px; margin-bottom: 10px; border-bottom: 1px solid #b5b5b5; position: relative; } .vitrines_home ul li .dados-produto .valor-produto { color: #b5b5b5; font-size: 1.4em; position: absolute; top: 0; right: 0; } .vitrines_home ul li .dados-produto .esgotado-produto { color: #b5b5b5; font-size: 1.4em; padding: 5px 0; clear: both; } .vitrines_home ul li h3 { font-size: 1.7em; color: #434343; float: left; display: inline-block; min-height: 90px; } .vitrines_home ul li .shelf-rating { float: left; } .vitrines_home ul li .buy-button-normal a { font-size: 0; float: right; } .vitrines_home ul li .buy-button-normal a:after { display: inline-block; text-align: right; content: 'Comprar'; text-transform: uppercase; color: #ff9900; font-weight: 700; } @media screen and (min-width: 100px) { .vitrines_home ul { text-align: center; } .vitrines_home ul li { text-align: left; width: 90%; max-width: 484px; } .vitrines_home ul li img { width: auto; max-width: 100%; display: block; margin-bottom: 25px; height: auto; } .vitrines_home ul li h3 { padding-right: 80px; } .vitrines_home ul li .buy-button-normal a:after { font-size: 10px; } .vitrines_home ul li .shelf-rating { background: url(/arquivos/cuisinart-shelf-rating.png) no-repeat 0 0; display: block; height: 14px; text-indent: -3000px; overflow: hidden; width: 75px; float: left; } .vitrines_home ul li .avaliacao5, .vitrines_home ul li .avaliacao10 { background-position: 0 -20px; } .vitrines_home ul li .avaliacao15, .vitrines_home ul li .avaliacao20 { background-position: 0 -40px; } .vitrines_home ul li .avaliacao25, .vitrines_home ul li .avaliacao30 { background-position: 0 -60px; } .vitrines_home ul li .avaliacao35, .vitrines_home ul li .avaliacao40 { background-position: 0 -80px; } .vitrines_home ul li .avaliacao45, .vitrines_home ul li .avaliacao50 { background-position: 0 -100px; } } @media screen and (min-width: 450px) { .vitrines_home ul li { width: 49.9%; padding: 0 20px; } .vitrines_home ul li h3 { padding-right: 90px; } } @media screen and (min-width: 1000px) { .vitrines_home ul li { width: 24.9%; padding: 0 30px; } .vitrines_home ul li img { margin-bottom: 50px; } .vitrines_home ul li h3 { padding-right: 80px; } .vitrines_home ul li .buy-button-normal a:after { font-size: 12px; } } .clearfix:after { display: block; content: ''; height: 0; width: 100%; clear: both; } #search_bar { background: #f4f6f7; width: 100%; position: relative; height: 63px; } #search_bar .btn-buscar { position: absolute; top: 0; right: 0; color: #ffffff; line-height: 23px; height: 63px; cursor: pointer; } #search_bar .fulltext-search-box { background-color: transparent; line-height: 23px; height: 63px; width: 100%; color: #000000; } #search_bar legend, #search_bar label, #search_bar select { display: none; } @media screen and (min-width: 100px) { #search_bar .btn-buscar { font-size: 0; padding: 20px; width: 70px; background: #ff9900 url('/arquivos/cuisinart-lupa.png') no-repeat 50% 50%; } #search_bar .fulltext-search-box { padding: 20px 80px 20px 5%; font-size: 1.3em; } } @media screen and (min-width: 500px) { #search_bar .btn-buscar { font-size: 2.0em; text-transform: uppercase; width: auto; padding-right: 70px; background-position: 85% 50%; } #search_bar .fulltext-search-box { padding-right: 160px; font-size: 2.0em; } } @media screen and (max-width: 699px) { .ui-autocomplete { display: none !important; } } @media screen and (min-width: 700px) { #search_bar .fulltext-search-box { padding-right: 190px; } .ui-autocomplete { width: 100%; } .ui-autocomplete li { padding-left: 5%; background: #ffffff; height: 35px; line-height: 35px; } .ui-autocomplete li a { cursor: pointer; display: block; height: 35px; padding: 5px 0; border-bottom: 1px solid #f4f6f7; width: 100%; font-size: 1.5em; } .ui-autocomplete li a img { display: inline-block; margin-right: 10px; } .ui-autocomplete li:hover { background: #f4f6f7; } } .clearfix:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main { margin: 0 auto; width: 90%; max-width: 1497px; } body.produtos main .pager, body.produtos main .resultado-busca-filtro .filterBy, body.produtos main .searchResultsTime, body.produtos main .resultado-busca-filtro .compare, body.produtos main .titulo-sessao, body.produtos main .didyoumean { display: none; } body.produtos main .scroll-loading { display: block; height: auto; background: #f4f6f7; text-align: center; padding: 20px 0; } body.produtos main .scroll-loading:before { display: inline-block; content: 'Carregar mais produtos'; color: #ff9900; font-size: 1.4em; height: 32px; width: auto; line-height: 32px; background: url('/arquivos/cuisinart-ajax-loader-grey.gif') no-repeat 0 0; padding-left: 42px; } body.produtos main .bread-crumb { border-bottom: 1px solid #b5b5b5; width: 100%; padding: 10px 0; margin-bottom: 20px; margin-top: 50px; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul li { float: left; color: #ff9900; margin-right: 15px; font-size: 1.4em; } body.produtos main .bread-crumb ul li:first-child a { display: block; height: 13px; width: 13px; text-indent: -3000px; overflow: hidden; background: url('/arquivos/cuisinart_sprite.png?6') no-repeat 0 -35px; } body.produtos main .main > h2 { color: #434343; font-size: 3.7em; font-weight: lighter; float: left; display: none !important; } body.produtos main .main .sub { display: block; float: left; clear: both; } body.produtos main .main .sub .orderBy { color: #b5b5b5; padding: 13px 0; } body.produtos main .main .sub .orderBy label { font-size: 1.4em; } body.produtos main .main .sub .orderBy select { background: #f4f6f7; padding: 5px; font-size: 1.2em; color: #808080; } body.produtos main .main > .vitrine { clear: both; } body.produtos main .main > .vitrine ul li { display: inline-block; margin: 15px 0; padding: 5px 5px 10px; vertical-align: top; border: 1px solid #ffffff; } body.produtos main .main > .vitrine ul li .dados-produto { display: block; width: 100%; padding-bottom: 10px; margin-bottom: 10px; border-bottom: 1px solid #b5b5b5; position: relative; } body.produtos main .main > .vitrine ul li .dados-produto .valor-produto { color: #b5b5b5; font-size: 1.4em; position: absolute; top: 0; right: 0; } body.produtos main .main > .vitrine ul li .dados-produto .esgotado-produto { color: #b5b5b5; font-size: 1.4em; padding: 5px 0; clear: both; } body.produtos main .main > .vitrine ul li h3 { font-size: 1.6em; color: #434343; float: left; display: inline-block; min-height: 90px; } body.produtos main .main > .vitrine ul li .shelf-rating { float: left; } body.produtos main .main > .vitrine ul li .buy-button-normal a { font-size: 0; float: right; } body.produtos main .main > .vitrine ul li .buy-button-normal a:after { display: inline-block; text-align: right; content: 'Comprar'; text-transform: uppercase; color: #ff9900; font-weight: 700; } body.produtos main .main > .vitrine ul li:hover { border: 1px solid #808080; } @media screen and (min-width: 100px) { body.produtos #sidebar { display: none; } body.produtos main .main > .vitrine { width: 100%; } body.produtos main .main > .vitrine ul { text-align: center; } body.produtos main .main > .vitrine ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .main > .vitrine ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .main > .vitrine ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .main > .vitrine ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .main > .vitrine ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .main > .vitrine ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .main > .vitrine ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .main > .vitrine ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .main > .vitrine ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .main > .vitrine ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .main > .vitrine ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .main > .vitrine ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .main > .vitrine ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .main > .vitrine ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .main > .vitrine ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .main > .vitrine ul li { text-align: left; width: 90%; max-width: 484px; } body.produtos main .main > .vitrine ul li img { width: auto; max-width: 100%; display: block; margin-bottom: 25px; height: auto; } body.produtos main .main > .vitrine ul li h3 { padding-right: 80px; } body.produtos main .main > .vitrine ul li .buy-button-normal a:after { font-size: 10px; } body.produtos main .main > .vitrine ul li .shelf-rating { background: url(/arquivos/cuisinart-shelf-rating.png) no-repeat 0 0; display: block; height: 14px; text-indent: -3000px; overflow: hidden; width: 75px; float: left; } body.produtos main .main > .vitrine ul li .avaliacao5, body.produtos main .main > .vitrine ul li .avaliacao10 { background-position: 0 -20px; } body.produtos main .main > .vitrine ul li .avaliacao15, body.produtos main .main > .vitrine ul li .avaliacao20 { background-position: 0 -40px; } body.produtos main .main > .vitrine ul li .avaliacao25, body.produtos main .main > .vitrine ul li .avaliacao30 { background-position: 0 -60px; } body.produtos main .main > .vitrine ul li .avaliacao35, body.produtos main .main > .vitrine ul li .avaliacao40 { background-position: 0 -80px; } body.produtos main .main > .vitrine ul li .avaliacao45, body.produtos main .main > .vitrine ul li .avaliacao50 { background-position: 0 -100px; } } @media screen and (min-width: 450px) { body.produtos main .main > .vitrine ul { text-align: left; } body.produtos main .main > .vitrine ul li { width: 49.9%; padding: 15px 20px 20px; } body.produtos main .main > .vitrine ul li h3 { padding-right: 90px; } } @media screen and (min-width: 1000px) { body.produtos #sidebar { padding-top: 50px; display: inline-block; width: 25%; vertical-align: top; font-size: 1.4em; text-transform: uppercase; } body.produtos #sidebar h3 { display: none; } body.produtos #sidebar h4 { margin: 15px 0 10px; } body.produtos #sidebar li { margin: 5px 0; } body.produtos #sidebar .menu-navegue { display: none; } body.produtos main .main { width: 75%; display: inline-block; } body.produtos main .main > .vitrine ul li .buy-button-normal a:after { font-size: 12px; } } @media screen and (min-width: 1100px) { body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produtos main .bread-crumb ul li:first-child a { margin-top: 2px; } } @media screen and (min-width: 1500px) { body.produtos main .main > .vitrine ul li { width: 33.3%; } body.produtos main .main > .vitrine ul li h3 { padding-right: 90px; } } .clearfix:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 main { margin: 0 auto; width: 90%; max-width: 1497px; } body.cuisinart-404 main .content-404 h2 { color: #434343; font-size: 2.5em; font-weight: lighter; margin-bottom: 50px; position: relative; padding-left: 46px; } body.cuisinart-404 main .content-404 h2:before { display: block; content: ''; position: absolute; top: 0; left: 0; width: 26px; height: 26px; background: url('/arquivos/cuisinart_sprite.png?6') no-repeat -79px -34px; } body.cuisinart-404 main .content-404 h3 { color: #434343; font-size: 2.6em; font-weight: lighter; margin: 50px 0 40px; } body.cuisinart-404 main .content-404 p.estara_disponivel { padding-left: 46px; margin-bottom: 20px; font-size: 3.8em; color: #434343; } body.cuisinart-404 main .content-404 ul.list { margin-bottom: 20px; font-size: 1.5em; line-height: 30px; color: #434343; padding-left: 46px; } body.cuisinart-404 main .content-404 ul.list li { color: #ff9900; margin-bottom: 10px; list-style: disc; } body.cuisinart-404 main .content-404 ul.list li span { color: #434343; } body.cuisinart-404 main .content-404 ul.list li:last-child { margin-bottom: 0; } body.cuisinart-404 .bread-crumb { border-bottom: 1px solid #b5b5b5; width: 100%; padding: 10px 0; margin-bottom: 20px; margin-top: 50px; } body.cuisinart-404 .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 .bread-crumb ul li { float: left; color: #ff9900; margin-right: 15px; font-size: 1.4em; } body.cuisinart-404 .bread-crumb ul li:first-child a { display: block; height: 13px; width: 13px; text-indent: -3000px; overflow: hidden; background: url('/arquivos/cuisinart_sprite.png?6') no-repeat 0 -35px; } @media screen and (min-width: 100px) { body.cuisinart-404 #sidebar { display: none; } } @media screen and (min-width: 700px) { body.cuisinart-404 #sidebar { padding-top: 50px; display: inline-block; width: 25%; vertical-align: top; font-size: 1.4em; text-transform: uppercase; } body.cuisinart-404 #sidebar h3 { margin: 25px 0 20px; } body.cuisinart-404 #sidebar h4 { margin: 20px 0 15px; } body.cuisinart-404 #sidebar li { margin: 10px 0; } body.cuisinart-404 #sidebar .menu-navegue { display: none; } body.cuisinart-404 main .content-404 { display: inline-block; width: 75%; padding-left: 20px; } } @media screen and (min-width: 1100px) { body.cuisinart-404 main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.cuisinart-404 main .bread-crumb ul li:first-child a { margin-top: 2px; } } .clearfix:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main { margin: 0 auto; width: 90%; max-width: 1497px; position: relative; } body.produto main .bread-crumb { border-bottom: 1px solid #b5b5b5; width: 100%; padding: 10px 0; margin-bottom: 20px; margin-top: 50px; } body.produto main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .bread-crumb ul li { float: left; color: #ff9900; margin-right: 15px; font-size: 1.4em; } body.produto main .bread-crumb ul li:first-child a { display: block; height: 13px; width: 13px; text-indent: -3000px; overflow: hidden; background: url('/arquivos/cuisinart_sprite.png?6') no-repeat 0 -35px; } body.produto main aside#produto { max-width: 484px; width: 100%; margin: 0 auto 25px; } body.produto main aside#produto:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main aside#produto:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main aside#produto:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main aside#produto:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main aside#produto:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main aside#produto:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main aside#produto:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main aside#produto:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main aside#produto:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main aside#produto:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main aside#produto:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main aside#produto:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main aside#produto:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main aside#produto:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main aside#produto:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main aside#produto .thumbs { width: 100%; text-align: center; padding-top: 10px; clear: both; } body.produto main aside#produto .thumbs li { display: inline-block; padding: 0 5px; width: 19%; } body.produto main aside#produto .thumbs li a { display: block; width: 100%; height: 100%; } body.produto main aside#produto .thumbs li a img { display: block; width: 100%; height: auto; max-width: 90px; margin: 0 auto; } body.produto main aside#produto .thumbs.thumbs_length_1 li { display: none !important; } body.produto main aside#produto .thumbs.thumbs_length_2 li { width: 49%; } body.produto main aside#produto .thumbs.thumbs_length_3 li { width: 32%; } body.produto main aside#produto .thumbs.thumbs_length_4 li { width: 24%; } body.produto main aside#produto .thumbs.thumbs_length_5 li { width: 19%; } body.produto main aside#produto .thumbs.thumbs_length_6 li { width: 32%; } body.produto main aside#produto .thumbs.thumbs_length_7 li, body.produto main aside#produto .thumbs.thumbs_length_8 li { width: 24%; } body.produto main .DescriptionBox { position: relative; clear: both; } body.produto main .DescriptionBox #resenha { position: absolute; top: 0; right: 0; } body.produto main .DescriptionBox #resenha .avalie-produto h5 { float: left; font-size: 1.3em; padding-right: 10px; color: #808080; } body.produto main .DescriptionBox #resenha .avalie-produto .rating-avalie-wrapper { float: left; } body.produto main .DescriptionBox #resenha .avalie-produto .rating-avalie-wrapper a span { float: left; margin: 0; padding: 0; background: url('/arquivos/cuisinart-shelf-rating.png') no-repeat 0 0; height: 13px; width: 15px; text-indent: -3000px; overflow: hidden; } body.produto main .DescriptionBox #resenha .avalie-produto .rating-avalie-wrapper a span.filledRatingStar { background-position: 0 -20px; } body.produto main .DescriptionBox #resenha .user-review > h4, body.produto main .DescriptionBox #resenha .avaliacao > .media, body.produto main .DescriptionBox #resenha .avaliacao > .rating, body.produto main .DescriptionBox #resenha .avaliacao > #ulPubliqueResenha, body.produto main .DescriptionBox #resenha .avaliacao > .links-resenha-usuario, body.produto main .DescriptionBox #resenha .avaliacao > #userReviewReturnMessages, body.produto main .DescriptionBox #resenha .avaliacao > .resenhas, body.produto main .DescriptionBox #resenha #userReviewAllComments, body.produto main .DescriptionBox #resenha #publishUserReview, body.produto main .DescriptionBox #resenha #publishedReviewMessage, body.produto main .DescriptionBox #resenha #opcoes-avalie { display: none !important; } body.produto main h2 { color: #808080; font-size: 2.4em; font-weight: lighter; display: inline-block; } body.produto main .productDescription { color: #808080; font-size: 1.3em; line-height: 23px; } body.produto main .unavailable-button { color: #808080; font-size: 1.3em; font-weight: lighter; } body.produto main #caracteristicas, body.produto main #ProdutoMaisInfos { display: none; } body.produto main #ProdutoMaisInfos.active { clear: both; display: block !important; border-bottom: 1px solid #b5b5b5; padding-top: 20px; } body.produto main #ProdutoMaisInfos.active h3 { font-size: 1.3em; color: #434343; margin-bottom: 20px; text-transform: uppercase; } body.produto main #ProdutoMaisInfos.active h3:before { display: inline-block; content: ''; margin-right: 18px; width: 25px; height: 13px; background: url('/arquivos/cuisinart_sprite.png?6') no-repeat -30px 0; } body.produto main #ProdutoMaisInfos.active p { margin-bottom: 20px; font-size: 1.3em; color: #808080; font-weight: lighter; } body.produto main #ProdutoMaisInfos.active p strong { text-transform: uppercase; padding-right: 5px; font-weight: lighter; } body.produto main #ProdutoMaisInfos.active p span { color: #434343; text-transform: uppercase; } body.produto main #ProdutoMaisInfos.active p#descricao_produto { line-height: 20px; } body.produto main #ProdutoMaisInfos.active p#manual_produto { font-size: 1.0em; text-transform: uppercase; color: #ff9900; } body.produto main #ProdutoMaisInfos.active p#manual_produto a { display: inline-block; padding: 10px 20px 10px 10px; border: 1px solid #ff9900; vertical-align: top; line-height: 15px; } body.produto main #ProdutoMaisInfos.active p#manual_produto a:before, body.produto main #ProdutoMaisInfos.active p#manual_produto a:after { display: inline-block; content: ''; } body.produto main #ProdutoMaisInfos.active p#manual_produto a:before { width: 19px; height: 15px; margin-right: 10px; background: url('/arquivos/cuisinart_sprite.png?6') no-repeat -57px 0; } body.produto main #ProdutoMaisInfos.active p#manual_produto a:after { width: 37px; height: 6px; margin-left: 10px; background: url('/arquivos/cuisinart_sprite.png?6') no-repeat -65px -76px; position: relative; top: -3px; } body.produto main .productPrice .valor-de, body.produto main .productPrice .preco-a-vista, body.produto main .productPrice .economia-de { display: none !important; } body.produto main .productPrice em { font-style: inherit; } body.produto main .productPrice .valor-por { font-size: 2.5em; color: #808080; } body.produto main .productPrice .valor-por strong { font-weight: lighter; } body.produto main .productPrice .valor-dividido { font-size: 3.0em; color: #ff9900; } body.produto main .buy-button { background: #ff9900; color: #ffffff; width: 245px; height: 58px; line-height: 58px; padding-left: 40px; margin: 20px auto 40px; font-size: 22px; text-transform: uppercase; text-align: left; font-weight: 700; border-radius: 29px; position: relative; } body.produto main .buy-button:before { display: block; content: ''; width: 23px; height: 32px; position: absolute; right: 40px; top: 13px; background: url('/arquivos/cuisinart_sprite.png?6') no-repeat 0 -51px; } body.produto main .buy-button:before:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .buy-button:before:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .buy-button:before:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .buy-button:before:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .buy-button:before:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .buy-button:before:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .buy-button:before:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .buy-button:before:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .buy-button:before:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .buy-button:before:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .buy-button:before:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .buy-button:before:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .buy-button:before:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .buy-button:before:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main .buy-button:before:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #popupCalculoFreteWrapper { clear: both; border-top: 1px solid #b5b5b5; padding-top: 20px; } body.produto main #popupCalculoFreteWrapper a { display: block; font-size: 1.4em; color: #434343; line-height: 22px; } body.produto main #popupCalculoFreteWrapper a:before { display: inline-block; content: ''; width: 39px; height: 22px; background: url('/arquivos/cuisinart_sprite.png?6') no-repeat -110px -34px; margin-right: 15px; } body.produto main #calculoFrete { clear: both; padding-top: 20px; padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid #b5b5b5; } body.produto main #calculoFrete:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #calculoFrete:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #calculoFrete:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #calculoFrete:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #calculoFrete:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #calculoFrete:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #calculoFrete:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #calculoFrete:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #calculoFrete:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #calculoFrete:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #calculoFrete:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #calculoFrete:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #calculoFrete:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #calculoFrete:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #calculoFrete:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #calculoFrete h1, body.produto main #calculoFrete h2, body.produto main #calculoFrete .close, body.produto main #calculoFrete .quantity { display: none !important; } body.produto main #calculoFrete .prefixo { font-size: 1.2em; color: #b5b5b5; float: left; text-transform: uppercase; } body.produto main #calculoFrete .prefixo input { margin-left: 10px; height: 28px; border-radius: 14px 0 0 14px; background: #f4f6f7; line-height: 28px; padding: 0 10px; width: 100px; } body.produto main #calculoFrete .frete-calcular { float: left; background: #f4f6f7; border-radius: 0 14px 14px 0; overflow: hidden; margin-right: 15px; } body.produto main #calculoFrete .frete-calcular #btnFreteSimulacao { height: 28px; line-height: 28px; background: #ff9900; color: #ffffff; font-size: 1.2em; cursor: pointer; padding: 0 20px; border-radius: 14px 0 0 14px; } body.produto main #calculoFrete .cep-busca { float: left; } body.produto main #calculoFrete .cep-busca a { color: #ff9900; line-height: 28px; display: block; height: 28px; } body.produto main #calculoFrete .freight-values { padding-top: 20px; } body.produto main #calculoFrete .freight-values tr { line-height: 20px; } body.produto main #calculoFrete .freight-values thead { color: #ff9900; } body.produto main #produtos_similares { display: block !important; clear: both; padding-top: 50px; padding-bottom: 30px; } body.produto main #produtos_similares > h3 { font-size: 3.7em; font-weight: lighter; color: #434343; text-align: center; margin: 0 auto 50px; } body.produto main #produtos_similares h2 { display: none !important; } body.produto main #produtos_similares .slick-list ul li { display: inline-block; margin: 15px 0; padding: 5px 5px 10px; vertical-align: top; border: 1px solid #ffffff; } body.produto main #produtos_similares .slick-list ul li .dados-produto { display: block; width: 100%; padding-bottom: 10px; margin-bottom: 10px; border-bottom: 1px solid #b5b5b5; position: relative; } body.produto main #produtos_similares .slick-list ul li .dados-produto .valor-produto { color: #b5b5b5; font-size: 1.4em; position: absolute; top: 0; right: 0; } body.produto main #produtos_similares .slick-list ul li .dados-produto .esgotado-produto { color: #b5b5b5; font-size: 1.4em; padding: 5px 0; clear: both; } body.produto main #produtos_similares .slick-list ul li h3 { font-size: 1.6em; color: #434343; float: left; display: inline-block; min-height: 90px; } body.produto main #produtos_similares .slick-list ul li .shelf-rating { float: left; } body.produto main #produtos_similares .slick-list ul li .buy-button-normal a { font-size: 0; float: right; } body.produto main #produtos_similares .slick-list ul li .buy-button-normal a:after { display: inline-block; text-align: right; content: 'Comprar'; text-transform: uppercase; color: #ff9900; font-weight: 700; } body.produto main #produtos_similares .slick-list ul li:hover { border: 1px solid #808080; } @media screen and (min-width: 100px) { body.produto main h2 { padding-right: 80px; margin-bottom: 20px; } body.produto main .productDescription { padding-bottom: 20px; } body.produto main .DescriptionBox #resenha .avalie-produto h5 { display: none; } body.produto main #produtos_similares .slick-list ul { text-align: center; } body.produto main #produtos_similares .slick-list ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #produtos_similares .slick-list ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #produtos_similares .slick-list ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #produtos_similares .slick-list ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #produtos_similares .slick-list ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #produtos_similares .slick-list ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #produtos_similares .slick-list ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #produtos_similares .slick-list ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #produtos_similares .slick-list ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #produtos_similares .slick-list ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #produtos_similares .slick-list ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #produtos_similares .slick-list ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #produtos_similares .slick-list ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #produtos_similares .slick-list ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #produtos_similares .slick-list ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto main #produtos_similares .slick-list ul li { text-align: left; width: 90%; max-width: 484px; } body.produto main #produtos_similares .slick-list ul li img { width: auto; max-width: 100%; display: block; margin-bottom: 25px; height: auto; } body.produto main #produtos_similares .slick-list ul li h3 { padding-right: 80px; } body.produto main #produtos_similares .slick-list ul li .buy-button-normal a:after { font-size: 10px; } body.produto main #produtos_similares .slick-list ul li .shelf-rating { background: url(/arquivos/cuisinart-shelf-rating.png) no-repeat 0 0; display: block; height: 14px; text-indent: -3000px; overflow: hidden; width: 75px; float: left; } body.produto main #produtos_similares .slick-list ul li .avaliacao5, body.produto main #produtos_similares .slick-list ul li .avaliacao10 { background-position: 0 -20px; } body.produto main #produtos_similares .slick-list ul li .avaliacao15, body.produto main #produtos_similares .slick-list ul li .avaliacao20 { background-position: 0 -40px; } body.produto main #produtos_similares .slick-list ul li .avaliacao25, body.produto main #produtos_similares .slick-list ul li .avaliacao30 { background-position: 0 -60px; } body.produto main #produtos_similares .slick-list ul li .avaliacao35, body.produto main #produtos_similares .slick-list ul li .avaliacao40 { background-position: 0 -80px; } body.produto main #produtos_similares .slick-list ul li .avaliacao45, body.produto main #produtos_similares .slick-list ul li .avaliacao50 { background-position: 0 -100px; } body.produto main #produtos_similares .slick-prev, body.produto main #produtos_similares .slick-next { display: none !important; } body.produto main #produtos_similares .slick-dots { bottom: -20px; -webkit-transform: translateX(-50%); -ms-transform: translateX(-50%); transform: translateX(-50%); width: auto; height: 12px; padding: 0; left: 50%; background-color: transparent; } body.produto main #produtos_similares .slick-dots li { margin: 0 6px; padding: 0; width: 12px; height: 12px; float: left; } body.produto main #produtos_similares .slick-dots li button { margin: 0; height: 9px; width: 9px; border: 1px solid #000000; border-radius: 100%; } body.produto main #produtos_similares .slick-dots li button:before { display: none !important; } body.produto main #produtos_similares .slick-dots li.slick-active button { background: #000000; } } @media screen and (min-width: 450px) { body.produto main #produtos_similares .slick-list ul li { width: 49.9%; padding: 15px 20px 20px; } body.produto main #produtos_similares .slick-list ul li h3 { padding-right: 90px; } } @media screen and (min-width: 800px) { body.produto main aside#produto { float: left; width: 33%; } body.produto main h2 { padding-right: 200px; margin-bottom: 40px; } body.produto main .productDescription { padding-bottom: 40px; } body.produto main .DescriptionBox { clear: none; float: left; width: 66.9%; padding-left: 25px; } body.produto main .DescriptionBox #resenha .avalie-produto h5 { display: block; } body.produto main .buy-button { float: left; } } @media screen and (min-width: 1000px) { body.produto main #produtos_similares .slick-list ul li .buy-button-normal a:after { font-size: 12px; } } @media screen and (min-width: 1100px) { body.produto main h2 { padding-right: 230px; } } @media screen and (min-width: 1250px) { body.produto main #produtos_similares .slick-list ul li { width: 24.9%; } } .clearfix:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.produto .zoomPad { position: relative; float: left; cursor: crosshair; } body.produto .zoomPreload { -moz-opacity: .8; opacity: .8; filter: alpha(opacity=80); color: #333; font-size: 12px; font-family: Tahoma; text-decoration: none; border: 1px solid #CCC; background-color: #fff; padding: 8px; text-align: center; background-repeat: no-repeat; background-position: center center; z-index: 110; width: 100%; height: 100%; position: absolute; top: 0; left: 0; } body.produto .zoomPup { overflow: hidden; background-color: #FFF; -moz-opacity: .6; opacity: .6; filter: alpha(opacity=60); z-index: 120; position: absolute; border: 1px solid #CCC; z-index: 101; cursor: crosshair; } body.produto .zoomOverlay { position: absolute; left: 0; top: 0; background: #FFF; z-index: 5000; width: 100%; height: 100%; display: none; z-index: 101; } body.produto .zoomWindow { position: absolute; left: 100% !important; top: 40px; background: #FFF; z-index: 6000; width: 484px !important; height: 334px !important; } body.produto .zoomWrapper { position: relative; border: 1px solid #999; z-index: 110; width: 484px !important; height: 334px !important; } body.produto .zoomWrapperTitle { display: block; background: #999; color: #FFF; height: 18px; line-height: 18px; width: 100%; overflow: hidden; text-align: center; font-size: 10px; position: absolute; top: 0; left: 0; z-index: 120; -moz-opacity: .6; opacity: .6; filter: alpha(opacity=60); } body.produto .zoomWrapperImage { display: block; position: relative; overflow: hidden; z-index: 110; height: 332px !important; width: 482px !important; } body.produto .zoomWrapperImage img { border: 0; display: block; position: absolute; z-index: 101; height: auto !important; width: auto !important; max-width: 1000px; } body.produto .zoomIframe { z-index: -1; filter: alpha(opacity=0); -moz-opacity: .8; opacity: .8; position: absolute; display: block; } @media screen and (max-width: 799px) { body.produto .zoomPreload, body.produto .zoomPup, body.produto .zoomOverlay, body.produto .zoomWindow, body.produto .zoomWrapper, body.produto .zoomWrapperTitle, body.produto .zoomWrapperImage, body.produto .zoomIframe { display: none !important; } body.produto .zoomPad { cursor: default; } } .clearfix:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional main { margin: 0 auto; width: 90%; max-width: 1497px; } body.institucional main h2 { color: #434343; font-size: 3.7em; font-weight: lighter; margin-bottom: 50px; } body.institucional main h3 { color: #434343; font-size: 2.7em; font-weight: lighter; margin-bottom: 20px; } body.institucional main p, body.institucional main ul.list { margin-bottom: 20px; font-size: 1.5em; line-height: 30px; color: #434343; } body.institucional main ul.list { padding-left: 30px; } body.institucional main ul.list li { margin-bottom: 10px; list-style: disc; color: #ff9900; } body.institucional main ul.list li span { color: #434343; } body.institucional main ul.list li:last-child { margin-bottom: 0; } body.institucional .bread-crumb { border-bottom: 1px solid #b5b5b5; width: 100%; padding: 10px 0; margin-bottom: 20px; margin-top: 50px; } body.institucional .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional .bread-crumb ul li { float: left; color: #ff9900; margin-right: 15px; font-size: 1.4em; } body.institucional .bread-crumb ul li:first-child a { display: block; height: 13px; width: 13px; text-indent: -3000px; overflow: hidden; background: url('/arquivos/cuisinart_sprite.png?6') no-repeat 0 -35px; } @media screen and (min-width: 1100px) { body.institucional main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional main .bread-crumb ul:after { display: block; content: ''; height: 0; width: 100%; clear: both; } body.institucional main .bread-crumb ul li:first-child a { margin-top: 2px; } } .clearfix:after { display: block; content: ''; height: 0; width: 100%; clear: both; } footer { background: #f6f7f8 url('/arquivos/cuisinart-footer_bg.png') repeat-x 0 0; font-size: 1.3em; padding: 30px 0 60px; } #footer_text { font-size: 1.1em; line-height: 15px; padding: 15px 0; background: #ffffff; color: rgba(0, 0, 0, 0.59); } #newsletter_bar { clear: both; margin-top: 50px; background: #f5f5f5; padding: 15px 0; text-align: center; } #newsletter_bar h3 { display: none; } #newsletter_bar fieldset { font-size: 1.6em; } #newsletter_bar fieldset #newsletterClientName, #newsletter_bar fieldset #newsletterClientEmail { display: inline-block; font-size: 0.9em; padding: 0 15px; height: 40px; line-height: 40px; border-left: 1px solid #f1f1f1; border-top: 1px solid #d5d5d5; border-right: 1px solid #f1f1f1; color: #434343; margin-right: 10px; } #newsletter_bar fieldset p { display: inline-block; line-height: 40px; margin-right: 20px; text-align: left; } #newsletter_bar fieldset p:before { display: inline-block; content: ''; width: 22px; height: 15px; background: url('/arquivos/cuisinart_sprite.png?6') no-repeat -55px -34px; margin-right: 8px; position: relative; top: 2px; } #newsletter_bar #newsletterButtonOK, #newsletter_bar .bt-voltar { cursor: pointer; display: inline-block; padding: 0 15px; font-size: 0.9em; text-transform: uppercase; height: 40px; line-height: 40px; background: #ff9900; color: #ffffff; } #newsletter_bar .bt-voltar { margin-top: 15px; } .link_top { display: none; position: fixed; right: 40px; text-align: center; text-transform: uppercase; font-size: 1.2em; } .link_top:before { display: block; content: ''; margin: 0 auto 13px; width: 17px; height: 9px; background: url('/arquivos/cuisinart_sprite.png?6') no-repeat -24px -34px; } @media screen and (min-width: 100px) { .link_top { bottom: 210px; } #newsletter_bar fieldset #newsletterClientName, #newsletter_bar fieldset #newsletterClientEmail { width: 100%; margin-bottom: 20px; } #newsletter_bar fieldset p { width: 100%; text-align: center; } #footer-services { text-align: center; padding-bottom: 30px; } #footer-services .footer-services { display: block; text-align: center; } #footer-services .footer-services span { display: inline-block; vertical-align: top; line-height: 25px; } #footer-services .footer-services img { display: block; margin: 15px auto 25px; } #footer-menu { text-align: center; border-top: 1px solid #a9a9aa; position: relative; } #footer-menu .footer-col { padding-top: 30px; display: inline-block; text-align: left; width: 100%; vertical-align: top; } #footer-menu .footer-col li { margin-bottom: 10px; } #footer-menu .footer-col li strong { padding-bottom: 20px; display: block; } #footer-menu .footer-col li.small { font-size: 0.8em; margin-bottom: 3px; } #footer-menu .footer-col li .phone { font-size: 1.8em; color: #ff9900; font-weight: lighter; } #footer-menu .footer-col li.phone-televendas, #footer-menu .footer-col li.phone-assistencia { margin-bottom: 0; font-weight: bold; } #footer-menu .footer-col li.phone-televendas:before, #footer-menu .footer-col li.phone-assistencia:before { display: inline-block; content: ''; height: 13px; width: 13px; margin-right: 8px; position: relative; top: 3px; } #footer-menu .footer-col li.phone-televendas:before { background: url('/arquivos/cuisinart_sprite.png?6') no-repeat -107px 0; } #footer-menu .footer-col li.phone-assistencia:before { background: url('/arquivos/cuisinart_sprite.png?6') no-repeat -49px -70px; } #footer-menu:after { display: block; content: ''; width: 91px; height: 23px; background: url('/arquivos/cuisinart-vtex.png') no-repeat 0 0; position: absolute; left: 0; bottom: -38px; } } @media screen and (min-width: 500px) { #newsletter_bar fieldset #newsletterClientName, #newsletter_bar fieldset #newsletterClientEmail { width: 35%; margin-bottom: 0; } } @media screen and (min-width: 700px) { .link_top { bottom: 150px; } #footer-menu .footer-col { width: 25%; padding-right: 5px; } } @media screen and (min-width: 850px) { #newsletter_bar fieldset #newsletterClientName, #newsletter_bar fieldset #newsletterClientEmail { width: 25%; } #newsletter_bar fieldset p { width: auto; } } @media screen and (min-width: 1150px) { #footer-services .footer-services { display: inline-block; text-align: left; vertical-align: middle; min-height: 35px; padding-top: 10px; } #footer-services .footer-services img { display: inline-block; margin: 0 0 0 20px; } #footer-services .footer-services.formas-de-pagamento { padding-right: 40px; border-right: 1px solid #a9a9aa; } #footer-services .footer-services.certificado-de-seguranca { padding-left: 40px; } } .clearfix:after { display: block; content: ''; height: 0; width: 100%; clear: both; } .ModalBack { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 200; } .ModalBack.FundoEscuro { background: #000; opacity: .5; filter: alpha(opacity=50); -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; } #modal-sacola { z-index: 11; position: relative; } #modal-sacola .tit { font-size: 1.7em; display: block; padding: 0 0 13px; } #modal-sacola article { border-radius: 4px; background: #fff; max-width: 450px; width: 100%; position: fixed; top: 50%; padding: 10px; left: 50%; z-index: 201; -webkit-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%); } #modal-sacola .RefeitaFechar { position: absolute; top: -25px; right: 10px; color: #ffffff; font-size: 1.2em; text-transform: uppercase; } #modal-sacola .bt-continuar { float: left; width: 48%; overflow: hidden; background: #808080 !important; color: #ffffff; margin: 3px 0; font-size: 1.2em; display: block; line-height: 40px; font-weight: bold; border-radius: 4px; text-align: center; } #modal-sacola .bt-carrinho { float: right; width: 48%; overflow: hidden; background: #ff9900 !important; color: #ffffff; margin: 3px 0; display: block; font-size: 1.2em; line-height: 40px; font-weight: bold; border-radius: 4px; text-align: center; clear: none; }
0.207455
0.067639
.song{ height:64px; width:100%; min-width: 450px; padding: 9px 0px; border: none; background-color: transparent; } @media screen and (min-width: 1430px) { .song { min-width: 950px; } } @media screen and (min-width: 1350px) and (max-width: 1430px){ .song { min-width: 880px; } } @media screen and (min-width: 1250px) and (max-width: 1350px){ .song { min-width: 780px; } } @media screen and (min-width: 1200px) and (max-width: 1250px){ .song { min-width: 720px; } } @media screen and (min-width:992px) and (max-width: 1200px){ .song { min-width: 550px; } } @media screen and (min-width:900px) and (max-width: 992px){ .song { min-width: 670px; } } @media screen and (min-width:800px) and (max-width: 900px){ .song { min-width: 580px; } } #song:focus{ background-color: rgba(50,60,60, .5); border: none; outline: none; } .hovered{ background-color: rgba(50,60,60, .5); } #song:hover{ background-color: rgba(50,60,60, .5); } .goldText{ color: #F9B835; } .hide{ display: none; } .block{ display: block; } .songInfo{ text-align: left; } .songChild:hover{ background-color: transparent; } .songButton{ margin-bottom: 10px; background-color: transparent; border: none; padding:0px } .songButton:focus{ outline: none; } #songDropdownButton{ padding-bottom: 10px; } .dropdown { position: relative; font-size: 14px; } .dropdownContent { position: relative; right:140px; bottom:30px; background-color: #282828; min-width: 180px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); z-index: 1; padding: 5px 0px; text-align: left; } /* Links inside the dropdown */ .dropdownContent .SongDropdownItem{ color: #FFCE00; padding: 5px 5px 0px 7px; text-decoration: none; text-align: left; width:100% } /* Change color of dropdown links on hover */ .dropdownContent .SongDropdownItem:hover { color:white; background-color: #424242;}
oudfrontend/src/components/commonComponents/song/song.css
.song{ height:64px; width:100%; min-width: 450px; padding: 9px 0px; border: none; background-color: transparent; } @media screen and (min-width: 1430px) { .song { min-width: 950px; } } @media screen and (min-width: 1350px) and (max-width: 1430px){ .song { min-width: 880px; } } @media screen and (min-width: 1250px) and (max-width: 1350px){ .song { min-width: 780px; } } @media screen and (min-width: 1200px) and (max-width: 1250px){ .song { min-width: 720px; } } @media screen and (min-width:992px) and (max-width: 1200px){ .song { min-width: 550px; } } @media screen and (min-width:900px) and (max-width: 992px){ .song { min-width: 670px; } } @media screen and (min-width:800px) and (max-width: 900px){ .song { min-width: 580px; } } #song:focus{ background-color: rgba(50,60,60, .5); border: none; outline: none; } .hovered{ background-color: rgba(50,60,60, .5); } #song:hover{ background-color: rgba(50,60,60, .5); } .goldText{ color: #F9B835; } .hide{ display: none; } .block{ display: block; } .songInfo{ text-align: left; } .songChild:hover{ background-color: transparent; } .songButton{ margin-bottom: 10px; background-color: transparent; border: none; padding:0px } .songButton:focus{ outline: none; } #songDropdownButton{ padding-bottom: 10px; } .dropdown { position: relative; font-size: 14px; } .dropdownContent { position: relative; right:140px; bottom:30px; background-color: #282828; min-width: 180px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); z-index: 1; padding: 5px 0px; text-align: left; } /* Links inside the dropdown */ .dropdownContent .SongDropdownItem{ color: #FFCE00; padding: 5px 5px 0px 7px; text-decoration: none; text-align: left; width:100% } /* Change color of dropdown links on hover */ .dropdownContent .SongDropdownItem:hover { color:white; background-color: #424242;}
0.173148
0.088741
@import url(http://fonts.googleapis.com/css?family=Roboto+Condensed); * { box-sizing: border-box; } body { background: #f0f0f0; line-height: normal; font-size: 16px; overflow-Y: scroll; font-family: 'Roboto Condensed', "Helvetica Neue",Helvetica,Arial,sans-serif; -webkit-font-smoothing: antialiased !important; } a, a:hover, a:visited, a:link, a:active { text-decoration: none; } a:active { color: #fff !important; } .sm-img { height: 30px !important; width: 30px !important; } ::-moz-selection { background: #5af; color: #fff; text-shadow: none; } ::selection { background: #5af; color: #fff; text-shadow: none; } .rad-page-title { margin-bottom: 20px; text-shadow: 1px 4px 6px #c6c6c6, 0 0 0 #000, 1px 4px 6px #c6c6c6; } .rad-page-title span { font-size: 22px; font-weight: 500; display: block; } .rad-navigation { position: fixed; left: 0; right: 0; top: 0; box-shadow: 0 0px 9px 4px rgba(0, 0, 0, 0.1), 0 -5px 2px 2px rgba(0, 0, 0, 0.1); background: white; z-index: 10000; text-align: center; } .rad-navigation ul { margin-bottom: 0; } .rad-logo-hidden { line-height: 75px; font-weight: 900; text-transform: uppercase; font-size: 22px; text-decoration: none; color: #222533; opacity: 0; visibility: hidden; position: absolute; left: 50%; -webkit-transition: all .2s ease-in-out; transition: all .2s ease-in-out; } .links { margin-right: 10px; position: relative; } .links > li { list-style: none; position: relative; margin: 10px; display: inline-block; } .rad-dropmenu-item.active { display: block; -webkit-animation: flipInX 1s ease; } .lg-text { font-size: 13px; font-weight: 600; color: #333; } .sm-text { font-size: 11px; color: #c6c6c6; } .md-text { font-size: 12px; color: #c6c6c6; } .rad-notification-item { width: 100%; padding: 15px; border-bottom: 1px solid #EEEEEE; } .rad-notification-item:hover { background: #F5F5F5; } .rad-notification-item .rad-notification-content { color: #404040; } .rad-notification-body { color: black; vertical-align: middle; margin-left: 30px; } .rad-logo-container { width: 225px; text-align: center; height: 50px; float: left; -webkit-transition: all .2s ease-in-out; transition: all .2s ease-in-out; } .rad-top-nav-container { float: right; -webkit-transition: all .2s ease-in-out; transition: all .2s ease-in-out; } .rad-toggle-btn, .rad-logo { text-decoration: none; position: relative; height: 50px; line-height: 50px; padding: 0 15px; font-size: 22px; font-weight: 900; text-transform: uppercase; text-decoration: none; color: #222533; display: inline-block; } .rad-logo i { padding-top: 2px; vertical-align: middle; margin-right: 10px; } .rad-toggle-btn:hover { background: #f9f9f9; } .rad-menu-item { position: relative; padding: 0 5px; line-height: 30px; height: 30px; color: #89949B; z-index: 5; display: inline-block; } .rad-badge { height: 20px; color: white; border-radius: 10px; line-height: 20px; font-size: 12px; background: #E94B3B; box-shadow: 0.5px 0.2px 1px rgba(0, 0, 0, 0.5); display: inline-block; text-align: center; } .rad-menu-badge { position: absolute; min-width: 20px; min-height: 20px; line-height: 20px; font-weight: bold; color: white; border-radius: 100%; font-size: 12px; background: #E94B3B; box-shadow: 0.5px 0.2px 1px rgba(0, 0, 0, 0.5); display: inline-block; text-align: center; top: -10px; z-index: 1; } .sm-menu { min-width: 150px !important; } .sm-menu > li { padding: 10px; text-align: left; } .sm-menu > li i { margin: 0 10px 0 0; } .sm-menu > li > a { padding: 10px; } .rad-dropmenu-item { position: absolute; right: -6px; top: 45px; min-width: 250px; background: white; border: 1px solid #BDBDBD; border-top: 5px solid #515d6e; border-radius: 2px; box-shadow: 0 0 5px rgba(0, 0, 0, 0.15); display: none; } .rad-dropmenu-item:before { content: ""; position: absolute; border-width: 0 10px 10px 10px; border-style: solid; border-color: #515d6e transparent; top: -14px; right: 8px; } .rad-dropmenu-item.rad-settings { right: 0 !important; left: auto !important; } .rad-dropmenu-item.rad-settings:before { right: 5px !important; left: auto !important; } .rad-dropmenu-item.rad-settings > .rad-notification-item:hover { background: #fff !important; } .rad-dropmenu-item.rad-settings > .rad-notification-item i { font-size: 24px; } .rad-dropmenu-footer, .rad-dropmenu-header { display: block !important; background: #CFD8DC; text-transform: uppercase; font-size: 12px; margin: 0 !important; padding: 6px; text-align: center; } .rad-dropmenu-footer > a, .rad-dropmenu-header > a { color: white; line-height: 12px; text-decoration: none; } .rad-dropmenu-header { border-bottom: 1px solid #CFD8DC; } .rad-dropmenu-footer { border-top: 1px solid #CFD8DC; } .rad-chk-pin { margin: 0 !important; } .rad-chk-pin span { display: inline-block; position: relative; height: 20px; width: 40px; border-radius: 4px; background: crimson; border: 1px solid #f6f6f6; } .rad-chk-pin span:after { content: ""; position: absolute; background: white; width: 20px; height: 20px; border-radius: 4px; top: -1px; left: 0px; box-shadow: 0 0 0.5px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); -webkit-transition: all .2s ease; transition: all .2s ease; } .rad-chk-pin input { display: none; } .rad-chk-pin input:checked + span { background: #23AE89; } .rad-chk-pin input:checked + span:after { left: 19px; } .hide { display: none; } .rad-option-selected { box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), 0 -2px 4px rgba(0, 0, 0, 0.2); -webkit-transform: scale(1.1); transform: scale(1.1); -webkit-transition: all .2s linear; transition: all .2s linear; } .rad-color-swatch { display: table; width: 90px; height: 25px; border-radius: 4px; } .rad-color-swatch .colors { width: 25px; height: 25px; display: table-cell; cursor: pointer; } .rad-color-swatch .colors input[type="radio"] { display: none; } .rad-color-swatch .colors:first-child { border-top-left-radius: 4px; border-bottom-left-radius: 4px; } .rad-color-swatch .colors:last-child { border-top-right-radius: 4px; border-bottom-right-radius: 4px; } .rad-sidebar { z-index: 9999; position: fixed; font-weight: 600; background: white !important; width: 225px; height: 100vh; top: 50px; left: 0; bottom: 0; box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), 2px 4px 8px rgba(0, 0, 0, 0.28); -webkit-transition: all .2s ease-in-out; transition: all .2s ease-in-out; } .rad-sidebar li { text-align: left; height: 45px; font-size: 14px; font-weight: 500; letter-spacing: .025em; line-height: 1.5; } .rad-sidebar li a { text-decoration: none; display: block; color: #515d6e; } .rad-sidebar li a i { position: relative; width: 45px; line-height: 45px; text-align: center; } .rad-sidebar li a i:before { z-index: 10; position: relative; } .rad-sidebar li a > span { display: inline-block; visibility: visible; opacity: 1; padding-left: 10px; -webkit-transition: all .2s ease-in-out .2s; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); text-transform: uppercase; font-size: 11px; } .rad-sidebar li:hover { background: #f2f2f2; } .rad-sidebar li:hover .icon-bg { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } .rad-sidebar li:hover a > i { color: white; } .icon-bg { position: absolute; left: 0; top: 0; bottom: 0; z-index: 1; width: 100%; -webkit-transform: translate3d(-43px, 0, 0); transform: translate3d(-43px, 0, 0); -webkit-transition: all .2s ease-in-out; transition: all .2s ease-in-out; } .rad-txt-primary { color: #1C7EBB; } .rad-bg-primary { background: #1C7EBB; } .rad-txt-success { color: #23AE89; } .rad-bg-success { background: #23AE89; } .rad-txt-danger { color: #E94B3B; } .rad-bg-danger { background: #E94B3B; } .rad-txt-warning { color: #F98E33; } .rad-bg-warning { background: #F98E33; } .rad-txt-violet { color: #6A55C2; } .rad-bg-violet { background: #6A55C2; } .rad-logo-container.rad-nav-min { -webkit-transform: translate3d(-180px, 0, 0); transform: translate3d(-180px, 0, 0); } .rad-logo-container.rad-nav-min .rad-logo { opacity: 0; } .rad-logo-container.rad-nav-min + .rad-logo-hidden { opacity: 1; visibility: visible; } .rad-sidebar.rad-nav-min { width: 45px !important; } .rad-sidebar.rad-nav-min .rad-sidebar-item { opacity: 0; visibility: hidden; -webkit-transition: all .1s linear; -webkit-transform: translate3d(-200px, 0, 0); transform: translate3d(-200px, 0, 0); } .rad-sidebar.rad-nav-min .icon-bg { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } .rad-sidebar.rad-nav-min i { border: 0px; color: white; -webkit-transition: all .2s linear; transition: all .2s linear; } .rad-sidebar.rad-nav-min li:hover .icon-bg { -webkit-transform: scale(1.2, 1); transform: scale(1.2, 1); } .rad-body-wrapper { position: absolute; left: 230px; top: 75px; width: auto; right: 0; -webkit-transition: all .2s ease-in-out; transition: all .2s ease-in-out; } .rad-body-wrapper.rad-nav-min { left: 50px; } .rad-chart { height: 250px; } .rad-map { width: 100%; height: 100%; } .rad-map-container { height: 400px; position: relative; } .rad-collapse { height: 0px; padding: 0; opacity: 0; overflow: hidden; } @-webkit-keyframes rotating { from { -webkit-transform: rotate(0deg); } to { -webkit-transform: rotate(360deg); } } @-webkit-keyframes flipInX { 0% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); -webkit-transition-timing-function: ease-in; opacity: 0; } 40% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); -webkit-transition-timing-function: ease-in; } 60% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg); opacity: 1; } 80% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg); } 100% { -webkit-transform: perspective(400px); } } @media screen and (max-width: 450px) { .rad-info-box i { opacity: .3; } .flat-theme .rad-toggle-btn { right: 20px !important; } .flat-theme .rad-top-nav-container .links:last-child { display: none; } } @media screen and (min-width: 850px) { .rad-logo-container { height: 75px; } .rad-logo-container .rad-logo { line-height: 75px; } .rad-logo-container .rad-toggle-btn { line-height: 75px; height: auto; } .rad-top-nav-container { padding: 10px; } .rad-sidebar { top: 75px; } .rad-body-wrapper { top: 100px; } .flat-theme .rad-toggle-btn { top: 20px !important; } } @media screen and (max-width: 850px) { .flat-theme .rad-menu-badge { top: -3px; } .flat-theme .rad-toggle-btn { right: 20px !important; } .flat-theme .rad-body-wrapper { top: 125px !important; } .flat-theme .rad-sidebar { position: absolute; } .flat-theme .rad-navigation { position: absolute; } .flat-theme .rad-navigation .links > li:first-child { margin-left: 15px !important; } .flat-theme.sticky .rad-logo-container { z-index: 10000; } .flat-theme.sticky .rad-logo-container .rad-toggle-btn { color: #89949B !important; position: fixed; right: 120px !important; background: #f6f6f6; top: 11px; } .flat-theme.sticky .rad-logo-container .rad-toggle-btn:hover { background: crimson; color: #fff !important; } .flat-theme.sticky .rad-navigation { height: 50px; } .flat-theme.sticky .rad-sidebar { top: 50px; position: fixed; } .flat-theme.sticky .rad-top-nav-container { background: #FFF important; box-shadow: 0 0px 9px 4px rgba(0, 0, 0, 0.1), 0 -5px 2px 2px rgba(0, 0, 0, 0.1); position: fixed; left: 0; top: 0; width: 100%; z-index: 1000; } .flat-theme.sticky .links { margin-left: 50px; } .flat-theme.sticky .brand-icon { margin-left: 0px; } .flat-theme.sticky .brand-icon:hover { color: #fff; } .rad-navigation { height: 100px; } .rad-logo-container.rad-nav-min { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); background: transparent; } .rad-logo-container.rad-nav-min .rad-logo { opacity: 1; } .rad-logo-container.rad-nav-min + .rad-logo-hidden { display: none; } .rad-logo-container { display: block; float: none; width: 100%; border-bottom: 1px solid #F2F2F2; } .rad-top-nav-container { display: block; float: none; height: 50px; background: white; } .rad-top-nav-container .links > li > a { font-size: 12px; } .rad-menu-badge { font-size: 10px; min-width: 15px; min-height: 15px; line-height: 15px; } .rad-sidebar { top: 100px; } .rad-sidebar.rad-nav-min { -webkit-transform: translate3d(-200px, 0, 0); transform: translate3d(-200px, 0, 0); } .rad-body-wrapper { top: 125px; position: relative; } .rad-body-wrapper.rad-nav-min { left: 0px; } } .panel { box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26); border-radius: 0 !important; position: relative; -webkit-transition: all .2s linear; border-left: 3px #1ec7d0 solid; } .panel-close { -webkit-transform: scale3d(0, 0, 0); transform: scale3d(0, 0, 0); } .panel-body { position: relative; -webkit-transition: all .2s linear; } .panel-heading { background: white !important; border-radius: 0; padding: 7px; border-bottom: 0 !important; } .panel-heading .panel-title { text-transform: uppercase; font-weight: 600; font-size: 13px; color: #515d6e; } .overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 1001; background: rgba(255, 255, 255, 0.75); text-align: center; } .overlay:before { content: ""; height: 100%; vertical-align: middle; width: 1px; display: inline-block; margin-left: -5px; } .overlay .overlay-content { display: inline-block; vertical-align: middle; } .overlay i { display: block; position: inline-block; vertical-align: middle; color: black; } .rad-panel-action { list-style: none; display: inline-block; float: right; } .rad-panel-action li { display: inline-block; color: #515d6e; margin: 0 5px; cursor: pointer; } .rad-info-box { margin-bottom: 16px; box-shadow: 1px 1px 2px 0 #CCCCCC; padding: 20px; box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26); background: white !important; } .rad-info-box i { display: block; background-clip: padding-box; margin-right: 15px; height: 60px; width: 60px; border-radius: 100%; line-height: 60px; text-align: center; font-size: 4.4em; position: absolute; } .rad-info-box .value, .rad-info-box .heading { display: block; position: relative; color: #515d6e; text-align: right; z-index: 10; } .rad-info-box .heading { font-size: 1.2em; font-weight: 300; text-transform: uppercase; } .rad-info-box .value { font-size: 2.1em; font-weight: 600; margin-top: 5px; } .rad-list-group-item { margin: 5px 10px 25px 5px; } .rad-list-group-item:after { content: ""; display: table; } .rad-chat { border: 1px solid rgba(198, 198, 198, 0.5); padding: 0 10px; border-radius: 2px; position: relative; } .rad-chat-body { position: relative; } .rad-list-group-item.left .rad-chat { margin-left: 50px; } .rad-list-group-item.left .rad-chat .sm-text { float: right; } .rad-list-group-item.left .rad-chat:after { content: ""; border-top: 1px solid rgba(198, 198, 198, 0.5); border-left: 1px solid rgba(198, 198, 198, 0.5); height: 10px; width: 10px; background: white; position: absolute; left: -6px; top: 10px; -webkit-transform: rotate(-45deg); transform: rotate(-45deg); } .rad-chat-msg { font-size: 14px; color: #585f69; } .rad-list-group-item.right .rad-chat { margin-right: 50px; } .rad-list-group-item.right .rad-chat .lg-text { float: right; } .rad-list-group-item.right .rad-chat:after { content: ""; border-top: 1px solid rgba(198, 198, 198, 0.5); border-right: 1px solid rgba(198, 198, 198, 0.5); height: 10px; width: 10px; background: white; position: absolute; right: -6px; top: 10px; -webkit-transform: rotate(45deg); transform: rotate(45deg); } .rad-list-icon { position: relative; height: 40px; width: 40px; border-radius: 100%; line-height: 40px; text-align: center; color: white; top: -5px; } .icon-shadow { box-shadow: 0 0px 3px 1px rgba(0, 0, 0, 0.26); } .rad-list-img { border-radius: 100%; width: 32px; height: 32px; } .rad-list-group { position: relative; } .rad-list-group.group:before { content: ""; position: absolute; background: rgba(198, 198, 198, 0.3); top: -20px; bottom: -20px; left: 25px; width: 1px; } .rad-list-content { line-height: 1.3; margin-left: 50px; } .rad-timeline { padding: 10px 0; position: relative; } .rad-timeline:before { content: ""; position: absolute; border: 1px solid #c6c6c6; left: 50%; top: 0; height: 100%; bottom: 1px; box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2); } .rad-timeline .rad-timeline-item { list-style: none; padding: 10px; position: relative; vertical-align: middle; margin-bottom: 20px; font-size: 14px; } .rad-timeline .rad-timeline-item .rad-timeline-badge { position: absolute; left: 50%; top: 0; margin-left: -15px; color: #FFF; width: 30px; height: 30px; font-size: 12px; border-radius: 100%; text-align: center; line-height: 25px; box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2); cursor: pointer; -webkit-transition: all .2s easein-out; transition: all .2s easein-out; border: 2px solid #fff; } .rad-timeline .rad-timeline-item .rad-timeline-badge span { -webkit-transition: all 200ms linear; transition: all 200ms linear; -webkit-transform: scale(0); transform: scale(0); opacity: 0; position: absolute; color: #e6e6e6; background: Grey; min-width: 70px; border-radius: 3px; } .rad-timeline .rad-timeline-item .rad-timeline-badge span.pull-right { right: 35px; } .rad-timeline .rad-timeline-item .rad-timeline-badge span.pull-left { left: 35px; } .rad-timeline .rad-timeline-item .rad-timeline-badge:hover span { opacity: 1; -webkit-transform: scale(1); transform: scale(1); } .rad-timeline .rad-timeline-item .rad-timeline-panel { position: relative; width: 40%; background: #FFF; padding: 15px; top: -20px; margin-left: 10px; border-radius: 6px; border: 1px solid rgba(0, 0, 0, 0.2); } .rad-timeline .rad-timeline-item .rad-timeline-panel:after { content: ""; width: 15px; height: 15px; background: #FFF; position: absolute; top: 30px; right: -8.5px; margin-top: -10px; -webkit-transform: rotate(135deg); transform: rotate(135deg); border-top: 1px solid rgba(0, 0, 0, 0.2); border-left: 1px solid rgba(0, 0, 0, 0.2); } .rad-timeline .rad-timeline-item:before { content: ""; display: table; } .rad-timeline .rad-timeline-item:after { content: ""; clear: both; display: block; overflow: hidden; } .rad-timeline .rad-timeline-item:first-child { margin-top: 20px; } .rad-timeline .rad-timeline-item .pull-right.rad-timeline-panel { background: #e6e6e6; margin-right: 10px; } .rad-timeline .rad-timeline-item .pull-right.rad-timeline-panel:after { content: ""; left: -8.5px; -webkit-transform: rotate(-45deg); transform: rotate(-45deg); background: #e6e6e6; } .rad-timeline-footer p { display: inline-block; font-weight: 600; color: #515d6e; } .rad-timeline-footer p i { font-size: 24px; color: crimson; } .rad-chart .morris-hover { display: none !important; } .rad-chart:hover .morris-hover { display: block !important; } .fa-spin { -webkit-animation: fa-spin .5s infinite linear; animation: fa-spin .5s infinite linear; } .brand-icon { font-size: 22px; height: 50px; display: inline-block; float: left; width: 50px; background-color: crimson; text-align: center; line-height: 50px; color: white; font-weight: 700; -webkit-transition: all .2s linear; transition: all .2s linear; margin-left: -230px; display: none; } .flat-theme body { background: #f1f2f7; } .flat-theme .brand-icon { display: inline-block; } .flat-theme .rad-logo { color: white; } .flat-theme .rad-navigation { text-align: left; } .flat-theme .rad-navigation .rad-top-nav-container { float: none !important; } .flat-theme .rad-navigation .rad-top-nav-container .links:last-child { float: none !important; } .flat-theme .rad-navigation .rad-top-nav-container .links:last-child > li > ul.rad-dropmenu-item { left: 0; } .flat-theme .rad-navigation .rad-top-nav-container .links:last-child > li > ul.rad-dropmenu-item:before { left: 8px; right: 100%; } .flat-theme .rad-navigation .rad-top-nav-container .links:last-child > li:first-child { margin-left: 30px; } .flat-theme .rad-navigation .rad-top-nav-container .links > li { text-align: center; } .flat-theme .rad-navigation .rad-top-nav-container .links > li > a { border-radius: 50%; width: 32px; height: 32px; background: #f6f6f6; display: inline-block; line-height: 32px; } .flat-theme .rad-navigation .rad-top-nav-container .links > li:hover > a { color: white !important; } .flat-theme .rad-dropmenu-item { border-color: crimson !important; } .flat-theme .rad-dropmenu-item:before { border-color: crimson transparent; } .flat-theme .rad-logo-container.rad-nav-min { -webkit-transform: none; transform: none; } .flat-theme .rad-logo-container.rad-nav-min .rad-logo { opacity: 1; } .flat-theme .rad-logo-container.rad-nav-min + .rad-logo-hidden { opacity: 0; } .flat-theme .rad-logo-container { background: crimson !important; position: relative; z-index: 1000; } .flat-theme .rad-logo-container .rad-toggle-btn { color: #fff !important; font-size: 14px; width: 30px; height: 30px; display: inline-block; position: absolute; line-height: 30px; text-align: center; padding: 0; border-radius: 50%; right: -15px; background: red; top: 7.5px; -webkit-transition: all .2s linear; transition: all .2s linear; } .flat-theme .rad-sidebar { background: #32323a !important; } .flat-theme .rad-sidebar li { border-bottom: 1px solid rgba(255, 255, 255, 0.05); } .flat-theme .rad-sidebar li:hover { background: #28282a !important; } .flat-theme .rad-sidebar li:hover span { color: crimson !important; } .flat-theme .rad-sidebar li a i { color: white; } .flat-theme .rad-sidebar li a > span { color: #aeb2b7 !important; -webkit-transition: none; } .flat-theme .rad-info-box { box-shadow: none !important; border-radius: 4px; } .flat-theme .panel { box-shadow: none !important; border-radius: 4px !important; border: none !important; } .flat-theme .panel .panel-heading { background: #fafafa !important; border-top-left-radius: 4px; border-top-right-radius: 4px; } .flat-theme .panel .panel-body { border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; } .flat-theme .panel-default { border-color: none; } .rad-bg-crimson { background: crimson; } .flat-theme.crimson .rad-logo-container { background: crimson !important; } .flat-theme.crimson .rad-toggle-btn { background: #ad102f !important; } .flat-theme.crimson .rad-dropmenu-footer, .flat-theme.crimson .rad-dropmenu-header { background: #ad102f !important; } .flat-theme.crimson .links > li:not(.no-color):hover > a { background: #eb1f48 !important; } .flat-theme.crimson .rad-dropmenu-item { border-color: #ad102f !important; } .flat-theme.crimson .rad-dropmenu-item:before { border-color: #ad102f transparent; } .flat-theme.crimson .rad-sidebar li:hover a > span { color: crimson !important; } @media screen and (max-width: 850px) { .flat-theme.crimson.sticky .rad-toggle-btn { background: #fafafa !important; color: #89949B !important; } } .flat-theme.crimson.sticky .brand-icon, .flat-theme.crimson.sticky .rad-toggle-btn:hover { background: crimson !important; color: #fff !important; } .rad-bg-teal { background: #1fb5ad; } .flat-theme.teal .rad-logo-container { background: #1fb5ad !important; } .flat-theme.teal .rad-toggle-btn { background: #188983 !important; } .flat-theme.teal .rad-dropmenu-footer, .flat-theme.teal .rad-dropmenu-header { background: #188983 !important; } .flat-theme.teal .links > li:not(.no-color):hover > a { background: #23cbc2 !important; } .flat-theme.teal .rad-dropmenu-item { border-color: #188983 !important; } .flat-theme.teal .rad-dropmenu-item:before { border-color: #188983 transparent; } .flat-theme.teal .rad-sidebar li:hover a > span { color: #1fb5ad !important; } @media screen and (max-width: 850px) { .flat-theme.teal.sticky .rad-toggle-btn { background: #fafafa !important; color: #89949B !important; } } .flat-theme.teal.sticky .brand-icon, .flat-theme.teal.sticky .rad-toggle-btn:hover { background: #1fb5ad !important; color: #fff !important; } .rad-bg-orange { background: #ff503f; } .flat-theme.orange .rad-logo-container { background: #ff503f !important; } .flat-theme.orange .rad-toggle-btn { background: #ff220c !important; } .flat-theme.orange .rad-dropmenu-footer, .flat-theme.orange .rad-dropmenu-header { background: #ff220c !important; } .flat-theme.orange .links > li:not(.no-color):hover > a { background: #ff6759 !important; } .flat-theme.orange .rad-dropmenu-item { border-color: #ff220c !important; } .flat-theme.orange .rad-dropmenu-item:before { border-color: #ff220c transparent; } .flat-theme.orange .rad-sidebar li:hover a > span { color: #ff503f !important; } @media screen and (max-width: 850px) { .flat-theme.orange.sticky .rad-toggle-btn { background: #fafafa !important; color: #89949B !important; } } .flat-theme.orange.sticky .brand-icon, .flat-theme.orange.sticky .rad-toggle-btn:hover { background: #ff503f !important; color: #fff !important; } .rad-bg-purple { background: rebeccapurple; } .flat-theme.purple .rad-logo-container { background: rebeccapurple !important; } .flat-theme.purple .rad-toggle-btn { background: #4d2673 !important; } .flat-theme.purple .rad-dropmenu-footer, .flat-theme.purple .rad-dropmenu-header { background: #4d2673 !important; } .flat-theme.purple .links > li:not(.no-color):hover > a { background: #7339ac !important; } .flat-theme.purple .rad-dropmenu-item { border-color: #4d2673 !important; } .flat-theme.purple .rad-dropmenu-item:before { border-color: #4d2673 transparent; } .flat-theme.purple .rad-sidebar li:hover a > span { color: rebeccapurple !important; } @media screen and (max-width: 850px) { .flat-theme.purple.sticky .rad-toggle-btn { background: #fafafa !important; color: #89949B !important; } } .flat-theme.purple.sticky .brand-icon, .flat-theme.purple.sticky .rad-toggle-btn:hover { background: rebeccapurple !important; color: #fff !important; } .rad-bg-twitter { background: #55acee; } .flat-theme.twitter .rad-logo-container { background: #55acee !important; } .flat-theme.twitter .rad-toggle-btn { background: #2795e9 !important; } .flat-theme.twitter .rad-dropmenu-footer, .flat-theme.twitter .rad-dropmenu-header { background: #2795e9 !important; } .flat-theme.twitter .links > li:not(.no-color):hover > a { background: #6cb7f0 !important; } .flat-theme.twitter .rad-dropmenu-item { border-color: #2795e9 !important; } .flat-theme.twitter .rad-dropmenu-item:before { border-color: #2795e9 transparent; } .flat-theme.twitter .rad-sidebar li:hover a > span { color: #55acee !important; } @media screen and (max-width: 850px) { .flat-theme.twitter.sticky .rad-toggle-btn { background: #fafafa !important; color: #89949B !important; } } .flat-theme.twitter.sticky .brand-icon, .flat-theme.twitter.sticky .rad-toggle-btn:hover { background: #55acee !important; color: #fff !important; }
css/testing.css
@import url(http://fonts.googleapis.com/css?family=Roboto+Condensed); * { box-sizing: border-box; } body { background: #f0f0f0; line-height: normal; font-size: 16px; overflow-Y: scroll; font-family: 'Roboto Condensed', "Helvetica Neue",Helvetica,Arial,sans-serif; -webkit-font-smoothing: antialiased !important; } a, a:hover, a:visited, a:link, a:active { text-decoration: none; } a:active { color: #fff !important; } .sm-img { height: 30px !important; width: 30px !important; } ::-moz-selection { background: #5af; color: #fff; text-shadow: none; } ::selection { background: #5af; color: #fff; text-shadow: none; } .rad-page-title { margin-bottom: 20px; text-shadow: 1px 4px 6px #c6c6c6, 0 0 0 #000, 1px 4px 6px #c6c6c6; } .rad-page-title span { font-size: 22px; font-weight: 500; display: block; } .rad-navigation { position: fixed; left: 0; right: 0; top: 0; box-shadow: 0 0px 9px 4px rgba(0, 0, 0, 0.1), 0 -5px 2px 2px rgba(0, 0, 0, 0.1); background: white; z-index: 10000; text-align: center; } .rad-navigation ul { margin-bottom: 0; } .rad-logo-hidden { line-height: 75px; font-weight: 900; text-transform: uppercase; font-size: 22px; text-decoration: none; color: #222533; opacity: 0; visibility: hidden; position: absolute; left: 50%; -webkit-transition: all .2s ease-in-out; transition: all .2s ease-in-out; } .links { margin-right: 10px; position: relative; } .links > li { list-style: none; position: relative; margin: 10px; display: inline-block; } .rad-dropmenu-item.active { display: block; -webkit-animation: flipInX 1s ease; } .lg-text { font-size: 13px; font-weight: 600; color: #333; } .sm-text { font-size: 11px; color: #c6c6c6; } .md-text { font-size: 12px; color: #c6c6c6; } .rad-notification-item { width: 100%; padding: 15px; border-bottom: 1px solid #EEEEEE; } .rad-notification-item:hover { background: #F5F5F5; } .rad-notification-item .rad-notification-content { color: #404040; } .rad-notification-body { color: black; vertical-align: middle; margin-left: 30px; } .rad-logo-container { width: 225px; text-align: center; height: 50px; float: left; -webkit-transition: all .2s ease-in-out; transition: all .2s ease-in-out; } .rad-top-nav-container { float: right; -webkit-transition: all .2s ease-in-out; transition: all .2s ease-in-out; } .rad-toggle-btn, .rad-logo { text-decoration: none; position: relative; height: 50px; line-height: 50px; padding: 0 15px; font-size: 22px; font-weight: 900; text-transform: uppercase; text-decoration: none; color: #222533; display: inline-block; } .rad-logo i { padding-top: 2px; vertical-align: middle; margin-right: 10px; } .rad-toggle-btn:hover { background: #f9f9f9; } .rad-menu-item { position: relative; padding: 0 5px; line-height: 30px; height: 30px; color: #89949B; z-index: 5; display: inline-block; } .rad-badge { height: 20px; color: white; border-radius: 10px; line-height: 20px; font-size: 12px; background: #E94B3B; box-shadow: 0.5px 0.2px 1px rgba(0, 0, 0, 0.5); display: inline-block; text-align: center; } .rad-menu-badge { position: absolute; min-width: 20px; min-height: 20px; line-height: 20px; font-weight: bold; color: white; border-radius: 100%; font-size: 12px; background: #E94B3B; box-shadow: 0.5px 0.2px 1px rgba(0, 0, 0, 0.5); display: inline-block; text-align: center; top: -10px; z-index: 1; } .sm-menu { min-width: 150px !important; } .sm-menu > li { padding: 10px; text-align: left; } .sm-menu > li i { margin: 0 10px 0 0; } .sm-menu > li > a { padding: 10px; } .rad-dropmenu-item { position: absolute; right: -6px; top: 45px; min-width: 250px; background: white; border: 1px solid #BDBDBD; border-top: 5px solid #515d6e; border-radius: 2px; box-shadow: 0 0 5px rgba(0, 0, 0, 0.15); display: none; } .rad-dropmenu-item:before { content: ""; position: absolute; border-width: 0 10px 10px 10px; border-style: solid; border-color: #515d6e transparent; top: -14px; right: 8px; } .rad-dropmenu-item.rad-settings { right: 0 !important; left: auto !important; } .rad-dropmenu-item.rad-settings:before { right: 5px !important; left: auto !important; } .rad-dropmenu-item.rad-settings > .rad-notification-item:hover { background: #fff !important; } .rad-dropmenu-item.rad-settings > .rad-notification-item i { font-size: 24px; } .rad-dropmenu-footer, .rad-dropmenu-header { display: block !important; background: #CFD8DC; text-transform: uppercase; font-size: 12px; margin: 0 !important; padding: 6px; text-align: center; } .rad-dropmenu-footer > a, .rad-dropmenu-header > a { color: white; line-height: 12px; text-decoration: none; } .rad-dropmenu-header { border-bottom: 1px solid #CFD8DC; } .rad-dropmenu-footer { border-top: 1px solid #CFD8DC; } .rad-chk-pin { margin: 0 !important; } .rad-chk-pin span { display: inline-block; position: relative; height: 20px; width: 40px; border-radius: 4px; background: crimson; border: 1px solid #f6f6f6; } .rad-chk-pin span:after { content: ""; position: absolute; background: white; width: 20px; height: 20px; border-radius: 4px; top: -1px; left: 0px; box-shadow: 0 0 0.5px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); -webkit-transition: all .2s ease; transition: all .2s ease; } .rad-chk-pin input { display: none; } .rad-chk-pin input:checked + span { background: #23AE89; } .rad-chk-pin input:checked + span:after { left: 19px; } .hide { display: none; } .rad-option-selected { box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), 0 -2px 4px rgba(0, 0, 0, 0.2); -webkit-transform: scale(1.1); transform: scale(1.1); -webkit-transition: all .2s linear; transition: all .2s linear; } .rad-color-swatch { display: table; width: 90px; height: 25px; border-radius: 4px; } .rad-color-swatch .colors { width: 25px; height: 25px; display: table-cell; cursor: pointer; } .rad-color-swatch .colors input[type="radio"] { display: none; } .rad-color-swatch .colors:first-child { border-top-left-radius: 4px; border-bottom-left-radius: 4px; } .rad-color-swatch .colors:last-child { border-top-right-radius: 4px; border-bottom-right-radius: 4px; } .rad-sidebar { z-index: 9999; position: fixed; font-weight: 600; background: white !important; width: 225px; height: 100vh; top: 50px; left: 0; bottom: 0; box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), 2px 4px 8px rgba(0, 0, 0, 0.28); -webkit-transition: all .2s ease-in-out; transition: all .2s ease-in-out; } .rad-sidebar li { text-align: left; height: 45px; font-size: 14px; font-weight: 500; letter-spacing: .025em; line-height: 1.5; } .rad-sidebar li a { text-decoration: none; display: block; color: #515d6e; } .rad-sidebar li a i { position: relative; width: 45px; line-height: 45px; text-align: center; } .rad-sidebar li a i:before { z-index: 10; position: relative; } .rad-sidebar li a > span { display: inline-block; visibility: visible; opacity: 1; padding-left: 10px; -webkit-transition: all .2s ease-in-out .2s; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); text-transform: uppercase; font-size: 11px; } .rad-sidebar li:hover { background: #f2f2f2; } .rad-sidebar li:hover .icon-bg { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } .rad-sidebar li:hover a > i { color: white; } .icon-bg { position: absolute; left: 0; top: 0; bottom: 0; z-index: 1; width: 100%; -webkit-transform: translate3d(-43px, 0, 0); transform: translate3d(-43px, 0, 0); -webkit-transition: all .2s ease-in-out; transition: all .2s ease-in-out; } .rad-txt-primary { color: #1C7EBB; } .rad-bg-primary { background: #1C7EBB; } .rad-txt-success { color: #23AE89; } .rad-bg-success { background: #23AE89; } .rad-txt-danger { color: #E94B3B; } .rad-bg-danger { background: #E94B3B; } .rad-txt-warning { color: #F98E33; } .rad-bg-warning { background: #F98E33; } .rad-txt-violet { color: #6A55C2; } .rad-bg-violet { background: #6A55C2; } .rad-logo-container.rad-nav-min { -webkit-transform: translate3d(-180px, 0, 0); transform: translate3d(-180px, 0, 0); } .rad-logo-container.rad-nav-min .rad-logo { opacity: 0; } .rad-logo-container.rad-nav-min + .rad-logo-hidden { opacity: 1; visibility: visible; } .rad-sidebar.rad-nav-min { width: 45px !important; } .rad-sidebar.rad-nav-min .rad-sidebar-item { opacity: 0; visibility: hidden; -webkit-transition: all .1s linear; -webkit-transform: translate3d(-200px, 0, 0); transform: translate3d(-200px, 0, 0); } .rad-sidebar.rad-nav-min .icon-bg { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } .rad-sidebar.rad-nav-min i { border: 0px; color: white; -webkit-transition: all .2s linear; transition: all .2s linear; } .rad-sidebar.rad-nav-min li:hover .icon-bg { -webkit-transform: scale(1.2, 1); transform: scale(1.2, 1); } .rad-body-wrapper { position: absolute; left: 230px; top: 75px; width: auto; right: 0; -webkit-transition: all .2s ease-in-out; transition: all .2s ease-in-out; } .rad-body-wrapper.rad-nav-min { left: 50px; } .rad-chart { height: 250px; } .rad-map { width: 100%; height: 100%; } .rad-map-container { height: 400px; position: relative; } .rad-collapse { height: 0px; padding: 0; opacity: 0; overflow: hidden; } @-webkit-keyframes rotating { from { -webkit-transform: rotate(0deg); } to { -webkit-transform: rotate(360deg); } } @-webkit-keyframes flipInX { 0% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); -webkit-transition-timing-function: ease-in; opacity: 0; } 40% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); -webkit-transition-timing-function: ease-in; } 60% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg); opacity: 1; } 80% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg); } 100% { -webkit-transform: perspective(400px); } } @media screen and (max-width: 450px) { .rad-info-box i { opacity: .3; } .flat-theme .rad-toggle-btn { right: 20px !important; } .flat-theme .rad-top-nav-container .links:last-child { display: none; } } @media screen and (min-width: 850px) { .rad-logo-container { height: 75px; } .rad-logo-container .rad-logo { line-height: 75px; } .rad-logo-container .rad-toggle-btn { line-height: 75px; height: auto; } .rad-top-nav-container { padding: 10px; } .rad-sidebar { top: 75px; } .rad-body-wrapper { top: 100px; } .flat-theme .rad-toggle-btn { top: 20px !important; } } @media screen and (max-width: 850px) { .flat-theme .rad-menu-badge { top: -3px; } .flat-theme .rad-toggle-btn { right: 20px !important; } .flat-theme .rad-body-wrapper { top: 125px !important; } .flat-theme .rad-sidebar { position: absolute; } .flat-theme .rad-navigation { position: absolute; } .flat-theme .rad-navigation .links > li:first-child { margin-left: 15px !important; } .flat-theme.sticky .rad-logo-container { z-index: 10000; } .flat-theme.sticky .rad-logo-container .rad-toggle-btn { color: #89949B !important; position: fixed; right: 120px !important; background: #f6f6f6; top: 11px; } .flat-theme.sticky .rad-logo-container .rad-toggle-btn:hover { background: crimson; color: #fff !important; } .flat-theme.sticky .rad-navigation { height: 50px; } .flat-theme.sticky .rad-sidebar { top: 50px; position: fixed; } .flat-theme.sticky .rad-top-nav-container { background: #FFF important; box-shadow: 0 0px 9px 4px rgba(0, 0, 0, 0.1), 0 -5px 2px 2px rgba(0, 0, 0, 0.1); position: fixed; left: 0; top: 0; width: 100%; z-index: 1000; } .flat-theme.sticky .links { margin-left: 50px; } .flat-theme.sticky .brand-icon { margin-left: 0px; } .flat-theme.sticky .brand-icon:hover { color: #fff; } .rad-navigation { height: 100px; } .rad-logo-container.rad-nav-min { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); background: transparent; } .rad-logo-container.rad-nav-min .rad-logo { opacity: 1; } .rad-logo-container.rad-nav-min + .rad-logo-hidden { display: none; } .rad-logo-container { display: block; float: none; width: 100%; border-bottom: 1px solid #F2F2F2; } .rad-top-nav-container { display: block; float: none; height: 50px; background: white; } .rad-top-nav-container .links > li > a { font-size: 12px; } .rad-menu-badge { font-size: 10px; min-width: 15px; min-height: 15px; line-height: 15px; } .rad-sidebar { top: 100px; } .rad-sidebar.rad-nav-min { -webkit-transform: translate3d(-200px, 0, 0); transform: translate3d(-200px, 0, 0); } .rad-body-wrapper { top: 125px; position: relative; } .rad-body-wrapper.rad-nav-min { left: 0px; } } .panel { box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26); border-radius: 0 !important; position: relative; -webkit-transition: all .2s linear; border-left: 3px #1ec7d0 solid; } .panel-close { -webkit-transform: scale3d(0, 0, 0); transform: scale3d(0, 0, 0); } .panel-body { position: relative; -webkit-transition: all .2s linear; } .panel-heading { background: white !important; border-radius: 0; padding: 7px; border-bottom: 0 !important; } .panel-heading .panel-title { text-transform: uppercase; font-weight: 600; font-size: 13px; color: #515d6e; } .overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 1001; background: rgba(255, 255, 255, 0.75); text-align: center; } .overlay:before { content: ""; height: 100%; vertical-align: middle; width: 1px; display: inline-block; margin-left: -5px; } .overlay .overlay-content { display: inline-block; vertical-align: middle; } .overlay i { display: block; position: inline-block; vertical-align: middle; color: black; } .rad-panel-action { list-style: none; display: inline-block; float: right; } .rad-panel-action li { display: inline-block; color: #515d6e; margin: 0 5px; cursor: pointer; } .rad-info-box { margin-bottom: 16px; box-shadow: 1px 1px 2px 0 #CCCCCC; padding: 20px; box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26); background: white !important; } .rad-info-box i { display: block; background-clip: padding-box; margin-right: 15px; height: 60px; width: 60px; border-radius: 100%; line-height: 60px; text-align: center; font-size: 4.4em; position: absolute; } .rad-info-box .value, .rad-info-box .heading { display: block; position: relative; color: #515d6e; text-align: right; z-index: 10; } .rad-info-box .heading { font-size: 1.2em; font-weight: 300; text-transform: uppercase; } .rad-info-box .value { font-size: 2.1em; font-weight: 600; margin-top: 5px; } .rad-list-group-item { margin: 5px 10px 25px 5px; } .rad-list-group-item:after { content: ""; display: table; } .rad-chat { border: 1px solid rgba(198, 198, 198, 0.5); padding: 0 10px; border-radius: 2px; position: relative; } .rad-chat-body { position: relative; } .rad-list-group-item.left .rad-chat { margin-left: 50px; } .rad-list-group-item.left .rad-chat .sm-text { float: right; } .rad-list-group-item.left .rad-chat:after { content: ""; border-top: 1px solid rgba(198, 198, 198, 0.5); border-left: 1px solid rgba(198, 198, 198, 0.5); height: 10px; width: 10px; background: white; position: absolute; left: -6px; top: 10px; -webkit-transform: rotate(-45deg); transform: rotate(-45deg); } .rad-chat-msg { font-size: 14px; color: #585f69; } .rad-list-group-item.right .rad-chat { margin-right: 50px; } .rad-list-group-item.right .rad-chat .lg-text { float: right; } .rad-list-group-item.right .rad-chat:after { content: ""; border-top: 1px solid rgba(198, 198, 198, 0.5); border-right: 1px solid rgba(198, 198, 198, 0.5); height: 10px; width: 10px; background: white; position: absolute; right: -6px; top: 10px; -webkit-transform: rotate(45deg); transform: rotate(45deg); } .rad-list-icon { position: relative; height: 40px; width: 40px; border-radius: 100%; line-height: 40px; text-align: center; color: white; top: -5px; } .icon-shadow { box-shadow: 0 0px 3px 1px rgba(0, 0, 0, 0.26); } .rad-list-img { border-radius: 100%; width: 32px; height: 32px; } .rad-list-group { position: relative; } .rad-list-group.group:before { content: ""; position: absolute; background: rgba(198, 198, 198, 0.3); top: -20px; bottom: -20px; left: 25px; width: 1px; } .rad-list-content { line-height: 1.3; margin-left: 50px; } .rad-timeline { padding: 10px 0; position: relative; } .rad-timeline:before { content: ""; position: absolute; border: 1px solid #c6c6c6; left: 50%; top: 0; height: 100%; bottom: 1px; box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2); } .rad-timeline .rad-timeline-item { list-style: none; padding: 10px; position: relative; vertical-align: middle; margin-bottom: 20px; font-size: 14px; } .rad-timeline .rad-timeline-item .rad-timeline-badge { position: absolute; left: 50%; top: 0; margin-left: -15px; color: #FFF; width: 30px; height: 30px; font-size: 12px; border-radius: 100%; text-align: center; line-height: 25px; box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2); cursor: pointer; -webkit-transition: all .2s easein-out; transition: all .2s easein-out; border: 2px solid #fff; } .rad-timeline .rad-timeline-item .rad-timeline-badge span { -webkit-transition: all 200ms linear; transition: all 200ms linear; -webkit-transform: scale(0); transform: scale(0); opacity: 0; position: absolute; color: #e6e6e6; background: Grey; min-width: 70px; border-radius: 3px; } .rad-timeline .rad-timeline-item .rad-timeline-badge span.pull-right { right: 35px; } .rad-timeline .rad-timeline-item .rad-timeline-badge span.pull-left { left: 35px; } .rad-timeline .rad-timeline-item .rad-timeline-badge:hover span { opacity: 1; -webkit-transform: scale(1); transform: scale(1); } .rad-timeline .rad-timeline-item .rad-timeline-panel { position: relative; width: 40%; background: #FFF; padding: 15px; top: -20px; margin-left: 10px; border-radius: 6px; border: 1px solid rgba(0, 0, 0, 0.2); } .rad-timeline .rad-timeline-item .rad-timeline-panel:after { content: ""; width: 15px; height: 15px; background: #FFF; position: absolute; top: 30px; right: -8.5px; margin-top: -10px; -webkit-transform: rotate(135deg); transform: rotate(135deg); border-top: 1px solid rgba(0, 0, 0, 0.2); border-left: 1px solid rgba(0, 0, 0, 0.2); } .rad-timeline .rad-timeline-item:before { content: ""; display: table; } .rad-timeline .rad-timeline-item:after { content: ""; clear: both; display: block; overflow: hidden; } .rad-timeline .rad-timeline-item:first-child { margin-top: 20px; } .rad-timeline .rad-timeline-item .pull-right.rad-timeline-panel { background: #e6e6e6; margin-right: 10px; } .rad-timeline .rad-timeline-item .pull-right.rad-timeline-panel:after { content: ""; left: -8.5px; -webkit-transform: rotate(-45deg); transform: rotate(-45deg); background: #e6e6e6; } .rad-timeline-footer p { display: inline-block; font-weight: 600; color: #515d6e; } .rad-timeline-footer p i { font-size: 24px; color: crimson; } .rad-chart .morris-hover { display: none !important; } .rad-chart:hover .morris-hover { display: block !important; } .fa-spin { -webkit-animation: fa-spin .5s infinite linear; animation: fa-spin .5s infinite linear; } .brand-icon { font-size: 22px; height: 50px; display: inline-block; float: left; width: 50px; background-color: crimson; text-align: center; line-height: 50px; color: white; font-weight: 700; -webkit-transition: all .2s linear; transition: all .2s linear; margin-left: -230px; display: none; } .flat-theme body { background: #f1f2f7; } .flat-theme .brand-icon { display: inline-block; } .flat-theme .rad-logo { color: white; } .flat-theme .rad-navigation { text-align: left; } .flat-theme .rad-navigation .rad-top-nav-container { float: none !important; } .flat-theme .rad-navigation .rad-top-nav-container .links:last-child { float: none !important; } .flat-theme .rad-navigation .rad-top-nav-container .links:last-child > li > ul.rad-dropmenu-item { left: 0; } .flat-theme .rad-navigation .rad-top-nav-container .links:last-child > li > ul.rad-dropmenu-item:before { left: 8px; right: 100%; } .flat-theme .rad-navigation .rad-top-nav-container .links:last-child > li:first-child { margin-left: 30px; } .flat-theme .rad-navigation .rad-top-nav-container .links > li { text-align: center; } .flat-theme .rad-navigation .rad-top-nav-container .links > li > a { border-radius: 50%; width: 32px; height: 32px; background: #f6f6f6; display: inline-block; line-height: 32px; } .flat-theme .rad-navigation .rad-top-nav-container .links > li:hover > a { color: white !important; } .flat-theme .rad-dropmenu-item { border-color: crimson !important; } .flat-theme .rad-dropmenu-item:before { border-color: crimson transparent; } .flat-theme .rad-logo-container.rad-nav-min { -webkit-transform: none; transform: none; } .flat-theme .rad-logo-container.rad-nav-min .rad-logo { opacity: 1; } .flat-theme .rad-logo-container.rad-nav-min + .rad-logo-hidden { opacity: 0; } .flat-theme .rad-logo-container { background: crimson !important; position: relative; z-index: 1000; } .flat-theme .rad-logo-container .rad-toggle-btn { color: #fff !important; font-size: 14px; width: 30px; height: 30px; display: inline-block; position: absolute; line-height: 30px; text-align: center; padding: 0; border-radius: 50%; right: -15px; background: red; top: 7.5px; -webkit-transition: all .2s linear; transition: all .2s linear; } .flat-theme .rad-sidebar { background: #32323a !important; } .flat-theme .rad-sidebar li { border-bottom: 1px solid rgba(255, 255, 255, 0.05); } .flat-theme .rad-sidebar li:hover { background: #28282a !important; } .flat-theme .rad-sidebar li:hover span { color: crimson !important; } .flat-theme .rad-sidebar li a i { color: white; } .flat-theme .rad-sidebar li a > span { color: #aeb2b7 !important; -webkit-transition: none; } .flat-theme .rad-info-box { box-shadow: none !important; border-radius: 4px; } .flat-theme .panel { box-shadow: none !important; border-radius: 4px !important; border: none !important; } .flat-theme .panel .panel-heading { background: #fafafa !important; border-top-left-radius: 4px; border-top-right-radius: 4px; } .flat-theme .panel .panel-body { border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; } .flat-theme .panel-default { border-color: none; } .rad-bg-crimson { background: crimson; } .flat-theme.crimson .rad-logo-container { background: crimson !important; } .flat-theme.crimson .rad-toggle-btn { background: #ad102f !important; } .flat-theme.crimson .rad-dropmenu-footer, .flat-theme.crimson .rad-dropmenu-header { background: #ad102f !important; } .flat-theme.crimson .links > li:not(.no-color):hover > a { background: #eb1f48 !important; } .flat-theme.crimson .rad-dropmenu-item { border-color: #ad102f !important; } .flat-theme.crimson .rad-dropmenu-item:before { border-color: #ad102f transparent; } .flat-theme.crimson .rad-sidebar li:hover a > span { color: crimson !important; } @media screen and (max-width: 850px) { .flat-theme.crimson.sticky .rad-toggle-btn { background: #fafafa !important; color: #89949B !important; } } .flat-theme.crimson.sticky .brand-icon, .flat-theme.crimson.sticky .rad-toggle-btn:hover { background: crimson !important; color: #fff !important; } .rad-bg-teal { background: #1fb5ad; } .flat-theme.teal .rad-logo-container { background: #1fb5ad !important; } .flat-theme.teal .rad-toggle-btn { background: #188983 !important; } .flat-theme.teal .rad-dropmenu-footer, .flat-theme.teal .rad-dropmenu-header { background: #188983 !important; } .flat-theme.teal .links > li:not(.no-color):hover > a { background: #23cbc2 !important; } .flat-theme.teal .rad-dropmenu-item { border-color: #188983 !important; } .flat-theme.teal .rad-dropmenu-item:before { border-color: #188983 transparent; } .flat-theme.teal .rad-sidebar li:hover a > span { color: #1fb5ad !important; } @media screen and (max-width: 850px) { .flat-theme.teal.sticky .rad-toggle-btn { background: #fafafa !important; color: #89949B !important; } } .flat-theme.teal.sticky .brand-icon, .flat-theme.teal.sticky .rad-toggle-btn:hover { background: #1fb5ad !important; color: #fff !important; } .rad-bg-orange { background: #ff503f; } .flat-theme.orange .rad-logo-container { background: #ff503f !important; } .flat-theme.orange .rad-toggle-btn { background: #ff220c !important; } .flat-theme.orange .rad-dropmenu-footer, .flat-theme.orange .rad-dropmenu-header { background: #ff220c !important; } .flat-theme.orange .links > li:not(.no-color):hover > a { background: #ff6759 !important; } .flat-theme.orange .rad-dropmenu-item { border-color: #ff220c !important; } .flat-theme.orange .rad-dropmenu-item:before { border-color: #ff220c transparent; } .flat-theme.orange .rad-sidebar li:hover a > span { color: #ff503f !important; } @media screen and (max-width: 850px) { .flat-theme.orange.sticky .rad-toggle-btn { background: #fafafa !important; color: #89949B !important; } } .flat-theme.orange.sticky .brand-icon, .flat-theme.orange.sticky .rad-toggle-btn:hover { background: #ff503f !important; color: #fff !important; } .rad-bg-purple { background: rebeccapurple; } .flat-theme.purple .rad-logo-container { background: rebeccapurple !important; } .flat-theme.purple .rad-toggle-btn { background: #4d2673 !important; } .flat-theme.purple .rad-dropmenu-footer, .flat-theme.purple .rad-dropmenu-header { background: #4d2673 !important; } .flat-theme.purple .links > li:not(.no-color):hover > a { background: #7339ac !important; } .flat-theme.purple .rad-dropmenu-item { border-color: #4d2673 !important; } .flat-theme.purple .rad-dropmenu-item:before { border-color: #4d2673 transparent; } .flat-theme.purple .rad-sidebar li:hover a > span { color: rebeccapurple !important; } @media screen and (max-width: 850px) { .flat-theme.purple.sticky .rad-toggle-btn { background: #fafafa !important; color: #89949B !important; } } .flat-theme.purple.sticky .brand-icon, .flat-theme.purple.sticky .rad-toggle-btn:hover { background: rebeccapurple !important; color: #fff !important; } .rad-bg-twitter { background: #55acee; } .flat-theme.twitter .rad-logo-container { background: #55acee !important; } .flat-theme.twitter .rad-toggle-btn { background: #2795e9 !important; } .flat-theme.twitter .rad-dropmenu-footer, .flat-theme.twitter .rad-dropmenu-header { background: #2795e9 !important; } .flat-theme.twitter .links > li:not(.no-color):hover > a { background: #6cb7f0 !important; } .flat-theme.twitter .rad-dropmenu-item { border-color: #2795e9 !important; } .flat-theme.twitter .rad-dropmenu-item:before { border-color: #2795e9 transparent; } .flat-theme.twitter .rad-sidebar li:hover a > span { color: #55acee !important; } @media screen and (max-width: 850px) { .flat-theme.twitter.sticky .rad-toggle-btn { background: #fafafa !important; color: #89949B !important; } } .flat-theme.twitter.sticky .brand-icon, .flat-theme.twitter.sticky .rad-toggle-btn:hover { background: #55acee !important; color: #fff !important; }
0.319546
0.068569
@-moz-document domain(youtube.com) { /* Hiệu ứng trong suốt */ :not(.ytp-play-progress) {background-color:transparent!important} /* Nền */ html {background:url(http://i.imgur.com/Flan7Yr.jpg) fixed!important; background-size:100% 100%!important} /* Hạ độ sáng nền */ html:after {content:"";position:fixed;top:0;bottom:0;left:0;right:0;background:#000;z-index:-2;opacity:.38} /* Fix những chỗ trong suốt khó đọc text */ #appbar-guide-menu, .gssb_e, #masthead-positioner , .yt-uix-clickcard-card-border, .yt-ui-menu-content, .ytp-popup {background: rgba(0,0,0,0.8) !important} /* Khung trong suốt */ #watch-header, .watch-sidebar , [class*="yt-uix-load-more comment-section"] {background: rgba(255,255,255,0.05) !important} .ytp-play-progress{background: #00BBFF!important} .ytp-progress-list {box-shadow: 0px 0px 3px rgba(255,255,255,0.5) !important} /* Màu chữ */ a , :not(FONT) {color:rgba(255,255,255,0.8) !important} .yt-uix-tile-link {color : white !Important} /* Autohide */ #masthead-positioner:not(:hover) {opacity: 0 !important; transition: 0.5s !important} /* Màu nút */ .like-button-renderer-like-button:before { background: no-repeat url(http://i.imgur.com/RzNYc5b.png); background-size: auto; width: 20px; height: 14px; } .like-button-renderer-like-button.yt-uix-button:active:before, .like-button-renderer-like-button.yt-uix-button.yt-uix-button-toggled:before { background: no-repeat url(http://i.imgur.com/GqJ6Rh8.png); background-size: auto; width: 20px; height: 15px; } .like-button-renderer-like-button:active .yt-uix-button-content, .like-button-renderer-like-button.yt-uix-button-toggled .yt-uix-button-content { color: #8653D3; } .like-button-renderer-dislike-button:before { background: no-repeat url(http://i.imgur.com/3HNu6pa.png); background-size: auto; width: 20px; height: 12px; padding-bottom: 1px; } #comment-section-renderer .sprite-like:before { background: no-repeat url(http://i.imgur.com/RzNYc5b.png); background-size: auto; width: 14px; height: 14px; } #comment-section-renderer .sprite-like-dislike:before { opacity: 3.2; } #comment-section-renderer .sprite-dislike:before { background: no-repeat url(http://i.imgur.com/3HNu6pa.png); background-size: auto; width: 14px; height: 14px; } #comment-section-renderer .comment-renderer:hover .sprite-like-dislike:before { opacity: 106.4; } #comment-section-renderer .sprite-like[data-action-on]:before { background: no-repeat url(http://i.imgur.com/GqJ6Rh8.png); background-size: auto; width: 14px; height: 14px; } #comment-section-renderer .sprite-dislike[data-action-on]:before { background: no-repeat url(http://i.imgur.com/mqJYfxz.png); background-size: auto; width: 14px; height: 14px; } }
data/usercss/127719.user.css
@-moz-document domain(youtube.com) { /* Hiệu ứng trong suốt */ :not(.ytp-play-progress) {background-color:transparent!important} /* Nền */ html {background:url(http://i.imgur.com/Flan7Yr.jpg) fixed!important; background-size:100% 100%!important} /* Hạ độ sáng nền */ html:after {content:"";position:fixed;top:0;bottom:0;left:0;right:0;background:#000;z-index:-2;opacity:.38} /* Fix những chỗ trong suốt khó đọc text */ #appbar-guide-menu, .gssb_e, #masthead-positioner , .yt-uix-clickcard-card-border, .yt-ui-menu-content, .ytp-popup {background: rgba(0,0,0,0.8) !important} /* Khung trong suốt */ #watch-header, .watch-sidebar , [class*="yt-uix-load-more comment-section"] {background: rgba(255,255,255,0.05) !important} .ytp-play-progress{background: #00BBFF!important} .ytp-progress-list {box-shadow: 0px 0px 3px rgba(255,255,255,0.5) !important} /* Màu chữ */ a , :not(FONT) {color:rgba(255,255,255,0.8) !important} .yt-uix-tile-link {color : white !Important} /* Autohide */ #masthead-positioner:not(:hover) {opacity: 0 !important; transition: 0.5s !important} /* Màu nút */ .like-button-renderer-like-button:before { background: no-repeat url(http://i.imgur.com/RzNYc5b.png); background-size: auto; width: 20px; height: 14px; } .like-button-renderer-like-button.yt-uix-button:active:before, .like-button-renderer-like-button.yt-uix-button.yt-uix-button-toggled:before { background: no-repeat url(http://i.imgur.com/GqJ6Rh8.png); background-size: auto; width: 20px; height: 15px; } .like-button-renderer-like-button:active .yt-uix-button-content, .like-button-renderer-like-button.yt-uix-button-toggled .yt-uix-button-content { color: #8653D3; } .like-button-renderer-dislike-button:before { background: no-repeat url(http://i.imgur.com/3HNu6pa.png); background-size: auto; width: 20px; height: 12px; padding-bottom: 1px; } #comment-section-renderer .sprite-like:before { background: no-repeat url(http://i.imgur.com/RzNYc5b.png); background-size: auto; width: 14px; height: 14px; } #comment-section-renderer .sprite-like-dislike:before { opacity: 3.2; } #comment-section-renderer .sprite-dislike:before { background: no-repeat url(http://i.imgur.com/3HNu6pa.png); background-size: auto; width: 14px; height: 14px; } #comment-section-renderer .comment-renderer:hover .sprite-like-dislike:before { opacity: 106.4; } #comment-section-renderer .sprite-like[data-action-on]:before { background: no-repeat url(http://i.imgur.com/GqJ6Rh8.png); background-size: auto; width: 14px; height: 14px; } #comment-section-renderer .sprite-dislike[data-action-on]:before { background: no-repeat url(http://i.imgur.com/mqJYfxz.png); background-size: auto; width: 14px; height: 14px; } }
0.212968
0.103749
.calendar-container { display: flex; flex-direction: column; align-items: center; color: #222; padding: 0 10px 10px 10px; margin: auto; max-width: var(--max-content-width); } .calendar-header { width: 100%; position: relative; } .calendar-header__year { margin: 10px 0 0 0; font-size: 18px; font-weight: lighter; text-align: center; } .calendar-loader { position: absolute; bottom: 5px; right: 0; } .calendar-nav { display: flex; align-items: baseline; justify-content: center; } .calendar-nav__current-month { margin: 0 20px; font-size: 28px; font-weight: normal; text-transform: capitalize; } .calendar-nav__month-link { color: inherit; text-decoration: none; font-weight: bolder; padding: 5px; font-size: 20px; } .calendar-nav__month-link--prev-month { padding-left: 15px; } .calendar-nav__month_link--next-month{ padding-right: 15px; } .calendar-container > .days { display: grid; grid-template-columns: repeat(7, 1fr); width: 100%; } .calendar-container > .days p { text-align: center; text-transform: uppercase; font-size: 14px; margin: 10px 0 5px 0; } .calendar-container > .calendar { width: 100%; display: grid; grid-template-columns: repeat(7, 1fr); height: 65vh; max-height: 500px; background-color: #d2d2d2; grid-gap: 1px; padding: 1px; } .calendar-container > .calendar .date { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: space-evenly; background-color: var(--main-bg-color); } .calendar-container > .calendar .date:hover { background-color: hsl(347, 88%, 92%); } .calendar-container > .calendar .hidden { opacity: 0; } .calendar-container > .calendar .fade-in { opacity: 1; transition: opacity 0.4s; } .calendar-container > .calendar a { color: inherit; text-decoration: none; } .calendar-container > .calendar .date p { font-size: 24px; margin: 0; } .calendar-container > .calendar .date > .entries { display: flex; width: 100%; height: 13px; justify-content: space-evenly; } .calendar-container > .calendar .today { background-color: hsl(116, 44%, 86%); } .calendar-container > .calendar .today:hover { background-color: hsl(116, 44%, 80%); } .calendar-container > .calendar .not-in-month p, .calendar-container > .calendar .not-in-month svg { opacity: 0.5; }
packages/app/src/components/Calendar/styles.css
.calendar-container { display: flex; flex-direction: column; align-items: center; color: #222; padding: 0 10px 10px 10px; margin: auto; max-width: var(--max-content-width); } .calendar-header { width: 100%; position: relative; } .calendar-header__year { margin: 10px 0 0 0; font-size: 18px; font-weight: lighter; text-align: center; } .calendar-loader { position: absolute; bottom: 5px; right: 0; } .calendar-nav { display: flex; align-items: baseline; justify-content: center; } .calendar-nav__current-month { margin: 0 20px; font-size: 28px; font-weight: normal; text-transform: capitalize; } .calendar-nav__month-link { color: inherit; text-decoration: none; font-weight: bolder; padding: 5px; font-size: 20px; } .calendar-nav__month-link--prev-month { padding-left: 15px; } .calendar-nav__month_link--next-month{ padding-right: 15px; } .calendar-container > .days { display: grid; grid-template-columns: repeat(7, 1fr); width: 100%; } .calendar-container > .days p { text-align: center; text-transform: uppercase; font-size: 14px; margin: 10px 0 5px 0; } .calendar-container > .calendar { width: 100%; display: grid; grid-template-columns: repeat(7, 1fr); height: 65vh; max-height: 500px; background-color: #d2d2d2; grid-gap: 1px; padding: 1px; } .calendar-container > .calendar .date { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: space-evenly; background-color: var(--main-bg-color); } .calendar-container > .calendar .date:hover { background-color: hsl(347, 88%, 92%); } .calendar-container > .calendar .hidden { opacity: 0; } .calendar-container > .calendar .fade-in { opacity: 1; transition: opacity 0.4s; } .calendar-container > .calendar a { color: inherit; text-decoration: none; } .calendar-container > .calendar .date p { font-size: 24px; margin: 0; } .calendar-container > .calendar .date > .entries { display: flex; width: 100%; height: 13px; justify-content: space-evenly; } .calendar-container > .calendar .today { background-color: hsl(116, 44%, 86%); } .calendar-container > .calendar .today:hover { background-color: hsl(116, 44%, 80%); } .calendar-container > .calendar .not-in-month p, .calendar-container > .calendar .not-in-month svg { opacity: 0.5; }
0.531453
0.071203
.display-inline{display:inline} .display-inlineBlock{display:inline-block} .display-block{display:block} .display-none{display:none} .opacity-0p{opacity:0} .opacity-25p{opacity:0.25} .opacity-50p{opacity:0.5} .opacity-60p{opacity:0.6} .opacity-75p{opacity:0.75} .opacity-100p{opacity:1} .overflow-hidden{overflow:hidden} .overflow-scroll{overflow:scroll} .overflow-visible{overflow:visible} .backgroundColor-white{background-color:#fff} .backgroundColor-lightGray{background-color:#fafaff} .backgroundColor-lighterGray{background-color:#7f8088} .backgroundColor-blue{background-color:#0055ff} .backgroundColor-black{background-color:#000111} .backgroundColor-red{background-color:#ff5550} .backgroundSize-cover{background-size:cover} .backgroundSize-contain{background-size:contain} .backgroundPosition-center{background-position:center} .backgroundPosition-top{background-position:top} .backgroundPosition-right{background-position:right} .backgroundPosition-left{background-position:left} .backgroundPosition-bottom{background-position:bottom} .backgroundRepeat-noRepeat{background-repeat:no-repeat} .backgroundRepeat-x{background-repeat:repeat-x} .backgroundRepeat-y{background-repeat:repeat-y} .borderRadius-4{border-radius:4px} .position-absolute{position:absolute} .position-relative{position:relative} .top-0{top:0} .left-0{left:0} .right-0{right:0} .bottom-0{bottom:0} .zIndex-0{z-index:0} .zIndex-1{z-index:1} .zIndex-2{z-index:2} .zIndex-3{z-index:3} .zIndex-4{z-index:4} .zIndex-bottom{z-index:-1} .zIndex-top{z-index:99} .display{display:flex} .flex-1{flex:1} .flex-auto{flex:auto} .flex-none{flex:none} .flexAlign-center{align-items:center} .flexAlign-baseline{align-items:baseline} .flexAlign-stretch{align-items:stretch} .flexAlign-start{align-items:flex-start} .flexAlign-end{align-items:flex-end} .flexDirection-row{flex-direction:row} .flexDirection-rowReverse{flex-direction:row-reverse} .flexDirection-column{flex-direction:column} .flexDirection-columnReverse{flex-direction:column-reverse} .flexWrap-wrap{flex-wrap:wrap} .flexWrap-noWrap{flex-wrap:no-wrap} .flexJustify-start{justify-content:flex-start} .flexJustify-spaceAround{justify-content:space-around} .flexJustify-spaceBetween{justify-content:space-between} .flexJustify-center{justify-content:center} .flexJustify-end{justify-content:flex-end} .flexOrder-0{order:0} .flexOrder-1{order:1} .flexOrder-2{order:2} .flexOrder-3{order:3} .flexOrder-4{order:4} .margin-0{margin:0} .margin-1{margin:8px} .margin-2{margin:16px} .margin-3{margin:24px} .margin-4{margin:48px} .margin-5{margin:64px} .margin-6{margin:96px} .marginTop-0{margin-top:0} .marginTop-1{margin-top:8px} .marginTop-2{margin-top:16px} .marginTop-3{margin-top:24px} .marginTop-4{margin-top:48px} .marginTop-5{margin-top:64px} .marginTop-6{margin-top:96px} .marginLeft-0{margin-left:0} .marginLeft-1{margin-left:8px} .marginLeft-2{margin-left:16px} .marginLeft-3{margin-left:24px} .marginLeft-4{margin-left:48px} .marginLeft-5{margin-left:64px} .marginLeft-6{margin-left:96px} .marginRight-0{margin-right:0} .marginRight-1{margin-right:8px} .marginRight-2{margin-right:16px} .marginRight-3{margin-right:24px} .marginRight-4{margin-right:48px} .marginRight-5{margin-right:64px} .marginRight-6{margin-right:96px} .marginBottom-0{margin-bottom:0} .marginBottom-1{margin-bottom:8px} .marginBottom-2{margin-bottom:16px} .marginBottom-3{margin-bottom:24px} .marginBottom-4{margin-bottom:48px} .marginBottom-5{margin-bottom:64px} .marginBottom-6{margin-bottom:96px} .marginHorizontal-0{margin-left:0;margin-right:0} .marginHorizontal-1{margin-left:8px;margin-right:8px} .marginHorizontal-2{margin-left:16px;margin-right:16px} .marginHorizontal-3{margin-left:24px;margin-right:24px} .marginHorizontal-4{margin-left:48px;margin-right:48px} .marginHorizontal-5{margin-left:64px;margin-right:64px} .marginHorizontal-6{margin-left:96px;margin-right:96px} .marginVertical-0{margin-top:0;margin-bottom:0} .marginVertical-1{margin-top:8px;margin-bottom:8px} .marginVertical-2{margin-top:16px;margin-bottom:16px} .marginVertical-3{margin-top:24px;margin-bottom:24px} .marginVertical-4{margin-top:48px;margin-bottom:48px} .marginVertical-5{margin-top:64px;margin-bottom:64px} .marginVertical-6{margin-top:96px;margin-bottom:96px} .marginLeft-auto{margin-left:auto} .marginRight-auto{margin-right:auto} .marginHorizontal-auto{margin-left:auto;margin-right:auto} .marginVertical-auto{margin-top:auto;margin-bottom:auto} .padding-0{padding:0} .padding-1{padding:8px} .padding-2{padding:16px} .padding-3{padding:24px} .padding-4{padding:48px} .padding-5{padding:64px} .padding-6{padding:96px} .paddingTop-0{padding-top:0} .paddingTop-1{padding-top:8px} .paddingTop-2{padding-top:16px} .paddingTop-3{padding-top:24px} .paddingTop-4{padding-top:48px} .paddingTop-5{padding-top:64px} .paddingTop-6{padding-top:96px} .paddingLeft-0{padding-left:0} .paddingLeft-1{padding-left:8px} .paddingLeft-2{padding-left:16px} .paddingLeft-3{padding-left:24px} .paddingLeft-4{padding-left:48px} .paddingLeft-5{padding-left:64px} .paddingLeft-6{padding-left:96px} .paddingRight-0{padding-right:0} .paddingRight-1{padding-right:8px} .paddingRight-2{padding-right:16px} .paddingRight-3{padding-right:24px} .paddingRight-4{padding-right:48px} .paddingRight-5{padding-right:64px} .paddingRight-6{padding-right:96px} .paddingBottom-0{padding-bottom:0} .paddingBottom-1{padding-bottom:8px} .paddingBottom-2{padding-bottom:16px} .paddingBottom-3{padding-bottom:24px} .paddingBottom-4{padding-bottom:48px} .paddingBottom-5{padding-bottom:64px} .paddingBottom-6{padding-bottom:96px} .paddingHorizontal-0{padding-left:0;padding-right:0} .paddingHorizontal-1{padding-left:8px;padding-right:8px} .paddingHorizontal-2{padding-left:16px;padding-right:16px} .paddingHorizontal-3{padding-left:24px;padding-right:24px} .paddingHorizontal-4{padding-left:48px;padding-right:48px} .paddingHorizontal-5{padding-left:64px;padding-right:64px} .paddingHorizontal-6{padding-left:96px;padding-right:96px} .paddingVertical-0{padding-top:0;padding-bottom:0} .paddingVertical-1{padding-top:8px;padding-bottom:8px} .paddingVertical-2{padding-top:16px;padding-bottom:16px} .paddingVertical-3{padding-top:24px;padding-bottom:24px} .paddingVertical-4{padding-top:48px;padding-bottom:48px} .paddingVertical-5{padding-top:64px;padding-bottom:64px} .paddingVertical-6{padding-top:96px;padding-bottom:96px} .color-white{color:#fff} .color-lightGray{color:#fafaff} .color-lighterGray{color:#7f8088} .color-blue{color:#0055ff} .color-black{color:#000111} .color-red{color:#ff5550} .fontFamily-sans{font-family:Roboto, -apple-system, BlinkMacSystemFont, sans-serif} .letterSpacing-loose{letter-spacing:0.75px} .letterSpacing-normal{letter-spacing:0px} .lineHeight-1d25{line-height:1.25} .lineHeight-1d4{line-height:1.4} .lineHeight-1d5{line-height:1.5} .textDecoration-none{text-decoration:none} .textDecoration-underline{text-decoration:underline} .textOverflow-initial{text-overflow:initial} .textOverflow-clip{text-overflow:clip} .textOverflow-ellipsis{text-overflow:ellipsis} .textTransform-none{text-transform:none} .textTransform-uppercase{text-transform:uppercase} .textTransform-lowercase{text-transform:lowercase} .fontSize-13{font-size:13px} .fontSize-16{font-size:16px} .fontSize-24{font-size:24px} .fontSize-30{font-size:30px} .fontSize-36{font-size:36px} .fontSize-48{font-size:48px} .fontStyle-normal{font-style:normal} .fontStyle-italic{font-style:italic} .fontWeight-light{font-weight:300} .fontWeight-normal{font-weight:400} .fontWeight-bold{font-weight:500} .textAlign-left{text-align:left} .textAlign-center{text-align:center} .textAlign-right{text-align:right} .cursor-pointer{cursor:pointer} .cursor-default{cursor:default} .pointerEvents-none{pointer-events:none} .pointerEvents-auto{pointer-events:auto} .userSelect-none{user-select:none} .userSelect-auto{user-select:auto} @media only screen and (min-width: 768px) {.display-inline-m{display:inline} .display-inlineBlock-m{display:inline-block} .display-block-m{display:block} .display-none-m{display:none} .display-m{display:flex} .flex-1-m{flex:1} .flex-auto-m{flex:auto} .flex-none-m{flex:none} .flexAlign-center-m{align-items:center} .flexAlign-baseline-m{align-items:baseline} .flexAlign-stretch-m{align-items:stretch} .flexAlign-start-m{align-items:flex-start} .flexAlign-end-m{align-items:flex-end} .flexDirection-row-m{flex-direction:row} .flexDirection-rowReverse-m{flex-direction:row-reverse} .flexDirection-column-m{flex-direction:column} .flexDirection-columnReverse-m{flex-direction:column-reverse} .flexJustify-start-m{justify-content:flex-start} .flexJustify-spaceAround-m{justify-content:space-around} .flexJustify-spaceBetween-m{justify-content:space-between} .flexJustify-center-m{justify-content:center} .flexJustify-end-m{justify-content:flex-end} .flexOrder-0-m{order:0} .flexOrder-1-m{order:1} .flexOrder-2-m{order:2} .flexOrder-3-m{order:3} .flexOrder-4-m{order:4} .margin-0-m{margin:0} .margin-1-m{margin:8px} .margin-2-m{margin:16px} .margin-3-m{margin:24px} .margin-4-m{margin:48px} .margin-5-m{margin:64px} .margin-6-m{margin:96px} .marginTop-0-m{margin-top:0} .marginTop-1-m{margin-top:8px} .marginTop-2-m{margin-top:16px} .marginTop-3-m{margin-top:24px} .marginTop-4-m{margin-top:48px} .marginTop-5-m{margin-top:64px} .marginTop-6-m{margin-top:96px} .marginLeft-0-m{margin-left:0} .marginLeft-1-m{margin-left:8px} .marginLeft-2-m{margin-left:16px} .marginLeft-3-m{margin-left:24px} .marginLeft-4-m{margin-left:48px} .marginLeft-5-m{margin-left:64px} .marginLeft-6-m{margin-left:96px} .marginRight-0-m{margin-right:0} .marginRight-1-m{margin-right:8px} .marginRight-2-m{margin-right:16px} .marginRight-3-m{margin-right:24px} .marginRight-4-m{margin-right:48px} .marginRight-5-m{margin-right:64px} .marginRight-6-m{margin-right:96px} .marginBottom-0-m{margin-bottom:0} .marginBottom-1-m{margin-bottom:8px} .marginBottom-2-m{margin-bottom:16px} .marginBottom-3-m{margin-bottom:24px} .marginBottom-4-m{margin-bottom:48px} .marginBottom-5-m{margin-bottom:64px} .marginBottom-6-m{margin-bottom:96px} .marginHorizontal-0-m{margin-left:0;margin-right:0} .marginHorizontal-1-m{margin-left:8px;margin-right:8px} .marginHorizontal-2-m{margin-left:16px;margin-right:16px} .marginHorizontal-3-m{margin-left:24px;margin-right:24px} .marginHorizontal-4-m{margin-left:48px;margin-right:48px} .marginHorizontal-5-m{margin-left:64px;margin-right:64px} .marginHorizontal-6-m{margin-left:96px;margin-right:96px} .marginVertical-0-m{margin-top:0;margin-bottom:0} .marginVertical-1-m{margin-top:8px;margin-bottom:8px} .marginVertical-2-m{margin-top:16px;margin-bottom:16px} .marginVertical-3-m{margin-top:24px;margin-bottom:24px} .marginVertical-4-m{margin-top:48px;margin-bottom:48px} .marginVertical-5-m{margin-top:64px;margin-bottom:64px} .marginVertical-6-m{margin-top:96px;margin-bottom:96px} .marginLeft-auto-m{margin-left:auto} .marginRight-auto-m{margin-right:auto} .marginHorizontal-auto-m{margin-left:auto;margin-right:auto} .marginVertical-auto-m{margin-top:auto;margin-bottom:auto} .padding-0-m{padding:0} .padding-1-m{padding:8px} .padding-2-m{padding:16px} .padding-3-m{padding:24px} .padding-4-m{padding:48px} .padding-5-m{padding:64px} .padding-6-m{padding:96px} .paddingTop-0-m{padding-top:0} .paddingTop-1-m{padding-top:8px} .paddingTop-2-m{padding-top:16px} .paddingTop-3-m{padding-top:24px} .paddingTop-4-m{padding-top:48px} .paddingTop-5-m{padding-top:64px} .paddingTop-6-m{padding-top:96px} .paddingLeft-0-m{padding-left:0} .paddingLeft-1-m{padding-left:8px} .paddingLeft-2-m{padding-left:16px} .paddingLeft-3-m{padding-left:24px} .paddingLeft-4-m{padding-left:48px} .paddingLeft-5-m{padding-left:64px} .paddingLeft-6-m{padding-left:96px} .paddingRight-0-m{padding-right:0} .paddingRight-1-m{padding-right:8px} .paddingRight-2-m{padding-right:16px} .paddingRight-3-m{padding-right:24px} .paddingRight-4-m{padding-right:48px} .paddingRight-5-m{padding-right:64px} .paddingRight-6-m{padding-right:96px} .paddingBottom-0-m{padding-bottom:0} .paddingBottom-1-m{padding-bottom:8px} .paddingBottom-2-m{padding-bottom:16px} .paddingBottom-3-m{padding-bottom:24px} .paddingBottom-4-m{padding-bottom:48px} .paddingBottom-5-m{padding-bottom:64px} .paddingBottom-6-m{padding-bottom:96px} .paddingHorizontal-0-m{padding-left:0;padding-right:0} .paddingHorizontal-1-m{padding-left:8px;padding-right:8px} .paddingHorizontal-2-m{padding-left:16px;padding-right:16px} .paddingHorizontal-3-m{padding-left:24px;padding-right:24px} .paddingHorizontal-4-m{padding-left:48px;padding-right:48px} .paddingHorizontal-5-m{padding-left:64px;padding-right:64px} .paddingHorizontal-6-m{padding-left:96px;padding-right:96px} .paddingVertical-0-m{padding-top:0;padding-bottom:0} .paddingVertical-1-m{padding-top:8px;padding-bottom:8px} .paddingVertical-2-m{padding-top:16px;padding-bottom:16px} .paddingVertical-3-m{padding-top:24px;padding-bottom:24px} .paddingVertical-4-m{padding-top:48px;padding-bottom:48px} .paddingVertical-5-m{padding-top:64px;padding-bottom:64px} .paddingVertical-6-m{padding-top:96px;padding-bottom:96px} .fontSize-13-m{font-size:13px} .fontSize-16-m{font-size:16px} .fontSize-24-m{font-size:24px} .fontSize-30-m{font-size:30px} .fontSize-36-m{font-size:36px} .fontSize-48-m{font-size:48px} .textAlign-left-m{text-align:left} .textAlign-center-m{text-align:center} .textAlign-right-m{text-align:right}}
src/styles/utilities.css
.display-inline{display:inline} .display-inlineBlock{display:inline-block} .display-block{display:block} .display-none{display:none} .opacity-0p{opacity:0} .opacity-25p{opacity:0.25} .opacity-50p{opacity:0.5} .opacity-60p{opacity:0.6} .opacity-75p{opacity:0.75} .opacity-100p{opacity:1} .overflow-hidden{overflow:hidden} .overflow-scroll{overflow:scroll} .overflow-visible{overflow:visible} .backgroundColor-white{background-color:#fff} .backgroundColor-lightGray{background-color:#fafaff} .backgroundColor-lighterGray{background-color:#7f8088} .backgroundColor-blue{background-color:#0055ff} .backgroundColor-black{background-color:#000111} .backgroundColor-red{background-color:#ff5550} .backgroundSize-cover{background-size:cover} .backgroundSize-contain{background-size:contain} .backgroundPosition-center{background-position:center} .backgroundPosition-top{background-position:top} .backgroundPosition-right{background-position:right} .backgroundPosition-left{background-position:left} .backgroundPosition-bottom{background-position:bottom} .backgroundRepeat-noRepeat{background-repeat:no-repeat} .backgroundRepeat-x{background-repeat:repeat-x} .backgroundRepeat-y{background-repeat:repeat-y} .borderRadius-4{border-radius:4px} .position-absolute{position:absolute} .position-relative{position:relative} .top-0{top:0} .left-0{left:0} .right-0{right:0} .bottom-0{bottom:0} .zIndex-0{z-index:0} .zIndex-1{z-index:1} .zIndex-2{z-index:2} .zIndex-3{z-index:3} .zIndex-4{z-index:4} .zIndex-bottom{z-index:-1} .zIndex-top{z-index:99} .display{display:flex} .flex-1{flex:1} .flex-auto{flex:auto} .flex-none{flex:none} .flexAlign-center{align-items:center} .flexAlign-baseline{align-items:baseline} .flexAlign-stretch{align-items:stretch} .flexAlign-start{align-items:flex-start} .flexAlign-end{align-items:flex-end} .flexDirection-row{flex-direction:row} .flexDirection-rowReverse{flex-direction:row-reverse} .flexDirection-column{flex-direction:column} .flexDirection-columnReverse{flex-direction:column-reverse} .flexWrap-wrap{flex-wrap:wrap} .flexWrap-noWrap{flex-wrap:no-wrap} .flexJustify-start{justify-content:flex-start} .flexJustify-spaceAround{justify-content:space-around} .flexJustify-spaceBetween{justify-content:space-between} .flexJustify-center{justify-content:center} .flexJustify-end{justify-content:flex-end} .flexOrder-0{order:0} .flexOrder-1{order:1} .flexOrder-2{order:2} .flexOrder-3{order:3} .flexOrder-4{order:4} .margin-0{margin:0} .margin-1{margin:8px} .margin-2{margin:16px} .margin-3{margin:24px} .margin-4{margin:48px} .margin-5{margin:64px} .margin-6{margin:96px} .marginTop-0{margin-top:0} .marginTop-1{margin-top:8px} .marginTop-2{margin-top:16px} .marginTop-3{margin-top:24px} .marginTop-4{margin-top:48px} .marginTop-5{margin-top:64px} .marginTop-6{margin-top:96px} .marginLeft-0{margin-left:0} .marginLeft-1{margin-left:8px} .marginLeft-2{margin-left:16px} .marginLeft-3{margin-left:24px} .marginLeft-4{margin-left:48px} .marginLeft-5{margin-left:64px} .marginLeft-6{margin-left:96px} .marginRight-0{margin-right:0} .marginRight-1{margin-right:8px} .marginRight-2{margin-right:16px} .marginRight-3{margin-right:24px} .marginRight-4{margin-right:48px} .marginRight-5{margin-right:64px} .marginRight-6{margin-right:96px} .marginBottom-0{margin-bottom:0} .marginBottom-1{margin-bottom:8px} .marginBottom-2{margin-bottom:16px} .marginBottom-3{margin-bottom:24px} .marginBottom-4{margin-bottom:48px} .marginBottom-5{margin-bottom:64px} .marginBottom-6{margin-bottom:96px} .marginHorizontal-0{margin-left:0;margin-right:0} .marginHorizontal-1{margin-left:8px;margin-right:8px} .marginHorizontal-2{margin-left:16px;margin-right:16px} .marginHorizontal-3{margin-left:24px;margin-right:24px} .marginHorizontal-4{margin-left:48px;margin-right:48px} .marginHorizontal-5{margin-left:64px;margin-right:64px} .marginHorizontal-6{margin-left:96px;margin-right:96px} .marginVertical-0{margin-top:0;margin-bottom:0} .marginVertical-1{margin-top:8px;margin-bottom:8px} .marginVertical-2{margin-top:16px;margin-bottom:16px} .marginVertical-3{margin-top:24px;margin-bottom:24px} .marginVertical-4{margin-top:48px;margin-bottom:48px} .marginVertical-5{margin-top:64px;margin-bottom:64px} .marginVertical-6{margin-top:96px;margin-bottom:96px} .marginLeft-auto{margin-left:auto} .marginRight-auto{margin-right:auto} .marginHorizontal-auto{margin-left:auto;margin-right:auto} .marginVertical-auto{margin-top:auto;margin-bottom:auto} .padding-0{padding:0} .padding-1{padding:8px} .padding-2{padding:16px} .padding-3{padding:24px} .padding-4{padding:48px} .padding-5{padding:64px} .padding-6{padding:96px} .paddingTop-0{padding-top:0} .paddingTop-1{padding-top:8px} .paddingTop-2{padding-top:16px} .paddingTop-3{padding-top:24px} .paddingTop-4{padding-top:48px} .paddingTop-5{padding-top:64px} .paddingTop-6{padding-top:96px} .paddingLeft-0{padding-left:0} .paddingLeft-1{padding-left:8px} .paddingLeft-2{padding-left:16px} .paddingLeft-3{padding-left:24px} .paddingLeft-4{padding-left:48px} .paddingLeft-5{padding-left:64px} .paddingLeft-6{padding-left:96px} .paddingRight-0{padding-right:0} .paddingRight-1{padding-right:8px} .paddingRight-2{padding-right:16px} .paddingRight-3{padding-right:24px} .paddingRight-4{padding-right:48px} .paddingRight-5{padding-right:64px} .paddingRight-6{padding-right:96px} .paddingBottom-0{padding-bottom:0} .paddingBottom-1{padding-bottom:8px} .paddingBottom-2{padding-bottom:16px} .paddingBottom-3{padding-bottom:24px} .paddingBottom-4{padding-bottom:48px} .paddingBottom-5{padding-bottom:64px} .paddingBottom-6{padding-bottom:96px} .paddingHorizontal-0{padding-left:0;padding-right:0} .paddingHorizontal-1{padding-left:8px;padding-right:8px} .paddingHorizontal-2{padding-left:16px;padding-right:16px} .paddingHorizontal-3{padding-left:24px;padding-right:24px} .paddingHorizontal-4{padding-left:48px;padding-right:48px} .paddingHorizontal-5{padding-left:64px;padding-right:64px} .paddingHorizontal-6{padding-left:96px;padding-right:96px} .paddingVertical-0{padding-top:0;padding-bottom:0} .paddingVertical-1{padding-top:8px;padding-bottom:8px} .paddingVertical-2{padding-top:16px;padding-bottom:16px} .paddingVertical-3{padding-top:24px;padding-bottom:24px} .paddingVertical-4{padding-top:48px;padding-bottom:48px} .paddingVertical-5{padding-top:64px;padding-bottom:64px} .paddingVertical-6{padding-top:96px;padding-bottom:96px} .color-white{color:#fff} .color-lightGray{color:#fafaff} .color-lighterGray{color:#7f8088} .color-blue{color:#0055ff} .color-black{color:#000111} .color-red{color:#ff5550} .fontFamily-sans{font-family:Roboto, -apple-system, BlinkMacSystemFont, sans-serif} .letterSpacing-loose{letter-spacing:0.75px} .letterSpacing-normal{letter-spacing:0px} .lineHeight-1d25{line-height:1.25} .lineHeight-1d4{line-height:1.4} .lineHeight-1d5{line-height:1.5} .textDecoration-none{text-decoration:none} .textDecoration-underline{text-decoration:underline} .textOverflow-initial{text-overflow:initial} .textOverflow-clip{text-overflow:clip} .textOverflow-ellipsis{text-overflow:ellipsis} .textTransform-none{text-transform:none} .textTransform-uppercase{text-transform:uppercase} .textTransform-lowercase{text-transform:lowercase} .fontSize-13{font-size:13px} .fontSize-16{font-size:16px} .fontSize-24{font-size:24px} .fontSize-30{font-size:30px} .fontSize-36{font-size:36px} .fontSize-48{font-size:48px} .fontStyle-normal{font-style:normal} .fontStyle-italic{font-style:italic} .fontWeight-light{font-weight:300} .fontWeight-normal{font-weight:400} .fontWeight-bold{font-weight:500} .textAlign-left{text-align:left} .textAlign-center{text-align:center} .textAlign-right{text-align:right} .cursor-pointer{cursor:pointer} .cursor-default{cursor:default} .pointerEvents-none{pointer-events:none} .pointerEvents-auto{pointer-events:auto} .userSelect-none{user-select:none} .userSelect-auto{user-select:auto} @media only screen and (min-width: 768px) {.display-inline-m{display:inline} .display-inlineBlock-m{display:inline-block} .display-block-m{display:block} .display-none-m{display:none} .display-m{display:flex} .flex-1-m{flex:1} .flex-auto-m{flex:auto} .flex-none-m{flex:none} .flexAlign-center-m{align-items:center} .flexAlign-baseline-m{align-items:baseline} .flexAlign-stretch-m{align-items:stretch} .flexAlign-start-m{align-items:flex-start} .flexAlign-end-m{align-items:flex-end} .flexDirection-row-m{flex-direction:row} .flexDirection-rowReverse-m{flex-direction:row-reverse} .flexDirection-column-m{flex-direction:column} .flexDirection-columnReverse-m{flex-direction:column-reverse} .flexJustify-start-m{justify-content:flex-start} .flexJustify-spaceAround-m{justify-content:space-around} .flexJustify-spaceBetween-m{justify-content:space-between} .flexJustify-center-m{justify-content:center} .flexJustify-end-m{justify-content:flex-end} .flexOrder-0-m{order:0} .flexOrder-1-m{order:1} .flexOrder-2-m{order:2} .flexOrder-3-m{order:3} .flexOrder-4-m{order:4} .margin-0-m{margin:0} .margin-1-m{margin:8px} .margin-2-m{margin:16px} .margin-3-m{margin:24px} .margin-4-m{margin:48px} .margin-5-m{margin:64px} .margin-6-m{margin:96px} .marginTop-0-m{margin-top:0} .marginTop-1-m{margin-top:8px} .marginTop-2-m{margin-top:16px} .marginTop-3-m{margin-top:24px} .marginTop-4-m{margin-top:48px} .marginTop-5-m{margin-top:64px} .marginTop-6-m{margin-top:96px} .marginLeft-0-m{margin-left:0} .marginLeft-1-m{margin-left:8px} .marginLeft-2-m{margin-left:16px} .marginLeft-3-m{margin-left:24px} .marginLeft-4-m{margin-left:48px} .marginLeft-5-m{margin-left:64px} .marginLeft-6-m{margin-left:96px} .marginRight-0-m{margin-right:0} .marginRight-1-m{margin-right:8px} .marginRight-2-m{margin-right:16px} .marginRight-3-m{margin-right:24px} .marginRight-4-m{margin-right:48px} .marginRight-5-m{margin-right:64px} .marginRight-6-m{margin-right:96px} .marginBottom-0-m{margin-bottom:0} .marginBottom-1-m{margin-bottom:8px} .marginBottom-2-m{margin-bottom:16px} .marginBottom-3-m{margin-bottom:24px} .marginBottom-4-m{margin-bottom:48px} .marginBottom-5-m{margin-bottom:64px} .marginBottom-6-m{margin-bottom:96px} .marginHorizontal-0-m{margin-left:0;margin-right:0} .marginHorizontal-1-m{margin-left:8px;margin-right:8px} .marginHorizontal-2-m{margin-left:16px;margin-right:16px} .marginHorizontal-3-m{margin-left:24px;margin-right:24px} .marginHorizontal-4-m{margin-left:48px;margin-right:48px} .marginHorizontal-5-m{margin-left:64px;margin-right:64px} .marginHorizontal-6-m{margin-left:96px;margin-right:96px} .marginVertical-0-m{margin-top:0;margin-bottom:0} .marginVertical-1-m{margin-top:8px;margin-bottom:8px} .marginVertical-2-m{margin-top:16px;margin-bottom:16px} .marginVertical-3-m{margin-top:24px;margin-bottom:24px} .marginVertical-4-m{margin-top:48px;margin-bottom:48px} .marginVertical-5-m{margin-top:64px;margin-bottom:64px} .marginVertical-6-m{margin-top:96px;margin-bottom:96px} .marginLeft-auto-m{margin-left:auto} .marginRight-auto-m{margin-right:auto} .marginHorizontal-auto-m{margin-left:auto;margin-right:auto} .marginVertical-auto-m{margin-top:auto;margin-bottom:auto} .padding-0-m{padding:0} .padding-1-m{padding:8px} .padding-2-m{padding:16px} .padding-3-m{padding:24px} .padding-4-m{padding:48px} .padding-5-m{padding:64px} .padding-6-m{padding:96px} .paddingTop-0-m{padding-top:0} .paddingTop-1-m{padding-top:8px} .paddingTop-2-m{padding-top:16px} .paddingTop-3-m{padding-top:24px} .paddingTop-4-m{padding-top:48px} .paddingTop-5-m{padding-top:64px} .paddingTop-6-m{padding-top:96px} .paddingLeft-0-m{padding-left:0} .paddingLeft-1-m{padding-left:8px} .paddingLeft-2-m{padding-left:16px} .paddingLeft-3-m{padding-left:24px} .paddingLeft-4-m{padding-left:48px} .paddingLeft-5-m{padding-left:64px} .paddingLeft-6-m{padding-left:96px} .paddingRight-0-m{padding-right:0} .paddingRight-1-m{padding-right:8px} .paddingRight-2-m{padding-right:16px} .paddingRight-3-m{padding-right:24px} .paddingRight-4-m{padding-right:48px} .paddingRight-5-m{padding-right:64px} .paddingRight-6-m{padding-right:96px} .paddingBottom-0-m{padding-bottom:0} .paddingBottom-1-m{padding-bottom:8px} .paddingBottom-2-m{padding-bottom:16px} .paddingBottom-3-m{padding-bottom:24px} .paddingBottom-4-m{padding-bottom:48px} .paddingBottom-5-m{padding-bottom:64px} .paddingBottom-6-m{padding-bottom:96px} .paddingHorizontal-0-m{padding-left:0;padding-right:0} .paddingHorizontal-1-m{padding-left:8px;padding-right:8px} .paddingHorizontal-2-m{padding-left:16px;padding-right:16px} .paddingHorizontal-3-m{padding-left:24px;padding-right:24px} .paddingHorizontal-4-m{padding-left:48px;padding-right:48px} .paddingHorizontal-5-m{padding-left:64px;padding-right:64px} .paddingHorizontal-6-m{padding-left:96px;padding-right:96px} .paddingVertical-0-m{padding-top:0;padding-bottom:0} .paddingVertical-1-m{padding-top:8px;padding-bottom:8px} .paddingVertical-2-m{padding-top:16px;padding-bottom:16px} .paddingVertical-3-m{padding-top:24px;padding-bottom:24px} .paddingVertical-4-m{padding-top:48px;padding-bottom:48px} .paddingVertical-5-m{padding-top:64px;padding-bottom:64px} .paddingVertical-6-m{padding-top:96px;padding-bottom:96px} .fontSize-13-m{font-size:13px} .fontSize-16-m{font-size:16px} .fontSize-24-m{font-size:24px} .fontSize-30-m{font-size:30px} .fontSize-36-m{font-size:36px} .fontSize-48-m{font-size:48px} .textAlign-left-m{text-align:left} .textAlign-center-m{text-align:center} .textAlign-right-m{text-align:right}}
0.608827
0.093761
.displayLeft{ padding:10px; text-align:center; border-radius:50px; margin: 10px 10px; box-shadow:0px 0px 20px 10px #dedede; padding:10px; } .hidden { display: none; } .spotify{ display:none; margin-top:50px; border-radius:50px; box-shadow:0px 0px 20px 10px #dedede; padding:20px; } .homeBox{ width:50%; display:flex; flex-direction: column; } #name{ width:100%; } #gmail{ width:75%; } #zipcode{ width:50%; margin-bottom:10px; } #mailCode{ text-align:center; } .icons{ width:300px; padding:10px; text-align:center; border-radius:50px; margin: 10px 10px; font-size:4em; text-shadow: #dedede 1px 0 10px; color:#dedede; font-family: Anton; } button:hover{ background-color: rgb(7, 148, 243); } .c img{ height:20px; width:20px; } .postButton{ color:white; background-color:black; height:20px; width:80px; font-size:10px; border:none; box-shadow:0px 0px 10px 5px #dedede; display:inline-block; } .postButton:hover{ color:black; background-color:white; box-shadow:0px 0px 10px 5px #dedede; } /* courtesy of https://codepen.io/chris22smith/pen/RZogMa */ .bg { animation:slide 3s ease-in-out infinite alternate; background-image: linear-gradient(-60deg, rgb(99, 229, 252) 50%, rgb(7, 148, 243) 50%); bottom:0; left:-50%; opacity:.5; position:fixed; right:-50%; top:0; z-index:-1; } .bg2 { animation-direction:alternate-reverse; animation-duration:4s; } .bg3 { animation-duration:5s; } .content { background-color:rgba(153, 10, 10, 0.8); border-radius:.25em; box-shadow:0 0 .25em rgba(0,0,0,.25); box-sizing:border-box; left:50%; padding:10vmin; position:fixed; text-align:center; top:50%; transform:translate(-50%, -50%); } @keyframes slide { 0% { transform:translateX(-25%); } 100% { transform:translateX(25%); } } .sideBySide{ display:flex; justify-content: space-evenly; /* margin:auto; */ }
public/styles/modules.css
.displayLeft{ padding:10px; text-align:center; border-radius:50px; margin: 10px 10px; box-shadow:0px 0px 20px 10px #dedede; padding:10px; } .hidden { display: none; } .spotify{ display:none; margin-top:50px; border-radius:50px; box-shadow:0px 0px 20px 10px #dedede; padding:20px; } .homeBox{ width:50%; display:flex; flex-direction: column; } #name{ width:100%; } #gmail{ width:75%; } #zipcode{ width:50%; margin-bottom:10px; } #mailCode{ text-align:center; } .icons{ width:300px; padding:10px; text-align:center; border-radius:50px; margin: 10px 10px; font-size:4em; text-shadow: #dedede 1px 0 10px; color:#dedede; font-family: Anton; } button:hover{ background-color: rgb(7, 148, 243); } .c img{ height:20px; width:20px; } .postButton{ color:white; background-color:black; height:20px; width:80px; font-size:10px; border:none; box-shadow:0px 0px 10px 5px #dedede; display:inline-block; } .postButton:hover{ color:black; background-color:white; box-shadow:0px 0px 10px 5px #dedede; } /* courtesy of https://codepen.io/chris22smith/pen/RZogMa */ .bg { animation:slide 3s ease-in-out infinite alternate; background-image: linear-gradient(-60deg, rgb(99, 229, 252) 50%, rgb(7, 148, 243) 50%); bottom:0; left:-50%; opacity:.5; position:fixed; right:-50%; top:0; z-index:-1; } .bg2 { animation-direction:alternate-reverse; animation-duration:4s; } .bg3 { animation-duration:5s; } .content { background-color:rgba(153, 10, 10, 0.8); border-radius:.25em; box-shadow:0 0 .25em rgba(0,0,0,.25); box-sizing:border-box; left:50%; padding:10vmin; position:fixed; text-align:center; top:50%; transform:translate(-50%, -50%); } @keyframes slide { 0% { transform:translateX(-25%); } 100% { transform:translateX(25%); } } .sideBySide{ display:flex; justify-content: space-evenly; /* margin:auto; */ }
0.238196
0.1015
.b-typo pre.hljs-code-container code.hljs { display: block; overflow-x: auto; padding: 0.5em; background: #002b36; color: #839496; } .b-typo pre.hljs-code-container code.hljs .hljs-comment, .b-typo pre.hljs-code-container code.hljs .hljs-quote { color: #586e75; } /* Solarized Green */ .b-typo pre.hljs-code-container code.hljs .hljs-keyword, .b-typo pre.hljs-code-container code.hljs .hljs-selector-tag, .b-typo pre.hljs-code-container code.hljs .hljs-addition { color: #859900; } /* Solarized Cyan */ .b-typo pre.hljs-code-container code.hljs .hljs-number, .b-typo pre.hljs-code-container code.hljs .hljs-string, .b-typo pre.hljs-code-container code.hljs .hljs-meta .hljs-meta-string, .b-typo pre.hljs-code-container code.hljs .hljs-literal, .b-typo pre.hljs-code-container code.hljs .hljs-doctag, .b-typo pre.hljs-code-container code.hljs .hljs-regexp { color: #2aa198; } /* Solarized Blue */ .b-typo pre.hljs-code-container code.hljs .hljs-title, .b-typo pre.hljs-code-container code.hljs .hljs-section, .b-typo pre.hljs-code-container code.hljs .hljs-name, .b-typo pre.hljs-code-container code.hljs .hljs-selector-id, .b-typo pre.hljs-code-container code.hljs .hljs-selector-class { color: #268bd2; } /* Solarized Yellow */ .b-typo pre.hljs-code-container code.hljs .hljs-attribute, .b-typo pre.hljs-code-container code.hljs .hljs-attr, .b-typo pre.hljs-code-container code.hljs .hljs-variable, .b-typo pre.hljs-code-container code.hljs .hljs-template-variable, .b-typo pre.hljs-code-container code.hljs .hljs-class .hljs-title, .b-typo pre.hljs-code-container code.hljs .hljs-type { color: #b58900; } /* Solarized Orange */ .b-typo pre.hljs-code-container code.hljs .hljs-symbol, .b-typo pre.hljs-code-container code.hljs .hljs-bullet, .b-typo pre.hljs-code-container code.hljs .hljs-subst, .b-typo pre.hljs-code-container code.hljs .hljs-meta, .b-typo pre.hljs-code-container code.hljs .hljs-meta .hljs-keyword, .b-typo pre.hljs-code-container code.hljs .hljs-selector-attr, .b-typo pre.hljs-code-container code.hljs .hljs-selector-pseudo, .b-typo pre.hljs-code-container code.hljs .hljs-link { color: #cb4b16; } /* Solarized Red */ .b-typo pre.hljs-code-container code.hljs .hljs-built_in, .b-typo pre.hljs-code-container code.hljs .hljs-deletion { color: #dc322f; } .b-typo pre.hljs-code-container code.hljs .hljs-formula { background: #073642; } .b-typo pre.hljs-code-container code.hljs .hljs-emphasis { font-style: italic; } .b-typo pre.hljs-code-container code.hljs .hljs-strong { font-weight: bold; }
src/static/vendor/highlightjs/styles/solarized-dark.css
.b-typo pre.hljs-code-container code.hljs { display: block; overflow-x: auto; padding: 0.5em; background: #002b36; color: #839496; } .b-typo pre.hljs-code-container code.hljs .hljs-comment, .b-typo pre.hljs-code-container code.hljs .hljs-quote { color: #586e75; } /* Solarized Green */ .b-typo pre.hljs-code-container code.hljs .hljs-keyword, .b-typo pre.hljs-code-container code.hljs .hljs-selector-tag, .b-typo pre.hljs-code-container code.hljs .hljs-addition { color: #859900; } /* Solarized Cyan */ .b-typo pre.hljs-code-container code.hljs .hljs-number, .b-typo pre.hljs-code-container code.hljs .hljs-string, .b-typo pre.hljs-code-container code.hljs .hljs-meta .hljs-meta-string, .b-typo pre.hljs-code-container code.hljs .hljs-literal, .b-typo pre.hljs-code-container code.hljs .hljs-doctag, .b-typo pre.hljs-code-container code.hljs .hljs-regexp { color: #2aa198; } /* Solarized Blue */ .b-typo pre.hljs-code-container code.hljs .hljs-title, .b-typo pre.hljs-code-container code.hljs .hljs-section, .b-typo pre.hljs-code-container code.hljs .hljs-name, .b-typo pre.hljs-code-container code.hljs .hljs-selector-id, .b-typo pre.hljs-code-container code.hljs .hljs-selector-class { color: #268bd2; } /* Solarized Yellow */ .b-typo pre.hljs-code-container code.hljs .hljs-attribute, .b-typo pre.hljs-code-container code.hljs .hljs-attr, .b-typo pre.hljs-code-container code.hljs .hljs-variable, .b-typo pre.hljs-code-container code.hljs .hljs-template-variable, .b-typo pre.hljs-code-container code.hljs .hljs-class .hljs-title, .b-typo pre.hljs-code-container code.hljs .hljs-type { color: #b58900; } /* Solarized Orange */ .b-typo pre.hljs-code-container code.hljs .hljs-symbol, .b-typo pre.hljs-code-container code.hljs .hljs-bullet, .b-typo pre.hljs-code-container code.hljs .hljs-subst, .b-typo pre.hljs-code-container code.hljs .hljs-meta, .b-typo pre.hljs-code-container code.hljs .hljs-meta .hljs-keyword, .b-typo pre.hljs-code-container code.hljs .hljs-selector-attr, .b-typo pre.hljs-code-container code.hljs .hljs-selector-pseudo, .b-typo pre.hljs-code-container code.hljs .hljs-link { color: #cb4b16; } /* Solarized Red */ .b-typo pre.hljs-code-container code.hljs .hljs-built_in, .b-typo pre.hljs-code-container code.hljs .hljs-deletion { color: #dc322f; } .b-typo pre.hljs-code-container code.hljs .hljs-formula { background: #073642; } .b-typo pre.hljs-code-container code.hljs .hljs-emphasis { font-style: italic; } .b-typo pre.hljs-code-container code.hljs .hljs-strong { font-weight: bold; }
0.290578
0.145479
html, body { height: 100%; width: 100%; } body { font-family: 'Merriweather', 'Helvetica Neue','Microsoft YaHei UI','微软雅黑', Arial, sans-serif; } hr { border-color: #F05F40; border-width: 3px; max-width: 50px; } hr.light { border-color: white; } a { -webkit-transition: all 0.35s; -moz-transition: all 0.35s; transition: all 0.35s; color: #F05F40; } a:hover, a:focus { color: #eb3812; } h1, h2, h3, h4, h5, h6 { font-family: 'Open Sans', 'Helvetica Neue','Microsoft YaHei UI','微软雅黑', Arial, sans-serif; } p { font-size: 16px; line-height: 1.5; margin-bottom: 20px; } .bg-primary { background-color: #F05F40; } .bg-dark { background-color: #222222; color: white; } .text-faded { color: rgba(255, 255, 255, 0.7); } .btn-default { color: #222222; background-color: white; border-color: white; -webkit-transition: all 0.35s; -moz-transition: all 0.35s; transition: all 0.35s; } .btn-default:hover, .btn-default:focus, .btn-default.focus, .btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-default { color: #222222; background-color: #f2f2f2; border-color: #ededed; } .btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-default { background-image: none; } .btn-default.disabled, .btn-default[disabled], fieldset[disabled] .btn-default, .btn-default.disabled:hover, .btn-default[disabled]:hover, fieldset[disabled] .btn-default:hover, .btn-default.disabled:focus, .btn-default[disabled]:focus, fieldset[disabled] .btn-default:focus, .btn-default.disabled.focus, .btn-default[disabled].focus, fieldset[disabled] .btn-default.focus, .btn-default.disabled:active, .btn-default[disabled]:active, fieldset[disabled] .btn-default:active, .btn-default.disabled.active, .btn-default[disabled].active, fieldset[disabled] .btn-default.active { background-color: white; border-color: white; } .btn-default .badge { color: white; background-color: #222222; } .btn-primary { color: white; background-color: #F05F40; border-color: #F05F40; -webkit-transition: all 0.35s; -moz-transition: all 0.35s; transition: all 0.35s; } .btn-primary:hover, .btn-primary:focus, .btn-primary.focus, .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary { color: white; background-color: #ee4b28; border-color: #ed431f; } .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary { background-image: none; } .btn-primary.disabled, .btn-primary[disabled], fieldset[disabled] .btn-primary, .btn-primary.disabled:hover, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary:hover, .btn-primary.disabled:focus, .btn-primary[disabled]:focus, fieldset[disabled] .btn-primary:focus, .btn-primary.disabled.focus, .btn-primary[disabled].focus, fieldset[disabled] .btn-primary.focus, .btn-primary.disabled:active, .btn-primary[disabled]:active, fieldset[disabled] .btn-primary:active, .btn-primary.disabled.active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary.active { background-color: #F05F40; border-color: #F05F40; } .btn-primary .badge { color: #F05F40; background-color: white; } .btn { font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif; border: none; border-radius: 300px; font-weight: 700; text-transform: uppercase; } .btn-xl { padding: 15px 30px; } ::-moz-selection { color: white; text-shadow: none; background: #222222; } ::selection { color: white; text-shadow: none; background: #222222; } img::selection { color: white; background: transparent; } img::-moz-selection { color: white; background: transparent; } .form-control{ display:inline-block; width: auto; } body { webkit-tap-highlight-color: #222222; } header { position: relative; width: 100%; height:auto; -webkit-background-size: cover; -moz-background-size: cover; background-size: cover; -o-background-size: cover; background-image:url('../images/header-tem.jpg'); background-position: center; text-align: center; color: white; } header .header-content { position: relative; text-align: center; padding: 25px 15px 25px; width: 100%; } section { padding: 25px 0; } /*activity.html*/ #activity #activity-info .list-group { display: inline; } #activity #activity-info .portfolio-box{ padding-top:10px; padding-bottom:10px; background-color: antiquewhite; } #activity #activity-info .portfolio-box h3{ } #activity #activity-info .portfolio-box .act-type, #user #my-activity-box .activity-item .act-type{ /*float:right;*/ max-width: 100px; background-color: #f05f40; padding: 5px 5px; color:white; } #activity #activity-info .portfolio-box .des-content{ float:left; height: 3em; margin-right:1em; overflow: hidden; } #activity #activity-info .portfolio-box button, #user #my-activity-box .activity-item button{ float:right; top:0; } #guiding h4 { font-weight: 500; font-family: "Microsoft YaHei UI","微软雅黑",Arial,sans-serif; } #guiding a.list-group-item { margin-left:20px; } #guiding hr{ max-width:100%; } .list-group .active, .list-group-item.active { background-color: #f05f40; border-color: #f05f40; } .list-group a:hover, .list-group-item.active:hover { background-color: #f0ad4e; color: whitesmoke; border: 1px solid #f0ad4e; -webkit-transition: 0.35s; -moz-transition: 0.35s; -ms-transition: 0.35s; -o-transition: 0.35s; transition: 0.35s;; } .list-group.affix { position: fixed; top: 0; } /*#guiding .nav li.active a {*/ /*background-color: #f05f40;*/ /*color: white*/ /*}*/ li.active a{ background-color: #F05F40; color:white; } #guiding .nav a:hover { background-color: #f0ad4e; color: antiquewhite; } .pagination li a{ color: #F05F40; } .pagination li a:hover { color: black; } .pagination >li> a.active { background-color: #f05f40; color: white; } #search { padding-top: 50px; padding-bottom: 0px; padding-left: 25px; padding-right: 25px; margin-bottom:10px; } #search .search-box { position: relative; } #search .search-box .form-control { display: inline; width: 90%; } /*#search .search-box .form-control:focus {*/ .form-control:focus { border-color: #f05f40; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(255, 99, 71, .6); box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(255, 99, 71, .6); } #search .search-box button { border: none; color: #f05f40; position: absolute; z-index: 5; } #search .search-box button:hover { background-color: #f05f40; color: white; top: -15%; width: 40px; height: 40px; -webkit-transition: all 0.35s; -moz-transition: all 0.35s; -ms-transition: all 0.35s; -o-transition: all 0.35s; transition: all 0.35s; } #create-activity-info #activity-content { padding-left: 30px; } #create-activity-info hr, #my-activity-box hr, #activity-info hr{ max-width: 100%; } #create-activity-info { margin-left:8%; background-color: white; padding-bottom: 2%; padding-left: 10px; padding-right:10px; } #create-activity-info .form-control { width: auto; display: inline-block; } #create-activity-info #ac-simple-des { float: left; } #create-activity-info textarea.form-control, #create-activity-info #upload-file, #create-activity-info #upload-show, #community .credit-message #news-content, #myModal textarea{ width: 95%; margin:10px 2.5%; } #create-activity-info button { float: right; background-color: white; color: #f05f40; } #create-activity-info button:hover{ background-color: #f05f40; color: white; -webkit-transition: all 0.35s; -moz-transition: all 0.35s; -ms-transition: all 0.35s; -o-transition: all 0.35s; transition: all 0.35s; } #create-activity-info .central-sub-btn{ margin-left:auto; margin-right:auto; text-align: center; } #create-activity-info .btn{ /*font-size: 20px;*/ } /*end of activity.html*/ /*single activity.html*/ #single-activity #activity-info .container { position: relative; } #single-activity #activity-info .activity-info-box{ padding-left: 25px; } #single-activity #activity-info span.button_panel { position:absolute; top:15px; right:15px; } #single-activity #activity-info button { color: #f05f40; border:1px solid #f05f40; margin:auto 5px; float:right; } #single-activity #activity-info button:hover { background-color: #f05f40; color:white; } #single-activity #activity-info .activity-info-nums { margin: 15px 15px 15px 15px; -webkit-border-radius: 2px; -moz-border-radius:2px; border-radius:2px; background-color: lightgrey; } #single-activity #activity-info .activity-info-nums div { display: block; padding-left: 20px; padding-top: 20px; padding-bottom: 20px; color: #f05f40; } #single-activity #activity-info .activity-info-nums span { font-size: 16px; padding-left: 10px; display:inline-block; font-family: 'Helvetica','Microsoft YaHei UI','FontAwesome',Arial; } #single-activity .user { position: relative; background-color: antiquewhite; padding-top: 15px; padding-left: auto; padding-right: auto; padding-bottom: 15px; } #single-activity .user .user-content { position: relative; margin-left: auto; margin-right: auto; } #single-activity .user .user-content #participaters { padding-left: 15px; text-align: center; position: relative; } #single-activity .user .user-content #participaters { z-index: 1; } #single-activity .user .user-content #participaters img:hover { -webkit-transform: scale(1.5); -moz-transform: scale(1.5); -ms-transform: scale(1.5); -o-transform: scale(1.5); transform: scale(1.5); -webkit-transition: 0.35s; -moz-transition: 0.35s; -ms-transition: 0.35s; -o-transition: 0.35s; transition: 0.35s; } /* end of singgle activity */ /* user html */ #user img:hover, #user .portfolio-box:hover, #community .user-message-box #user-message-box img:hover{ -webkit-transform: scale(1.2); -moz-transform: scale(1.2); -ms-transform: scale(1.2); -o-transform: scale(1.2); transform: scale(1.2); -webkit-transition: all 0.35s; -moz-transition: all 0.35s; -ms-transition: all 0.35s; -o-transition: all 0.35s; transition: all 0.35s; z-index: 2; } #user #my-activity-box img:hover{ -webkit-transform: scale(1.02); -moz-transform: scale(1.02); -ms-transform: scale(1.02); -o-transform: scale(1.02); transform: scale(1.02); -webkit-transition: all 0.35s; -moz-transition: all 0.35s; -ms-transition: all 0.35s; -o-transition: all 0.35s; transition: all 0.35s; z-index: 2; } #user, #statistics { background-image: url('../images/background/background-user.jpg'); background-size: cover; background-attachment: fixed; background-repeat: no-repeat; background-position: center center; } #user body a { color:black; } #user #content .body .interest{ margin-top: 15px; } #user #content .body .interest ul li a { background-color: white; } #user #content .body .interest ul li a:hover { border-bottom-color: #eb3812; color: #f05f40; } #user #content .body .interest .user-information { margin-top: 30px; width: 100%; background-color: white; } #user #content .body .interest .edit-message a{ color: grey; } #user #content .body .interest .edit-message.affix { top: 100px; position: fixed; } #user #content .body .interest .edit-message a:hover{ color: #f05f40; } #user #content .body .interest .user-information p{ font-size: 14px; color: grey; } #user .portfolio-box{ width:auto; height:auto; display:inline-block; border-radius: 50%; } #user .user-portrait .portfolio-box .portfolio-box-caption{ background: transparent; } #user .user-portrait .portfolio-box .portfolio-box-caption:hover { opacity: 1; } /*user and community using */ .user-message-box .message-item { padding-top: 20px; padding-left: 20px; background-color: white; position: relative; margin-bottom: 20px; } .user-message-box .message-header img { width: 50px; height: 50px; float: left; } .user-message-box .message-header p { display: inline; font-size: 14px; } .user-message-box .message-content { margin-top: 20px; margin-left: 50px; margin-right: 50px; margin-bottom: 10px; } .user-message-box .message-favor { padding-left: 20px; padding-right: 50px; padding-top: 20px; padding-bottom: 10px; color: #eb3812; } .user-message-box .message-favor img{ width: 40px; height: 40px; } .null-news{ width: 100%; height: 200px; padding: 10px; border: 1px solid #ccc; background-color: white; margin: 20px auto; display: -webkit-box; -webkit-box-orient: horizontal; -webkit-box-pack: center; -webkit-box-align: center; display: -moz-box; -moz-box-orient: horizontal; -moz-box-pack: center; -moz-box-align: center; } /*common sets of user and statistic*/ #content .header { background-image: url('../images/background/user-back.jpg'); height: 300px; position: relative; width: 100%; -webkit-background-size: auto; -moz-background-size: auto; background-size: auto; -o-background-size: auto; /*992~1200时,这个背景图的宽度应该为940 768~991时,这个背景图的宽度应该为720*/ } #content .header .user-portrait { padding-top: 40px; color: white; } #content .header .user-portrait img { display: block; margin-left: auto; margin-right: auto; width: 100px; height: 100px; } #content .header .user-portrait p { font-size: 15px; } #content .header .user-portrait .user-name { font-size: 25px; margin-top: 15px; margin-bottom: 10px; text-shadow: 2px 2px 2px black; display: inline; } /*end of common sets of user and statistic*/ /*user html end*/ /*statistic html*/ #statistics #content .body { margin-top: 20px; } #statistics #content .sports-sidebar.affix { top: 100px; margin-left: 80px; } #statistics #content .body #statistic-box{ background-color: white; padding-left: 20px; padding-right: 20px; padding-top: 20px; } #statistics #content #statistic-box div { margin-bottom: 20px; } #statistics #content #statistic-box hr{ margin-top: 50px; margin-bottom: 50px; } #statistics #content #statistic-box .sports-overview i{ margin-right: 10px; color: darkred; } #statistics #content #statistic-box span{ font-family:"Microsoft YaHei UI","微软雅黑","Arial",sans-serif; font-size: 20px; margin-left: 30px; margin-right: 20px; } #statistics #content #statistic-box mark { font-size: 30px; color: darkred; } #statistics #content #statistic-box button { background-color: #f05f40; border-color: #f05f40; } #statistics #content #statistic-box .sports-total .sports-total-courage span { display: inline-block; width: 30%; padding-bottom: 20%; height: 0; padding-top: 10%; margin-left: 10px; margin-right: 10px; background-color: #f0ad4e; color: white; } #statistics #content #statistic-box .sports-total .sports-total-courage span:nth-child(2){ background-color: #67b168; } #statistics #content #statistic-box .sports-total .sports-total-courage span mark { background-color: transparent; color: white; } #statistics #statistic-box #body-manage span { font-size: 15px; } #statistics #statistic-box #body-manage mark { font-size: 20px; } #statistics #statistic-box #body-manage .bd-example .modal-body span { display: inline-block; width: 40%; height: 50px; margin-top: 20px; } #statistics #statistic-box #body-manage .bd-example input { width: 40%; display: inline; } #statistics .ranked-list .list-group li a img{ height:60px; display:inline; } #statistics .ranked-list{ width:50%; margin-left:auto; margin-right:auto; } #statistics #content #statistic-box .ranked-list .list-group li span{ font-size:18px; } #statistics .ranked-list .list-group li span.badge{ margin-top:15px; margin-bottom:auto; } /*end of statistics*/ /* following */ #user #following-box, #user #my-activity-box{ background-color: white; } #user #following-box .following-user, #user #my-activity-box .activity-item { background-color: beige; border-radius: 5px; margin: 20px 25px ; padding-top: 20px; padding-bottom: 20px; } #user #following-box .following-user .image, #user #my-activity-box .activity-item image { float: left; width: 30%; } #user #following-box .following-user .description{ margin-left: 30%; width: 70%; padding-left: 20px; } #user #content .body .interest ul li a.active{ font-weight: bold; color: black; border-bottom-color: #f05f40; } #user #following-box .following-user .description .user-name { font-weight:bold; } #user #following-box .following-user .description .user-description{ height:3em; } #user #following-box .following-user img:hover { -webkit-transform: scale(1.2); -moz-transform: scale(1.2); -ms-transform: scale(1.2); -o-transform: scale(1.2); transform: scale(1.2); -webkit-transition: all 0.35s; -moz-transition: all 0.35s; -ms-transition: all 0.35s; -o-transition: all 0.35s; transition: all 0.35s; z-index: 2; } /*end of followings and followers*/ /* start of community */ #community{ background-image: url('../images/background/background-user.jpg'); background-size: cover; background-attachment: fixed; background-repeat: no-repeat; background-position: center center; } #community #content .body .card-block .nav a{ color: black; padding: 0 15px; border: 0; } #community #content .body .card-block .nav a:hover{ color: #f05f40; background-color: white; } #community #content .body .user .card { border: 1px solid ghostwhite; background-color: white; } #community #content .body .user-information { padding: 10px; display:inline; } #community #content .body .user-information .card-title{ text-align: center; } #community #content .body .user .card-block .nav .list-group { margin-bottom: 0; } #community #content .body .user .card-block .nav li{ broder-bottom:1px solid; } #community #content .body .user .card-block .nav li:hover, #community #content .body .user .list-group li a{ border-bottom: 1px solid ; } #community #content .body .user .card-block .nav li:hover, #community #content .body .user .list-group li a{ border-bottom-color: #eb3812; } #community #content .body .credit-message { background-color: white; width:100%; margin-bottom: 20px; padding-top:5px; padding-bottom:5%; padding-left:20px; padding-right:20px; } #community #content .body .credit-message hr { float:left; max-width:100%; width:100%; margin-top:0px; } #community #content .body .credit-message p { margin-top: 20px; } #community #content .body .credit-message button { float: right; background-color: white; color: #f05f40; } #community #content .body .credit-message button:hover { background-color: #f05f40; color: white; -webkit-transition: all 0.35s; -moz-transition: all 0.35s; -ms-transition: all 0.35s; -o-transition: all 0.35s; transition: all 0.35s;; } #user .body .row, #community #content .row { overflow: hidden; } @media (min-width: 1200px) { #single-activity .user .user-content { width: 1170px; } #user #content .body .interest .edit-message.affix { margin-left: 150px; } #community #content .body .card.affix { top: 50px; width: 200px; margin-left: 50px; } #community #content .body .card.affix .user-information p, .card.affix .user-information a { font-size: 14px; } #community #content .body .card.affix .user-information h4 { font-size: 18px; } } @media (max-width: 1199px) and (min-width: 992px) { #single-activity .user .user-content { width: 970px; } #user #content .body .interest .edit-message.affix { margin-left: 130px; } #statistics #content #statistic-box span{ font-size: 18px; margin-left: 20px; margin-right: 20px; } #statistics #content #statistic-box mark { font-size: 25px; } #community #content .body .card.affix { top: 50px; width: 180px; } #community #content .body .card.affix .user-information p, .card.affix .user-information a { font-size: 14px; } #community #content .body .card.affix .user-information h4 { font-size: 16px; } } @media (max-width: 991px) and (min-width: 768px) { #single-activity .user .user-content { width: 750px; } #user #content .body .interest .edit-message.affix { margin-left: 0px; } #user #content .body .user-message-box, #user #following-box { margin-left: 8.3333333%; } #statistics #content #statistic-box span{ font-size: 18px; margin-left: 20px; margin-right: 20px; } #statistics #content #statistic-box mark { font-size: 25px; } #user #following-box .following-user{ margin: 15px 20px; padding: 10px 10px; } #user #following-box .following-user p { font-size: 14px; } #community #content .body .card.affix, #community #content .body .card.affix-top{ top: 20px; width: 120px; margin-left: 20px; } #community #content .body .card.affix-top{ display:inline-block; } div.col-sm-2 .card.affix{ display:inline-block; } #community #content .body .card.affix .user-information p, .card.affix .user-information a, #community #content .body .card.affix-top .user-information p, .card.affix-top .user-information a { font-size: 14px; } #community #content .body .card.affix .user-information h4 #community #content .body .card.affix-top .user-information h4{ font-size: 16px; } } @media (max-width: 767px){ /*当页面最小时,要将*/ #user #content .body .interest .edit-message.affix { margin-left: 0px; } #user #content .body .user-message-box, #user #following-box { margin-left: 8.3333333%; } #statistics #content #statistic-box span{ font-size: 18px; margin-left: 0px; margin-right: 0px; } #statistics #content #statistic-box mark { font-size: 25px; } #statistics #content #statistic-box .sports-total .sports-total-courage span { margin-left: 0px; margin-right: 0px; } #user #following-box .following-user img { max-width: 80px; max-height: 80px; } #user #following-box .following-user p { font-size: 14px; } }
assets/css/style.css
html, body { height: 100%; width: 100%; } body { font-family: 'Merriweather', 'Helvetica Neue','Microsoft YaHei UI','微软雅黑', Arial, sans-serif; } hr { border-color: #F05F40; border-width: 3px; max-width: 50px; } hr.light { border-color: white; } a { -webkit-transition: all 0.35s; -moz-transition: all 0.35s; transition: all 0.35s; color: #F05F40; } a:hover, a:focus { color: #eb3812; } h1, h2, h3, h4, h5, h6 { font-family: 'Open Sans', 'Helvetica Neue','Microsoft YaHei UI','微软雅黑', Arial, sans-serif; } p { font-size: 16px; line-height: 1.5; margin-bottom: 20px; } .bg-primary { background-color: #F05F40; } .bg-dark { background-color: #222222; color: white; } .text-faded { color: rgba(255, 255, 255, 0.7); } .btn-default { color: #222222; background-color: white; border-color: white; -webkit-transition: all 0.35s; -moz-transition: all 0.35s; transition: all 0.35s; } .btn-default:hover, .btn-default:focus, .btn-default.focus, .btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-default { color: #222222; background-color: #f2f2f2; border-color: #ededed; } .btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-default { background-image: none; } .btn-default.disabled, .btn-default[disabled], fieldset[disabled] .btn-default, .btn-default.disabled:hover, .btn-default[disabled]:hover, fieldset[disabled] .btn-default:hover, .btn-default.disabled:focus, .btn-default[disabled]:focus, fieldset[disabled] .btn-default:focus, .btn-default.disabled.focus, .btn-default[disabled].focus, fieldset[disabled] .btn-default.focus, .btn-default.disabled:active, .btn-default[disabled]:active, fieldset[disabled] .btn-default:active, .btn-default.disabled.active, .btn-default[disabled].active, fieldset[disabled] .btn-default.active { background-color: white; border-color: white; } .btn-default .badge { color: white; background-color: #222222; } .btn-primary { color: white; background-color: #F05F40; border-color: #F05F40; -webkit-transition: all 0.35s; -moz-transition: all 0.35s; transition: all 0.35s; } .btn-primary:hover, .btn-primary:focus, .btn-primary.focus, .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary { color: white; background-color: #ee4b28; border-color: #ed431f; } .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary { background-image: none; } .btn-primary.disabled, .btn-primary[disabled], fieldset[disabled] .btn-primary, .btn-primary.disabled:hover, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary:hover, .btn-primary.disabled:focus, .btn-primary[disabled]:focus, fieldset[disabled] .btn-primary:focus, .btn-primary.disabled.focus, .btn-primary[disabled].focus, fieldset[disabled] .btn-primary.focus, .btn-primary.disabled:active, .btn-primary[disabled]:active, fieldset[disabled] .btn-primary:active, .btn-primary.disabled.active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary.active { background-color: #F05F40; border-color: #F05F40; } .btn-primary .badge { color: #F05F40; background-color: white; } .btn { font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif; border: none; border-radius: 300px; font-weight: 700; text-transform: uppercase; } .btn-xl { padding: 15px 30px; } ::-moz-selection { color: white; text-shadow: none; background: #222222; } ::selection { color: white; text-shadow: none; background: #222222; } img::selection { color: white; background: transparent; } img::-moz-selection { color: white; background: transparent; } .form-control{ display:inline-block; width: auto; } body { webkit-tap-highlight-color: #222222; } header { position: relative; width: 100%; height:auto; -webkit-background-size: cover; -moz-background-size: cover; background-size: cover; -o-background-size: cover; background-image:url('../images/header-tem.jpg'); background-position: center; text-align: center; color: white; } header .header-content { position: relative; text-align: center; padding: 25px 15px 25px; width: 100%; } section { padding: 25px 0; } /*activity.html*/ #activity #activity-info .list-group { display: inline; } #activity #activity-info .portfolio-box{ padding-top:10px; padding-bottom:10px; background-color: antiquewhite; } #activity #activity-info .portfolio-box h3{ } #activity #activity-info .portfolio-box .act-type, #user #my-activity-box .activity-item .act-type{ /*float:right;*/ max-width: 100px; background-color: #f05f40; padding: 5px 5px; color:white; } #activity #activity-info .portfolio-box .des-content{ float:left; height: 3em; margin-right:1em; overflow: hidden; } #activity #activity-info .portfolio-box button, #user #my-activity-box .activity-item button{ float:right; top:0; } #guiding h4 { font-weight: 500; font-family: "Microsoft YaHei UI","微软雅黑",Arial,sans-serif; } #guiding a.list-group-item { margin-left:20px; } #guiding hr{ max-width:100%; } .list-group .active, .list-group-item.active { background-color: #f05f40; border-color: #f05f40; } .list-group a:hover, .list-group-item.active:hover { background-color: #f0ad4e; color: whitesmoke; border: 1px solid #f0ad4e; -webkit-transition: 0.35s; -moz-transition: 0.35s; -ms-transition: 0.35s; -o-transition: 0.35s; transition: 0.35s;; } .list-group.affix { position: fixed; top: 0; } /*#guiding .nav li.active a {*/ /*background-color: #f05f40;*/ /*color: white*/ /*}*/ li.active a{ background-color: #F05F40; color:white; } #guiding .nav a:hover { background-color: #f0ad4e; color: antiquewhite; } .pagination li a{ color: #F05F40; } .pagination li a:hover { color: black; } .pagination >li> a.active { background-color: #f05f40; color: white; } #search { padding-top: 50px; padding-bottom: 0px; padding-left: 25px; padding-right: 25px; margin-bottom:10px; } #search .search-box { position: relative; } #search .search-box .form-control { display: inline; width: 90%; } /*#search .search-box .form-control:focus {*/ .form-control:focus { border-color: #f05f40; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(255, 99, 71, .6); box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(255, 99, 71, .6); } #search .search-box button { border: none; color: #f05f40; position: absolute; z-index: 5; } #search .search-box button:hover { background-color: #f05f40; color: white; top: -15%; width: 40px; height: 40px; -webkit-transition: all 0.35s; -moz-transition: all 0.35s; -ms-transition: all 0.35s; -o-transition: all 0.35s; transition: all 0.35s; } #create-activity-info #activity-content { padding-left: 30px; } #create-activity-info hr, #my-activity-box hr, #activity-info hr{ max-width: 100%; } #create-activity-info { margin-left:8%; background-color: white; padding-bottom: 2%; padding-left: 10px; padding-right:10px; } #create-activity-info .form-control { width: auto; display: inline-block; } #create-activity-info #ac-simple-des { float: left; } #create-activity-info textarea.form-control, #create-activity-info #upload-file, #create-activity-info #upload-show, #community .credit-message #news-content, #myModal textarea{ width: 95%; margin:10px 2.5%; } #create-activity-info button { float: right; background-color: white; color: #f05f40; } #create-activity-info button:hover{ background-color: #f05f40; color: white; -webkit-transition: all 0.35s; -moz-transition: all 0.35s; -ms-transition: all 0.35s; -o-transition: all 0.35s; transition: all 0.35s; } #create-activity-info .central-sub-btn{ margin-left:auto; margin-right:auto; text-align: center; } #create-activity-info .btn{ /*font-size: 20px;*/ } /*end of activity.html*/ /*single activity.html*/ #single-activity #activity-info .container { position: relative; } #single-activity #activity-info .activity-info-box{ padding-left: 25px; } #single-activity #activity-info span.button_panel { position:absolute; top:15px; right:15px; } #single-activity #activity-info button { color: #f05f40; border:1px solid #f05f40; margin:auto 5px; float:right; } #single-activity #activity-info button:hover { background-color: #f05f40; color:white; } #single-activity #activity-info .activity-info-nums { margin: 15px 15px 15px 15px; -webkit-border-radius: 2px; -moz-border-radius:2px; border-radius:2px; background-color: lightgrey; } #single-activity #activity-info .activity-info-nums div { display: block; padding-left: 20px; padding-top: 20px; padding-bottom: 20px; color: #f05f40; } #single-activity #activity-info .activity-info-nums span { font-size: 16px; padding-left: 10px; display:inline-block; font-family: 'Helvetica','Microsoft YaHei UI','FontAwesome',Arial; } #single-activity .user { position: relative; background-color: antiquewhite; padding-top: 15px; padding-left: auto; padding-right: auto; padding-bottom: 15px; } #single-activity .user .user-content { position: relative; margin-left: auto; margin-right: auto; } #single-activity .user .user-content #participaters { padding-left: 15px; text-align: center; position: relative; } #single-activity .user .user-content #participaters { z-index: 1; } #single-activity .user .user-content #participaters img:hover { -webkit-transform: scale(1.5); -moz-transform: scale(1.5); -ms-transform: scale(1.5); -o-transform: scale(1.5); transform: scale(1.5); -webkit-transition: 0.35s; -moz-transition: 0.35s; -ms-transition: 0.35s; -o-transition: 0.35s; transition: 0.35s; } /* end of singgle activity */ /* user html */ #user img:hover, #user .portfolio-box:hover, #community .user-message-box #user-message-box img:hover{ -webkit-transform: scale(1.2); -moz-transform: scale(1.2); -ms-transform: scale(1.2); -o-transform: scale(1.2); transform: scale(1.2); -webkit-transition: all 0.35s; -moz-transition: all 0.35s; -ms-transition: all 0.35s; -o-transition: all 0.35s; transition: all 0.35s; z-index: 2; } #user #my-activity-box img:hover{ -webkit-transform: scale(1.02); -moz-transform: scale(1.02); -ms-transform: scale(1.02); -o-transform: scale(1.02); transform: scale(1.02); -webkit-transition: all 0.35s; -moz-transition: all 0.35s; -ms-transition: all 0.35s; -o-transition: all 0.35s; transition: all 0.35s; z-index: 2; } #user, #statistics { background-image: url('../images/background/background-user.jpg'); background-size: cover; background-attachment: fixed; background-repeat: no-repeat; background-position: center center; } #user body a { color:black; } #user #content .body .interest{ margin-top: 15px; } #user #content .body .interest ul li a { background-color: white; } #user #content .body .interest ul li a:hover { border-bottom-color: #eb3812; color: #f05f40; } #user #content .body .interest .user-information { margin-top: 30px; width: 100%; background-color: white; } #user #content .body .interest .edit-message a{ color: grey; } #user #content .body .interest .edit-message.affix { top: 100px; position: fixed; } #user #content .body .interest .edit-message a:hover{ color: #f05f40; } #user #content .body .interest .user-information p{ font-size: 14px; color: grey; } #user .portfolio-box{ width:auto; height:auto; display:inline-block; border-radius: 50%; } #user .user-portrait .portfolio-box .portfolio-box-caption{ background: transparent; } #user .user-portrait .portfolio-box .portfolio-box-caption:hover { opacity: 1; } /*user and community using */ .user-message-box .message-item { padding-top: 20px; padding-left: 20px; background-color: white; position: relative; margin-bottom: 20px; } .user-message-box .message-header img { width: 50px; height: 50px; float: left; } .user-message-box .message-header p { display: inline; font-size: 14px; } .user-message-box .message-content { margin-top: 20px; margin-left: 50px; margin-right: 50px; margin-bottom: 10px; } .user-message-box .message-favor { padding-left: 20px; padding-right: 50px; padding-top: 20px; padding-bottom: 10px; color: #eb3812; } .user-message-box .message-favor img{ width: 40px; height: 40px; } .null-news{ width: 100%; height: 200px; padding: 10px; border: 1px solid #ccc; background-color: white; margin: 20px auto; display: -webkit-box; -webkit-box-orient: horizontal; -webkit-box-pack: center; -webkit-box-align: center; display: -moz-box; -moz-box-orient: horizontal; -moz-box-pack: center; -moz-box-align: center; } /*common sets of user and statistic*/ #content .header { background-image: url('../images/background/user-back.jpg'); height: 300px; position: relative; width: 100%; -webkit-background-size: auto; -moz-background-size: auto; background-size: auto; -o-background-size: auto; /*992~1200时,这个背景图的宽度应该为940 768~991时,这个背景图的宽度应该为720*/ } #content .header .user-portrait { padding-top: 40px; color: white; } #content .header .user-portrait img { display: block; margin-left: auto; margin-right: auto; width: 100px; height: 100px; } #content .header .user-portrait p { font-size: 15px; } #content .header .user-portrait .user-name { font-size: 25px; margin-top: 15px; margin-bottom: 10px; text-shadow: 2px 2px 2px black; display: inline; } /*end of common sets of user and statistic*/ /*user html end*/ /*statistic html*/ #statistics #content .body { margin-top: 20px; } #statistics #content .sports-sidebar.affix { top: 100px; margin-left: 80px; } #statistics #content .body #statistic-box{ background-color: white; padding-left: 20px; padding-right: 20px; padding-top: 20px; } #statistics #content #statistic-box div { margin-bottom: 20px; } #statistics #content #statistic-box hr{ margin-top: 50px; margin-bottom: 50px; } #statistics #content #statistic-box .sports-overview i{ margin-right: 10px; color: darkred; } #statistics #content #statistic-box span{ font-family:"Microsoft YaHei UI","微软雅黑","Arial",sans-serif; font-size: 20px; margin-left: 30px; margin-right: 20px; } #statistics #content #statistic-box mark { font-size: 30px; color: darkred; } #statistics #content #statistic-box button { background-color: #f05f40; border-color: #f05f40; } #statistics #content #statistic-box .sports-total .sports-total-courage span { display: inline-block; width: 30%; padding-bottom: 20%; height: 0; padding-top: 10%; margin-left: 10px; margin-right: 10px; background-color: #f0ad4e; color: white; } #statistics #content #statistic-box .sports-total .sports-total-courage span:nth-child(2){ background-color: #67b168; } #statistics #content #statistic-box .sports-total .sports-total-courage span mark { background-color: transparent; color: white; } #statistics #statistic-box #body-manage span { font-size: 15px; } #statistics #statistic-box #body-manage mark { font-size: 20px; } #statistics #statistic-box #body-manage .bd-example .modal-body span { display: inline-block; width: 40%; height: 50px; margin-top: 20px; } #statistics #statistic-box #body-manage .bd-example input { width: 40%; display: inline; } #statistics .ranked-list .list-group li a img{ height:60px; display:inline; } #statistics .ranked-list{ width:50%; margin-left:auto; margin-right:auto; } #statistics #content #statistic-box .ranked-list .list-group li span{ font-size:18px; } #statistics .ranked-list .list-group li span.badge{ margin-top:15px; margin-bottom:auto; } /*end of statistics*/ /* following */ #user #following-box, #user #my-activity-box{ background-color: white; } #user #following-box .following-user, #user #my-activity-box .activity-item { background-color: beige; border-radius: 5px; margin: 20px 25px ; padding-top: 20px; padding-bottom: 20px; } #user #following-box .following-user .image, #user #my-activity-box .activity-item image { float: left; width: 30%; } #user #following-box .following-user .description{ margin-left: 30%; width: 70%; padding-left: 20px; } #user #content .body .interest ul li a.active{ font-weight: bold; color: black; border-bottom-color: #f05f40; } #user #following-box .following-user .description .user-name { font-weight:bold; } #user #following-box .following-user .description .user-description{ height:3em; } #user #following-box .following-user img:hover { -webkit-transform: scale(1.2); -moz-transform: scale(1.2); -ms-transform: scale(1.2); -o-transform: scale(1.2); transform: scale(1.2); -webkit-transition: all 0.35s; -moz-transition: all 0.35s; -ms-transition: all 0.35s; -o-transition: all 0.35s; transition: all 0.35s; z-index: 2; } /*end of followings and followers*/ /* start of community */ #community{ background-image: url('../images/background/background-user.jpg'); background-size: cover; background-attachment: fixed; background-repeat: no-repeat; background-position: center center; } #community #content .body .card-block .nav a{ color: black; padding: 0 15px; border: 0; } #community #content .body .card-block .nav a:hover{ color: #f05f40; background-color: white; } #community #content .body .user .card { border: 1px solid ghostwhite; background-color: white; } #community #content .body .user-information { padding: 10px; display:inline; } #community #content .body .user-information .card-title{ text-align: center; } #community #content .body .user .card-block .nav .list-group { margin-bottom: 0; } #community #content .body .user .card-block .nav li{ broder-bottom:1px solid; } #community #content .body .user .card-block .nav li:hover, #community #content .body .user .list-group li a{ border-bottom: 1px solid ; } #community #content .body .user .card-block .nav li:hover, #community #content .body .user .list-group li a{ border-bottom-color: #eb3812; } #community #content .body .credit-message { background-color: white; width:100%; margin-bottom: 20px; padding-top:5px; padding-bottom:5%; padding-left:20px; padding-right:20px; } #community #content .body .credit-message hr { float:left; max-width:100%; width:100%; margin-top:0px; } #community #content .body .credit-message p { margin-top: 20px; } #community #content .body .credit-message button { float: right; background-color: white; color: #f05f40; } #community #content .body .credit-message button:hover { background-color: #f05f40; color: white; -webkit-transition: all 0.35s; -moz-transition: all 0.35s; -ms-transition: all 0.35s; -o-transition: all 0.35s; transition: all 0.35s;; } #user .body .row, #community #content .row { overflow: hidden; } @media (min-width: 1200px) { #single-activity .user .user-content { width: 1170px; } #user #content .body .interest .edit-message.affix { margin-left: 150px; } #community #content .body .card.affix { top: 50px; width: 200px; margin-left: 50px; } #community #content .body .card.affix .user-information p, .card.affix .user-information a { font-size: 14px; } #community #content .body .card.affix .user-information h4 { font-size: 18px; } } @media (max-width: 1199px) and (min-width: 992px) { #single-activity .user .user-content { width: 970px; } #user #content .body .interest .edit-message.affix { margin-left: 130px; } #statistics #content #statistic-box span{ font-size: 18px; margin-left: 20px; margin-right: 20px; } #statistics #content #statistic-box mark { font-size: 25px; } #community #content .body .card.affix { top: 50px; width: 180px; } #community #content .body .card.affix .user-information p, .card.affix .user-information a { font-size: 14px; } #community #content .body .card.affix .user-information h4 { font-size: 16px; } } @media (max-width: 991px) and (min-width: 768px) { #single-activity .user .user-content { width: 750px; } #user #content .body .interest .edit-message.affix { margin-left: 0px; } #user #content .body .user-message-box, #user #following-box { margin-left: 8.3333333%; } #statistics #content #statistic-box span{ font-size: 18px; margin-left: 20px; margin-right: 20px; } #statistics #content #statistic-box mark { font-size: 25px; } #user #following-box .following-user{ margin: 15px 20px; padding: 10px 10px; } #user #following-box .following-user p { font-size: 14px; } #community #content .body .card.affix, #community #content .body .card.affix-top{ top: 20px; width: 120px; margin-left: 20px; } #community #content .body .card.affix-top{ display:inline-block; } div.col-sm-2 .card.affix{ display:inline-block; } #community #content .body .card.affix .user-information p, .card.affix .user-information a, #community #content .body .card.affix-top .user-information p, .card.affix-top .user-information a { font-size: 14px; } #community #content .body .card.affix .user-information h4 #community #content .body .card.affix-top .user-information h4{ font-size: 16px; } } @media (max-width: 767px){ /*当页面最小时,要将*/ #user #content .body .interest .edit-message.affix { margin-left: 0px; } #user #content .body .user-message-box, #user #following-box { margin-left: 8.3333333%; } #statistics #content #statistic-box span{ font-size: 18px; margin-left: 0px; margin-right: 0px; } #statistics #content #statistic-box mark { font-size: 25px; } #statistics #content #statistic-box .sports-total .sports-total-courage span { margin-left: 0px; margin-right: 0px; } #user #following-box .following-user img { max-width: 80px; max-height: 80px; } #user #following-box .following-user p { font-size: 14px; } }
0.298798
0.059156
.mediaViewInfo { --web-view-name: Web 1920 – 1; --web-view-id: Web_1920__1; --web-scale-on-resize: true; --web-enable-deep-linking: true; } :root { --web-view-ids: Web_1920__1; } * { margin: 0; padding: 0; box-sizing: border-box; border: none; } #Web_1920__1 { position: absolute; width: 1920px; height: 3361px; background-color: rgba(77,161,250,1); overflow: hidden; --web-view-name: Web 1920 – 1; --web-view-id: Web_1920__1; --web-scale-on-resize: true; --web-enable-deep-linking: true; } #Toonofy-Logo_1 { position: absolute; width: 224.5px; height: 45.1px; left: 135px; top: 37.59px; overflow: visible; } #HOME { left: 1125px; top: 48px; position: absolute; overflow: visible; width: 59px; height: 27px; text-align: center; font-family: Segoe UI; font-style: normal; font-weight: normal; font-size: 20px; color: rgba(0,82,170,1); } #OLYMPIADS { left: 1226px; top: 48px; position: absolute; overflow: visible; width: 109px; height: 27px; text-align: center; font-family: Segoe UI; font-style: normal; font-weight: normal; font-size: 20px; color: rgba(0,82,170,1); } #YLP { left: 1375px; top: 48px; position: absolute; overflow: visible; width: 33px; height: 27px; text-align: left; font-family: Segoe UI; font-style: normal; font-weight: normal; font-size: 20px; color: rgba(255,255,255,1); } #WORKSHEETS { left: 1450px; top: 48px; position: absolute; overflow: visible; width: 125px; height: 27px; text-align: center; font-family: Segoe UI; font-style: normal; font-weight: normal; font-size: 20px; color: rgba(0,82,170,1); } #VIDEOS { left: 1617px; top: 48px; position: absolute; overflow: visible; width: 69px; height: 27px; text-align: center; font-family: Segoe UI; font-style: normal; font-weight: normal; font-size: 20px; color: rgba(0,82,170,1); } #LOGIN { left: 1728px; top: 48px; position: absolute; overflow: visible; width: 59px; height: 27px; text-align: center; font-family: Segoe UI; font-style: normal; font-weight: normal; font-size: 20px; color: rgba(0,82,170,1); } #Know_why_parents_love_our_Year { left: 335px; top: 143px; position: absolute; overflow: visible; width: 1251px; height: 79px; text-align: left; font-family: Nunito Sans; font-style: normal; font-weight: normal; font-size: 58px; color: rgba(228,228,228,1); } #map-animation-800x600-phone-00_r { position: absolute; width: 1651px; height: 763px; left: 135px; top: 245px; overflow: visible; } #map-animation-800x600-phone-00_p { position: absolute; width: 1651px; height: 763px; left: 135px; top: 245px; overflow: visible; } #map-animation-800x600-phone-00_r { position: absolute; width: 1651px; height: 763px; left: 135px; top: 245px; overflow: visible; } #map-animation-800x600-phone-00_r { position: absolute; width: 1651px; height: 763px; left: 135px; top: 245px; overflow: visible; } #Icon_ionic-logo-youtube { fill: rgba(252,34,34,1); } .Icon_ionic-logo-youtube { filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.161)); overflow: visible; position: absolute; width: 176.22px; height: 132.81px; left: 887px; top: 575px; transform: matrix(1,0,0,1,0,0); } #Have_an_unlimited_access_to_ou { left: 219px; top: 1080px; position: absolute; overflow: visible; width: 1483px; height: 79px; line-height: 75px; margin-top: -8.5px; text-align: center; font-family: Nunito Sans; font-style: normal; font-weight: normal; font-size: 58px; color: rgba(228,228,228,1); } #Path_1 { fill: rgba(52,133,214,1); stroke: rgba(114,187,255,1); stroke-width: 1px; stroke-linejoin: miter; stroke-linecap: butt; stroke-miterlimit: 4; shape-rendering: auto; } .Path_1 { overflow: visible; position: absolute; width: 1651px; height: 1229px; left: 135px; top: 1182px; transform: matrix(1,0,0,1,0,0); } #Group_340 { position: absolute; width: 124.849px; height: 124px; left: 331px; top: 1325px; overflow: visible; } #SYLLABUS { left: 319px; top: 1461px; position: absolute; overflow: visible; width: 143px; height: 35px; line-height: 65px; margin-top: -19.5px; text-align: center; font-family: Nunito Sans; font-style: normal; font-weight: bold; font-size: 26px; color: rgba(228,228,228,1); letter-spacing: 0.012999999523162841px; } #Group_341 { position: absolute; width: 124.29px; height: 124.29px; left: 618px; top: 1325px; overflow: visible; } #CLASS { left: 631.61px; top: 1460.85px; position: absolute; overflow: visible; width: 91px; height: 35px; line-height: 65px; margin-top: -19.5px; text-align: left; font-family: Nunito Sans; font-style: normal; font-weight: bold; font-size: 26px; color: rgba(228,228,228,1); letter-spacing: 0.012999999523162841px; } #Group_341_1 { position: absolute; width: 124px; height: 124px; left: 926.57px; top: 1325px; overflow: visible; } #OLYMPIADS_ { left: 900px; top: 1461px; position: absolute; overflow: visible; width: 161px; height: 35px; line-height: 65px; margin-top: -19.5px; text-align: center; font-family: Nunito Sans; font-style: normal; font-weight: bold; font-size: 26px; color: rgba(0,90,178,1); letter-spacing: 0.012999999523162841px; } #Group_341_2 { position: absolute; width: 124.29px; height: 124.29px; left: 331.11px; top: 1582.13px; overflow: visible; } #POSTERS { left: 323px; top: 1717.97px; position: absolute; overflow: visible; width: 129px; height: 35px; line-height: 65px; margin-top: -19.5px; text-align: center; font-family: Nunito Sans; font-style: normal; font-weight: bold; font-size: 26px; color: rgba(0,90,178,1); letter-spacing: 0.012999999523162841px; } #Group_591 { position: absolute; width: 195.562px; height: 170.87px; left: 580px; top: 1582.13px; overflow: visible; } #Group_592 { position: absolute; width: 124.718px; height: 123.87px; left: 921px; top: 1582.13px; overflow: visible; } #GAMES { left: 931.21px; top: 1718px; position: absolute; overflow: visible; width: 99px; height: 35px; line-height: 65px; margin-top: -19.5px; text-align: center; font-family: Nunito Sans; font-style: normal; font-weight: bold; font-size: 26px; color: rgba(0,90,178,1); letter-spacing: 0.012999999523162841px; } #Group_341_3 { position: absolute; width: 117.12px; height: 117.12px; left: 332.39px; top: 1839.25px; overflow: visible; } #STORY_BOOKS { left: 289px; top: 1975.1px; position: absolute; overflow: visible; width: 197px; height: 35px; line-height: 65px; margin-top: -19.5px; text-align: center; font-family: Nunito Sans; font-style: normal; font-weight: normal; font-size: 26px; color: rgba(0,90,178,1); letter-spacing: 0.012999999523162841px; } #Group_340_1 { position: absolute; width: 124.62px; height: 124.62px; left: 621px; top: 1839.38px; overflow: visible; } #MOCK_TEST { left: 599px; top: 1975px; position: absolute; overflow: visible; width: 159px; height: 35px; line-height: 65px; margin-top: -19.5px; text-align: center; font-family: Nunito Sans; font-style: normal; font-weight: bold; font-size: 26px; color: rgba(0,90,178,1); letter-spacing: 0.012999999523162841px; } #Group_592_1 { position: absolute; width: 124.62px; height: 124.62px; left: 923.79px; top: 1839.38px; overflow: visible; } #WORKBOOKS { left: 887px; top: 1975px; position: absolute; overflow: visible; width: 187px; height: 35px; line-height: 65px; margin-top: -19.5px; text-align: center; font-family: Nunito Sans; font-style: normal; font-weight: bold; font-size: 26px; color: rgba(0,90,178,1); letter-spacing: 0.012999999523162841px; } #Group_777_1 { position: absolute; width: 124.29px; height: 124.29px; left: 329px; top: 2096.25px; overflow: visible; } #REMEDIAL_PLAN { left: 275px; top: 2232.1px; position: absolute; overflow: visible; width: 225px; height: 35px; line-height: 65px; margin-top: -19.5px; text-align: center; font-family: Nunito Sans; font-style: normal; font-weight: bold; font-size: 26px; color: rgba(0,90,178,1); letter-spacing: 0.012999999523162841px; } #MCQs { left: 638px; top: 2232px; position: absolute; overflow: visible; width: 77px; height: 35px; line-height: 65px; margin-top: -19.5px; text-align: left; font-family: Nunito Sans; font-style: normal; font-weight: bold; font-size: 26px; color: rgba(0,90,178,1); letter-spacing: 0.012999999523162841px; } #Group_340_2 { position: absolute; width: 124.62px; height: 124.62px; left: 619px; top: 2096.38px; overflow: visible; } #Group_592_2 { position: absolute; width: 124.62px; height: 124.62px; left: 923.79px; top: 2096.38px; overflow: visible; } #OLYMPIAD_BOOKS { left: 856px; top: 2232px; position: absolute; overflow: visible; width: 249px; height: 35px; line-height: 65px; margin-top: -19.5px; text-align: center; font-family: Nunito Sans; font-style: normal; font-weight: bold; font-size: 26px; color: rgba(0,90,178,1); letter-spacing: 0.012999999523162841px; } #Group_582 { position: absolute; width: 124.849px; height: 124px; left: 1221.79px; top: 1325px; overflow: visible; } #SUBJECTS { left: 1211px; top: 1461px; position: absolute; overflow: visible; width: 137px; height: 35px; line-height: 65px; margin-top: -19.5px; text-align: center; font-family: Nunito Sans; font-style: normal; font-weight: bold; font-size: 26px; color: rgba(0,90,178,1); letter-spacing: 0.012999999523162841px; } #Group_340_3 { position: absolute; width: 124.75px; height: 124.75px; left: 1221px; top: 1582.25px; overflow: visible; } #PUZZLES { left: 1218px; top: 1718px; position: absolute; overflow: visible; width: 123px; height: 35px; line-height: 65px; margin-top: -19.5px; text-align: center; font-family: Nunito Sans; font-style: normal; font-weight: bold; font-size: 26px; color: rgba(0,90,178,1); letter-spacing: 0.012999999523162841px; } #Group_341_4 { position: absolute; width: 124.62px; height: 124.62px; left: 1220px; top: 1839.38px; overflow: visible; } #NCERT { left: 1229px; top: 1975px; position: absolute; overflow: visible; width: 93px; height: 35px; line-height: 65px; margin-top: -19.5px; text-align: center; font-family: Nunito Sans; font-style: normal; font-weight: bold; font-size: 26px; color: rgba(0,90,178,1); letter-spacing: 0.012999999523162841px; } #Group_341_5 { position: absolute; width: 124.62px; height: 124.62px; left: 1224px; top: 2096.38px; overflow: visible; } #FLASHCARDS { left: 1185px; top: 2232px; position: absolute; overflow: visible; width: 189px; height: 35px; line-height: 65px; margin-top: -19.5px; text-align: center; font-family: Nunito Sans; font-style: normal; font-weight: normal; font-size: 26px; color: rgba(0,90,178,1); letter-spacing: 0.012999999523162841px; } #Group_340_4 { position: absolute; width: 124.718px; height: 123.87px; left: 1494px; top: 1325.13px; overflow: visible; } #WORKSHEETS_br { left: 1453px; top: 1461px; position: absolute; overflow: visible; width: 195px; height: 35px; line-height: 65px; margin-top: -19.5px; text-align: center; font-family: Nunito Sans; font-style: normal; font-weight: normal; font-size: 26px; color: rgba(0,90,178,1); letter-spacing: 0.012999999523162841px; } #Group_341_6 { position: absolute; width: 123.901px; height: 124.75px; left: 1495.57px; top: 1582.25px; overflow: visible; } #PRACTISE { left: 1482px; top: 1718px; position: absolute; overflow: visible; width: 137px; height: 35px; line-height: 65px; margin-top: -19.5px; text-align: left; font-family: Nunito Sans; font-style: normal; font-weight: bold; font-size: 26px; color: rgba(0,90,178,1); letter-spacing: 0.012999999523162841px; } #Group_341_7 { position: absolute; width: 124.29px; height: 124.29px; left: 1493.9px; top: 1839.38px; overflow: visible; } #REPORTS { left: 1486px; top: 1975.23px; position: absolute; overflow: visible; width: 129px; height: 35px; line-height: 65px; margin-top: -19.5px; text-align: center; font-family: Nunito Sans; font-style: normal; font-weight: bold; font-size: 26px; color: rgba(0,90,178,1); letter-spacing: 0.012999999523162841px; } #Group_592_3 { position: absolute; width: 124.75px; height: 124.75px; left: 1491px; top: 2096.25px; overflow: visible; } #VIDEOS_bx { left: 1496.21px; top: 2232px; position: absolute; overflow: visible; width: 105px; height: 35px; line-height: 65px; margin-top: -19.5px; text-align: left; font-family: Nunito Sans; font-style: normal; font-weight: bold; font-size: 26px; color: rgba(0,90,178,1); letter-spacing: 0.012999999523162841px; } #Rectangle_1 { fill: rgba(255,255,255,1); stroke: rgba(112,112,112,1); stroke-width: 1px; stroke-linejoin: miter; stroke-linecap: butt; stroke-miterlimit: 4; shape-rendering: auto; } .Rectangle_1 { position: absolute; overflow: visible; width: 1px; height: 6px; left: 15px; top: 2604px; } #Rectangle_2 { fill: rgba(129,190,255,1); } .Rectangle_2 { position: absolute; overflow: visible; width: 1920px; height: 3px; left: 0px; top: 2522px; } #Path_4 { fill: rgba(0,0,0,0); stroke: rgba(112,112,112,1); stroke-width: 1px; stroke-linejoin: miter; stroke-linecap: butt; stroke-miterlimit: 4; shape-rendering: auto; } .Path_4 { overflow: visible; position: absolute; width: 1px; height: 1px; left: 0px; top: 2522px; transform: matrix(1,0,0,1,0,0); } #Path_2 { fill: rgba(55,125,200,1); stroke: rgba(114,187,255,1); stroke-width: 1px; stroke-linejoin: miter; stroke-linecap: butt; stroke-miterlimit: 4; shape-rendering: auto; } .Path_2 { overflow: visible; position: absolute; width: 1651px; height: 632px; left: 135px; top: 2577px; transform: matrix(1,0,0,1,0,0); } #COMPANY { left: 201px; top: 2641px; position: absolute; overflow: visible; width: 113px; height: 27px; line-height: 50px; margin-top: -15px; text-align: left; font-family: Nunito Sans; font-style: normal; font-weight: bold; font-size: 20px; color: rgba(0,0,0,1); letter-spacing: 0.02px; } #RESOURCES { left: 781px; top: 2641px; position: absolute; overflow: visible; width: 137px; height: 27px; line-height: 50px; margin-top: -15px; text-align: left; font-family: Nunito Sans; font-style: normal; font-weight: bold; font-size: 20px; color: rgba(0,0,0,1); letter-spacing: 0.02px; } #CLASSES { left: 1289px; top: 2641px; position: absolute; overflow: visible; width: 102px; height: 27px; line-height: 50px; margin-top: -15px; text-align: left; font-family: Nunito Sans; font-style: normal; font-weight: bold; font-size: 20px; color: rgba(0,0,0,1); letter-spacing: 0.02px; } #SOCIAL { left: 1572px; top: 2641px; position: absolute; overflow: visible; width: 84px; height: 27px; text-align: left; font-family: Nunito Sans; font-style: normal; font-weight: bold; font-size: 20px; color: rgba(0,0,0,1); } #Syllabus_Olympiads_Subjects_Wo { left: 781px; top: 2711px; position: absolute; overflow: visible; width: 137px; height: 434px; line-height: 50px; margin-top: -12.5px; text-align: left; font-family: Nunito Sans; font-style: normal; font-weight: normal; font-size: 25px; color: rgba(255,255,255,1); } #Rectangle_3 { fill: rgba(129,190,255,1); } .Rectangle_3 { position: absolute; overflow: visible; width: 144px; height: 1px; left: 1568px; top: 2681px; } #Path_3 { fill: rgba(23,83,146,1); } .Path_3 { overflow: visible; position: absolute; width: 144px; height: 1px; left: 1568px; top: 2680px; transform: matrix(1,0,0,1,0,0); } #Rectangle_4 { fill: rgba(129,190,255,1); } .Rectangle_4 { position: absolute; overflow: visible; width: 144px; height: 1px; left: 1285px; top: 2682px; } #Rectangle_5 { fill: rgba(129,190,255,1); } .Rectangle_5 { position: absolute; overflow: visible; width: 364px; height: 1px; left: 777px; top: 2682px; } #Rectangle_6 { fill: rgba(129,190,255,1); } .Rectangle_6 { position: absolute; overflow: visible; width: 437px; height: 1px; left: 201px; top: 2682px; } #Rectangle_7 { fill: rgba(23,83,146,1); } .Rectangle_7 { position: absolute; overflow: visible; width: 144px; height: 1px; left: 1285px; top: 2681px; } #Rectangle_8 { fill: rgba(23,83,146,1); } .Rectangle_8 { position: absolute; overflow: visible; width: 437px; height: 1px; left: 201px; top: 2681px; } #Rectangle_9 { fill: rgba(23,83,146,1); } .Rectangle_9 { position: absolute; overflow: visible; width: 364px; height: 1px; left: 777px; top: 2681px; } #Path_5 { fill: rgba(55,125,200,1); } .Path_5 { overflow: visible; position: absolute; width: 1920px; height: 3px; left: 0px; top: 2519px; transform: matrix(1,0,0,1,0,0); } #Toonofy-Logo2x { position: absolute; width: 135.884px; height: 27.54px; left: 201px; top: 2714.63px; overflow: visible; } #Animation_based_International_ { left: 201px; top: 2759px; position: absolute; overflow: visible; width: 395px; height: 57px; line-height: 30px; margin-top: -5px; text-align: left; font-family: Nunito Sans; font-style: normal; font-weight: normal; font-size: 20px; color: rgba(255,255,255,1); } #About_us__Products__Group_Comp { left: 201px; top: 2924px; position: absolute; overflow: visible; width: 301px; height: 300px; line-height: 50px; margin-top: -12.5px; text-align: left; font-family: Segoe UI; font-style: normal; font-weight: normal; font-size: 25px; color: rgba(255,255,255,1); } #Puzzles_Story-books_Practice-T { left: 987px; top: 2711px; position: absolute; overflow: visible; width: 159px; height: 434px; line-height: 50px; margin-top: -12.5px; text-align: left; font-family: Nunito Sans; font-style: normal; font-weight: normal; font-size: 25px; color: rgba(255,255,255,1); } #Playgroup_Nursery_LKG_UKG_Clas { left: 1289px; top: 2711px; position: absolute; overflow: visible; width: 115px; height: 434px; line-height: 50px; margin-top: -12.5px; text-align: left; font-family: Nunito Sans; font-style: normal; font-weight: normal; font-size: 25px; color: rgba(255,255,255,1); } #Instagrm_Twitter_Facebook_Tumb { left: 1572px; top: 2711px; position: absolute; overflow: visible; width: 113px; height: 384px; line-height: 50px; margin-top: -12.5px; text-align: left; font-family: Nunito Sans; font-style: normal; font-weight: normal; font-size: 25px; color: rgba(255,255,255,1); }
src/index.css
.mediaViewInfo { --web-view-name: Web 1920 – 1; --web-view-id: Web_1920__1; --web-scale-on-resize: true; --web-enable-deep-linking: true; } :root { --web-view-ids: Web_1920__1; } * { margin: 0; padding: 0; box-sizing: border-box; border: none; } #Web_1920__1 { position: absolute; width: 1920px; height: 3361px; background-color: rgba(77,161,250,1); overflow: hidden; --web-view-name: Web 1920 – 1; --web-view-id: Web_1920__1; --web-scale-on-resize: true; --web-enable-deep-linking: true; } #Toonofy-Logo_1 { position: absolute; width: 224.5px; height: 45.1px; left: 135px; top: 37.59px; overflow: visible; } #HOME { left: 1125px; top: 48px; position: absolute; overflow: visible; width: 59px; height: 27px; text-align: center; font-family: Segoe UI; font-style: normal; font-weight: normal; font-size: 20px; color: rgba(0,82,170,1); } #OLYMPIADS { left: 1226px; top: 48px; position: absolute; overflow: visible; width: 109px; height: 27px; text-align: center; font-family: Segoe UI; font-style: normal; font-weight: normal; font-size: 20px; color: rgba(0,82,170,1); } #YLP { left: 1375px; top: 48px; position: absolute; overflow: visible; width: 33px; height: 27px; text-align: left; font-family: Segoe UI; font-style: normal; font-weight: normal; font-size: 20px; color: rgba(255,255,255,1); } #WORKSHEETS { left: 1450px; top: 48px; position: absolute; overflow: visible; width: 125px; height: 27px; text-align: center; font-family: Segoe UI; font-style: normal; font-weight: normal; font-size: 20px; color: rgba(0,82,170,1); } #VIDEOS { left: 1617px; top: 48px; position: absolute; overflow: visible; width: 69px; height: 27px; text-align: center; font-family: Segoe UI; font-style: normal; font-weight: normal; font-size: 20px; color: rgba(0,82,170,1); } #LOGIN { left: 1728px; top: 48px; position: absolute; overflow: visible; width: 59px; height: 27px; text-align: center; font-family: Segoe UI; font-style: normal; font-weight: normal; font-size: 20px; color: rgba(0,82,170,1); } #Know_why_parents_love_our_Year { left: 335px; top: 143px; position: absolute; overflow: visible; width: 1251px; height: 79px; text-align: left; font-family: Nunito Sans; font-style: normal; font-weight: normal; font-size: 58px; color: rgba(228,228,228,1); } #map-animation-800x600-phone-00_r { position: absolute; width: 1651px; height: 763px; left: 135px; top: 245px; overflow: visible; } #map-animation-800x600-phone-00_p { position: absolute; width: 1651px; height: 763px; left: 135px; top: 245px; overflow: visible; } #map-animation-800x600-phone-00_r { position: absolute; width: 1651px; height: 763px; left: 135px; top: 245px; overflow: visible; } #map-animation-800x600-phone-00_r { position: absolute; width: 1651px; height: 763px; left: 135px; top: 245px; overflow: visible; } #Icon_ionic-logo-youtube { fill: rgba(252,34,34,1); } .Icon_ionic-logo-youtube { filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.161)); overflow: visible; position: absolute; width: 176.22px; height: 132.81px; left: 887px; top: 575px; transform: matrix(1,0,0,1,0,0); } #Have_an_unlimited_access_to_ou { left: 219px; top: 1080px; position: absolute; overflow: visible; width: 1483px; height: 79px; line-height: 75px; margin-top: -8.5px; text-align: center; font-family: Nunito Sans; font-style: normal; font-weight: normal; font-size: 58px; color: rgba(228,228,228,1); } #Path_1 { fill: rgba(52,133,214,1); stroke: rgba(114,187,255,1); stroke-width: 1px; stroke-linejoin: miter; stroke-linecap: butt; stroke-miterlimit: 4; shape-rendering: auto; } .Path_1 { overflow: visible; position: absolute; width: 1651px; height: 1229px; left: 135px; top: 1182px; transform: matrix(1,0,0,1,0,0); } #Group_340 { position: absolute; width: 124.849px; height: 124px; left: 331px; top: 1325px; overflow: visible; } #SYLLABUS { left: 319px; top: 1461px; position: absolute; overflow: visible; width: 143px; height: 35px; line-height: 65px; margin-top: -19.5px; text-align: center; font-family: Nunito Sans; font-style: normal; font-weight: bold; font-size: 26px; color: rgba(228,228,228,1); letter-spacing: 0.012999999523162841px; } #Group_341 { position: absolute; width: 124.29px; height: 124.29px; left: 618px; top: 1325px; overflow: visible; } #CLASS { left: 631.61px; top: 1460.85px; position: absolute; overflow: visible; width: 91px; height: 35px; line-height: 65px; margin-top: -19.5px; text-align: left; font-family: Nunito Sans; font-style: normal; font-weight: bold; font-size: 26px; color: rgba(228,228,228,1); letter-spacing: 0.012999999523162841px; } #Group_341_1 { position: absolute; width: 124px; height: 124px; left: 926.57px; top: 1325px; overflow: visible; } #OLYMPIADS_ { left: 900px; top: 1461px; position: absolute; overflow: visible; width: 161px; height: 35px; line-height: 65px; margin-top: -19.5px; text-align: center; font-family: Nunito Sans; font-style: normal; font-weight: bold; font-size: 26px; color: rgba(0,90,178,1); letter-spacing: 0.012999999523162841px; } #Group_341_2 { position: absolute; width: 124.29px; height: 124.29px; left: 331.11px; top: 1582.13px; overflow: visible; } #POSTERS { left: 323px; top: 1717.97px; position: absolute; overflow: visible; width: 129px; height: 35px; line-height: 65px; margin-top: -19.5px; text-align: center; font-family: Nunito Sans; font-style: normal; font-weight: bold; font-size: 26px; color: rgba(0,90,178,1); letter-spacing: 0.012999999523162841px; } #Group_591 { position: absolute; width: 195.562px; height: 170.87px; left: 580px; top: 1582.13px; overflow: visible; } #Group_592 { position: absolute; width: 124.718px; height: 123.87px; left: 921px; top: 1582.13px; overflow: visible; } #GAMES { left: 931.21px; top: 1718px; position: absolute; overflow: visible; width: 99px; height: 35px; line-height: 65px; margin-top: -19.5px; text-align: center; font-family: Nunito Sans; font-style: normal; font-weight: bold; font-size: 26px; color: rgba(0,90,178,1); letter-spacing: 0.012999999523162841px; } #Group_341_3 { position: absolute; width: 117.12px; height: 117.12px; left: 332.39px; top: 1839.25px; overflow: visible; } #STORY_BOOKS { left: 289px; top: 1975.1px; position: absolute; overflow: visible; width: 197px; height: 35px; line-height: 65px; margin-top: -19.5px; text-align: center; font-family: Nunito Sans; font-style: normal; font-weight: normal; font-size: 26px; color: rgba(0,90,178,1); letter-spacing: 0.012999999523162841px; } #Group_340_1 { position: absolute; width: 124.62px; height: 124.62px; left: 621px; top: 1839.38px; overflow: visible; } #MOCK_TEST { left: 599px; top: 1975px; position: absolute; overflow: visible; width: 159px; height: 35px; line-height: 65px; margin-top: -19.5px; text-align: center; font-family: Nunito Sans; font-style: normal; font-weight: bold; font-size: 26px; color: rgba(0,90,178,1); letter-spacing: 0.012999999523162841px; } #Group_592_1 { position: absolute; width: 124.62px; height: 124.62px; left: 923.79px; top: 1839.38px; overflow: visible; } #WORKBOOKS { left: 887px; top: 1975px; position: absolute; overflow: visible; width: 187px; height: 35px; line-height: 65px; margin-top: -19.5px; text-align: center; font-family: Nunito Sans; font-style: normal; font-weight: bold; font-size: 26px; color: rgba(0,90,178,1); letter-spacing: 0.012999999523162841px; } #Group_777_1 { position: absolute; width: 124.29px; height: 124.29px; left: 329px; top: 2096.25px; overflow: visible; } #REMEDIAL_PLAN { left: 275px; top: 2232.1px; position: absolute; overflow: visible; width: 225px; height: 35px; line-height: 65px; margin-top: -19.5px; text-align: center; font-family: Nunito Sans; font-style: normal; font-weight: bold; font-size: 26px; color: rgba(0,90,178,1); letter-spacing: 0.012999999523162841px; } #MCQs { left: 638px; top: 2232px; position: absolute; overflow: visible; width: 77px; height: 35px; line-height: 65px; margin-top: -19.5px; text-align: left; font-family: Nunito Sans; font-style: normal; font-weight: bold; font-size: 26px; color: rgba(0,90,178,1); letter-spacing: 0.012999999523162841px; } #Group_340_2 { position: absolute; width: 124.62px; height: 124.62px; left: 619px; top: 2096.38px; overflow: visible; } #Group_592_2 { position: absolute; width: 124.62px; height: 124.62px; left: 923.79px; top: 2096.38px; overflow: visible; } #OLYMPIAD_BOOKS { left: 856px; top: 2232px; position: absolute; overflow: visible; width: 249px; height: 35px; line-height: 65px; margin-top: -19.5px; text-align: center; font-family: Nunito Sans; font-style: normal; font-weight: bold; font-size: 26px; color: rgba(0,90,178,1); letter-spacing: 0.012999999523162841px; } #Group_582 { position: absolute; width: 124.849px; height: 124px; left: 1221.79px; top: 1325px; overflow: visible; } #SUBJECTS { left: 1211px; top: 1461px; position: absolute; overflow: visible; width: 137px; height: 35px; line-height: 65px; margin-top: -19.5px; text-align: center; font-family: Nunito Sans; font-style: normal; font-weight: bold; font-size: 26px; color: rgba(0,90,178,1); letter-spacing: 0.012999999523162841px; } #Group_340_3 { position: absolute; width: 124.75px; height: 124.75px; left: 1221px; top: 1582.25px; overflow: visible; } #PUZZLES { left: 1218px; top: 1718px; position: absolute; overflow: visible; width: 123px; height: 35px; line-height: 65px; margin-top: -19.5px; text-align: center; font-family: Nunito Sans; font-style: normal; font-weight: bold; font-size: 26px; color: rgba(0,90,178,1); letter-spacing: 0.012999999523162841px; } #Group_341_4 { position: absolute; width: 124.62px; height: 124.62px; left: 1220px; top: 1839.38px; overflow: visible; } #NCERT { left: 1229px; top: 1975px; position: absolute; overflow: visible; width: 93px; height: 35px; line-height: 65px; margin-top: -19.5px; text-align: center; font-family: Nunito Sans; font-style: normal; font-weight: bold; font-size: 26px; color: rgba(0,90,178,1); letter-spacing: 0.012999999523162841px; } #Group_341_5 { position: absolute; width: 124.62px; height: 124.62px; left: 1224px; top: 2096.38px; overflow: visible; } #FLASHCARDS { left: 1185px; top: 2232px; position: absolute; overflow: visible; width: 189px; height: 35px; line-height: 65px; margin-top: -19.5px; text-align: center; font-family: Nunito Sans; font-style: normal; font-weight: normal; font-size: 26px; color: rgba(0,90,178,1); letter-spacing: 0.012999999523162841px; } #Group_340_4 { position: absolute; width: 124.718px; height: 123.87px; left: 1494px; top: 1325.13px; overflow: visible; } #WORKSHEETS_br { left: 1453px; top: 1461px; position: absolute; overflow: visible; width: 195px; height: 35px; line-height: 65px; margin-top: -19.5px; text-align: center; font-family: Nunito Sans; font-style: normal; font-weight: normal; font-size: 26px; color: rgba(0,90,178,1); letter-spacing: 0.012999999523162841px; } #Group_341_6 { position: absolute; width: 123.901px; height: 124.75px; left: 1495.57px; top: 1582.25px; overflow: visible; } #PRACTISE { left: 1482px; top: 1718px; position: absolute; overflow: visible; width: 137px; height: 35px; line-height: 65px; margin-top: -19.5px; text-align: left; font-family: Nunito Sans; font-style: normal; font-weight: bold; font-size: 26px; color: rgba(0,90,178,1); letter-spacing: 0.012999999523162841px; } #Group_341_7 { position: absolute; width: 124.29px; height: 124.29px; left: 1493.9px; top: 1839.38px; overflow: visible; } #REPORTS { left: 1486px; top: 1975.23px; position: absolute; overflow: visible; width: 129px; height: 35px; line-height: 65px; margin-top: -19.5px; text-align: center; font-family: Nunito Sans; font-style: normal; font-weight: bold; font-size: 26px; color: rgba(0,90,178,1); letter-spacing: 0.012999999523162841px; } #Group_592_3 { position: absolute; width: 124.75px; height: 124.75px; left: 1491px; top: 2096.25px; overflow: visible; } #VIDEOS_bx { left: 1496.21px; top: 2232px; position: absolute; overflow: visible; width: 105px; height: 35px; line-height: 65px; margin-top: -19.5px; text-align: left; font-family: Nunito Sans; font-style: normal; font-weight: bold; font-size: 26px; color: rgba(0,90,178,1); letter-spacing: 0.012999999523162841px; } #Rectangle_1 { fill: rgba(255,255,255,1); stroke: rgba(112,112,112,1); stroke-width: 1px; stroke-linejoin: miter; stroke-linecap: butt; stroke-miterlimit: 4; shape-rendering: auto; } .Rectangle_1 { position: absolute; overflow: visible; width: 1px; height: 6px; left: 15px; top: 2604px; } #Rectangle_2 { fill: rgba(129,190,255,1); } .Rectangle_2 { position: absolute; overflow: visible; width: 1920px; height: 3px; left: 0px; top: 2522px; } #Path_4 { fill: rgba(0,0,0,0); stroke: rgba(112,112,112,1); stroke-width: 1px; stroke-linejoin: miter; stroke-linecap: butt; stroke-miterlimit: 4; shape-rendering: auto; } .Path_4 { overflow: visible; position: absolute; width: 1px; height: 1px; left: 0px; top: 2522px; transform: matrix(1,0,0,1,0,0); } #Path_2 { fill: rgba(55,125,200,1); stroke: rgba(114,187,255,1); stroke-width: 1px; stroke-linejoin: miter; stroke-linecap: butt; stroke-miterlimit: 4; shape-rendering: auto; } .Path_2 { overflow: visible; position: absolute; width: 1651px; height: 632px; left: 135px; top: 2577px; transform: matrix(1,0,0,1,0,0); } #COMPANY { left: 201px; top: 2641px; position: absolute; overflow: visible; width: 113px; height: 27px; line-height: 50px; margin-top: -15px; text-align: left; font-family: Nunito Sans; font-style: normal; font-weight: bold; font-size: 20px; color: rgba(0,0,0,1); letter-spacing: 0.02px; } #RESOURCES { left: 781px; top: 2641px; position: absolute; overflow: visible; width: 137px; height: 27px; line-height: 50px; margin-top: -15px; text-align: left; font-family: Nunito Sans; font-style: normal; font-weight: bold; font-size: 20px; color: rgba(0,0,0,1); letter-spacing: 0.02px; } #CLASSES { left: 1289px; top: 2641px; position: absolute; overflow: visible; width: 102px; height: 27px; line-height: 50px; margin-top: -15px; text-align: left; font-family: Nunito Sans; font-style: normal; font-weight: bold; font-size: 20px; color: rgba(0,0,0,1); letter-spacing: 0.02px; } #SOCIAL { left: 1572px; top: 2641px; position: absolute; overflow: visible; width: 84px; height: 27px; text-align: left; font-family: Nunito Sans; font-style: normal; font-weight: bold; font-size: 20px; color: rgba(0,0,0,1); } #Syllabus_Olympiads_Subjects_Wo { left: 781px; top: 2711px; position: absolute; overflow: visible; width: 137px; height: 434px; line-height: 50px; margin-top: -12.5px; text-align: left; font-family: Nunito Sans; font-style: normal; font-weight: normal; font-size: 25px; color: rgba(255,255,255,1); } #Rectangle_3 { fill: rgba(129,190,255,1); } .Rectangle_3 { position: absolute; overflow: visible; width: 144px; height: 1px; left: 1568px; top: 2681px; } #Path_3 { fill: rgba(23,83,146,1); } .Path_3 { overflow: visible; position: absolute; width: 144px; height: 1px; left: 1568px; top: 2680px; transform: matrix(1,0,0,1,0,0); } #Rectangle_4 { fill: rgba(129,190,255,1); } .Rectangle_4 { position: absolute; overflow: visible; width: 144px; height: 1px; left: 1285px; top: 2682px; } #Rectangle_5 { fill: rgba(129,190,255,1); } .Rectangle_5 { position: absolute; overflow: visible; width: 364px; height: 1px; left: 777px; top: 2682px; } #Rectangle_6 { fill: rgba(129,190,255,1); } .Rectangle_6 { position: absolute; overflow: visible; width: 437px; height: 1px; left: 201px; top: 2682px; } #Rectangle_7 { fill: rgba(23,83,146,1); } .Rectangle_7 { position: absolute; overflow: visible; width: 144px; height: 1px; left: 1285px; top: 2681px; } #Rectangle_8 { fill: rgba(23,83,146,1); } .Rectangle_8 { position: absolute; overflow: visible; width: 437px; height: 1px; left: 201px; top: 2681px; } #Rectangle_9 { fill: rgba(23,83,146,1); } .Rectangle_9 { position: absolute; overflow: visible; width: 364px; height: 1px; left: 777px; top: 2681px; } #Path_5 { fill: rgba(55,125,200,1); } .Path_5 { overflow: visible; position: absolute; width: 1920px; height: 3px; left: 0px; top: 2519px; transform: matrix(1,0,0,1,0,0); } #Toonofy-Logo2x { position: absolute; width: 135.884px; height: 27.54px; left: 201px; top: 2714.63px; overflow: visible; } #Animation_based_International_ { left: 201px; top: 2759px; position: absolute; overflow: visible; width: 395px; height: 57px; line-height: 30px; margin-top: -5px; text-align: left; font-family: Nunito Sans; font-style: normal; font-weight: normal; font-size: 20px; color: rgba(255,255,255,1); } #About_us__Products__Group_Comp { left: 201px; top: 2924px; position: absolute; overflow: visible; width: 301px; height: 300px; line-height: 50px; margin-top: -12.5px; text-align: left; font-family: Segoe UI; font-style: normal; font-weight: normal; font-size: 25px; color: rgba(255,255,255,1); } #Puzzles_Story-books_Practice-T { left: 987px; top: 2711px; position: absolute; overflow: visible; width: 159px; height: 434px; line-height: 50px; margin-top: -12.5px; text-align: left; font-family: Nunito Sans; font-style: normal; font-weight: normal; font-size: 25px; color: rgba(255,255,255,1); } #Playgroup_Nursery_LKG_UKG_Clas { left: 1289px; top: 2711px; position: absolute; overflow: visible; width: 115px; height: 434px; line-height: 50px; margin-top: -12.5px; text-align: left; font-family: Nunito Sans; font-style: normal; font-weight: normal; font-size: 25px; color: rgba(255,255,255,1); } #Instagrm_Twitter_Facebook_Tumb { left: 1572px; top: 2711px; position: absolute; overflow: visible; width: 113px; height: 384px; line-height: 50px; margin-top: -12.5px; text-align: left; font-family: Nunito Sans; font-style: normal; font-weight: normal; font-size: 25px; color: rgba(255,255,255,1); }
0.529263
0.058615
.contenedor_padre{ margin: 2em 4em ; background: rgba(254, 205, 7, 0.19); } ._titulo_{ text-align: center; } .contenedor_seccion7{ display: grid; grid-template-columns: 240px 20px 290px 240px 20px 290px; } .col_3_aux{ display: flex; flex-direction: column; margin-left: 2em; margin-top: 1em; } .col_3_aux input{ height: 25px; margin-top: 4px; } .col_2{ margin-top: 1em; } .col_1{ display: flex; flex-direction: column; margin: 1em 0 0 5em ; } .col_2 input{ height: 25px; } .col_1 label { height: 25px; margin-top: 4px; } .fila{ display: flex; margin: 1em 7em 0 5em; padding-bottom: 1em; } .fila label{ margin-right: 10px; } .fila input{ width: 100%; } /* un grid */ .contenedor_5filas{ display: grid; /* ancho filas */ grid-template-rows: 55px 260px 390px 65px; /* grid-template-rows: 55px 240px 390px 65px; */ margin: 2em 4em; padding: .2em .2em; background: rgba(254, 205, 7, 0.19); } .subtitulos_materiales{ display: flex; flex-direction: column; } .subtitulos_materiales_3cols{ display: grid; /* ancho columnas subtitulos materiales */ grid-template-columns: 150px 100px 220px; } .fila_1{ display: grid; /* ancho columnas titulos */ grid-template-columns: 250px 300px 450px 1fr; } .fila_1 label{ margin: auto; } .fila_2{ display: grid; /* ancho columnas contenido */ grid-template-columns: 250px 1fr; justify-content: space-evenly ; } .fila2_col{ display: grid; grid-template-columns: 340px 1fr 1fr; } .fila2_col3{ display: grid; /* ancho de columnas madera aluminio otro */ grid-template-columns: 110px 110px 180px; justify-content: space-evenly; } select{ width: 200px; height: 25px; /* margin: 0 auto; */ } .fila2_col3 input[type='number']{ width: 80px; margin: 2px 0; } .col2_fila2{ display: flex; flex-direction: column; } .col2_fila2 label{ margin: 2px 0; height: 25px; } .label_ambiente{ margin: auto; } .fila2_col4_col-3,.fila2_col4_col-2, .fila2_col4_col-1, .fila_2_col4{ display: flex; flex-direction: column; } .fila_2_col4 select{ height: 25px; margin: 2px 0; } .fila2_col4_col-3 input[type=text]{ height: 25px; width: 160px; margin: 2px 0; } /* -----------Seccion salud------------------------ */ .contenedor_pregunta_7-3{ background: rgba(254, 205, 7, 0.19); margin: 2em 4em; } .dos_columnas{ display: grid; grid-template-columns: 510px 500px; justify-content: center; gap: 3em; } .seis_filas{ display: flex; flex-direction: column; } ._3col{ display: grid; grid-template-columns: 220px 20px .5fr; margin: auto 0; } .seis_filas label{ margin: 0 auto; } /* .col_1 ._3col_c{ margin-bottom: 1px 0; } */
public/css/seccion7.css
.contenedor_padre{ margin: 2em 4em ; background: rgba(254, 205, 7, 0.19); } ._titulo_{ text-align: center; } .contenedor_seccion7{ display: grid; grid-template-columns: 240px 20px 290px 240px 20px 290px; } .col_3_aux{ display: flex; flex-direction: column; margin-left: 2em; margin-top: 1em; } .col_3_aux input{ height: 25px; margin-top: 4px; } .col_2{ margin-top: 1em; } .col_1{ display: flex; flex-direction: column; margin: 1em 0 0 5em ; } .col_2 input{ height: 25px; } .col_1 label { height: 25px; margin-top: 4px; } .fila{ display: flex; margin: 1em 7em 0 5em; padding-bottom: 1em; } .fila label{ margin-right: 10px; } .fila input{ width: 100%; } /* un grid */ .contenedor_5filas{ display: grid; /* ancho filas */ grid-template-rows: 55px 260px 390px 65px; /* grid-template-rows: 55px 240px 390px 65px; */ margin: 2em 4em; padding: .2em .2em; background: rgba(254, 205, 7, 0.19); } .subtitulos_materiales{ display: flex; flex-direction: column; } .subtitulos_materiales_3cols{ display: grid; /* ancho columnas subtitulos materiales */ grid-template-columns: 150px 100px 220px; } .fila_1{ display: grid; /* ancho columnas titulos */ grid-template-columns: 250px 300px 450px 1fr; } .fila_1 label{ margin: auto; } .fila_2{ display: grid; /* ancho columnas contenido */ grid-template-columns: 250px 1fr; justify-content: space-evenly ; } .fila2_col{ display: grid; grid-template-columns: 340px 1fr 1fr; } .fila2_col3{ display: grid; /* ancho de columnas madera aluminio otro */ grid-template-columns: 110px 110px 180px; justify-content: space-evenly; } select{ width: 200px; height: 25px; /* margin: 0 auto; */ } .fila2_col3 input[type='number']{ width: 80px; margin: 2px 0; } .col2_fila2{ display: flex; flex-direction: column; } .col2_fila2 label{ margin: 2px 0; height: 25px; } .label_ambiente{ margin: auto; } .fila2_col4_col-3,.fila2_col4_col-2, .fila2_col4_col-1, .fila_2_col4{ display: flex; flex-direction: column; } .fila_2_col4 select{ height: 25px; margin: 2px 0; } .fila2_col4_col-3 input[type=text]{ height: 25px; width: 160px; margin: 2px 0; } /* -----------Seccion salud------------------------ */ .contenedor_pregunta_7-3{ background: rgba(254, 205, 7, 0.19); margin: 2em 4em; } .dos_columnas{ display: grid; grid-template-columns: 510px 500px; justify-content: center; gap: 3em; } .seis_filas{ display: flex; flex-direction: column; } ._3col{ display: grid; grid-template-columns: 220px 20px .5fr; margin: auto 0; } .seis_filas label{ margin: 0 auto; } /* .col_1 ._3col_c{ margin-bottom: 1px 0; } */
0.521227
0.220059
.header { width: 1230px; margin: 0 auto; height: 96px; } .header > #mallLogo { float: left; padding-top: 28px; width: 280px; height: 64px; line-height: 64px; position: relative; } #mallLogo > a { position: relative; display: block; width: 190px; height: 30px; overflow: hidden; } #mallLogo img { width: 190px; height: 28px; cursor: pointer; vertical-align: top; } .header > .shopSearchHeader { float: right; overflow: hidden; width: 597px; padding-top: 25px; } .shopSearchHeader > form { border: solid #ff0036; border-width: 3px 0 3px 3px; } .shopSearchHeader > form > .shopSearchInput { position: relative; height: 30px; font-family: Arial, serif; } input::-webkit-input-placeholder { /* WebKit browsers*/ font-weight: normal; } input:-moz-placeholder { /* Mozilla Firefox 4 to 18*/ font-weight: normal; } input::-moz-placeholder { /* Mozilla Firefox 19+*/ font-weight: normal; } input:-ms-input-placeholder { /* Internet Explorer 10+*/ font-weight: normal; } .shopSearchInput > .searchInput { font-size: 12px; color: #000; width: 496px; height: 20px; line-height: 20px; padding: 5px 3px 5px 5px; border: none; font-weight: 900; outline: none; float: left; } .shopSearchInput > .searchBtn { width: 90px; height: 30px; font-size: 16px; cursor: pointer; color: #ffffff; background-color: #FF0036; overflow: hidden; border: 0; font-family: Arial, serif; float: left; } .content { width: 1230px; margin: auto; min-height: 400px; padding-bottom: 60px; color: #666; } .content > .take-delivery { margin-top: 10px; } .take-delivery > .summary-status { background: url(../../images/fore/WebsiteImage/T13iv.XiFdXXa94Hfd-32-32.png) no-repeat scroll 30px 30px transparent; padding: 27px 20px 27px 76px; border: 1px solid #e5e5e5; margin-bottom: 10px; color: #333; font-family: Arial, serif; } .summary-status > h2 { font-size: 14px; height: 40px; line-height: 40px; font-weight: bold; } .summary-status > .successInfo { margin-left: -46px; padding: 0 0 27px 46px; } .successInfo > .info-rate-coin { padding: 6px 0 0 16px; } .info-rate-coin > li { list-style: disc; padding-left: 10px; font-size: 12px; } .info-rate-coin > li > .J_makePoint { display: block; margin: 8px 0; width: 326px; min-height: 100px; max-height: 120px; overflow: hidden; padding: 8px; border: 2px solid #efece8; background: #fcfaf9; text-align: left; text-decoration: none; color: #666; } .J_makePoint > img { float: left; margin-right: 10px; } .J_makePoint > p { margin: 7px 0 10px; height: 48px; overflow: hidden; text-overflow: ellipsis; } .J_makePoint > span { padding: 0 22px; height: 30px; line-height: 30px; font-size: 14px; font-weight: 700; background-color: #950b00; display: inline-block; cursor: pointer; color: white; border-radius: 3px; } .summary-status > p { font-size: 12px; }
src/main/webapp/res/css/fore/fore_orderSuccessPage.css
.header { width: 1230px; margin: 0 auto; height: 96px; } .header > #mallLogo { float: left; padding-top: 28px; width: 280px; height: 64px; line-height: 64px; position: relative; } #mallLogo > a { position: relative; display: block; width: 190px; height: 30px; overflow: hidden; } #mallLogo img { width: 190px; height: 28px; cursor: pointer; vertical-align: top; } .header > .shopSearchHeader { float: right; overflow: hidden; width: 597px; padding-top: 25px; } .shopSearchHeader > form { border: solid #ff0036; border-width: 3px 0 3px 3px; } .shopSearchHeader > form > .shopSearchInput { position: relative; height: 30px; font-family: Arial, serif; } input::-webkit-input-placeholder { /* WebKit browsers*/ font-weight: normal; } input:-moz-placeholder { /* Mozilla Firefox 4 to 18*/ font-weight: normal; } input::-moz-placeholder { /* Mozilla Firefox 19+*/ font-weight: normal; } input:-ms-input-placeholder { /* Internet Explorer 10+*/ font-weight: normal; } .shopSearchInput > .searchInput { font-size: 12px; color: #000; width: 496px; height: 20px; line-height: 20px; padding: 5px 3px 5px 5px; border: none; font-weight: 900; outline: none; float: left; } .shopSearchInput > .searchBtn { width: 90px; height: 30px; font-size: 16px; cursor: pointer; color: #ffffff; background-color: #FF0036; overflow: hidden; border: 0; font-family: Arial, serif; float: left; } .content { width: 1230px; margin: auto; min-height: 400px; padding-bottom: 60px; color: #666; } .content > .take-delivery { margin-top: 10px; } .take-delivery > .summary-status { background: url(../../images/fore/WebsiteImage/T13iv.XiFdXXa94Hfd-32-32.png) no-repeat scroll 30px 30px transparent; padding: 27px 20px 27px 76px; border: 1px solid #e5e5e5; margin-bottom: 10px; color: #333; font-family: Arial, serif; } .summary-status > h2 { font-size: 14px; height: 40px; line-height: 40px; font-weight: bold; } .summary-status > .successInfo { margin-left: -46px; padding: 0 0 27px 46px; } .successInfo > .info-rate-coin { padding: 6px 0 0 16px; } .info-rate-coin > li { list-style: disc; padding-left: 10px; font-size: 12px; } .info-rate-coin > li > .J_makePoint { display: block; margin: 8px 0; width: 326px; min-height: 100px; max-height: 120px; overflow: hidden; padding: 8px; border: 2px solid #efece8; background: #fcfaf9; text-align: left; text-decoration: none; color: #666; } .J_makePoint > img { float: left; margin-right: 10px; } .J_makePoint > p { margin: 7px 0 10px; height: 48px; overflow: hidden; text-overflow: ellipsis; } .J_makePoint > span { padding: 0 22px; height: 30px; line-height: 30px; font-size: 14px; font-weight: 700; background-color: #950b00; display: inline-block; cursor: pointer; color: white; border-radius: 3px; } .summary-status > p { font-size: 12px; }
0.446977
0.125199
.centerAligned tr th, .centerAligned tr td { text-align: center } .centerAlign { width: auto } .splitBox2 { float: left; width: 100% } * { box-sizing: border-box; } .rowA { display: -ms-flexbox; /* IE10 */ display: flex; -ms-flex-wrap: wrap; /* IE10 */ flex-wrap: wrap; margin: 0 -16px; } .col-25 { -ms-flex: 25%; /* IE10 */ flex: 25%; padding: 30px; } .column50 { -ms-flex: 50%; /* IE10 */ flex: 50%; padding: 30px; } .col-75 { -ms-flex: 75%; /* IE10 */ flex: 75%; padding: 30px; } .col-25, .col-50, .col-75 { padding: 0 16px; } .select-css { display: block; font-size: 16px; font-family: sans-serif; font-weight: 700; color: #444; line-height: 1.3; padding: .6em 1.4em .5em .8em; width: 100%; max-width: 100%; box-sizing: border-box; margin: 0; border: 1px solid #aaa; box-shadow: 0 1px 0 1px rgba(0,0,0,.04); border-radius: .5em; -moz-appearance: none; -webkit-appearance: none; appearance: none; background-color: #fff; background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E'), linear-gradient(to bottom, #ffffff 0%,#e5e5e5 100%); background-repeat: no-repeat, repeat; background-position: right .7em top 50%, 0 0; background-size: .65em auto, 100%; } .select-css::-ms-expand { display: none; } .select-css:hover { border-color: #888; } .select-css:focus { border-color: #aaa; box-shadow: 0 0 1px 3px rgba(59, 153, 252, .7); box-shadow: 0 0 0 3px -moz-mac-focusring; color: #222; outline: none; } .select-css option { font-weight:normal; } .container { padding: 5px 20px 15px 20px; } input[type=text] { width: 100%; margin-bottom: 20px; padding: 12px; border: 1px solid #ccc; border-radius: 3px; } label { margin-bottom: 10px; display: block; } .icon-container { margin-bottom: 20px; padding: 7px 0; font-size: 24px; } .btn { background-color: #4CAF50; color: white; padding: 12px; margin: 10px 0; border: none; width: 100%; border-radius: 3px; cursor: pointer; font-size: 17px; } .btn:hover { background-color: #45a049; } * { box-sizing: border-box; } a { color: #2196F3; } hr { border: 1px solid lightgrey; } span.price { float: right; color: grey; } /* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other (also change the direction - make the "cart" column go on top) */ @media (max-width: 800px) { .rowA { flex-direction: column; } .col-25 { margin-bottom: 20px; } } .modal { display: none; /* Hidden by default */ position: fixed; /* Stay in place */ z-index: 1; /* Sit on top */ padding-top: 100px; /* Location of the box */ left: 0; top: 0; width: 100%; /* Full width */ height: 100%; /* Full height */ overflow: auto; /* Enable scroll if needed */ background-color: rgb(0,0,0); /* Fallback color */ background-color: rgba(0,0,0,0.4); /* Black w/ opacity */ } /* Modal Content */ .modal-content { position: relative; background-color: #fefefe; margin: auto; padding: 0; border: 1px solid #888; width: 80%; max-width: 650px; box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19); -webkit-animation-name: animatetop; -webkit-animation-duration: 0.4s; animation-name: animatetop; animation-duration: 0.4s } /* Add Animation */ @-webkit-keyframes animatetop { from {top:-300px; opacity:0} to {top:0; opacity:1} } @keyframes animatetop { from {top:-300px; opacity:0} to {top:0; opacity:1} } /* The Close Button */ .close { color: white; float: right; font-size: 28px; font-weight: bold; } .modal-header { padding: 2px 16px; background-color:#f1b764; color: white; } .modal-body { margin:0px 20px; padding: 16px 16px;} @media (min-width:801px) { .splitBox2 { width: 33.33333% }} .flex-container { display: flex; flex-flow: row wrap; background-color: #000000 } .flex-container > div { background-color: #f1f1f1; width: 100px; margin: 10px; text-align: center; line-height: 75px; font-size: 30px; } .whiteBox { color: #000 !important; background-color: #fff !important } .bottomMargin { margin-bottom: 16px !important } .centerAlign { text-align: center !important } .contentBox { margin-left: auto; margin-right: auto; justify-content: center; } .contentBox { max-width: 980px } .dpMiddleAlign { position: absolute; left: 50%; bottom: 0; transform: translate(-50%, 0%); -ms-transform: translate(-50%, 0%) } .container{ padding: 0.01em 12px } .container:after, .container:before { content: ""; display: table; clear: both } .whiteText { color: #fff !important } .padding32px { padding-top: 32px !important; padding-bottom: 32px !important } .hidden { display: none !important } .wideSpacing { letter-spacing: 4px } .opacitySetting { opacity: 0.60 } .opacitySetting-off { opacity: 1 } .opacitySetting-max { opacity: 0.25 } .LargeFont { font-size: 24px !important } .GrayColor { color: #000 !important; background-color: #f1f1f1 !important } .padding64px { padding-top: 64px !important; padding-bottom: 64px !important } .opacitySetting-min { opacity: 0.75 } .justifyText { text-align: justify !important }
myStyle.css
.centerAligned tr th, .centerAligned tr td { text-align: center } .centerAlign { width: auto } .splitBox2 { float: left; width: 100% } * { box-sizing: border-box; } .rowA { display: -ms-flexbox; /* IE10 */ display: flex; -ms-flex-wrap: wrap; /* IE10 */ flex-wrap: wrap; margin: 0 -16px; } .col-25 { -ms-flex: 25%; /* IE10 */ flex: 25%; padding: 30px; } .column50 { -ms-flex: 50%; /* IE10 */ flex: 50%; padding: 30px; } .col-75 { -ms-flex: 75%; /* IE10 */ flex: 75%; padding: 30px; } .col-25, .col-50, .col-75 { padding: 0 16px; } .select-css { display: block; font-size: 16px; font-family: sans-serif; font-weight: 700; color: #444; line-height: 1.3; padding: .6em 1.4em .5em .8em; width: 100%; max-width: 100%; box-sizing: border-box; margin: 0; border: 1px solid #aaa; box-shadow: 0 1px 0 1px rgba(0,0,0,.04); border-radius: .5em; -moz-appearance: none; -webkit-appearance: none; appearance: none; background-color: #fff; background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E'), linear-gradient(to bottom, #ffffff 0%,#e5e5e5 100%); background-repeat: no-repeat, repeat; background-position: right .7em top 50%, 0 0; background-size: .65em auto, 100%; } .select-css::-ms-expand { display: none; } .select-css:hover { border-color: #888; } .select-css:focus { border-color: #aaa; box-shadow: 0 0 1px 3px rgba(59, 153, 252, .7); box-shadow: 0 0 0 3px -moz-mac-focusring; color: #222; outline: none; } .select-css option { font-weight:normal; } .container { padding: 5px 20px 15px 20px; } input[type=text] { width: 100%; margin-bottom: 20px; padding: 12px; border: 1px solid #ccc; border-radius: 3px; } label { margin-bottom: 10px; display: block; } .icon-container { margin-bottom: 20px; padding: 7px 0; font-size: 24px; } .btn { background-color: #4CAF50; color: white; padding: 12px; margin: 10px 0; border: none; width: 100%; border-radius: 3px; cursor: pointer; font-size: 17px; } .btn:hover { background-color: #45a049; } * { box-sizing: border-box; } a { color: #2196F3; } hr { border: 1px solid lightgrey; } span.price { float: right; color: grey; } /* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other (also change the direction - make the "cart" column go on top) */ @media (max-width: 800px) { .rowA { flex-direction: column; } .col-25 { margin-bottom: 20px; } } .modal { display: none; /* Hidden by default */ position: fixed; /* Stay in place */ z-index: 1; /* Sit on top */ padding-top: 100px; /* Location of the box */ left: 0; top: 0; width: 100%; /* Full width */ height: 100%; /* Full height */ overflow: auto; /* Enable scroll if needed */ background-color: rgb(0,0,0); /* Fallback color */ background-color: rgba(0,0,0,0.4); /* Black w/ opacity */ } /* Modal Content */ .modal-content { position: relative; background-color: #fefefe; margin: auto; padding: 0; border: 1px solid #888; width: 80%; max-width: 650px; box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19); -webkit-animation-name: animatetop; -webkit-animation-duration: 0.4s; animation-name: animatetop; animation-duration: 0.4s } /* Add Animation */ @-webkit-keyframes animatetop { from {top:-300px; opacity:0} to {top:0; opacity:1} } @keyframes animatetop { from {top:-300px; opacity:0} to {top:0; opacity:1} } /* The Close Button */ .close { color: white; float: right; font-size: 28px; font-weight: bold; } .modal-header { padding: 2px 16px; background-color:#f1b764; color: white; } .modal-body { margin:0px 20px; padding: 16px 16px;} @media (min-width:801px) { .splitBox2 { width: 33.33333% }} .flex-container { display: flex; flex-flow: row wrap; background-color: #000000 } .flex-container > div { background-color: #f1f1f1; width: 100px; margin: 10px; text-align: center; line-height: 75px; font-size: 30px; } .whiteBox { color: #000 !important; background-color: #fff !important } .bottomMargin { margin-bottom: 16px !important } .centerAlign { text-align: center !important } .contentBox { margin-left: auto; margin-right: auto; justify-content: center; } .contentBox { max-width: 980px } .dpMiddleAlign { position: absolute; left: 50%; bottom: 0; transform: translate(-50%, 0%); -ms-transform: translate(-50%, 0%) } .container{ padding: 0.01em 12px } .container:after, .container:before { content: ""; display: table; clear: both } .whiteText { color: #fff !important } .padding32px { padding-top: 32px !important; padding-bottom: 32px !important } .hidden { display: none !important } .wideSpacing { letter-spacing: 4px } .opacitySetting { opacity: 0.60 } .opacitySetting-off { opacity: 1 } .opacitySetting-max { opacity: 0.25 } .LargeFont { font-size: 24px !important } .GrayColor { color: #000 !important; background-color: #f1f1f1 !important } .padding64px { padding-top: 64px !important; padding-bottom: 64px !important } .opacitySetting-min { opacity: 0.75 } .justifyText { text-align: justify !important }
0.330471
0.128607
@charset "UTF-8"; /* type */ /* colors */ /* responsive media queries */ @media (min-width: 768px) { .id7-right-border { background-image: url("/static-files/images/rhsborder-greyshafts.jpg"); } } @media (min-width: 768px) { .id7-left-border { background-image: url("/static-files/images/lhsborder-greyshafts.jpg"); } } .id7-utility-masthead { background-image: url("/static-files/images/masthead_1170x110_pg_business.jpg"); } h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { color: #0b0c0c; } a, a:link, a:visited { color: #197b96; } a:hover, a:focus, a:active { color: #0a333f; } a:hover .new-window-link, a:hover .insecure-link { color: #0a333f; } a, a:link, a:visited { -webkit-text-decoration-color: #5ea3b5; text-decoration-color: #5ea3b5; } a:hover, a:focus, a:active { -webkit-text-decoration-color: #0a333f; text-decoration-color: #0a333f; } blockquote.quotes { color: #0a333f; } blockquote.quotes::before { color: #197b96; } .brand-bg { background: #197b96; color: white; } .brand-bg a, .brand-bg a:link, .brand-bg a:visited { color: white !important; } .brand-bg a:hover, .brand-bg a:focus, .brand-bg a:active { color: #ccc !important; } .brand-bg a:hover .new-window-link, .brand-bg a:hover .insecure-link { color: #ccc !important; } .brand-bg a, .brand-bg a:link, .brand-bg a:visited { -webkit-text-decoration-color: #fff !important; text-decoration-color: #fff !important; } .brand-bg a:hover, .brand-bg a:focus, .brand-bg a:active { -webkit-text-decoration-color: #ccc !important; text-decoration-color: #ccc !important; } .brand-text { color: #197b96; } .brand-text a, .brand-text a:link, .brand-text a:visited { color: #197b96 !important; } .brand-text a:hover, .brand-text a:focus, .brand-text a:active { color: #0a333f !important; } .brand-text a:hover .new-window-link, .brand-text a:hover .insecure-link { color: #0a333f !important; } .brand-text a, .brand-text a:link, .brand-text a:visited { -webkit-text-decoration-color: #5ea3b5 !important; text-decoration-color: #5ea3b5 !important; } .brand-text a:hover, .brand-text a:focus, .brand-text a:active { -webkit-text-decoration-color: #0a333f !important; text-decoration-color: #0a333f !important; } .brand-border { border-color: #197b96; } .btn-brand { color: white; background-color: #197b96; border-color: #156980; color: white !important; } .btn-brand:focus, .btn-brand.focus { color: white; background-color: #12576a; border-color: #030f13; } .btn-brand:hover { color: white; background-color: #12576a; border-color: #0d3e4c; } .btn-brand:active, .btn-brand.active, .open > .dropdown-toggle.btn-brand { color: white; background-color: #12576a; border-color: #0d3e4c; } .btn-brand:active:hover, .btn-brand.active:hover, .open > .dropdown-toggle.btn-brand:hover, .btn-brand:active:focus, .btn-brand.active:focus, .open > .dropdown-toggle.btn-brand:focus, .btn-brand:active.focus, .btn-brand.active.focus, .open > .dropdown-toggle.btn-brand.focus { color: white; background-color: #0d3e4c; border-color: #030f13; } .btn-brand:active, .btn-brand.active, .open > .dropdown-toggle.btn-brand { background-image: none; } .btn-brand.disabled:hover, .btn-brand[disabled]:hover, fieldset[disabled] .btn-brand:hover, .btn-brand.disabled:focus, .btn-brand[disabled]:focus, fieldset[disabled] .btn-brand:focus, .btn-brand.disabled.focus, .btn-brand[disabled].focus, fieldset[disabled] .btn-brand.focus { background-color: #197b96; border-color: #156980; } .btn-brand .badge { color: #197b96; background-color: white; } .btn-brand:not(.btn-link) { text-decoration: none; } .id7-utility-masthead { background-color: #5ea3b5; } .id7-utility-masthead::after { background-color: #197b96; } .id7-navigation .navbar-primary { background-color: #197b96; } .id7-navigation .navbar-primary.navbar-primary.navbar-wrapped > .navbar-nav > li { color: white; } .id7-navigation .navbar-primary.navbar-primary.navbar-wrapped > .navbar-nav > li.active, .id7-navigation .navbar-primary.navbar-primary.navbar-wrapped > .navbar-nav > li:hover { color: white; } .id7-navigation .navbar-primary .navbar-text { color: white; } .id7-navigation .navbar-primary .navbar-nav > li { color: white; } .id7-navigation .navbar-primary .navbar-nav > li:hover, .id7-navigation .navbar-primary .navbar-nav > li:focus { color: white; background-color: #146278; } .id7-navigation .navbar-primary .navbar-nav > li > a, .id7-navigation .navbar-primary .navbar-nav > li > a:hover, .id7-navigation .navbar-primary .navbar-nav > li > a:focus { color: inherit; background: none; } .id7-navigation .navbar-primary .navbar-nav > li.active.next-secondary::before { border-bottom-color: #5ea3b5; } .id7-navigation .navbar-primary .navbar-nav > li.active.next-tertiary::before { border-bottom-color: #f8f8f8; } .id7-navigation .navbar-primary .navbar-nav > li.active::before { border-bottom-color: #ffffff; } .id7-navigation .navbar-primary .navbar-nav > .disabled, .id7-navigation .navbar-primary .navbar-nav > .disabled:hover, .id7-navigation .navbar-primary .navbar-nav > .disabled:focus { color: white; background-color: #146278; } .id7-navigation .navbar-primary .navbar-toggle { border: none; color: white; } .id7-navigation .navbar-primary .navbar-toggle:hover, .id7-navigation .navbar-primary .navbar-toggle:focus { color: white; background: none; } .id7-navigation .navbar-primary .navbar-nav > .open, .id7-navigation .navbar-primary .navbar-nav > .open:hover, .id7-navigation .navbar-primary .navbar-nav > .open:focus { color: white; background-color: #146278; } .id7-navigation .navbar-primary .navbar-nav .dropdown-menu { background-color: #197b96; } .id7-navigation .navbar-primary .navbar-nav .dropdown-menu > .dropdown-header { border-color: #146278; } .id7-navigation .navbar-primary .navbar-nav .dropdown-menu .divider { background-color: #146278; } .id7-navigation .navbar-primary .navbar-nav .dropdown-menu > li > a { color: white; } .id7-navigation .navbar-primary .navbar-nav .dropdown-menu > li > a:hover, .id7-navigation .navbar-primary .navbar-nav .dropdown-menu > li > a:focus { color: white; background-color: #146278; } .id7-navigation .navbar-primary .navbar-nav .dropdown-menu > .active > a { background-color: #146278; } .id7-navigation .navbar-primary .navbar-nav .dropdown-menu > .active > a::before { border-bottom-color: #5ea3b5; } .id7-navigation .navbar-primary .navbar-nav .dropdown-menu > .disabled > a, .id7-navigation .navbar-primary .navbar-nav .dropdown-menu > .disabled > a:hover, .id7-navigation .navbar-primary .navbar-nav .dropdown-menu > .disabled > a:focus { color: white; background-color: #146278; } .id7-navigation .navbar-primary .navbar-link { color: white; } .id7-navigation .navbar-primary .navbar-link:hover { color: white; } .id7-navigation .navbar-primary .btn-link { color: white; } .id7-navigation .navbar-primary .btn-link:hover, .id7-navigation .navbar-primary .btn-link:focus { color: white; } .id7-navigation .navbar-primary .btn-link[disabled]:hover, fieldset[disabled] .id7-navigation .navbar-primary .btn-link:hover, .id7-navigation .navbar-primary .btn-link[disabled]:focus, fieldset[disabled] .id7-navigation .navbar-primary .btn-link:focus { color: white; } .navbar-primary .navbar-brand { background-color: #197b96; } .navbar-secondary { background-color: #5ea3b5; } .navbar-secondary.navbar-primary.navbar-wrapped > .navbar-nav > li { color: white; } .navbar-secondary.navbar-primary.navbar-wrapped > .navbar-nav > li.active, .navbar-secondary.navbar-primary.navbar-wrapped > .navbar-nav > li:hover { color: white; } .navbar-secondary .navbar-text { color: white; } .navbar-secondary .navbar-nav > li { color: white; } .navbar-secondary .navbar-nav > li:hover, .navbar-secondary .navbar-nav > li:focus { color: white; background-color: #4b8291; } .navbar-secondary .navbar-nav > li > a, .navbar-secondary .navbar-nav > li > a:hover, .navbar-secondary .navbar-nav > li > a:focus { color: inherit; background: none; } .navbar-secondary .navbar-nav > li.active.next-secondary::before { border-bottom-color: white; } .navbar-secondary .navbar-nav > li.active.next-tertiary::before { border-bottom-color: #f8f8f8; } .navbar-secondary .navbar-nav > li.active::before { border-bottom-color: #ffffff; } .navbar-secondary .navbar-nav > .disabled, .navbar-secondary .navbar-nav > .disabled:hover, .navbar-secondary .navbar-nav > .disabled:focus { color: white; background-color: #4b8291; } .navbar-secondary .navbar-toggle { border: none; color: white; } .navbar-secondary .navbar-toggle:hover, .navbar-secondary .navbar-toggle:focus { color: white; background: none; } .navbar-secondary .navbar-nav > .open, .navbar-secondary .navbar-nav > .open:hover, .navbar-secondary .navbar-nav > .open:focus { color: white; background-color: #4b8291; } .navbar-secondary .navbar-nav .dropdown-menu { background-color: #5ea3b5; } .navbar-secondary .navbar-nav .dropdown-menu > .dropdown-header { border-color: #4b8291; } .navbar-secondary .navbar-nav .dropdown-menu .divider { background-color: #4b8291; } .navbar-secondary .navbar-nav .dropdown-menu > li > a { color: white; } .navbar-secondary .navbar-nav .dropdown-menu > li > a:hover, .navbar-secondary .navbar-nav .dropdown-menu > li > a:focus { color: white; background-color: #4b8291; } .navbar-secondary .navbar-nav .dropdown-menu > .active > a { background-color: #4b8291; } .navbar-secondary .navbar-nav .dropdown-menu > .active > a::before { border-bottom-color: white; } .navbar-secondary .navbar-nav .dropdown-menu > .disabled > a, .navbar-secondary .navbar-nav .dropdown-menu > .disabled > a:hover, .navbar-secondary .navbar-nav .dropdown-menu > .disabled > a:focus { color: white; background-color: #4b8291; } .navbar-secondary .navbar-link { color: white; } .navbar-secondary .navbar-link:hover { color: white; } .navbar-secondary .btn-link { color: white; } .navbar-secondary .btn-link:hover, .navbar-secondary .btn-link:focus { color: white; } .navbar-secondary .btn-link[disabled]:hover, fieldset[disabled] .navbar-secondary .btn-link:hover, .navbar-secondary .btn-link[disabled]:focus, fieldset[disabled] .navbar-secondary .btn-link:focus { color: white; } .navbar-secondary .navbar-nav > li::after { color: #197b96; } .navbar-secondary .navbar-nav > li:first-child { background-color: #197b96; color: white; } .navbar-secondary .navbar-nav > li:first-child:hover::after { border-right-color: #197b96; } .navbar-secondary .navbar-nav > li:first-child::after { border-color: transparent transparent transparent #197b96; } .navbar-tertiary { background-color: #f8f8f8; } .navbar-tertiary.navbar-primary.navbar-wrapped > .navbar-nav > li { color: #383838; } .navbar-tertiary.navbar-primary.navbar-wrapped > .navbar-nav > li.active, .navbar-tertiary.navbar-primary.navbar-wrapped > .navbar-nav > li:hover { color: #383838; } .navbar-tertiary .navbar-text { color: #383838; } .navbar-tertiary .navbar-nav > li { color: #383838; } .navbar-tertiary .navbar-nav > li:hover, .navbar-tertiary .navbar-nav > li:focus { color: #383838; background-color: #c6c6c6; } .navbar-tertiary .navbar-nav > li > a, .navbar-tertiary .navbar-nav > li > a:hover, .navbar-tertiary .navbar-nav > li > a:focus { color: inherit; background: none; } .navbar-tertiary .navbar-nav > li.active.next-secondary::before { border-bottom-color: white; } .navbar-tertiary .navbar-nav > li.active.next-tertiary::before { border-bottom-color: #f8f8f8; } .navbar-tertiary .navbar-nav > li.active::before { border-bottom-color: #ffffff; } .navbar-tertiary .navbar-nav > .disabled, .navbar-tertiary .navbar-nav > .disabled:hover, .navbar-tertiary .navbar-nav > .disabled:focus { color: #383838; background-color: #c6c6c6; } .navbar-tertiary .navbar-toggle { border: none; color: #383838; } .navbar-tertiary .navbar-toggle:hover, .navbar-tertiary .navbar-toggle:focus { color: #383838; background: none; } .navbar-tertiary .navbar-nav > .open, .navbar-tertiary .navbar-nav > .open:hover, .navbar-tertiary .navbar-nav > .open:focus { color: #383838; background-color: #c6c6c6; } .navbar-tertiary .navbar-nav .dropdown-menu { background-color: #f8f8f8; } .navbar-tertiary .navbar-nav .dropdown-menu > .dropdown-header { border-color: #c6c6c6; } .navbar-tertiary .navbar-nav .dropdown-menu .divider { background-color: #c6c6c6; } .navbar-tertiary .navbar-nav .dropdown-menu > li > a { color: #383838; } .navbar-tertiary .navbar-nav .dropdown-menu > li > a:hover, .navbar-tertiary .navbar-nav .dropdown-menu > li > a:focus { color: #383838; background-color: #c6c6c6; } .navbar-tertiary .navbar-nav .dropdown-menu > .active > a { background-color: #c6c6c6; } .navbar-tertiary .navbar-nav .dropdown-menu > .active > a::before { border-bottom-color: white; } .navbar-tertiary .navbar-nav .dropdown-menu > .disabled > a, .navbar-tertiary .navbar-nav .dropdown-menu > .disabled > a:hover, .navbar-tertiary .navbar-nav .dropdown-menu > .disabled > a:focus { color: #383838; background-color: #c6c6c6; } .navbar-tertiary .navbar-link { color: #383838; } .navbar-tertiary .navbar-link:hover { color: #383838; } .navbar-tertiary .btn-link { color: #383838; } .navbar-tertiary .btn-link:hover, .navbar-tertiary .btn-link:focus { color: #383838; } .navbar-tertiary .btn-link[disabled]:hover, fieldset[disabled] .navbar-tertiary .btn-link:hover, .navbar-tertiary .btn-link[disabled]:focus, fieldset[disabled] .navbar-tertiary .btn-link:focus { color: #383838; } .bordered .id7-left-border, .bordered .id7-right-border { border-color: rgba(25, 123, 150, 0.3); } .id7-page-footer .id7-app-footer { background: #197b96; color: white; } .id7-page-footer .id7-app-footer h1, .id7-page-footer .id7-app-footer h2, .id7-page-footer .id7-app-footer h3, .id7-page-footer .id7-app-footer h4, .id7-page-footer .id7-app-footer h5, .id7-page-footer .id7-app-footer h6, .id7-page-footer .id7-app-footer .h1, .id7-page-footer .id7-app-footer .h2, .id7-page-footer .id7-app-footer .h3, .id7-page-footer .id7-app-footer .h4, .id7-page-footer .id7-app-footer .h5, .id7-page-footer .id7-app-footer .h6 { color: white; } .id7-page-footer .id7-app-footer a, .id7-page-footer .id7-app-footer a:link, .id7-page-footer .id7-app-footer a:visited { color: white; } .id7-page-footer .id7-app-footer a:hover, .id7-page-footer .id7-app-footer a:focus, .id7-page-footer .id7-app-footer a:active { color: #ccc; } .id7-page-footer .id7-app-footer a:hover .new-window-link, .id7-page-footer .id7-app-footer a:hover .insecure-link { color: #ccc; } .id7-page-footer .id7-app-footer a, .id7-page-footer .id7-app-footer a:link, .id7-page-footer .id7-app-footer a:visited { -webkit-text-decoration-color: #fff; text-decoration-color: #fff; } .id7-page-footer .id7-app-footer a:hover, .id7-page-footer .id7-app-footer a:focus, .id7-page-footer .id7-app-footer a:active { -webkit-text-decoration-color: #ccc; text-decoration-color: #ccc; } .id7-page-footer .id7-horizontal-divider .divider { stroke: #197b96; } .id7-page-footer.id7-footer-divider .id7-site-footer { background: white; } .id7-page-footer.id7-footer-divider .id7-app-footer .id7-logo-bleed::before, .id7-page-footer.id7-footer-divider .id7-app-footer .id7-logo-bleed::after { border-top-color: white; } .id7-page-footer.id7-footer-coloured .id7-site-footer { background: #d3d3d3; color: #383838; } .id7-page-footer.id7-footer-coloured .id7-site-footer h1, .id7-page-footer.id7-footer-coloured .id7-site-footer h2, .id7-page-footer.id7-footer-coloured .id7-site-footer h3, .id7-page-footer.id7-footer-coloured .id7-site-footer h4, .id7-page-footer.id7-footer-coloured .id7-site-footer h5, .id7-page-footer.id7-footer-coloured .id7-site-footer h6, .id7-page-footer.id7-footer-coloured .id7-site-footer .h1, .id7-page-footer.id7-footer-coloured .id7-site-footer .h2, .id7-page-footer.id7-footer-coloured .id7-site-footer .h3, .id7-page-footer.id7-footer-coloured .id7-site-footer .h4, .id7-page-footer.id7-footer-coloured .id7-site-footer .h5, .id7-page-footer.id7-footer-coloured .id7-site-footer .h6 { color: #383838; } .id7-page-footer.id7-footer-coloured .id7-site-footer a, .id7-page-footer.id7-footer-coloured .id7-site-footer a:link, .id7-page-footer.id7-footer-coloured .id7-site-footer a:visited { color: #383838; } .id7-page-footer.id7-footer-coloured .id7-site-footer a:hover, .id7-page-footer.id7-footer-coloured .id7-site-footer a:focus, .id7-page-footer.id7-footer-coloured .id7-site-footer a:active { color: #050505; } .id7-page-footer.id7-footer-coloured .id7-site-footer a:hover .new-window-link, .id7-page-footer.id7-footer-coloured .id7-site-footer a:hover .insecure-link { color: #050505; } .id7-page-footer.id7-footer-coloured .id7-site-footer a, .id7-page-footer.id7-footer-coloured .id7-site-footer a:link, .id7-page-footer.id7-footer-coloured .id7-site-footer a:visited { -webkit-text-decoration-color: #747474; text-decoration-color: #747474; } .id7-page-footer.id7-footer-coloured .id7-site-footer a:hover, .id7-page-footer.id7-footer-coloured .id7-site-footer a:focus, .id7-page-footer.id7-footer-coloured .id7-site-footer a:active { -webkit-text-decoration-color: #050505; text-decoration-color: #050505; } .id7-page-footer.id7-footer-coloured .id7-app-footer .id7-logo-bleed::before, .id7-page-footer.id7-footer-coloured .id7-app-footer .id7-logo-bleed::after { border-top-color: #d3d3d3; } .id7-search .fa { color: #197b96; color: rgba(25, 123, 150, 0.5); -webkit-transition: color .15s linear; transition: color .15s linear; } .id7-search .form-control:hover + .fa, .id7-search .twitter-typeahead:hover + .fa, .id7-search .fa:hover { color: #197b96; } .id7-search .twitter-typeahead .tt-suggestion:hover, .id7-search .twitter-typeahead .tt-suggestion:focus, .id7-search .twitter-typeahead .tt-suggestion.tt-cursor { cursor: pointer; background: #197b96; color: white; } .form-control:focus { border-color: #197b96; outline: 0; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(25, 123, 150, 0.6); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(25, 123, 150, 0.6); } .carousel .carousel-indicators li::after { color: #197b96; color: rgba(25, 123, 150, 0.3); } .carousel .carousel-indicators li.active::after { color: #197b96; } @media (max-width: 767px) { .boxstyle_.box1, .boxstyle-sm.box1 { padding: 20px; margin-left: -20px; margin-right: -20px; } } @media (max-width: 991px) { .boxstyle-md.box1 { padding: 20px; margin-left: -20px; margin-right: -20px; } } @media (max-width: 1199px) { .boxstyle-lg.box1 { padding: 20px; margin-left: -20px; margin-right: -20px; } } .boxstyle_.box1, .boxstyle-xs.box1, .boxstyle-sm.box1, .boxstyle-md.box1, .boxstyle-lg.box1 { border: 0; background: #dcebef; color: #383838; } @media print { .boxstyle_.box1, .boxstyle-xs.box1, .boxstyle-sm.box1, .boxstyle-md.box1, .boxstyle-lg.box1 { border: 1px solid #dcebef; } } .boxstyle_.box1 h1, .boxstyle-xs.box1 h1, .boxstyle-sm.box1 h1, .boxstyle-md.box1 h1, .boxstyle-lg.box1 h1, .boxstyle_.box1 h2, .boxstyle-xs.box1 h2, .boxstyle-sm.box1 h2, .boxstyle-md.box1 h2, .boxstyle-lg.box1 h2, .boxstyle_.box1 h3, .boxstyle-xs.box1 h3, .boxstyle-sm.box1 h3, .boxstyle-md.box1 h3, .boxstyle-lg.box1 h3, .boxstyle_.box1 h4, .boxstyle-xs.box1 h4, .boxstyle-sm.box1 h4, .boxstyle-md.box1 h4, .boxstyle-lg.box1 h4, .boxstyle_.box1 h5, .boxstyle-xs.box1 h5, .boxstyle-sm.box1 h5, .boxstyle-md.box1 h5, .boxstyle-lg.box1 h5, .boxstyle_.box1 h6, .boxstyle-xs.box1 h6, .boxstyle-sm.box1 h6, .boxstyle-md.box1 h6, .boxstyle-lg.box1 h6, .boxstyle_.box1 .h1, .boxstyle-xs.box1 .h1, .boxstyle-sm.box1 .h1, .boxstyle-md.box1 .h1, .boxstyle-lg.box1 .h1, .boxstyle_.box1 .h2, .boxstyle-xs.box1 .h2, .boxstyle-sm.box1 .h2, .boxstyle-md.box1 .h2, .boxstyle-lg.box1 .h2, .boxstyle_.box1 .h3, .boxstyle-xs.box1 .h3, .boxstyle-sm.box1 .h3, .boxstyle-md.box1 .h3, .boxstyle-lg.box1 .h3, .boxstyle_.box1 .h4, .boxstyle-xs.box1 .h4, .boxstyle-sm.box1 .h4, .boxstyle-md.box1 .h4, .boxstyle-lg.box1 .h4, .boxstyle_.box1 .h5, .boxstyle-xs.box1 .h5, .boxstyle-sm.box1 .h5, .boxstyle-md.box1 .h5, .boxstyle-lg.box1 .h5, .boxstyle_.box1 .h6, .boxstyle-xs.box1 .h6, .boxstyle-sm.box1 .h6, .boxstyle-md.box1 .h6, .boxstyle-lg.box1 .h6 { color: #383838; } .boxstyle_.box1 blockquote.quotes, .boxstyle-xs.box1 blockquote.quotes, .boxstyle-sm.box1 blockquote.quotes, .boxstyle-md.box1 blockquote.quotes, .boxstyle-lg.box1 blockquote.quotes { color: inherit; } @media (max-width: 767px) { .boxstyle_.box2, .boxstyle-sm.box2 { padding: 20px; margin-left: -20px; margin-right: -20px; } } @media (max-width: 991px) { .boxstyle-md.box2 { padding: 20px; margin-left: -20px; margin-right: -20px; } } @media (max-width: 1199px) { .boxstyle-lg.box2 { padding: 20px; margin-left: -20px; margin-right: -20px; } } .boxstyle_.box2, .boxstyle-xs.box2, .boxstyle-sm.box2, .boxstyle-md.box2, .boxstyle-lg.box2 { border: 0; background: #eee; color: #383838; } @media print { .boxstyle_.box2, .boxstyle-xs.box2, .boxstyle-sm.box2, .boxstyle-md.box2, .boxstyle-lg.box2 { border: 1px solid #eee; } } .boxstyle_.box2 h1, .boxstyle-xs.box2 h1, .boxstyle-sm.box2 h1, .boxstyle-md.box2 h1, .boxstyle-lg.box2 h1, .boxstyle_.box2 h2, .boxstyle-xs.box2 h2, .boxstyle-sm.box2 h2, .boxstyle-md.box2 h2, .boxstyle-lg.box2 h2, .boxstyle_.box2 h3, .boxstyle-xs.box2 h3, .boxstyle-sm.box2 h3, .boxstyle-md.box2 h3, .boxstyle-lg.box2 h3, .boxstyle_.box2 h4, .boxstyle-xs.box2 h4, .boxstyle-sm.box2 h4, .boxstyle-md.box2 h4, .boxstyle-lg.box2 h4, .boxstyle_.box2 h5, .boxstyle-xs.box2 h5, .boxstyle-sm.box2 h5, .boxstyle-md.box2 h5, .boxstyle-lg.box2 h5, .boxstyle_.box2 h6, .boxstyle-xs.box2 h6, .boxstyle-sm.box2 h6, .boxstyle-md.box2 h6, .boxstyle-lg.box2 h6, .boxstyle_.box2 .h1, .boxstyle-xs.box2 .h1, .boxstyle-sm.box2 .h1, .boxstyle-md.box2 .h1, .boxstyle-lg.box2 .h1, .boxstyle_.box2 .h2, .boxstyle-xs.box2 .h2, .boxstyle-sm.box2 .h2, .boxstyle-md.box2 .h2, .boxstyle-lg.box2 .h2, .boxstyle_.box2 .h3, .boxstyle-xs.box2 .h3, .boxstyle-sm.box2 .h3, .boxstyle-md.box2 .h3, .boxstyle-lg.box2 .h3, .boxstyle_.box2 .h4, .boxstyle-xs.box2 .h4, .boxstyle-sm.box2 .h4, .boxstyle-md.box2 .h4, .boxstyle-lg.box2 .h4, .boxstyle_.box2 .h5, .boxstyle-xs.box2 .h5, .boxstyle-sm.box2 .h5, .boxstyle-md.box2 .h5, .boxstyle-lg.box2 .h5, .boxstyle_.box2 .h6, .boxstyle-xs.box2 .h6, .boxstyle-sm.box2 .h6, .boxstyle-md.box2 .h6, .boxstyle-lg.box2 .h6 { color: #383838; } .boxstyle_.box2 blockquote.quotes, .boxstyle-xs.box2 blockquote.quotes, .boxstyle-sm.box2 blockquote.quotes, .boxstyle-md.box2 blockquote.quotes, .boxstyle-lg.box2 blockquote.quotes { color: inherit; } .boxstyle-xs.box3 { background: none; border: 1px solid #197b96; color: inherit; } @media (min-width: 768px) { .boxstyle_.box3, .boxstyle-sm.box3 { background: none; border: 1px solid #197b96; color: inherit; } } @media (min-width: 992px) { .boxstyle-md.box3 { background: none; border: 1px solid #197b96; color: inherit; } } @media (min-width: 1200px) { .boxstyle-lg.box3 { background: none; border: 1px solid #197b96; color: inherit; } } .boxstyle-xs.box4 { background: none; border: 1px solid #777; color: inherit; } @media (min-width: 768px) { .boxstyle_.box4, .boxstyle-sm.box4 { background: none; border: 1px solid #777; color: inherit; } } @media (min-width: 992px) { .boxstyle-md.box4 { background: none; border: 1px solid #777; color: inherit; } } @media (min-width: 1200px) { .boxstyle-lg.box4 { background: none; border: 1px solid #777; color: inherit; } } @media (max-width: 767px) { .boxstyle_.box5, .boxstyle-sm.box5 { padding: 20px; margin-left: -20px; margin-right: -20px; } } @media (max-width: 991px) { .boxstyle-md.box5 { padding: 20px; margin-left: -20px; margin-right: -20px; } } @media (max-width: 1199px) { .boxstyle-lg.box5 { padding: 20px; margin-left: -20px; margin-right: -20px; } } .boxstyle_.box5, .boxstyle-xs.box5, .boxstyle-sm.box5, .boxstyle-md.box5, .boxstyle-lg.box5 { border: 0; background: #197b96; color: white; } @media print { .boxstyle_.box5, .boxstyle-xs.box5, .boxstyle-sm.box5, .boxstyle-md.box5, .boxstyle-lg.box5 { border: 1px solid #197b96; } } .boxstyle_.box5 a, .boxstyle-xs.box5 a, .boxstyle-sm.box5 a, .boxstyle-md.box5 a, .boxstyle-lg.box5 a, .boxstyle_.box5 a:link, .boxstyle-xs.box5 a:link, .boxstyle-sm.box5 a:link, .boxstyle-md.box5 a:link, .boxstyle-lg.box5 a:link, .boxstyle_.box5 a:visited, .boxstyle-xs.box5 a:visited, .boxstyle-sm.box5 a:visited, .boxstyle-md.box5 a:visited, .boxstyle-lg.box5 a:visited { color: white; } .boxstyle_.box5 a:hover, .boxstyle-xs.box5 a:hover, .boxstyle-sm.box5 a:hover, .boxstyle-md.box5 a:hover, .boxstyle-lg.box5 a:hover, .boxstyle_.box5 a:focus, .boxstyle-xs.box5 a:focus, .boxstyle-sm.box5 a:focus, .boxstyle-md.box5 a:focus, .boxstyle-lg.box5 a:focus, .boxstyle_.box5 a:active, .boxstyle-xs.box5 a:active, .boxstyle-sm.box5 a:active, .boxstyle-md.box5 a:active, .boxstyle-lg.box5 a:active { color: #ccc; } .boxstyle_.box5 a:hover .new-window-link, .boxstyle-xs.box5 a:hover .new-window-link, .boxstyle-sm.box5 a:hover .new-window-link, .boxstyle-md.box5 a:hover .new-window-link, .boxstyle-lg.box5 a:hover .new-window-link, .boxstyle_.box5 a:hover .insecure-link, .boxstyle-xs.box5 a:hover .insecure-link, .boxstyle-sm.box5 a:hover .insecure-link, .boxstyle-md.box5 a:hover .insecure-link, .boxstyle-lg.box5 a:hover .insecure-link { color: #ccc; } .boxstyle_.box5 a, .boxstyle-xs.box5 a, .boxstyle-sm.box5 a, .boxstyle-md.box5 a, .boxstyle-lg.box5 a, .boxstyle_.box5 a:link, .boxstyle-xs.box5 a:link, .boxstyle-sm.box5 a:link, .boxstyle-md.box5 a:link, .boxstyle-lg.box5 a:link, .boxstyle_.box5 a:visited, .boxstyle-xs.box5 a:visited, .boxstyle-sm.box5 a:visited, .boxstyle-md.box5 a:visited, .boxstyle-lg.box5 a:visited { -webkit-text-decoration-color: #fff; text-decoration-color: #fff; } .boxstyle_.box5 a:hover, .boxstyle-xs.box5 a:hover, .boxstyle-sm.box5 a:hover, .boxstyle-md.box5 a:hover, .boxstyle-lg.box5 a:hover, .boxstyle_.box5 a:focus, .boxstyle-xs.box5 a:focus, .boxstyle-sm.box5 a:focus, .boxstyle-md.box5 a:focus, .boxstyle-lg.box5 a:focus, .boxstyle_.box5 a:active, .boxstyle-xs.box5 a:active, .boxstyle-sm.box5 a:active, .boxstyle-md.box5 a:active, .boxstyle-lg.box5 a:active { -webkit-text-decoration-color: #ccc; text-decoration-color: #ccc; } .boxstyle_.box5 h1, .boxstyle-xs.box5 h1, .boxstyle-sm.box5 h1, .boxstyle-md.box5 h1, .boxstyle-lg.box5 h1, .boxstyle_.box5 h2, .boxstyle-xs.box5 h2, .boxstyle-sm.box5 h2, .boxstyle-md.box5 h2, .boxstyle-lg.box5 h2, .boxstyle_.box5 h3, .boxstyle-xs.box5 h3, .boxstyle-sm.box5 h3, .boxstyle-md.box5 h3, .boxstyle-lg.box5 h3, .boxstyle_.box5 h4, .boxstyle-xs.box5 h4, .boxstyle-sm.box5 h4, .boxstyle-md.box5 h4, .boxstyle-lg.box5 h4, .boxstyle_.box5 h5, .boxstyle-xs.box5 h5, .boxstyle-sm.box5 h5, .boxstyle-md.box5 h5, .boxstyle-lg.box5 h5, .boxstyle_.box5 h6, .boxstyle-xs.box5 h6, .boxstyle-sm.box5 h6, .boxstyle-md.box5 h6, .boxstyle-lg.box5 h6, .boxstyle_.box5 .h1, .boxstyle-xs.box5 .h1, .boxstyle-sm.box5 .h1, .boxstyle-md.box5 .h1, .boxstyle-lg.box5 .h1, .boxstyle_.box5 .h2, .boxstyle-xs.box5 .h2, .boxstyle-sm.box5 .h2, .boxstyle-md.box5 .h2, .boxstyle-lg.box5 .h2, .boxstyle_.box5 .h3, .boxstyle-xs.box5 .h3, .boxstyle-sm.box5 .h3, .boxstyle-md.box5 .h3, .boxstyle-lg.box5 .h3, .boxstyle_.box5 .h4, .boxstyle-xs.box5 .h4, .boxstyle-sm.box5 .h4, .boxstyle-md.box5 .h4, .boxstyle-lg.box5 .h4, .boxstyle_.box5 .h5, .boxstyle-xs.box5 .h5, .boxstyle-sm.box5 .h5, .boxstyle-md.box5 .h5, .boxstyle-lg.box5 .h5, .boxstyle_.box5 .h6, .boxstyle-xs.box5 .h6, .boxstyle-sm.box5 .h6, .boxstyle-md.box5 .h6, .boxstyle-lg.box5 .h6 { color: white; } .boxstyle_.box5 blockquote.quotes, .boxstyle-xs.box5 blockquote.quotes, .boxstyle-sm.box5 blockquote.quotes, .boxstyle-md.box5 blockquote.quotes, .boxstyle-lg.box5 blockquote.quotes { color: inherit; } .pagination > li a, .pagination > li span { color: #197b96; } .hp-layout .div-content-placeholder { display: none; } .hp-layout .row-spacer { padding-top: 20px; padding-bottom: 20px; } .hp-layout .wrap { display: -webkit-flex; flex-wrap: wrap; -ms-flex-wrap: wrap; -webkit-flex-wrap: wrap; } .hp-layout p.editLink { padding-right: 0; margin: 0; position: absolute; width: 100%; z-index: 3; padding-top: 4px; } .hp-layout a.edit-link { background-color: lightgrey; padding: 3px 6px; outline: 1px solid purple; } .hp-layout a.edit-link .fa { padding-right: 2px; } .hp-layout .contributor-btns { z-index: 1000; position: absolute; margin: 5px 0 0 10px; } .hp-layout .contributor-btns a.btn { -webkit-box-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5); box-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5); } .hp-layout .contributor-btns a .new-window-link { color: #fff; } @media (min-width: 992px) { .hp-layout { position: relative; z-index: 0; } .hp-layout .box { word-break: break-word; } .hp-layout figure.flush-top { margin-bottom: 20px; } } .btn-colour1 { background-color: #d1e5ea; } .btn-colour1:hover { background-color: #bad7e0; } .btn-colour2 { background-color: #eee; } .btn-colour2:hover { background-color: #d7d7d7; } .btn-colour3 { border: 1px solid #197b96; } .btn-colour3:hover { background-color: #eee; } .btn-colour4 { border: 1px solid #777; } .btn-colour4:hover { background-color: #eee; } .btn-colour5 { background-color: #197b96; color: white; } .btn-colour5 * { color: white; } .btn-colour5:hover { background-color: #5ea3b5; } .hp-layout.slideshow-2017 .carousel { margin-bottom: 20px; background-color: rgba(0, 0, 0, 0.8); } .hp-layout.slideshow-2017 .carousel .carousel-caption { text-align: left; position: static; padding: 20px; background-color: transparent; text-shadow: none; min-height: 119.9px; } .hp-layout.slideshow-2017 .carousel .carousel-caption p { padding-right: 0; } .hp-layout.slideshow-2017 .carousel .carousel-caption p:last-child { margin-bottom: 22px; } .hp-layout.slideshow-2017 .carousel .carousel-caption h2, .hp-layout.slideshow-2017 .carousel .carousel-caption h3, .hp-layout.slideshow-2017 .carousel .carousel-caption h4, .hp-layout.slideshow-2017 .carousel .carousel-caption h5, .hp-layout.slideshow-2017 .carousel .carousel-caption h6, .hp-layout.slideshow-2017 .carousel .carousel-caption a { color: white; } .hp-layout.slideshow-2017 .carousel .carousel-caption a:hover { color: lightGrey; } .hp-layout.slideshow-2017 .carousel .carousel-inner > .item > img { min-width: 100%; } .hp-layout.slideshow-2017 .carousel .controller-container { position: inherit; height: 40px; z-index: 11; bottom: 10px; background-color: transparent; } .hp-layout.slideshow-2017 .carousel a.carousel-control { background-image: none; } .hp-layout.slideshow-2017 .carousel a.carousel-control::after { content: none; } .hp-layout.slideshow-2017 .carousel a.carousel-control .glyphicon-chevron-left, .hp-layout.slideshow-2017 .carousel a.carousel-control .glyphicon-chevron-right { margin-top: -25px; } .hp-layout.slideshow-2017 .carousel a.carousel-control .glyphicon { font-size: 1.6em; } .hp-layout.slideshow-2017 .carousel .carousel-indicators { position: static; width: auto; height: 40px; margin-left: 0; } .hp-layout.slideshow-2017 .carousel .carousel-indicators li { margin: 0 4px; height: 20px; width: 20px; border-width: 2px; border-color: #fff; } .hp-layout.slideshow-2017 .carousel .carousel-indicators li.active { background-color: #fff; } @media (min-width: 768px) { .hp-layout.slideshow-2017 .carousel .carousel-inner > .item > img { height: auto; } .hp-layout.slideshow-2017 .carousel .controller-container { bottom: 10px; right: auto; } .hp-layout.slideshow-2017 .carousel .carousel-caption.col-sm-6 { position: absolute; right: 10px; top: 10px; bottom: 10px; left: auto; } .hp-layout.slideshow-2017 .carousel a.carousel-control::after { color: white; } .hp-layout.slideshow-2017 .carousel .carousel-indicators { padding-right: 0; } .hp-layout.slideshow-2017 .carousel .carousel-indicators li { border-color: white; } .hp-layout.slideshow-2017 .carousel .carousel-indicators li.active { background-color: white; } } @media (min-width: 992px) { .hp-layout.slideshow-2017 .carousel .controller-container { position: absolute; background-color: transparent; bottom: 20px; right: 20px; } .hp-layout.slideshow-2017 .carousel .controller-container.col-md-6 { width: 46%; } .hp-layout.slideshow-2017 .carousel .carousel-caption.col-md-4, .hp-layout.slideshow-2017 .carousel .carousel-caption.col-md-6 { position: absolute; right: 20px; left: auto; top: auto; bottom: 20px; padding-bottom: 40px; background-color: rgba(0, 0, 0, 0.8); } .hp-layout.slideshow-2017 .carousel .carousel-caption.col-md-4 { width: calc(33.33% + 20px / 2); } .hp-layout.slideshow-2017 .carousel .carousel-caption.col-md-6 { width: 46%; } .hp-layout.slideshow-2017 .carousel .carousel-indicators { padding-right: 0; } } .hp-layout.slideshow-light-theme .carousel { background-color: rgba(255, 255, 255, 0.82); } .hp-layout.slideshow-light-theme .carousel .carousel-caption { background-color: rgba(255, 255, 255, 0.82); color: #383838; } .hp-layout.slideshow-light-theme .carousel .carousel-caption h2, .hp-layout.slideshow-light-theme .carousel .carousel-caption h3, .hp-layout.slideshow-light-theme .carousel .carousel-caption h4, .hp-layout.slideshow-light-theme .carousel .carousel-caption h5, .hp-layout.slideshow-light-theme .carousel .carousel-caption h6 { color: #383838; } .hp-layout.slideshow-light-theme .carousel .carousel-caption a, .hp-layout.slideshow-light-theme .carousel .carousel-caption a:active, .hp-layout.slideshow-light-theme .carousel .carousel-caption a:focus { color: #197b96; } .hp-layout.slideshow-light-theme .carousel .carousel-caption a:hover { color: #383838; } .hp-layout.slideshow-light-theme .carousel a.carousel-control { color: #6f6f6f; } .hp-layout.slideshow-light-theme .carousel .carousel-indicators li { border-color: #383838; } .hp-layout.slideshow-light-theme .carousel .carousel-indicators li.active { background-color: #383838; } .hp-layout.slideshow-light-theme .carousel a.left.carousel-control, .hp-layout.slideshow-light-theme .carousel a.right.carousel-control { color: #706768; } .hp-layout.slideshow-light-theme .carousel a:hover.left.carousel-control, .hp-layout.slideshow-light-theme .carousel a:hover.right.carousel-control { color: #383838; } @media (min-width: 992px) { .hp-layout.slideshow-light-theme .carousel .carousel-caption.col-md-4, .hp-layout.slideshow-light-theme .carousel .carousel-caption.col-md-6 { background-color: rgba(255, 255, 255, 0.82); } } @media (min-width: 992px) { .hp-layout figure.hasImage { position: relative; background-repeat: no-repeat; background-size: cover; margin-bottom: 20px; } .hp-layout figure.hasImage.set-height { min-height: 19vw; } .hp-layout figure.hasImage figcaption { position: absolute; bottom: 0; width: 100%; color: white; padding: 20px; background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.7) 80px, rgba(0, 0, 0, 0.8) 100%); background-repeat: repeat-x; } .hp-layout figure.hasImage figcaption h2, .hp-layout figure.hasImage figcaption h3, .hp-layout figure.hasImage figcaption h4, .hp-layout figure.hasImage figcaption h5, .hp-layout figure.hasImage figcaption h6, .hp-layout figure.hasImage figcaption a { color: white; } .hp-layout figure.hasImage figcaption a:hover { color: lightGrey; } } @media (min-width: 992px) and (min-width: 1200px) { .hp-layout figure.hasImage.set-height { min-height: 240px; } } .hp-layout .contributor-btns { z-index: 1000; position: absolute; margin: 5px 0 0 10px; } .hp-layout .contributor-btns a.btn { -webkit-box-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5); box-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5); } .hp-layout .contributor-btns a .new-window-link { color: #fff; } /* white space */ @media (min-width: 641px) { .scs-content-block-pad { padding-left: 40px !important; padding-right: 0px !important; } } .scs-content-pad-top-30 { margin-top: 30px; } .scs-content-pad-top-20 { margin-top: 20px; } .scs-content-pad-left-15 { margin-left: 15px; } /* typography */ h1 { margin-bottom: 30px; font-size: 32px; line-height: 36px; border-bottom: 0px; } @media (min-width: 768px) { h1 { font-size: 48px; line-height: 50px; } } a { text-decoration: underline; color: #197B9A; } a:visited { color: #197B9A; text-decoration: none; } a:link { color: #197B9A; } a:hover { color: #2b8cc4; } /* typography for content pages main blockquote */ .scs-content-main-block h2.guide-page-title { font-size: 32px !important; } @media (min-width: 641px) { .scs-content-main-block h2.guide-page-title { font-size: 32px !important; line-height: 50px; } } .scs-content-main-block h1 { margin-bottom: 25px; font-size: 21px; font-weight: 700; } @media (min-width: 641px) { .scs-content-main-block h1 { font-size: 46px; line-height: 1.25; } } .scs-content-main-block h2 { margin-bottom: 15px; margin-top: 30px; font-size: 18px; font-weight: 700; } @media (min-width: 641px) { .scs-content-main-block h2 { font-size: 25px; line-height: 1.25; } } .scs-content-main-block h3 { margin-bottom: 5px; font-size: 18px; color: black; font-weight: 700; margin-top: 35px; } @media (min-width: 641px) { .scs-content-main-block h3 { font-size: 21px; line-height: 1.25; } } .scs-content-main-block h4 { margin-bottom: 5px; font-size: 16px; color: black; font-weight: 700; margin-top: 35px; } @media (min-width: 641px) { .scs-content-main-block h4 { font-size: 19px; line-height: 1.25; } } .scs-content-main-block p { font-size: 16px; line-height: 1.2; font-weight: 400; color: #0b0c0c; } @media (min-width: 641px) { .scs-content-main-block p { font-size: 18px; line-height: 1.3157894737; } } .scs-content-main-block ul { line-height: 1.5; list-style-type: disc; padding-left: 1em; margin-top: 1.5em; margin-bottom: 2.5em; margin-left: 5px; color: #0b0c0c; } .scs-content-main-block ol { line-height: 1.5; padding-left: 1em; margin-top: 1.5em; margin-bottom: 2.5em; margin-left: 5px; color: #0b0c0c; } .scs-content-main-block li { font-size: 16px; line-height: 25px; } @media (min-width: 641px) { .scs-content-main-block li { font-size: 18px; } } .scs-content-main-block .info-notice { border-left: 1em solid #dee0e2; padding: 1em 0 1em 1em; margin: 2em 0; } /* typography for content page side menu */ .scs-navigation-side-menu { padding: 20px 0px 10px 0px; font-size: 16px; } .scs-navigation-side-menu h2 { font-weight: 600; text-transform: none; font-size: 18px; line-height: 1.25; margin-bottom: 10px; } .scs-navigation-side-menu h3 { font-weight: 400; text-transform: none; font-size: 16px; line-height: 1.25; margin-bottom: 10px; } .scs-navigation-side-menu ul { list-style-type: none; padding-left: 0px; margin-left: 0px; margin-bottom: 20px; } .scs-navigation-side-menu-topic a { font-weight: 600; } /* dividers */ .divider--thick { border-top: 2px solid #197b96; } .divider--thin { border-top: 1px solid #bfc1c3; } /* buttons */ .scs-button { text-decoration: none !important; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; font-weight: 400; font-size: 16px; font-size: 1rem; line-height: 1.1875; -webkit-box-sizing: border-box; box-sizing: border-box; display: inline-block; position: relative; margin-top: 010px; margin-bottom: 22px; padding: 7px 10px; border: 2px solid transparent; border-radius: 0; color: #fff !important; background-color: #197b96; -webkit-box-shadow: 0 2px 0 #003618; box-shadow: 0 2px 0 #003618; text-align: center; vertical-align: top; cursor: pointer; -webkit-appearance: none; } .scs-button:hover { background-color: #2b8cc4; } .scs-button:focus { background-color: #2b8cc4; } .scs-button--booking { font-weight: 700; font-size: 22px; line-height: 1; min-height: auto; padding-top: 8px; padding-right: 40px; padding-bottom: 8px; padding-left: 15px; background-image: url("../images/icon-pointer.png"); background-repeat: no-repeat; background-position: 100% 50%; } /* right hand promos */ .scs-side-nav-promo { border: 0; padding: 20px; margin-top: 50px; } .scs-side-nav-promo ul.fa-ul { padding-left: 0; margin-left: 2.14285714em; list-style-type: none; } .scs-side-nav-promo p { font-size: 16px; } .highlighted-event-date > h3 { font-size: 34px; } .scs-section-pane { width: 80%; } .scs-section-pane .scs-pane-inner { border-left: 1px solid #bfc1c3; min-height: 700px; } .scs-section-pane ul { padding-left: 5px; } .scs-section-pane ul li { list-style: none; position: relative; } .scs-section-pane ul p { font-size: 15px; line-height: 20px; font-weight: 400; color: black; width: 95%; } .scs-section-pane ul h3 { font-size: 20px; font-weight: 700; margin-bottom: 5px; color: #197B9A; } .scs-section-pane ul a { padding: 12px 30px 8px 15px; text-transform: none; font-size: 16px; line-height: 1.1428571429; position: relative; display: block; text-decoration: none !important; } .scs-section-pane ul a:after { position: absolute; top: 50%; margin-top: -16px; right: 10px; float: right; content: "\203A"; font-size: 32px; } .scs-section-pane ul a:hover { background: #dee0e2; } h5.scs-topic-atoz { font-size: 20px; font-weight: 600; color: black !important; text-align: center; margin-top: 20px !important; } .topic-header { margin-bottom: 30px; margin-left: 20px; } .topic-header h1 { margin-top: 0px; font-size: 26px; color: black; line-height: 26px; border-bottom: 0px; font-weight: 600; } @media (min-width: 641px) { .topic-header h1 { margin-top: 0px; font-size: 40px; line-height: 50px; font-weight: 600; } } .topic-header h3 { color: #777; margin-bottom: 0px; font-size: 19px; } /* step layout for topics */ .scs-c-step-nav-header { color: #0b0c0c; position: relative; padding: 10px; background: #f8f8f8; border-top: solid 1px #bfc1c3; border-bottom: solid 1px #bfc1c3; } @media print { .scs-c-step-nav-header { color: #000000; } } @media (min-width: 641px) { .scs-c-step-nav-header { padding: 15px; } } .scs-c-step-nav-header__part-of { font-family: "nta", Arial, sans-serif; font-weight: 700; text-transform: none; font-size: 14px; line-height: 1.1428571429; display: block; padding-bottom: 0.2em; } @media (min-width: 641px) { .scs-c-step-nav-header__part-of { font-size: 16px; line-height: 1.25; } } .scs-c-step-nav-header__title { font-family: "nta", Arial, sans-serif; font-weight: 700; text-transform: none; font-size: 18px; line-height: 1.2; } @media (min-width: 641px) { .scs-c-step-nav-header__title { font-size: 24px; line-height: 1.25; } } .scs-c-step-nav-related { color: #0b0c0c; border-top: 2px solid #005ea5; margin-bottom: 30px; } @media print { .scs-c-step-nav-related { color: #000000; } } .scs-c-step-nav-related__heading { margin-top: 15px; margin-bottom: 10px; font-family: "nta", Arial, sans-serif; font-weight: 700; text-transform: none; font-size: 16px; line-height: 1.25; } @media (min-width: 641px) { .scs-c-step-nav-related__heading { font-size: 19px; line-height: 1.3157894737; } } .scs-c-step-nav-related__links { font-family: "nta", Arial, sans-serif; font-weight: 700; text-transform: none; font-size: 14px; line-height: 1.1428571429; margin: 0; padding: 0; } @media (min-width: 641px) { .scs-c-step-nav-related__links { font-size: 16px; line-height: 1.25; } } .scs-c-step-nav-related--singular { margin-bottom: 13px; } .scs-c-step-nav-related--singular .scs-c-step-nav-related__heading { font-family: "nta", Arial, sans-serif; font-weight: bold; text-transform: none; font-size: 19px; line-height: 1.4; margin-top: 20px; } @media (min-width: 641px) { .scs-c-step-nav-related--singular .scs-c-step-nav-related__heading { font-size: 19px; line-height: 1.4; } } .scs-c-step-nav-related--singular .scs-c-step-nav-related__pretitle { margin-bottom: 7.5px; } .scs-c-step-nav-related__pretitle { display: block; margin-bottom: 15px; } @media (min-width: 641px) { .scs-c-step-nav-related__pretitle { margin-bottom: 5px; } } .scs-c-step-nav-related__links { list-style: none; } .scs-c-step-nav-related__link-item { margin-top: 15px; } @media (min-width: 641px) { .scs-c-step-nav-related__link-item { margin-top: 5px; } } .scs-c-step-nav { margin-bottom: 30px; } @media (min-width: 641px) { .scs-c-step-nav.scs-c-step-nav--large { margin-bottom: 60px; } } .js-enabled .scs-c-step-nav.js-hidden { display: none; } .scs-c-step-nav__controls { padding: 3px 3px 0 0; text-align: right; } .scs-c-step-nav__button { color: #005ea5; cursor: pointer; background: none; border: 0; margin: 0; } .scs-c-step-nav__button::-moz-focus-inner { border: 0; } .scs-c-step-nav__button--title { font-family: "nta", Arial, sans-serif; font-weight: bold; text-transform: none; font-size: 19px; line-height: 1.4; display: inline-block; padding: 0; text-align: left; color: #0b0c0c; } @media (min-width: 641px) { .scs-c-step-nav__button--title { font-size: 19px; line-height: 1.4; } } .scs-c-step-nav--large .scs-c-step-nav__button--title { font-family: "nta", Arial, sans-serif; font-weight: bold; text-transform: none; font-size: 19px; line-height: 1.4; } @media (min-width: 641px) { .scs-c-step-nav--large .scs-c-step-nav__button--title { font-size: 24px; line-height: 1.4; } } .scs-c-step-nav__button--controls { font-family: "nta", Arial, sans-serif; font-weight: 400; text-transform: none; font-size: 14px; line-height: 1; position: relative; z-index: 1; padding: 0.5em 0; text-decoration: underline; } @media (min-width: 641px) { .scs-c-step-nav__button--controls { font-size: 14px; line-height: 1; } } .scs-c-step-nav__button--controls:hover { color: #2b8cc4; } .scs-c-step-nav--large .scs-c-step-nav__button--controls { font-family: "nta", Arial, sans-serif; font-weight: 400; text-transform: none; font-size: 14px; line-height: 1; } @media (min-width: 641px) { .scs-c-step-nav--large .scs-c-step-nav__button--controls { font-size: 16px; line-height: 1; } } .scs-c-step-nav__steps { padding: 0; margin: 0; } .scs-c-step-nav__step { position: relative; padding-left: 45px; list-style: none; } .scs-c-step-nav__step:after { content: ""; position: absolute; z-index: 2; width: 0; height: 100%; border-left: solid 2px #bfc1c3; background: #fff; left: 0; margin-left: 12px; top: 15px; } @media (min-width: 641px) { .scs-c-step-nav--large .scs-c-step-nav__step { padding-left: 60px; } .scs-c-step-nav--large .scs-c-step-nav__step:after { left: 0; margin-left: 16px; border-width: 3px; top: 30px; } } .scs-c-step-nav__step:last-child:before { content: ""; position: absolute; z-index: 6; bottom: 0; left: 0; margin-left: 6.5px; width: 13px; height: 0; border-bottom: solid 2px #bfc1c3; } .scs-c-step-nav__step:last-child:after { height: -webkit-calc(100% - 15px); height: calc(100% - 15px); } .scs-c-step-nav__step:last-child .scs-c-step-nav__help:after { height: 100%; } @media (min-width: 641px) { .scs-c-step-nav--large .scs-c-step-nav__step:last-child:before { margin-left: 8.75px; width: 17.5px; border-width: 3px; } .scs-c-step-nav--large .scs-c-step-nav__step:last-child:after { height: calc(100% - 30px); } } .scs-c-step-nav__step--active:last-child:before, .scs-c-step-nav__step--active .scs-c-step-nav__circle--number, .scs-c-step-nav__step--active:after, .scs-c-step-nav__step--active .scs-c-step-nav__help:after { border-color: #0b0c0c; } .scs-c-step-nav__circle { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; position: absolute; z-index: 5; top: 15px; left: 0; width: 26px; height: 26px; color: #0b0c0c; background: #fff; border-radius: 100px; text-align: center; } @media (min-width: 641px) { .scs-c-step-nav--large .scs-c-step-nav__circle { top: 30px; width: 35px; height: 35px; } } .scs-c-step-nav__circle--number { font-family: "nta", Arial, sans-serif; font-weight: bold; text-transform: none; font-size: 16px; line-height: 23px; border: solid 2px #bfc1c3; } @media (min-width: 641px) { .scs-c-step-nav__circle--number { font-size: 16px; line-height: 23px; } } .scs-c-step-nav--large .scs-c-step-nav__circle--number { font-family: "nta", Arial, sans-serif; font-weight: bold; text-transform: none; font-size: 16px; line-height: 23px; } @media (min-width: 641px) { .scs-c-step-nav--large .scs-c-step-nav__circle--number { font-size: 19px; line-height: 30px; } } @media (min-width: 641px) { .scs-c-step-nav--large .scs-c-step-nav__circle--number { border-width: 3px; } } .scs-c-step-nav__circle--logic { font-family: "nta", Arial, sans-serif; font-weight: bold; text-transform: none; font-size: 16px; line-height: 28px; } @media (min-width: 641px) { .scs-c-step-nav__circle--logic { font-size: 16px; line-height: 28px; } } .scs-c-step-nav--large .scs-c-step-nav__circle--logic { font-family: "nta", Arial, sans-serif; font-weight: bold; text-transform: none; font-size: 16px; line-height: 28px; } @media (min-width: 641px) { .scs-c-step-nav--large .scs-c-step-nav__circle--logic { font-size: 19px; line-height: 34px; } } .scs-c-step-nav__circle-inner { float: right; min-width: 100%; } .scs-c-step-nav__circle-background { text-shadow: 0 -0.1em 0 #fff, 0.1em 0 0 #fff, 0 0.1em 0 #fff, -0.1em 0 0 #fff; } .scs-c-step-nav__circle-step-label, .scs-c-step-nav__circle-step-colon { position: absolute !important; width: 1px !important; height: 1px !important; margin: -1px !important; padding: 0 !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; -webkit-clip-path: inset(50%) !important; clip-path: inset(50%) !important; border: 0 !important; white-space: nowrap !important; } .scs-c-step-nav__header { padding: 15px 0; border-top: solid 2px #dee0e2; } .scs-c-step-nav--active .scs-c-step-nav__header { cursor: pointer; } .scs-c-step-nav__header .scs-c-step-nav__button:focus { outline: 3px solid #ffbf47; outline-offset: 0; } .scs-c-step-nav__header:hover .scs-c-step-nav__button, .scs-c-step-nav__header:hover .scs-c-step-nav__circle { color: #005ea5; } .scs-c-step-nav__header:hover .scs-c-step-nav__toggle-link { text-decoration: underline; } @media (min-width: 641px) { .scs-c-step-nav--large .scs-c-step-nav__header { padding: 30px 0; } } .scs-c-step-nav__title { color: #0b0c0c; font-family: "nta", Arial, sans-serif; font-weight: bold; text-transform: none; font-size: 19px; line-height: 1.4; margin: 0; } @media print { .scs-c-step-nav__title { color: #000000; } } @media (min-width: 641px) { .scs-c-step-nav__title { font-size: 19px; line-height: 1.4; } } .scs-c-step-nav--large .scs-c-step-nav__title { font-family: "nta", Arial, sans-serif; font-weight: bold; text-transform: none; font-size: 19px; line-height: 1.4; } @media (min-width: 641px) { .scs-c-step-nav--large .scs-c-step-nav__title { font-size: 24px; line-height: 1.4; } } .scs-c-step-nav__toggle-link { font-family: "nta", Arial, sans-serif; font-weight: 400; text-transform: none; font-size: 14px; line-height: 1.2; display: block; color: #005ea5; text-transform: capitalize !important; } @media (min-width: 641px) { .scs-c-step-nav__toggle-link { font-size: 14px; line-height: 1.2; } } .scs-c-step-nav--large .scs-c-step-nav__toggle-link { font-family: "nta", Arial, sans-serif; font-weight: 400; text-transform: none; font-size: 14px; line-height: 1.2; } @media (min-width: 641px) { .scs-c-step-nav--large .scs-c-step-nav__toggle-link { font-size: 16px; line-height: 1.2; } } .scs-c-step-nav__panel { color: #0b0c0c; font-family: "nta", Arial, sans-serif; font-weight: 400; text-transform: none; font-size: 16px; line-height: 1.25; } @media print { .scs-c-step-nav__panel { color: #000000; } } @media (min-width: 641px) { .scs-c-step-nav__panel { font-size: 16px; line-height: 1.3157894737; } } .scs-c-step-nav--large .scs-c-step-nav__panel { font-family: "nta", Arial, sans-serif; font-weight: 400; text-transform: none; font-size: 16px; line-height: 1.25; } @media (min-width: 641px) { .scs-c-step-nav--large .scs-c-step-nav__panel { font-size: 19px; line-height: 1.3157894737; } } .js-enabled .scs-c-step-nav__panel.js-hidden { display: none; } .scs-c-step-nav__paragraph { padding-bottom: 15px; margin: 0; font-size: inherit; } .scs-c-step-nav__paragraph + .scs-c-step-nav__list { margin-top: -5px; } @media (min-width: 641px) { .scs-c-step-nav--large .scs-c-step-nav__paragraph + .scs-c-step-nav__list { margin-top: -15px; } } @media (min-width: 641px) { .scs-c-step-nav--large .scs-c-step-nav__paragraph { padding-bottom: 30px; } } .scs-c-step-nav__list { padding: 0; padding-bottom: 10px; list-style: none; } @media (min-width: 641px) { .scs-c-step-nav--large .scs-c-step-nav__list { padding-bottom: 20px; } } .scs-c-step-nav__list--choice { margin-left: 20px; list-style: disc; } .scs-c-step-nav__list--choice .scs-c-step-nav__list-item--active:before { left: -65px; } @media (min-width: 641px) { .scs-c-step-nav--large .scs-c-step-nav__list--choice .scs-c-step-nav__list-item--active:before { left: -80px; } } .scs-c-step-nav__list-item { margin-bottom: 10px; } .scs-c-step-nav__link { font-family: "nta", Arial, sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } @media print { .scs-c-step-nav__link { font-family: sans-serif; } } .scs-c-step-nav__link:focus { outline: 3px solid #ffbf47; outline-offset: 0; background-color: #ffbf47; } .scs-c-step-nav__link:link { color: #005ea5; } .scs-c-step-nav__link:visited { color: #4c2c92; } .scs-c-step-nav__link:hover { color: #2b8cc4; } .scs-c-step-nav__link:active { color: #2b8cc4; } .scs-c-step-nav__link:focus { color: #0b0c0c; } .scs-c-step-nav__link-active-context { position: absolute !important; width: 1px !important; height: 1px !important; margin: -1px !important; padding: 0 !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; -webkit-clip-path: inset(50%) !important; clip-path: inset(50%) !important; border: 0 !important; white-space: nowrap !important; } .scs-c-step-nav__list-item--active { position: relative; } .scs-c-step-nav__list-item--active:before { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; content: ""; position: absolute; z-index: 5; top: 0.6em; left: -45px; margin-left: 5px; width: 16px; height: 16px; margin-top: -8px; background: #0b0c0c; border: solid 2px #fff; border-radius: 100px; } @media (min-width: 641px) { .scs-c-step-nav--large .scs-c-step-nav__list-item--active:before { left: -60px; margin-left: 9.5px; } } .scs-c-step-nav__list-item--active .scs-c-step-nav__link { text-decoration: none; } .scs-c-step-nav__list-item--active .scs-c-step-nav__link:link, .scs-c-step-nav__list-item--active .scs-c-step-nav__link:visited, .scs-c-step-nav__list-item--active .scs-c-step-nav__link:hover, .scs-c-step-nav__list-item--active .scs-c-step-nav__link:active, .scs-c-step-nav__list-item--active .scs-c-step-nav__link:focus { color: #0b0c0c; } @media print { .scs-c-step-nav__list-item--active .scs-c-step-nav__link:link, .scs-c-step-nav__list-item--active .scs-c-step-nav__link:visited, .scs-c-step-nav__list-item--active .scs-c-step-nav__link:hover, .scs-c-step-nav__list-item--active .scs-c-step-nav__link:active, .scs-c-step-nav__list-item--active .scs-c-step-nav__link:focus { color: #000000; } } .scs-c-step-nav__list-item--active .scs-c-step-nav__link:link:focus { color: #0b0c0c; } @media print { .scs-c-step-nav__list-item--active .scs-c-step-nav__link:link:focus { color: #000000; } } .scs-c-step-nav__context { display: inline-block; font-weight: normal; color: #6f777b; } .scs-c-step-nav__context:before { content: " \2013\00a0"; } h1.guide-topic-title { font-weight: 700; } .part-navigation-container { margin-top: 30px; border-bottom: 1px solid #bfc1c3; padding-bottom: 15px; } .part-navigation-container h2 { margin: 0px 0px 10px 0px; font-weight: 400; font-size: 16px; } .part-navigation-container .scs-contents-list__list { color: #0b0c0c; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; font-weight: 400; font-size: 16px; margin: 0px 0px 20px 0px; padding: 0; list-style-type: none; } .part-navigation-container .scs-contents-list__list .scs-contents-list__list-item-active { font-weight: 700; } .part-navigation-container .scs-contents-list__list .scs-contents-list__list-item { padding-top: 0px; line-height: 1.3; list-style-type: none; font-size: 16px; margin-left: 25px; padding-right: 25px; } .part-navigation-container .scs-contents-list__list .scs-contents-list__list-item:before { content: "— "; margin-left: -25px; padding-right: 5px; } .scs-guide-pagination { display: block; margin-top: 10px; margin-bottom: 10px; margin-left: -15px; margin-right: -15px; } .scs-guide-pagination a { color: #197B9A; } .scs-guide-pagination a:visited { color: #197B9A; } .scs-guide-pagination ul { padding-left: 1px; margin-left: 1px; margin-top: 5px !important; margin-bottom: 5px !important; } .scs-guide-pagination__list { margin: 0; padding: 0; } .scs-guide-pagination__item { font-weight: 400; text-transform: none; font-size: 14px; line-height: 1.1428571429; list-style: none; } @media (min-width: 641px) { .scs-guide-pagination__item { font-size: 16px !important; line-height: 1.25 !important; } } .scs-guide-pagination__link { display: block; padding: 15px; text-decoration: none !important; } .scs-guide-pagination__link:hover, .scs-guide-pagination__link:active, .scs-guide-pagination__link:visited, .scs-guide-pagination__link:focus { color: #005ea5; } .scs-guide-pagination__link:hover, .scs-guide-pagination__link:active { background-color: #f8f8f8; color: red; } .scs-guide-pagination__link-title { display: block; } .scs-guide-pagination__link-divider { position: absolute !important; width: 1px !important; height: 1px !important; margin: -1px !important; padding: 0 !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; -webkit-clip-path: inset(50%) !important; clip-path: inset(50%) !important; border: 0 !important; white-space: nowrap !important; } .scs-guide-pagination__link-text { font-weight: 700; text-transform: none; font-size: 16px; line-height: 1.25; margin-left: 10px; } @media (min-width: 641px) { .scs-guide-pagination__link-text { font-size: 19px; line-height: 1.3157894737; } } .scs-guide-pagination__link-icon { font-weight: 400; text-transform: none; font-size: 18px; line-height: 1.2; display: inline-block; margin-bottom: 1px; height: .482em; width: .63em; } @media (min-width: 641px) { .scs-guide-pagination__link-icon { font-size: 24px; line-height: 1.25; } } .scs-guide-pagination__link-label { display: inline-block; margin-top: 0.1em; text-decoration: underline; margin-left: 30px; } @media (max-width: 640px) { .scs-guide-pagination__link-label { margin-left: 24px; } } .visually-hidden, .visuallyhidden { position: absolute !important; left: -9999em; top: auto; width: 1px !important; height: 1px !important; overflow: hidden !important; } .hp-layout h2 { margin-top: 20px; font-size: 22px; font-weight: 500; } .hp-layout .scs-homepage-mega-links { margin: 10px 0px 10px 0px; padding: 5px 5px 20px 5px; } .hp-layout .scs-homepage-mega-links .lighten { font-weight: 300; } .hp-layout .scs-homepage-mega-links h3 { margin-bottom: 5px; margin-top: 20px; font-size: 18px; font-weight: 600; } .hp-layout .scs-homepage-mega-links h3 a { text-decoration: none; } .hp-layout .scs-homepage-mega-links h3 a:hover { color: grey !important; } .hp-layout .scs-homepage-mega-links p { line-height: 18px; font-size: 16px; } /* dev only styles */ .versioning { font-size: 12px !important; color: yellow !important; float: right; } .algolia-autocomplete { width: 100%; } .algolia-autocomplete .aa-input, .algolia-autocomplete .aa-hint { width: 100%; } .algolia-autocomplete .aa-hint { color: #999; } .algolia-autocomplete .aa-dropdown-menu { width: 100%; background-color: #fff; border: 1px solid #999; border-top: none; } .algolia-autocomplete .aa-dropdown-menu .aa-suggestion { cursor: pointer; padding: 5px 4px; } .algolia-autocomplete .aa-dropdown-menu .aa-suggestion.aa-cursor { background-color: #B2D7FF; } .algolia-autocomplete .aa-dropdown-menu .aa-suggestion em { font-weight: bold; font-style: normal; } .algolia-autocomplete input { height: 46px; font-size: 18px; line-height: 1.3333333; } @media (min-width: 1000px) { .course-finder { margin-bottom: 20px; } } @media (min-width: 768px) { .id7-main-content-area > .id7-main-content { padding: 0 20px; } .image-container { position: absolute; width: 100%; height: 100%; top: 0; left: 0; bottom: 0; right: 0; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; overflow: hidden; pointer-events: none; } .image-container > iframe { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; max-width: none; } .image-container::after { content: ''; display: block; position: absolute; height: 100%; width: 100%; } .course-finder { margin-left: -20px; margin-right: -20px; position: relative; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: stretch; -ms-flex-align: stretch; align-items: stretch; height: 320px; } .course-finder h2 { font-size: 38px; text-transform: uppercase; font-weight: bold; } .course-finder h2 label { color: white; } .course-finder .form { position: relative; -webkit-box-flex: 0; -ms-flex: 0 1 auto; flex: 0 1 auto; margin: 0 40px; } } .btn-careers { color: white; background-color: #bf234b; border-color: #c35377; color: white !important; } .promo-tiles { margin-top: 15px; } .promo-tiles .btn-careers { color: white; background-color: #b4153a; border-color: #9d1233; color: white !important; } .promo-tiles .text-small-white { font-size: 18px; line-height: 1.1; color: #ffffff; } .promo-tiles a.image-link-block { display: block; position: relative; margin-bottom: 20px; } .promo-tiles a.image-link-block .image-link-block-gradient-wrapper { position: absolute; top: 0px; left: 0px; width: 100%; height: 100%; color: white; text-decoration: none; background-image: -webkit-gradient(linear, left bottom, left top, color-stop(20%, rgba(0, 0, 0, 0.8)), color-stop(50%, transparent)); background-image: linear-gradient(to top, rgba(0, 0, 0, 0.8) 20%, transparent 50%); -webkit-transition: all .2s linear; transition: all .2s linear; } .promo-tiles a.image-link-block .image-link-block-text { position: absolute; bottom: 0px; left: 0px; padding-left: 20px; } .promo-tiles a.image-link-block .image-link-block-text h2 { color: white; } .promo-tiles a.image-link-block:hover .image-link-block-gradient-wrapper { background-color: rgba(0, 0, 0, 0.2); } .hp-promo h2 { margin-top: 20px; font-size: 22px; font-weight: 500; } .hp-promo .scs-homepage-mega-links { margin: 10px 0px 10px 0px; padding: 5px 5px 20px 5px; } .hp-promo .scs-homepage-mega-links .lighten { font-weight: 300; } .hp-promo .scs-homepage-mega-links h3 { margin-bottom: 5px; margin-top: 20px; font-size: 18px; font-weight: 600; } .hp-promo .scs-homepage-mega-links h3 a { text-decoration: none; } .hp-promo .scs-homepage-mega-links h3 a:hover { color: grey !important; } .hp-promo .scs-homepage-mega-links p { line-height: 18px; font-size: 16px; }
static/css/site.css
@charset "UTF-8"; /* type */ /* colors */ /* responsive media queries */ @media (min-width: 768px) { .id7-right-border { background-image: url("/static-files/images/rhsborder-greyshafts.jpg"); } } @media (min-width: 768px) { .id7-left-border { background-image: url("/static-files/images/lhsborder-greyshafts.jpg"); } } .id7-utility-masthead { background-image: url("/static-files/images/masthead_1170x110_pg_business.jpg"); } h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { color: #0b0c0c; } a, a:link, a:visited { color: #197b96; } a:hover, a:focus, a:active { color: #0a333f; } a:hover .new-window-link, a:hover .insecure-link { color: #0a333f; } a, a:link, a:visited { -webkit-text-decoration-color: #5ea3b5; text-decoration-color: #5ea3b5; } a:hover, a:focus, a:active { -webkit-text-decoration-color: #0a333f; text-decoration-color: #0a333f; } blockquote.quotes { color: #0a333f; } blockquote.quotes::before { color: #197b96; } .brand-bg { background: #197b96; color: white; } .brand-bg a, .brand-bg a:link, .brand-bg a:visited { color: white !important; } .brand-bg a:hover, .brand-bg a:focus, .brand-bg a:active { color: #ccc !important; } .brand-bg a:hover .new-window-link, .brand-bg a:hover .insecure-link { color: #ccc !important; } .brand-bg a, .brand-bg a:link, .brand-bg a:visited { -webkit-text-decoration-color: #fff !important; text-decoration-color: #fff !important; } .brand-bg a:hover, .brand-bg a:focus, .brand-bg a:active { -webkit-text-decoration-color: #ccc !important; text-decoration-color: #ccc !important; } .brand-text { color: #197b96; } .brand-text a, .brand-text a:link, .brand-text a:visited { color: #197b96 !important; } .brand-text a:hover, .brand-text a:focus, .brand-text a:active { color: #0a333f !important; } .brand-text a:hover .new-window-link, .brand-text a:hover .insecure-link { color: #0a333f !important; } .brand-text a, .brand-text a:link, .brand-text a:visited { -webkit-text-decoration-color: #5ea3b5 !important; text-decoration-color: #5ea3b5 !important; } .brand-text a:hover, .brand-text a:focus, .brand-text a:active { -webkit-text-decoration-color: #0a333f !important; text-decoration-color: #0a333f !important; } .brand-border { border-color: #197b96; } .btn-brand { color: white; background-color: #197b96; border-color: #156980; color: white !important; } .btn-brand:focus, .btn-brand.focus { color: white; background-color: #12576a; border-color: #030f13; } .btn-brand:hover { color: white; background-color: #12576a; border-color: #0d3e4c; } .btn-brand:active, .btn-brand.active, .open > .dropdown-toggle.btn-brand { color: white; background-color: #12576a; border-color: #0d3e4c; } .btn-brand:active:hover, .btn-brand.active:hover, .open > .dropdown-toggle.btn-brand:hover, .btn-brand:active:focus, .btn-brand.active:focus, .open > .dropdown-toggle.btn-brand:focus, .btn-brand:active.focus, .btn-brand.active.focus, .open > .dropdown-toggle.btn-brand.focus { color: white; background-color: #0d3e4c; border-color: #030f13; } .btn-brand:active, .btn-brand.active, .open > .dropdown-toggle.btn-brand { background-image: none; } .btn-brand.disabled:hover, .btn-brand[disabled]:hover, fieldset[disabled] .btn-brand:hover, .btn-brand.disabled:focus, .btn-brand[disabled]:focus, fieldset[disabled] .btn-brand:focus, .btn-brand.disabled.focus, .btn-brand[disabled].focus, fieldset[disabled] .btn-brand.focus { background-color: #197b96; border-color: #156980; } .btn-brand .badge { color: #197b96; background-color: white; } .btn-brand:not(.btn-link) { text-decoration: none; } .id7-utility-masthead { background-color: #5ea3b5; } .id7-utility-masthead::after { background-color: #197b96; } .id7-navigation .navbar-primary { background-color: #197b96; } .id7-navigation .navbar-primary.navbar-primary.navbar-wrapped > .navbar-nav > li { color: white; } .id7-navigation .navbar-primary.navbar-primary.navbar-wrapped > .navbar-nav > li.active, .id7-navigation .navbar-primary.navbar-primary.navbar-wrapped > .navbar-nav > li:hover { color: white; } .id7-navigation .navbar-primary .navbar-text { color: white; } .id7-navigation .navbar-primary .navbar-nav > li { color: white; } .id7-navigation .navbar-primary .navbar-nav > li:hover, .id7-navigation .navbar-primary .navbar-nav > li:focus { color: white; background-color: #146278; } .id7-navigation .navbar-primary .navbar-nav > li > a, .id7-navigation .navbar-primary .navbar-nav > li > a:hover, .id7-navigation .navbar-primary .navbar-nav > li > a:focus { color: inherit; background: none; } .id7-navigation .navbar-primary .navbar-nav > li.active.next-secondary::before { border-bottom-color: #5ea3b5; } .id7-navigation .navbar-primary .navbar-nav > li.active.next-tertiary::before { border-bottom-color: #f8f8f8; } .id7-navigation .navbar-primary .navbar-nav > li.active::before { border-bottom-color: #ffffff; } .id7-navigation .navbar-primary .navbar-nav > .disabled, .id7-navigation .navbar-primary .navbar-nav > .disabled:hover, .id7-navigation .navbar-primary .navbar-nav > .disabled:focus { color: white; background-color: #146278; } .id7-navigation .navbar-primary .navbar-toggle { border: none; color: white; } .id7-navigation .navbar-primary .navbar-toggle:hover, .id7-navigation .navbar-primary .navbar-toggle:focus { color: white; background: none; } .id7-navigation .navbar-primary .navbar-nav > .open, .id7-navigation .navbar-primary .navbar-nav > .open:hover, .id7-navigation .navbar-primary .navbar-nav > .open:focus { color: white; background-color: #146278; } .id7-navigation .navbar-primary .navbar-nav .dropdown-menu { background-color: #197b96; } .id7-navigation .navbar-primary .navbar-nav .dropdown-menu > .dropdown-header { border-color: #146278; } .id7-navigation .navbar-primary .navbar-nav .dropdown-menu .divider { background-color: #146278; } .id7-navigation .navbar-primary .navbar-nav .dropdown-menu > li > a { color: white; } .id7-navigation .navbar-primary .navbar-nav .dropdown-menu > li > a:hover, .id7-navigation .navbar-primary .navbar-nav .dropdown-menu > li > a:focus { color: white; background-color: #146278; } .id7-navigation .navbar-primary .navbar-nav .dropdown-menu > .active > a { background-color: #146278; } .id7-navigation .navbar-primary .navbar-nav .dropdown-menu > .active > a::before { border-bottom-color: #5ea3b5; } .id7-navigation .navbar-primary .navbar-nav .dropdown-menu > .disabled > a, .id7-navigation .navbar-primary .navbar-nav .dropdown-menu > .disabled > a:hover, .id7-navigation .navbar-primary .navbar-nav .dropdown-menu > .disabled > a:focus { color: white; background-color: #146278; } .id7-navigation .navbar-primary .navbar-link { color: white; } .id7-navigation .navbar-primary .navbar-link:hover { color: white; } .id7-navigation .navbar-primary .btn-link { color: white; } .id7-navigation .navbar-primary .btn-link:hover, .id7-navigation .navbar-primary .btn-link:focus { color: white; } .id7-navigation .navbar-primary .btn-link[disabled]:hover, fieldset[disabled] .id7-navigation .navbar-primary .btn-link:hover, .id7-navigation .navbar-primary .btn-link[disabled]:focus, fieldset[disabled] .id7-navigation .navbar-primary .btn-link:focus { color: white; } .navbar-primary .navbar-brand { background-color: #197b96; } .navbar-secondary { background-color: #5ea3b5; } .navbar-secondary.navbar-primary.navbar-wrapped > .navbar-nav > li { color: white; } .navbar-secondary.navbar-primary.navbar-wrapped > .navbar-nav > li.active, .navbar-secondary.navbar-primary.navbar-wrapped > .navbar-nav > li:hover { color: white; } .navbar-secondary .navbar-text { color: white; } .navbar-secondary .navbar-nav > li { color: white; } .navbar-secondary .navbar-nav > li:hover, .navbar-secondary .navbar-nav > li:focus { color: white; background-color: #4b8291; } .navbar-secondary .navbar-nav > li > a, .navbar-secondary .navbar-nav > li > a:hover, .navbar-secondary .navbar-nav > li > a:focus { color: inherit; background: none; } .navbar-secondary .navbar-nav > li.active.next-secondary::before { border-bottom-color: white; } .navbar-secondary .navbar-nav > li.active.next-tertiary::before { border-bottom-color: #f8f8f8; } .navbar-secondary .navbar-nav > li.active::before { border-bottom-color: #ffffff; } .navbar-secondary .navbar-nav > .disabled, .navbar-secondary .navbar-nav > .disabled:hover, .navbar-secondary .navbar-nav > .disabled:focus { color: white; background-color: #4b8291; } .navbar-secondary .navbar-toggle { border: none; color: white; } .navbar-secondary .navbar-toggle:hover, .navbar-secondary .navbar-toggle:focus { color: white; background: none; } .navbar-secondary .navbar-nav > .open, .navbar-secondary .navbar-nav > .open:hover, .navbar-secondary .navbar-nav > .open:focus { color: white; background-color: #4b8291; } .navbar-secondary .navbar-nav .dropdown-menu { background-color: #5ea3b5; } .navbar-secondary .navbar-nav .dropdown-menu > .dropdown-header { border-color: #4b8291; } .navbar-secondary .navbar-nav .dropdown-menu .divider { background-color: #4b8291; } .navbar-secondary .navbar-nav .dropdown-menu > li > a { color: white; } .navbar-secondary .navbar-nav .dropdown-menu > li > a:hover, .navbar-secondary .navbar-nav .dropdown-menu > li > a:focus { color: white; background-color: #4b8291; } .navbar-secondary .navbar-nav .dropdown-menu > .active > a { background-color: #4b8291; } .navbar-secondary .navbar-nav .dropdown-menu > .active > a::before { border-bottom-color: white; } .navbar-secondary .navbar-nav .dropdown-menu > .disabled > a, .navbar-secondary .navbar-nav .dropdown-menu > .disabled > a:hover, .navbar-secondary .navbar-nav .dropdown-menu > .disabled > a:focus { color: white; background-color: #4b8291; } .navbar-secondary .navbar-link { color: white; } .navbar-secondary .navbar-link:hover { color: white; } .navbar-secondary .btn-link { color: white; } .navbar-secondary .btn-link:hover, .navbar-secondary .btn-link:focus { color: white; } .navbar-secondary .btn-link[disabled]:hover, fieldset[disabled] .navbar-secondary .btn-link:hover, .navbar-secondary .btn-link[disabled]:focus, fieldset[disabled] .navbar-secondary .btn-link:focus { color: white; } .navbar-secondary .navbar-nav > li::after { color: #197b96; } .navbar-secondary .navbar-nav > li:first-child { background-color: #197b96; color: white; } .navbar-secondary .navbar-nav > li:first-child:hover::after { border-right-color: #197b96; } .navbar-secondary .navbar-nav > li:first-child::after { border-color: transparent transparent transparent #197b96; } .navbar-tertiary { background-color: #f8f8f8; } .navbar-tertiary.navbar-primary.navbar-wrapped > .navbar-nav > li { color: #383838; } .navbar-tertiary.navbar-primary.navbar-wrapped > .navbar-nav > li.active, .navbar-tertiary.navbar-primary.navbar-wrapped > .navbar-nav > li:hover { color: #383838; } .navbar-tertiary .navbar-text { color: #383838; } .navbar-tertiary .navbar-nav > li { color: #383838; } .navbar-tertiary .navbar-nav > li:hover, .navbar-tertiary .navbar-nav > li:focus { color: #383838; background-color: #c6c6c6; } .navbar-tertiary .navbar-nav > li > a, .navbar-tertiary .navbar-nav > li > a:hover, .navbar-tertiary .navbar-nav > li > a:focus { color: inherit; background: none; } .navbar-tertiary .navbar-nav > li.active.next-secondary::before { border-bottom-color: white; } .navbar-tertiary .navbar-nav > li.active.next-tertiary::before { border-bottom-color: #f8f8f8; } .navbar-tertiary .navbar-nav > li.active::before { border-bottom-color: #ffffff; } .navbar-tertiary .navbar-nav > .disabled, .navbar-tertiary .navbar-nav > .disabled:hover, .navbar-tertiary .navbar-nav > .disabled:focus { color: #383838; background-color: #c6c6c6; } .navbar-tertiary .navbar-toggle { border: none; color: #383838; } .navbar-tertiary .navbar-toggle:hover, .navbar-tertiary .navbar-toggle:focus { color: #383838; background: none; } .navbar-tertiary .navbar-nav > .open, .navbar-tertiary .navbar-nav > .open:hover, .navbar-tertiary .navbar-nav > .open:focus { color: #383838; background-color: #c6c6c6; } .navbar-tertiary .navbar-nav .dropdown-menu { background-color: #f8f8f8; } .navbar-tertiary .navbar-nav .dropdown-menu > .dropdown-header { border-color: #c6c6c6; } .navbar-tertiary .navbar-nav .dropdown-menu .divider { background-color: #c6c6c6; } .navbar-tertiary .navbar-nav .dropdown-menu > li > a { color: #383838; } .navbar-tertiary .navbar-nav .dropdown-menu > li > a:hover, .navbar-tertiary .navbar-nav .dropdown-menu > li > a:focus { color: #383838; background-color: #c6c6c6; } .navbar-tertiary .navbar-nav .dropdown-menu > .active > a { background-color: #c6c6c6; } .navbar-tertiary .navbar-nav .dropdown-menu > .active > a::before { border-bottom-color: white; } .navbar-tertiary .navbar-nav .dropdown-menu > .disabled > a, .navbar-tertiary .navbar-nav .dropdown-menu > .disabled > a:hover, .navbar-tertiary .navbar-nav .dropdown-menu > .disabled > a:focus { color: #383838; background-color: #c6c6c6; } .navbar-tertiary .navbar-link { color: #383838; } .navbar-tertiary .navbar-link:hover { color: #383838; } .navbar-tertiary .btn-link { color: #383838; } .navbar-tertiary .btn-link:hover, .navbar-tertiary .btn-link:focus { color: #383838; } .navbar-tertiary .btn-link[disabled]:hover, fieldset[disabled] .navbar-tertiary .btn-link:hover, .navbar-tertiary .btn-link[disabled]:focus, fieldset[disabled] .navbar-tertiary .btn-link:focus { color: #383838; } .bordered .id7-left-border, .bordered .id7-right-border { border-color: rgba(25, 123, 150, 0.3); } .id7-page-footer .id7-app-footer { background: #197b96; color: white; } .id7-page-footer .id7-app-footer h1, .id7-page-footer .id7-app-footer h2, .id7-page-footer .id7-app-footer h3, .id7-page-footer .id7-app-footer h4, .id7-page-footer .id7-app-footer h5, .id7-page-footer .id7-app-footer h6, .id7-page-footer .id7-app-footer .h1, .id7-page-footer .id7-app-footer .h2, .id7-page-footer .id7-app-footer .h3, .id7-page-footer .id7-app-footer .h4, .id7-page-footer .id7-app-footer .h5, .id7-page-footer .id7-app-footer .h6 { color: white; } .id7-page-footer .id7-app-footer a, .id7-page-footer .id7-app-footer a:link, .id7-page-footer .id7-app-footer a:visited { color: white; } .id7-page-footer .id7-app-footer a:hover, .id7-page-footer .id7-app-footer a:focus, .id7-page-footer .id7-app-footer a:active { color: #ccc; } .id7-page-footer .id7-app-footer a:hover .new-window-link, .id7-page-footer .id7-app-footer a:hover .insecure-link { color: #ccc; } .id7-page-footer .id7-app-footer a, .id7-page-footer .id7-app-footer a:link, .id7-page-footer .id7-app-footer a:visited { -webkit-text-decoration-color: #fff; text-decoration-color: #fff; } .id7-page-footer .id7-app-footer a:hover, .id7-page-footer .id7-app-footer a:focus, .id7-page-footer .id7-app-footer a:active { -webkit-text-decoration-color: #ccc; text-decoration-color: #ccc; } .id7-page-footer .id7-horizontal-divider .divider { stroke: #197b96; } .id7-page-footer.id7-footer-divider .id7-site-footer { background: white; } .id7-page-footer.id7-footer-divider .id7-app-footer .id7-logo-bleed::before, .id7-page-footer.id7-footer-divider .id7-app-footer .id7-logo-bleed::after { border-top-color: white; } .id7-page-footer.id7-footer-coloured .id7-site-footer { background: #d3d3d3; color: #383838; } .id7-page-footer.id7-footer-coloured .id7-site-footer h1, .id7-page-footer.id7-footer-coloured .id7-site-footer h2, .id7-page-footer.id7-footer-coloured .id7-site-footer h3, .id7-page-footer.id7-footer-coloured .id7-site-footer h4, .id7-page-footer.id7-footer-coloured .id7-site-footer h5, .id7-page-footer.id7-footer-coloured .id7-site-footer h6, .id7-page-footer.id7-footer-coloured .id7-site-footer .h1, .id7-page-footer.id7-footer-coloured .id7-site-footer .h2, .id7-page-footer.id7-footer-coloured .id7-site-footer .h3, .id7-page-footer.id7-footer-coloured .id7-site-footer .h4, .id7-page-footer.id7-footer-coloured .id7-site-footer .h5, .id7-page-footer.id7-footer-coloured .id7-site-footer .h6 { color: #383838; } .id7-page-footer.id7-footer-coloured .id7-site-footer a, .id7-page-footer.id7-footer-coloured .id7-site-footer a:link, .id7-page-footer.id7-footer-coloured .id7-site-footer a:visited { color: #383838; } .id7-page-footer.id7-footer-coloured .id7-site-footer a:hover, .id7-page-footer.id7-footer-coloured .id7-site-footer a:focus, .id7-page-footer.id7-footer-coloured .id7-site-footer a:active { color: #050505; } .id7-page-footer.id7-footer-coloured .id7-site-footer a:hover .new-window-link, .id7-page-footer.id7-footer-coloured .id7-site-footer a:hover .insecure-link { color: #050505; } .id7-page-footer.id7-footer-coloured .id7-site-footer a, .id7-page-footer.id7-footer-coloured .id7-site-footer a:link, .id7-page-footer.id7-footer-coloured .id7-site-footer a:visited { -webkit-text-decoration-color: #747474; text-decoration-color: #747474; } .id7-page-footer.id7-footer-coloured .id7-site-footer a:hover, .id7-page-footer.id7-footer-coloured .id7-site-footer a:focus, .id7-page-footer.id7-footer-coloured .id7-site-footer a:active { -webkit-text-decoration-color: #050505; text-decoration-color: #050505; } .id7-page-footer.id7-footer-coloured .id7-app-footer .id7-logo-bleed::before, .id7-page-footer.id7-footer-coloured .id7-app-footer .id7-logo-bleed::after { border-top-color: #d3d3d3; } .id7-search .fa { color: #197b96; color: rgba(25, 123, 150, 0.5); -webkit-transition: color .15s linear; transition: color .15s linear; } .id7-search .form-control:hover + .fa, .id7-search .twitter-typeahead:hover + .fa, .id7-search .fa:hover { color: #197b96; } .id7-search .twitter-typeahead .tt-suggestion:hover, .id7-search .twitter-typeahead .tt-suggestion:focus, .id7-search .twitter-typeahead .tt-suggestion.tt-cursor { cursor: pointer; background: #197b96; color: white; } .form-control:focus { border-color: #197b96; outline: 0; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(25, 123, 150, 0.6); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(25, 123, 150, 0.6); } .carousel .carousel-indicators li::after { color: #197b96; color: rgba(25, 123, 150, 0.3); } .carousel .carousel-indicators li.active::after { color: #197b96; } @media (max-width: 767px) { .boxstyle_.box1, .boxstyle-sm.box1 { padding: 20px; margin-left: -20px; margin-right: -20px; } } @media (max-width: 991px) { .boxstyle-md.box1 { padding: 20px; margin-left: -20px; margin-right: -20px; } } @media (max-width: 1199px) { .boxstyle-lg.box1 { padding: 20px; margin-left: -20px; margin-right: -20px; } } .boxstyle_.box1, .boxstyle-xs.box1, .boxstyle-sm.box1, .boxstyle-md.box1, .boxstyle-lg.box1 { border: 0; background: #dcebef; color: #383838; } @media print { .boxstyle_.box1, .boxstyle-xs.box1, .boxstyle-sm.box1, .boxstyle-md.box1, .boxstyle-lg.box1 { border: 1px solid #dcebef; } } .boxstyle_.box1 h1, .boxstyle-xs.box1 h1, .boxstyle-sm.box1 h1, .boxstyle-md.box1 h1, .boxstyle-lg.box1 h1, .boxstyle_.box1 h2, .boxstyle-xs.box1 h2, .boxstyle-sm.box1 h2, .boxstyle-md.box1 h2, .boxstyle-lg.box1 h2, .boxstyle_.box1 h3, .boxstyle-xs.box1 h3, .boxstyle-sm.box1 h3, .boxstyle-md.box1 h3, .boxstyle-lg.box1 h3, .boxstyle_.box1 h4, .boxstyle-xs.box1 h4, .boxstyle-sm.box1 h4, .boxstyle-md.box1 h4, .boxstyle-lg.box1 h4, .boxstyle_.box1 h5, .boxstyle-xs.box1 h5, .boxstyle-sm.box1 h5, .boxstyle-md.box1 h5, .boxstyle-lg.box1 h5, .boxstyle_.box1 h6, .boxstyle-xs.box1 h6, .boxstyle-sm.box1 h6, .boxstyle-md.box1 h6, .boxstyle-lg.box1 h6, .boxstyle_.box1 .h1, .boxstyle-xs.box1 .h1, .boxstyle-sm.box1 .h1, .boxstyle-md.box1 .h1, .boxstyle-lg.box1 .h1, .boxstyle_.box1 .h2, .boxstyle-xs.box1 .h2, .boxstyle-sm.box1 .h2, .boxstyle-md.box1 .h2, .boxstyle-lg.box1 .h2, .boxstyle_.box1 .h3, .boxstyle-xs.box1 .h3, .boxstyle-sm.box1 .h3, .boxstyle-md.box1 .h3, .boxstyle-lg.box1 .h3, .boxstyle_.box1 .h4, .boxstyle-xs.box1 .h4, .boxstyle-sm.box1 .h4, .boxstyle-md.box1 .h4, .boxstyle-lg.box1 .h4, .boxstyle_.box1 .h5, .boxstyle-xs.box1 .h5, .boxstyle-sm.box1 .h5, .boxstyle-md.box1 .h5, .boxstyle-lg.box1 .h5, .boxstyle_.box1 .h6, .boxstyle-xs.box1 .h6, .boxstyle-sm.box1 .h6, .boxstyle-md.box1 .h6, .boxstyle-lg.box1 .h6 { color: #383838; } .boxstyle_.box1 blockquote.quotes, .boxstyle-xs.box1 blockquote.quotes, .boxstyle-sm.box1 blockquote.quotes, .boxstyle-md.box1 blockquote.quotes, .boxstyle-lg.box1 blockquote.quotes { color: inherit; } @media (max-width: 767px) { .boxstyle_.box2, .boxstyle-sm.box2 { padding: 20px; margin-left: -20px; margin-right: -20px; } } @media (max-width: 991px) { .boxstyle-md.box2 { padding: 20px; margin-left: -20px; margin-right: -20px; } } @media (max-width: 1199px) { .boxstyle-lg.box2 { padding: 20px; margin-left: -20px; margin-right: -20px; } } .boxstyle_.box2, .boxstyle-xs.box2, .boxstyle-sm.box2, .boxstyle-md.box2, .boxstyle-lg.box2 { border: 0; background: #eee; color: #383838; } @media print { .boxstyle_.box2, .boxstyle-xs.box2, .boxstyle-sm.box2, .boxstyle-md.box2, .boxstyle-lg.box2 { border: 1px solid #eee; } } .boxstyle_.box2 h1, .boxstyle-xs.box2 h1, .boxstyle-sm.box2 h1, .boxstyle-md.box2 h1, .boxstyle-lg.box2 h1, .boxstyle_.box2 h2, .boxstyle-xs.box2 h2, .boxstyle-sm.box2 h2, .boxstyle-md.box2 h2, .boxstyle-lg.box2 h2, .boxstyle_.box2 h3, .boxstyle-xs.box2 h3, .boxstyle-sm.box2 h3, .boxstyle-md.box2 h3, .boxstyle-lg.box2 h3, .boxstyle_.box2 h4, .boxstyle-xs.box2 h4, .boxstyle-sm.box2 h4, .boxstyle-md.box2 h4, .boxstyle-lg.box2 h4, .boxstyle_.box2 h5, .boxstyle-xs.box2 h5, .boxstyle-sm.box2 h5, .boxstyle-md.box2 h5, .boxstyle-lg.box2 h5, .boxstyle_.box2 h6, .boxstyle-xs.box2 h6, .boxstyle-sm.box2 h6, .boxstyle-md.box2 h6, .boxstyle-lg.box2 h6, .boxstyle_.box2 .h1, .boxstyle-xs.box2 .h1, .boxstyle-sm.box2 .h1, .boxstyle-md.box2 .h1, .boxstyle-lg.box2 .h1, .boxstyle_.box2 .h2, .boxstyle-xs.box2 .h2, .boxstyle-sm.box2 .h2, .boxstyle-md.box2 .h2, .boxstyle-lg.box2 .h2, .boxstyle_.box2 .h3, .boxstyle-xs.box2 .h3, .boxstyle-sm.box2 .h3, .boxstyle-md.box2 .h3, .boxstyle-lg.box2 .h3, .boxstyle_.box2 .h4, .boxstyle-xs.box2 .h4, .boxstyle-sm.box2 .h4, .boxstyle-md.box2 .h4, .boxstyle-lg.box2 .h4, .boxstyle_.box2 .h5, .boxstyle-xs.box2 .h5, .boxstyle-sm.box2 .h5, .boxstyle-md.box2 .h5, .boxstyle-lg.box2 .h5, .boxstyle_.box2 .h6, .boxstyle-xs.box2 .h6, .boxstyle-sm.box2 .h6, .boxstyle-md.box2 .h6, .boxstyle-lg.box2 .h6 { color: #383838; } .boxstyle_.box2 blockquote.quotes, .boxstyle-xs.box2 blockquote.quotes, .boxstyle-sm.box2 blockquote.quotes, .boxstyle-md.box2 blockquote.quotes, .boxstyle-lg.box2 blockquote.quotes { color: inherit; } .boxstyle-xs.box3 { background: none; border: 1px solid #197b96; color: inherit; } @media (min-width: 768px) { .boxstyle_.box3, .boxstyle-sm.box3 { background: none; border: 1px solid #197b96; color: inherit; } } @media (min-width: 992px) { .boxstyle-md.box3 { background: none; border: 1px solid #197b96; color: inherit; } } @media (min-width: 1200px) { .boxstyle-lg.box3 { background: none; border: 1px solid #197b96; color: inherit; } } .boxstyle-xs.box4 { background: none; border: 1px solid #777; color: inherit; } @media (min-width: 768px) { .boxstyle_.box4, .boxstyle-sm.box4 { background: none; border: 1px solid #777; color: inherit; } } @media (min-width: 992px) { .boxstyle-md.box4 { background: none; border: 1px solid #777; color: inherit; } } @media (min-width: 1200px) { .boxstyle-lg.box4 { background: none; border: 1px solid #777; color: inherit; } } @media (max-width: 767px) { .boxstyle_.box5, .boxstyle-sm.box5 { padding: 20px; margin-left: -20px; margin-right: -20px; } } @media (max-width: 991px) { .boxstyle-md.box5 { padding: 20px; margin-left: -20px; margin-right: -20px; } } @media (max-width: 1199px) { .boxstyle-lg.box5 { padding: 20px; margin-left: -20px; margin-right: -20px; } } .boxstyle_.box5, .boxstyle-xs.box5, .boxstyle-sm.box5, .boxstyle-md.box5, .boxstyle-lg.box5 { border: 0; background: #197b96; color: white; } @media print { .boxstyle_.box5, .boxstyle-xs.box5, .boxstyle-sm.box5, .boxstyle-md.box5, .boxstyle-lg.box5 { border: 1px solid #197b96; } } .boxstyle_.box5 a, .boxstyle-xs.box5 a, .boxstyle-sm.box5 a, .boxstyle-md.box5 a, .boxstyle-lg.box5 a, .boxstyle_.box5 a:link, .boxstyle-xs.box5 a:link, .boxstyle-sm.box5 a:link, .boxstyle-md.box5 a:link, .boxstyle-lg.box5 a:link, .boxstyle_.box5 a:visited, .boxstyle-xs.box5 a:visited, .boxstyle-sm.box5 a:visited, .boxstyle-md.box5 a:visited, .boxstyle-lg.box5 a:visited { color: white; } .boxstyle_.box5 a:hover, .boxstyle-xs.box5 a:hover, .boxstyle-sm.box5 a:hover, .boxstyle-md.box5 a:hover, .boxstyle-lg.box5 a:hover, .boxstyle_.box5 a:focus, .boxstyle-xs.box5 a:focus, .boxstyle-sm.box5 a:focus, .boxstyle-md.box5 a:focus, .boxstyle-lg.box5 a:focus, .boxstyle_.box5 a:active, .boxstyle-xs.box5 a:active, .boxstyle-sm.box5 a:active, .boxstyle-md.box5 a:active, .boxstyle-lg.box5 a:active { color: #ccc; } .boxstyle_.box5 a:hover .new-window-link, .boxstyle-xs.box5 a:hover .new-window-link, .boxstyle-sm.box5 a:hover .new-window-link, .boxstyle-md.box5 a:hover .new-window-link, .boxstyle-lg.box5 a:hover .new-window-link, .boxstyle_.box5 a:hover .insecure-link, .boxstyle-xs.box5 a:hover .insecure-link, .boxstyle-sm.box5 a:hover .insecure-link, .boxstyle-md.box5 a:hover .insecure-link, .boxstyle-lg.box5 a:hover .insecure-link { color: #ccc; } .boxstyle_.box5 a, .boxstyle-xs.box5 a, .boxstyle-sm.box5 a, .boxstyle-md.box5 a, .boxstyle-lg.box5 a, .boxstyle_.box5 a:link, .boxstyle-xs.box5 a:link, .boxstyle-sm.box5 a:link, .boxstyle-md.box5 a:link, .boxstyle-lg.box5 a:link, .boxstyle_.box5 a:visited, .boxstyle-xs.box5 a:visited, .boxstyle-sm.box5 a:visited, .boxstyle-md.box5 a:visited, .boxstyle-lg.box5 a:visited { -webkit-text-decoration-color: #fff; text-decoration-color: #fff; } .boxstyle_.box5 a:hover, .boxstyle-xs.box5 a:hover, .boxstyle-sm.box5 a:hover, .boxstyle-md.box5 a:hover, .boxstyle-lg.box5 a:hover, .boxstyle_.box5 a:focus, .boxstyle-xs.box5 a:focus, .boxstyle-sm.box5 a:focus, .boxstyle-md.box5 a:focus, .boxstyle-lg.box5 a:focus, .boxstyle_.box5 a:active, .boxstyle-xs.box5 a:active, .boxstyle-sm.box5 a:active, .boxstyle-md.box5 a:active, .boxstyle-lg.box5 a:active { -webkit-text-decoration-color: #ccc; text-decoration-color: #ccc; } .boxstyle_.box5 h1, .boxstyle-xs.box5 h1, .boxstyle-sm.box5 h1, .boxstyle-md.box5 h1, .boxstyle-lg.box5 h1, .boxstyle_.box5 h2, .boxstyle-xs.box5 h2, .boxstyle-sm.box5 h2, .boxstyle-md.box5 h2, .boxstyle-lg.box5 h2, .boxstyle_.box5 h3, .boxstyle-xs.box5 h3, .boxstyle-sm.box5 h3, .boxstyle-md.box5 h3, .boxstyle-lg.box5 h3, .boxstyle_.box5 h4, .boxstyle-xs.box5 h4, .boxstyle-sm.box5 h4, .boxstyle-md.box5 h4, .boxstyle-lg.box5 h4, .boxstyle_.box5 h5, .boxstyle-xs.box5 h5, .boxstyle-sm.box5 h5, .boxstyle-md.box5 h5, .boxstyle-lg.box5 h5, .boxstyle_.box5 h6, .boxstyle-xs.box5 h6, .boxstyle-sm.box5 h6, .boxstyle-md.box5 h6, .boxstyle-lg.box5 h6, .boxstyle_.box5 .h1, .boxstyle-xs.box5 .h1, .boxstyle-sm.box5 .h1, .boxstyle-md.box5 .h1, .boxstyle-lg.box5 .h1, .boxstyle_.box5 .h2, .boxstyle-xs.box5 .h2, .boxstyle-sm.box5 .h2, .boxstyle-md.box5 .h2, .boxstyle-lg.box5 .h2, .boxstyle_.box5 .h3, .boxstyle-xs.box5 .h3, .boxstyle-sm.box5 .h3, .boxstyle-md.box5 .h3, .boxstyle-lg.box5 .h3, .boxstyle_.box5 .h4, .boxstyle-xs.box5 .h4, .boxstyle-sm.box5 .h4, .boxstyle-md.box5 .h4, .boxstyle-lg.box5 .h4, .boxstyle_.box5 .h5, .boxstyle-xs.box5 .h5, .boxstyle-sm.box5 .h5, .boxstyle-md.box5 .h5, .boxstyle-lg.box5 .h5, .boxstyle_.box5 .h6, .boxstyle-xs.box5 .h6, .boxstyle-sm.box5 .h6, .boxstyle-md.box5 .h6, .boxstyle-lg.box5 .h6 { color: white; } .boxstyle_.box5 blockquote.quotes, .boxstyle-xs.box5 blockquote.quotes, .boxstyle-sm.box5 blockquote.quotes, .boxstyle-md.box5 blockquote.quotes, .boxstyle-lg.box5 blockquote.quotes { color: inherit; } .pagination > li a, .pagination > li span { color: #197b96; } .hp-layout .div-content-placeholder { display: none; } .hp-layout .row-spacer { padding-top: 20px; padding-bottom: 20px; } .hp-layout .wrap { display: -webkit-flex; flex-wrap: wrap; -ms-flex-wrap: wrap; -webkit-flex-wrap: wrap; } .hp-layout p.editLink { padding-right: 0; margin: 0; position: absolute; width: 100%; z-index: 3; padding-top: 4px; } .hp-layout a.edit-link { background-color: lightgrey; padding: 3px 6px; outline: 1px solid purple; } .hp-layout a.edit-link .fa { padding-right: 2px; } .hp-layout .contributor-btns { z-index: 1000; position: absolute; margin: 5px 0 0 10px; } .hp-layout .contributor-btns a.btn { -webkit-box-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5); box-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5); } .hp-layout .contributor-btns a .new-window-link { color: #fff; } @media (min-width: 992px) { .hp-layout { position: relative; z-index: 0; } .hp-layout .box { word-break: break-word; } .hp-layout figure.flush-top { margin-bottom: 20px; } } .btn-colour1 { background-color: #d1e5ea; } .btn-colour1:hover { background-color: #bad7e0; } .btn-colour2 { background-color: #eee; } .btn-colour2:hover { background-color: #d7d7d7; } .btn-colour3 { border: 1px solid #197b96; } .btn-colour3:hover { background-color: #eee; } .btn-colour4 { border: 1px solid #777; } .btn-colour4:hover { background-color: #eee; } .btn-colour5 { background-color: #197b96; color: white; } .btn-colour5 * { color: white; } .btn-colour5:hover { background-color: #5ea3b5; } .hp-layout.slideshow-2017 .carousel { margin-bottom: 20px; background-color: rgba(0, 0, 0, 0.8); } .hp-layout.slideshow-2017 .carousel .carousel-caption { text-align: left; position: static; padding: 20px; background-color: transparent; text-shadow: none; min-height: 119.9px; } .hp-layout.slideshow-2017 .carousel .carousel-caption p { padding-right: 0; } .hp-layout.slideshow-2017 .carousel .carousel-caption p:last-child { margin-bottom: 22px; } .hp-layout.slideshow-2017 .carousel .carousel-caption h2, .hp-layout.slideshow-2017 .carousel .carousel-caption h3, .hp-layout.slideshow-2017 .carousel .carousel-caption h4, .hp-layout.slideshow-2017 .carousel .carousel-caption h5, .hp-layout.slideshow-2017 .carousel .carousel-caption h6, .hp-layout.slideshow-2017 .carousel .carousel-caption a { color: white; } .hp-layout.slideshow-2017 .carousel .carousel-caption a:hover { color: lightGrey; } .hp-layout.slideshow-2017 .carousel .carousel-inner > .item > img { min-width: 100%; } .hp-layout.slideshow-2017 .carousel .controller-container { position: inherit; height: 40px; z-index: 11; bottom: 10px; background-color: transparent; } .hp-layout.slideshow-2017 .carousel a.carousel-control { background-image: none; } .hp-layout.slideshow-2017 .carousel a.carousel-control::after { content: none; } .hp-layout.slideshow-2017 .carousel a.carousel-control .glyphicon-chevron-left, .hp-layout.slideshow-2017 .carousel a.carousel-control .glyphicon-chevron-right { margin-top: -25px; } .hp-layout.slideshow-2017 .carousel a.carousel-control .glyphicon { font-size: 1.6em; } .hp-layout.slideshow-2017 .carousel .carousel-indicators { position: static; width: auto; height: 40px; margin-left: 0; } .hp-layout.slideshow-2017 .carousel .carousel-indicators li { margin: 0 4px; height: 20px; width: 20px; border-width: 2px; border-color: #fff; } .hp-layout.slideshow-2017 .carousel .carousel-indicators li.active { background-color: #fff; } @media (min-width: 768px) { .hp-layout.slideshow-2017 .carousel .carousel-inner > .item > img { height: auto; } .hp-layout.slideshow-2017 .carousel .controller-container { bottom: 10px; right: auto; } .hp-layout.slideshow-2017 .carousel .carousel-caption.col-sm-6 { position: absolute; right: 10px; top: 10px; bottom: 10px; left: auto; } .hp-layout.slideshow-2017 .carousel a.carousel-control::after { color: white; } .hp-layout.slideshow-2017 .carousel .carousel-indicators { padding-right: 0; } .hp-layout.slideshow-2017 .carousel .carousel-indicators li { border-color: white; } .hp-layout.slideshow-2017 .carousel .carousel-indicators li.active { background-color: white; } } @media (min-width: 992px) { .hp-layout.slideshow-2017 .carousel .controller-container { position: absolute; background-color: transparent; bottom: 20px; right: 20px; } .hp-layout.slideshow-2017 .carousel .controller-container.col-md-6 { width: 46%; } .hp-layout.slideshow-2017 .carousel .carousel-caption.col-md-4, .hp-layout.slideshow-2017 .carousel .carousel-caption.col-md-6 { position: absolute; right: 20px; left: auto; top: auto; bottom: 20px; padding-bottom: 40px; background-color: rgba(0, 0, 0, 0.8); } .hp-layout.slideshow-2017 .carousel .carousel-caption.col-md-4 { width: calc(33.33% + 20px / 2); } .hp-layout.slideshow-2017 .carousel .carousel-caption.col-md-6 { width: 46%; } .hp-layout.slideshow-2017 .carousel .carousel-indicators { padding-right: 0; } } .hp-layout.slideshow-light-theme .carousel { background-color: rgba(255, 255, 255, 0.82); } .hp-layout.slideshow-light-theme .carousel .carousel-caption { background-color: rgba(255, 255, 255, 0.82); color: #383838; } .hp-layout.slideshow-light-theme .carousel .carousel-caption h2, .hp-layout.slideshow-light-theme .carousel .carousel-caption h3, .hp-layout.slideshow-light-theme .carousel .carousel-caption h4, .hp-layout.slideshow-light-theme .carousel .carousel-caption h5, .hp-layout.slideshow-light-theme .carousel .carousel-caption h6 { color: #383838; } .hp-layout.slideshow-light-theme .carousel .carousel-caption a, .hp-layout.slideshow-light-theme .carousel .carousel-caption a:active, .hp-layout.slideshow-light-theme .carousel .carousel-caption a:focus { color: #197b96; } .hp-layout.slideshow-light-theme .carousel .carousel-caption a:hover { color: #383838; } .hp-layout.slideshow-light-theme .carousel a.carousel-control { color: #6f6f6f; } .hp-layout.slideshow-light-theme .carousel .carousel-indicators li { border-color: #383838; } .hp-layout.slideshow-light-theme .carousel .carousel-indicators li.active { background-color: #383838; } .hp-layout.slideshow-light-theme .carousel a.left.carousel-control, .hp-layout.slideshow-light-theme .carousel a.right.carousel-control { color: #706768; } .hp-layout.slideshow-light-theme .carousel a:hover.left.carousel-control, .hp-layout.slideshow-light-theme .carousel a:hover.right.carousel-control { color: #383838; } @media (min-width: 992px) { .hp-layout.slideshow-light-theme .carousel .carousel-caption.col-md-4, .hp-layout.slideshow-light-theme .carousel .carousel-caption.col-md-6 { background-color: rgba(255, 255, 255, 0.82); } } @media (min-width: 992px) { .hp-layout figure.hasImage { position: relative; background-repeat: no-repeat; background-size: cover; margin-bottom: 20px; } .hp-layout figure.hasImage.set-height { min-height: 19vw; } .hp-layout figure.hasImage figcaption { position: absolute; bottom: 0; width: 100%; color: white; padding: 20px; background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.7) 80px, rgba(0, 0, 0, 0.8) 100%); background-repeat: repeat-x; } .hp-layout figure.hasImage figcaption h2, .hp-layout figure.hasImage figcaption h3, .hp-layout figure.hasImage figcaption h4, .hp-layout figure.hasImage figcaption h5, .hp-layout figure.hasImage figcaption h6, .hp-layout figure.hasImage figcaption a { color: white; } .hp-layout figure.hasImage figcaption a:hover { color: lightGrey; } } @media (min-width: 992px) and (min-width: 1200px) { .hp-layout figure.hasImage.set-height { min-height: 240px; } } .hp-layout .contributor-btns { z-index: 1000; position: absolute; margin: 5px 0 0 10px; } .hp-layout .contributor-btns a.btn { -webkit-box-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5); box-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5); } .hp-layout .contributor-btns a .new-window-link { color: #fff; } /* white space */ @media (min-width: 641px) { .scs-content-block-pad { padding-left: 40px !important; padding-right: 0px !important; } } .scs-content-pad-top-30 { margin-top: 30px; } .scs-content-pad-top-20 { margin-top: 20px; } .scs-content-pad-left-15 { margin-left: 15px; } /* typography */ h1 { margin-bottom: 30px; font-size: 32px; line-height: 36px; border-bottom: 0px; } @media (min-width: 768px) { h1 { font-size: 48px; line-height: 50px; } } a { text-decoration: underline; color: #197B9A; } a:visited { color: #197B9A; text-decoration: none; } a:link { color: #197B9A; } a:hover { color: #2b8cc4; } /* typography for content pages main blockquote */ .scs-content-main-block h2.guide-page-title { font-size: 32px !important; } @media (min-width: 641px) { .scs-content-main-block h2.guide-page-title { font-size: 32px !important; line-height: 50px; } } .scs-content-main-block h1 { margin-bottom: 25px; font-size: 21px; font-weight: 700; } @media (min-width: 641px) { .scs-content-main-block h1 { font-size: 46px; line-height: 1.25; } } .scs-content-main-block h2 { margin-bottom: 15px; margin-top: 30px; font-size: 18px; font-weight: 700; } @media (min-width: 641px) { .scs-content-main-block h2 { font-size: 25px; line-height: 1.25; } } .scs-content-main-block h3 { margin-bottom: 5px; font-size: 18px; color: black; font-weight: 700; margin-top: 35px; } @media (min-width: 641px) { .scs-content-main-block h3 { font-size: 21px; line-height: 1.25; } } .scs-content-main-block h4 { margin-bottom: 5px; font-size: 16px; color: black; font-weight: 700; margin-top: 35px; } @media (min-width: 641px) { .scs-content-main-block h4 { font-size: 19px; line-height: 1.25; } } .scs-content-main-block p { font-size: 16px; line-height: 1.2; font-weight: 400; color: #0b0c0c; } @media (min-width: 641px) { .scs-content-main-block p { font-size: 18px; line-height: 1.3157894737; } } .scs-content-main-block ul { line-height: 1.5; list-style-type: disc; padding-left: 1em; margin-top: 1.5em; margin-bottom: 2.5em; margin-left: 5px; color: #0b0c0c; } .scs-content-main-block ol { line-height: 1.5; padding-left: 1em; margin-top: 1.5em; margin-bottom: 2.5em; margin-left: 5px; color: #0b0c0c; } .scs-content-main-block li { font-size: 16px; line-height: 25px; } @media (min-width: 641px) { .scs-content-main-block li { font-size: 18px; } } .scs-content-main-block .info-notice { border-left: 1em solid #dee0e2; padding: 1em 0 1em 1em; margin: 2em 0; } /* typography for content page side menu */ .scs-navigation-side-menu { padding: 20px 0px 10px 0px; font-size: 16px; } .scs-navigation-side-menu h2 { font-weight: 600; text-transform: none; font-size: 18px; line-height: 1.25; margin-bottom: 10px; } .scs-navigation-side-menu h3 { font-weight: 400; text-transform: none; font-size: 16px; line-height: 1.25; margin-bottom: 10px; } .scs-navigation-side-menu ul { list-style-type: none; padding-left: 0px; margin-left: 0px; margin-bottom: 20px; } .scs-navigation-side-menu-topic a { font-weight: 600; } /* dividers */ .divider--thick { border-top: 2px solid #197b96; } .divider--thin { border-top: 1px solid #bfc1c3; } /* buttons */ .scs-button { text-decoration: none !important; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; font-weight: 400; font-size: 16px; font-size: 1rem; line-height: 1.1875; -webkit-box-sizing: border-box; box-sizing: border-box; display: inline-block; position: relative; margin-top: 010px; margin-bottom: 22px; padding: 7px 10px; border: 2px solid transparent; border-radius: 0; color: #fff !important; background-color: #197b96; -webkit-box-shadow: 0 2px 0 #003618; box-shadow: 0 2px 0 #003618; text-align: center; vertical-align: top; cursor: pointer; -webkit-appearance: none; } .scs-button:hover { background-color: #2b8cc4; } .scs-button:focus { background-color: #2b8cc4; } .scs-button--booking { font-weight: 700; font-size: 22px; line-height: 1; min-height: auto; padding-top: 8px; padding-right: 40px; padding-bottom: 8px; padding-left: 15px; background-image: url("../images/icon-pointer.png"); background-repeat: no-repeat; background-position: 100% 50%; } /* right hand promos */ .scs-side-nav-promo { border: 0; padding: 20px; margin-top: 50px; } .scs-side-nav-promo ul.fa-ul { padding-left: 0; margin-left: 2.14285714em; list-style-type: none; } .scs-side-nav-promo p { font-size: 16px; } .highlighted-event-date > h3 { font-size: 34px; } .scs-section-pane { width: 80%; } .scs-section-pane .scs-pane-inner { border-left: 1px solid #bfc1c3; min-height: 700px; } .scs-section-pane ul { padding-left: 5px; } .scs-section-pane ul li { list-style: none; position: relative; } .scs-section-pane ul p { font-size: 15px; line-height: 20px; font-weight: 400; color: black; width: 95%; } .scs-section-pane ul h3 { font-size: 20px; font-weight: 700; margin-bottom: 5px; color: #197B9A; } .scs-section-pane ul a { padding: 12px 30px 8px 15px; text-transform: none; font-size: 16px; line-height: 1.1428571429; position: relative; display: block; text-decoration: none !important; } .scs-section-pane ul a:after { position: absolute; top: 50%; margin-top: -16px; right: 10px; float: right; content: "\203A"; font-size: 32px; } .scs-section-pane ul a:hover { background: #dee0e2; } h5.scs-topic-atoz { font-size: 20px; font-weight: 600; color: black !important; text-align: center; margin-top: 20px !important; } .topic-header { margin-bottom: 30px; margin-left: 20px; } .topic-header h1 { margin-top: 0px; font-size: 26px; color: black; line-height: 26px; border-bottom: 0px; font-weight: 600; } @media (min-width: 641px) { .topic-header h1 { margin-top: 0px; font-size: 40px; line-height: 50px; font-weight: 600; } } .topic-header h3 { color: #777; margin-bottom: 0px; font-size: 19px; } /* step layout for topics */ .scs-c-step-nav-header { color: #0b0c0c; position: relative; padding: 10px; background: #f8f8f8; border-top: solid 1px #bfc1c3; border-bottom: solid 1px #bfc1c3; } @media print { .scs-c-step-nav-header { color: #000000; } } @media (min-width: 641px) { .scs-c-step-nav-header { padding: 15px; } } .scs-c-step-nav-header__part-of { font-family: "nta", Arial, sans-serif; font-weight: 700; text-transform: none; font-size: 14px; line-height: 1.1428571429; display: block; padding-bottom: 0.2em; } @media (min-width: 641px) { .scs-c-step-nav-header__part-of { font-size: 16px; line-height: 1.25; } } .scs-c-step-nav-header__title { font-family: "nta", Arial, sans-serif; font-weight: 700; text-transform: none; font-size: 18px; line-height: 1.2; } @media (min-width: 641px) { .scs-c-step-nav-header__title { font-size: 24px; line-height: 1.25; } } .scs-c-step-nav-related { color: #0b0c0c; border-top: 2px solid #005ea5; margin-bottom: 30px; } @media print { .scs-c-step-nav-related { color: #000000; } } .scs-c-step-nav-related__heading { margin-top: 15px; margin-bottom: 10px; font-family: "nta", Arial, sans-serif; font-weight: 700; text-transform: none; font-size: 16px; line-height: 1.25; } @media (min-width: 641px) { .scs-c-step-nav-related__heading { font-size: 19px; line-height: 1.3157894737; } } .scs-c-step-nav-related__links { font-family: "nta", Arial, sans-serif; font-weight: 700; text-transform: none; font-size: 14px; line-height: 1.1428571429; margin: 0; padding: 0; } @media (min-width: 641px) { .scs-c-step-nav-related__links { font-size: 16px; line-height: 1.25; } } .scs-c-step-nav-related--singular { margin-bottom: 13px; } .scs-c-step-nav-related--singular .scs-c-step-nav-related__heading { font-family: "nta", Arial, sans-serif; font-weight: bold; text-transform: none; font-size: 19px; line-height: 1.4; margin-top: 20px; } @media (min-width: 641px) { .scs-c-step-nav-related--singular .scs-c-step-nav-related__heading { font-size: 19px; line-height: 1.4; } } .scs-c-step-nav-related--singular .scs-c-step-nav-related__pretitle { margin-bottom: 7.5px; } .scs-c-step-nav-related__pretitle { display: block; margin-bottom: 15px; } @media (min-width: 641px) { .scs-c-step-nav-related__pretitle { margin-bottom: 5px; } } .scs-c-step-nav-related__links { list-style: none; } .scs-c-step-nav-related__link-item { margin-top: 15px; } @media (min-width: 641px) { .scs-c-step-nav-related__link-item { margin-top: 5px; } } .scs-c-step-nav { margin-bottom: 30px; } @media (min-width: 641px) { .scs-c-step-nav.scs-c-step-nav--large { margin-bottom: 60px; } } .js-enabled .scs-c-step-nav.js-hidden { display: none; } .scs-c-step-nav__controls { padding: 3px 3px 0 0; text-align: right; } .scs-c-step-nav__button { color: #005ea5; cursor: pointer; background: none; border: 0; margin: 0; } .scs-c-step-nav__button::-moz-focus-inner { border: 0; } .scs-c-step-nav__button--title { font-family: "nta", Arial, sans-serif; font-weight: bold; text-transform: none; font-size: 19px; line-height: 1.4; display: inline-block; padding: 0; text-align: left; color: #0b0c0c; } @media (min-width: 641px) { .scs-c-step-nav__button--title { font-size: 19px; line-height: 1.4; } } .scs-c-step-nav--large .scs-c-step-nav__button--title { font-family: "nta", Arial, sans-serif; font-weight: bold; text-transform: none; font-size: 19px; line-height: 1.4; } @media (min-width: 641px) { .scs-c-step-nav--large .scs-c-step-nav__button--title { font-size: 24px; line-height: 1.4; } } .scs-c-step-nav__button--controls { font-family: "nta", Arial, sans-serif; font-weight: 400; text-transform: none; font-size: 14px; line-height: 1; position: relative; z-index: 1; padding: 0.5em 0; text-decoration: underline; } @media (min-width: 641px) { .scs-c-step-nav__button--controls { font-size: 14px; line-height: 1; } } .scs-c-step-nav__button--controls:hover { color: #2b8cc4; } .scs-c-step-nav--large .scs-c-step-nav__button--controls { font-family: "nta", Arial, sans-serif; font-weight: 400; text-transform: none; font-size: 14px; line-height: 1; } @media (min-width: 641px) { .scs-c-step-nav--large .scs-c-step-nav__button--controls { font-size: 16px; line-height: 1; } } .scs-c-step-nav__steps { padding: 0; margin: 0; } .scs-c-step-nav__step { position: relative; padding-left: 45px; list-style: none; } .scs-c-step-nav__step:after { content: ""; position: absolute; z-index: 2; width: 0; height: 100%; border-left: solid 2px #bfc1c3; background: #fff; left: 0; margin-left: 12px; top: 15px; } @media (min-width: 641px) { .scs-c-step-nav--large .scs-c-step-nav__step { padding-left: 60px; } .scs-c-step-nav--large .scs-c-step-nav__step:after { left: 0; margin-left: 16px; border-width: 3px; top: 30px; } } .scs-c-step-nav__step:last-child:before { content: ""; position: absolute; z-index: 6; bottom: 0; left: 0; margin-left: 6.5px; width: 13px; height: 0; border-bottom: solid 2px #bfc1c3; } .scs-c-step-nav__step:last-child:after { height: -webkit-calc(100% - 15px); height: calc(100% - 15px); } .scs-c-step-nav__step:last-child .scs-c-step-nav__help:after { height: 100%; } @media (min-width: 641px) { .scs-c-step-nav--large .scs-c-step-nav__step:last-child:before { margin-left: 8.75px; width: 17.5px; border-width: 3px; } .scs-c-step-nav--large .scs-c-step-nav__step:last-child:after { height: calc(100% - 30px); } } .scs-c-step-nav__step--active:last-child:before, .scs-c-step-nav__step--active .scs-c-step-nav__circle--number, .scs-c-step-nav__step--active:after, .scs-c-step-nav__step--active .scs-c-step-nav__help:after { border-color: #0b0c0c; } .scs-c-step-nav__circle { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; position: absolute; z-index: 5; top: 15px; left: 0; width: 26px; height: 26px; color: #0b0c0c; background: #fff; border-radius: 100px; text-align: center; } @media (min-width: 641px) { .scs-c-step-nav--large .scs-c-step-nav__circle { top: 30px; width: 35px; height: 35px; } } .scs-c-step-nav__circle--number { font-family: "nta", Arial, sans-serif; font-weight: bold; text-transform: none; font-size: 16px; line-height: 23px; border: solid 2px #bfc1c3; } @media (min-width: 641px) { .scs-c-step-nav__circle--number { font-size: 16px; line-height: 23px; } } .scs-c-step-nav--large .scs-c-step-nav__circle--number { font-family: "nta", Arial, sans-serif; font-weight: bold; text-transform: none; font-size: 16px; line-height: 23px; } @media (min-width: 641px) { .scs-c-step-nav--large .scs-c-step-nav__circle--number { font-size: 19px; line-height: 30px; } } @media (min-width: 641px) { .scs-c-step-nav--large .scs-c-step-nav__circle--number { border-width: 3px; } } .scs-c-step-nav__circle--logic { font-family: "nta", Arial, sans-serif; font-weight: bold; text-transform: none; font-size: 16px; line-height: 28px; } @media (min-width: 641px) { .scs-c-step-nav__circle--logic { font-size: 16px; line-height: 28px; } } .scs-c-step-nav--large .scs-c-step-nav__circle--logic { font-family: "nta", Arial, sans-serif; font-weight: bold; text-transform: none; font-size: 16px; line-height: 28px; } @media (min-width: 641px) { .scs-c-step-nav--large .scs-c-step-nav__circle--logic { font-size: 19px; line-height: 34px; } } .scs-c-step-nav__circle-inner { float: right; min-width: 100%; } .scs-c-step-nav__circle-background { text-shadow: 0 -0.1em 0 #fff, 0.1em 0 0 #fff, 0 0.1em 0 #fff, -0.1em 0 0 #fff; } .scs-c-step-nav__circle-step-label, .scs-c-step-nav__circle-step-colon { position: absolute !important; width: 1px !important; height: 1px !important; margin: -1px !important; padding: 0 !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; -webkit-clip-path: inset(50%) !important; clip-path: inset(50%) !important; border: 0 !important; white-space: nowrap !important; } .scs-c-step-nav__header { padding: 15px 0; border-top: solid 2px #dee0e2; } .scs-c-step-nav--active .scs-c-step-nav__header { cursor: pointer; } .scs-c-step-nav__header .scs-c-step-nav__button:focus { outline: 3px solid #ffbf47; outline-offset: 0; } .scs-c-step-nav__header:hover .scs-c-step-nav__button, .scs-c-step-nav__header:hover .scs-c-step-nav__circle { color: #005ea5; } .scs-c-step-nav__header:hover .scs-c-step-nav__toggle-link { text-decoration: underline; } @media (min-width: 641px) { .scs-c-step-nav--large .scs-c-step-nav__header { padding: 30px 0; } } .scs-c-step-nav__title { color: #0b0c0c; font-family: "nta", Arial, sans-serif; font-weight: bold; text-transform: none; font-size: 19px; line-height: 1.4; margin: 0; } @media print { .scs-c-step-nav__title { color: #000000; } } @media (min-width: 641px) { .scs-c-step-nav__title { font-size: 19px; line-height: 1.4; } } .scs-c-step-nav--large .scs-c-step-nav__title { font-family: "nta", Arial, sans-serif; font-weight: bold; text-transform: none; font-size: 19px; line-height: 1.4; } @media (min-width: 641px) { .scs-c-step-nav--large .scs-c-step-nav__title { font-size: 24px; line-height: 1.4; } } .scs-c-step-nav__toggle-link { font-family: "nta", Arial, sans-serif; font-weight: 400; text-transform: none; font-size: 14px; line-height: 1.2; display: block; color: #005ea5; text-transform: capitalize !important; } @media (min-width: 641px) { .scs-c-step-nav__toggle-link { font-size: 14px; line-height: 1.2; } } .scs-c-step-nav--large .scs-c-step-nav__toggle-link { font-family: "nta", Arial, sans-serif; font-weight: 400; text-transform: none; font-size: 14px; line-height: 1.2; } @media (min-width: 641px) { .scs-c-step-nav--large .scs-c-step-nav__toggle-link { font-size: 16px; line-height: 1.2; } } .scs-c-step-nav__panel { color: #0b0c0c; font-family: "nta", Arial, sans-serif; font-weight: 400; text-transform: none; font-size: 16px; line-height: 1.25; } @media print { .scs-c-step-nav__panel { color: #000000; } } @media (min-width: 641px) { .scs-c-step-nav__panel { font-size: 16px; line-height: 1.3157894737; } } .scs-c-step-nav--large .scs-c-step-nav__panel { font-family: "nta", Arial, sans-serif; font-weight: 400; text-transform: none; font-size: 16px; line-height: 1.25; } @media (min-width: 641px) { .scs-c-step-nav--large .scs-c-step-nav__panel { font-size: 19px; line-height: 1.3157894737; } } .js-enabled .scs-c-step-nav__panel.js-hidden { display: none; } .scs-c-step-nav__paragraph { padding-bottom: 15px; margin: 0; font-size: inherit; } .scs-c-step-nav__paragraph + .scs-c-step-nav__list { margin-top: -5px; } @media (min-width: 641px) { .scs-c-step-nav--large .scs-c-step-nav__paragraph + .scs-c-step-nav__list { margin-top: -15px; } } @media (min-width: 641px) { .scs-c-step-nav--large .scs-c-step-nav__paragraph { padding-bottom: 30px; } } .scs-c-step-nav__list { padding: 0; padding-bottom: 10px; list-style: none; } @media (min-width: 641px) { .scs-c-step-nav--large .scs-c-step-nav__list { padding-bottom: 20px; } } .scs-c-step-nav__list--choice { margin-left: 20px; list-style: disc; } .scs-c-step-nav__list--choice .scs-c-step-nav__list-item--active:before { left: -65px; } @media (min-width: 641px) { .scs-c-step-nav--large .scs-c-step-nav__list--choice .scs-c-step-nav__list-item--active:before { left: -80px; } } .scs-c-step-nav__list-item { margin-bottom: 10px; } .scs-c-step-nav__link { font-family: "nta", Arial, sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } @media print { .scs-c-step-nav__link { font-family: sans-serif; } } .scs-c-step-nav__link:focus { outline: 3px solid #ffbf47; outline-offset: 0; background-color: #ffbf47; } .scs-c-step-nav__link:link { color: #005ea5; } .scs-c-step-nav__link:visited { color: #4c2c92; } .scs-c-step-nav__link:hover { color: #2b8cc4; } .scs-c-step-nav__link:active { color: #2b8cc4; } .scs-c-step-nav__link:focus { color: #0b0c0c; } .scs-c-step-nav__link-active-context { position: absolute !important; width: 1px !important; height: 1px !important; margin: -1px !important; padding: 0 !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; -webkit-clip-path: inset(50%) !important; clip-path: inset(50%) !important; border: 0 !important; white-space: nowrap !important; } .scs-c-step-nav__list-item--active { position: relative; } .scs-c-step-nav__list-item--active:before { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; content: ""; position: absolute; z-index: 5; top: 0.6em; left: -45px; margin-left: 5px; width: 16px; height: 16px; margin-top: -8px; background: #0b0c0c; border: solid 2px #fff; border-radius: 100px; } @media (min-width: 641px) { .scs-c-step-nav--large .scs-c-step-nav__list-item--active:before { left: -60px; margin-left: 9.5px; } } .scs-c-step-nav__list-item--active .scs-c-step-nav__link { text-decoration: none; } .scs-c-step-nav__list-item--active .scs-c-step-nav__link:link, .scs-c-step-nav__list-item--active .scs-c-step-nav__link:visited, .scs-c-step-nav__list-item--active .scs-c-step-nav__link:hover, .scs-c-step-nav__list-item--active .scs-c-step-nav__link:active, .scs-c-step-nav__list-item--active .scs-c-step-nav__link:focus { color: #0b0c0c; } @media print { .scs-c-step-nav__list-item--active .scs-c-step-nav__link:link, .scs-c-step-nav__list-item--active .scs-c-step-nav__link:visited, .scs-c-step-nav__list-item--active .scs-c-step-nav__link:hover, .scs-c-step-nav__list-item--active .scs-c-step-nav__link:active, .scs-c-step-nav__list-item--active .scs-c-step-nav__link:focus { color: #000000; } } .scs-c-step-nav__list-item--active .scs-c-step-nav__link:link:focus { color: #0b0c0c; } @media print { .scs-c-step-nav__list-item--active .scs-c-step-nav__link:link:focus { color: #000000; } } .scs-c-step-nav__context { display: inline-block; font-weight: normal; color: #6f777b; } .scs-c-step-nav__context:before { content: " \2013\00a0"; } h1.guide-topic-title { font-weight: 700; } .part-navigation-container { margin-top: 30px; border-bottom: 1px solid #bfc1c3; padding-bottom: 15px; } .part-navigation-container h2 { margin: 0px 0px 10px 0px; font-weight: 400; font-size: 16px; } .part-navigation-container .scs-contents-list__list { color: #0b0c0c; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; font-weight: 400; font-size: 16px; margin: 0px 0px 20px 0px; padding: 0; list-style-type: none; } .part-navigation-container .scs-contents-list__list .scs-contents-list__list-item-active { font-weight: 700; } .part-navigation-container .scs-contents-list__list .scs-contents-list__list-item { padding-top: 0px; line-height: 1.3; list-style-type: none; font-size: 16px; margin-left: 25px; padding-right: 25px; } .part-navigation-container .scs-contents-list__list .scs-contents-list__list-item:before { content: "— "; margin-left: -25px; padding-right: 5px; } .scs-guide-pagination { display: block; margin-top: 10px; margin-bottom: 10px; margin-left: -15px; margin-right: -15px; } .scs-guide-pagination a { color: #197B9A; } .scs-guide-pagination a:visited { color: #197B9A; } .scs-guide-pagination ul { padding-left: 1px; margin-left: 1px; margin-top: 5px !important; margin-bottom: 5px !important; } .scs-guide-pagination__list { margin: 0; padding: 0; } .scs-guide-pagination__item { font-weight: 400; text-transform: none; font-size: 14px; line-height: 1.1428571429; list-style: none; } @media (min-width: 641px) { .scs-guide-pagination__item { font-size: 16px !important; line-height: 1.25 !important; } } .scs-guide-pagination__link { display: block; padding: 15px; text-decoration: none !important; } .scs-guide-pagination__link:hover, .scs-guide-pagination__link:active, .scs-guide-pagination__link:visited, .scs-guide-pagination__link:focus { color: #005ea5; } .scs-guide-pagination__link:hover, .scs-guide-pagination__link:active { background-color: #f8f8f8; color: red; } .scs-guide-pagination__link-title { display: block; } .scs-guide-pagination__link-divider { position: absolute !important; width: 1px !important; height: 1px !important; margin: -1px !important; padding: 0 !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; -webkit-clip-path: inset(50%) !important; clip-path: inset(50%) !important; border: 0 !important; white-space: nowrap !important; } .scs-guide-pagination__link-text { font-weight: 700; text-transform: none; font-size: 16px; line-height: 1.25; margin-left: 10px; } @media (min-width: 641px) { .scs-guide-pagination__link-text { font-size: 19px; line-height: 1.3157894737; } } .scs-guide-pagination__link-icon { font-weight: 400; text-transform: none; font-size: 18px; line-height: 1.2; display: inline-block; margin-bottom: 1px; height: .482em; width: .63em; } @media (min-width: 641px) { .scs-guide-pagination__link-icon { font-size: 24px; line-height: 1.25; } } .scs-guide-pagination__link-label { display: inline-block; margin-top: 0.1em; text-decoration: underline; margin-left: 30px; } @media (max-width: 640px) { .scs-guide-pagination__link-label { margin-left: 24px; } } .visually-hidden, .visuallyhidden { position: absolute !important; left: -9999em; top: auto; width: 1px !important; height: 1px !important; overflow: hidden !important; } .hp-layout h2 { margin-top: 20px; font-size: 22px; font-weight: 500; } .hp-layout .scs-homepage-mega-links { margin: 10px 0px 10px 0px; padding: 5px 5px 20px 5px; } .hp-layout .scs-homepage-mega-links .lighten { font-weight: 300; } .hp-layout .scs-homepage-mega-links h3 { margin-bottom: 5px; margin-top: 20px; font-size: 18px; font-weight: 600; } .hp-layout .scs-homepage-mega-links h3 a { text-decoration: none; } .hp-layout .scs-homepage-mega-links h3 a:hover { color: grey !important; } .hp-layout .scs-homepage-mega-links p { line-height: 18px; font-size: 16px; } /* dev only styles */ .versioning { font-size: 12px !important; color: yellow !important; float: right; } .algolia-autocomplete { width: 100%; } .algolia-autocomplete .aa-input, .algolia-autocomplete .aa-hint { width: 100%; } .algolia-autocomplete .aa-hint { color: #999; } .algolia-autocomplete .aa-dropdown-menu { width: 100%; background-color: #fff; border: 1px solid #999; border-top: none; } .algolia-autocomplete .aa-dropdown-menu .aa-suggestion { cursor: pointer; padding: 5px 4px; } .algolia-autocomplete .aa-dropdown-menu .aa-suggestion.aa-cursor { background-color: #B2D7FF; } .algolia-autocomplete .aa-dropdown-menu .aa-suggestion em { font-weight: bold; font-style: normal; } .algolia-autocomplete input { height: 46px; font-size: 18px; line-height: 1.3333333; } @media (min-width: 1000px) { .course-finder { margin-bottom: 20px; } } @media (min-width: 768px) { .id7-main-content-area > .id7-main-content { padding: 0 20px; } .image-container { position: absolute; width: 100%; height: 100%; top: 0; left: 0; bottom: 0; right: 0; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; overflow: hidden; pointer-events: none; } .image-container > iframe { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; max-width: none; } .image-container::after { content: ''; display: block; position: absolute; height: 100%; width: 100%; } .course-finder { margin-left: -20px; margin-right: -20px; position: relative; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: stretch; -ms-flex-align: stretch; align-items: stretch; height: 320px; } .course-finder h2 { font-size: 38px; text-transform: uppercase; font-weight: bold; } .course-finder h2 label { color: white; } .course-finder .form { position: relative; -webkit-box-flex: 0; -ms-flex: 0 1 auto; flex: 0 1 auto; margin: 0 40px; } } .btn-careers { color: white; background-color: #bf234b; border-color: #c35377; color: white !important; } .promo-tiles { margin-top: 15px; } .promo-tiles .btn-careers { color: white; background-color: #b4153a; border-color: #9d1233; color: white !important; } .promo-tiles .text-small-white { font-size: 18px; line-height: 1.1; color: #ffffff; } .promo-tiles a.image-link-block { display: block; position: relative; margin-bottom: 20px; } .promo-tiles a.image-link-block .image-link-block-gradient-wrapper { position: absolute; top: 0px; left: 0px; width: 100%; height: 100%; color: white; text-decoration: none; background-image: -webkit-gradient(linear, left bottom, left top, color-stop(20%, rgba(0, 0, 0, 0.8)), color-stop(50%, transparent)); background-image: linear-gradient(to top, rgba(0, 0, 0, 0.8) 20%, transparent 50%); -webkit-transition: all .2s linear; transition: all .2s linear; } .promo-tiles a.image-link-block .image-link-block-text { position: absolute; bottom: 0px; left: 0px; padding-left: 20px; } .promo-tiles a.image-link-block .image-link-block-text h2 { color: white; } .promo-tiles a.image-link-block:hover .image-link-block-gradient-wrapper { background-color: rgba(0, 0, 0, 0.2); } .hp-promo h2 { margin-top: 20px; font-size: 22px; font-weight: 500; } .hp-promo .scs-homepage-mega-links { margin: 10px 0px 10px 0px; padding: 5px 5px 20px 5px; } .hp-promo .scs-homepage-mega-links .lighten { font-weight: 300; } .hp-promo .scs-homepage-mega-links h3 { margin-bottom: 5px; margin-top: 20px; font-size: 18px; font-weight: 600; } .hp-promo .scs-homepage-mega-links h3 a { text-decoration: none; } .hp-promo .scs-homepage-mega-links h3 a:hover { color: grey !important; } .hp-promo .scs-homepage-mega-links p { line-height: 18px; font-size: 16px; }
0.277179
0.05199
display: none; cursor: nwse-resize; margin: 2px; width: 50px; height: 50px; position: fixed; right: 0; bottom: 0; background: linear-gradient(-45deg, #fff, #fff 9%, #797979 9%, #797979 12%, #fff 12%, #fff 15%, #797979 15%, #797979 18%, #fff 18%, #fff 21%, #797979 21%, #797979 24%, #fff 24%) } td.dropdowns { text-align: center; } table { width: 90%; } button#createsample { padding-left: 5px; padding-right: 5px; } .noUi-target { margin-bottom: 60px; } #options { width: 85%; display: none; margin-left: 5%; margin-right: 5%; } .noUi-handle.noUi-handle-lower { margin-top: -7px; } svg { width: 120px; float: left; padding-right: 15px; } #selectendpoint { display: none; } #slidecontainer { display: none; } #myprogresswrap { width: 250px; } #poster { display: none; width: 250px; margin: auto; } #sidebar { padding-top: 28px; width: 250px; /* float: left; */ position: fixed; height: 500px; left: 0; top: 0; display: none; } #selecttrimcanvas:hover { cursor: url('cross.png') 13 13, auto; } #fadetoblack { top: 0; left: 0; position: fixed; width: 100%; height: 100%; background-color: black; opacity: 0; z-index: 999; display: none; } #restart { display: none; } #message { color: black; width: 250px; text-align: center; margin-bottom: 15px; } #postSaveMessage { width: 250px; text-align: center; margin-top: 15px; } #finaldim { color: black; width: 250px; text-align: center; margin-bottom: 15px; } #finaltime { width: 250px; text-align: center; margin-bottom: 15px; display: none; } #selecttrim { display: none; width: 90%; margin: auto; margin-top: 72px; } #bodywrap { width: calc(100% - 250px); margin-left: 250px; } input:focus { outline: none !important; } button { width: 220px; margin-left: auto; margin-right: auto; margin-top: 10px; } button:focus { outline: 0; } button:hover { cursor: pointer; } body { -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } html, body { height: 100%; width: 100%; margin: 0; padding: 0; overflow: hidden; } *:hover { cursor: default; } body { font: 1em BlinkMacSystemFont; } h1 { color: black; line-height: 120px; } #logo { width: 350px; float: left; padding-right: 10px; padding-left: 15px; } #message { display: none; } div#result { width: 90%; margin: auto; margin-top: 72px; } #myProgress { display: none; width: 90%; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); height: 10px; background-color: #ddd; } #openmodal { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); transition-timing-function: ease; animation: zoomme 2.5s; animation-fill-mode: forwards; color: #404040; } #openmodalwrap { background-color: white; width: 100%; height: 120%; margin-top: -100px; position: fixed; z-index: 999; transition-timing-function: ease; animation: fademodal 2.5s; animation-fill-mode: forwards; } #openmodal:hover { /*transform: scale(10); */ } @keyframes zoomme { 0% { font-size: .1em; } 50% { font-size: 10em; } 70% { font-size: 10em; } 100% { font-size: 10em; } } @keyframes fademodal { 0% { opacity: 1; z-index: 999; } 60% { opacity: 1; filter: blur(0); z-index: 999; } 100% { opacity: 0; filter: blur(10px); z-index: 0; } } #myBar { position: absolute; width: 0; height: 100%; background-color: #0099ff; transition: width 0.3s ease; } #label { display: none; text-align: center; line-height: 10px; color: white; } #copyright { font-size: 0.8em; /* line-height: 1em; */ /* padding-bottom: 40px; */ margin-left: 15px; margin-top: -30px; } #drag { text-align: center; display: flex; justify-content: center; flex-direction: column; height: 100%; width: 100%; } #drag > div { font-size: 2em; } #drag > p { font-size: 1em; margin-top: 0px; } #filelistwrap { border: 3px dashed #999; height: calc(100% - 200px); width: 90%; margin: auto; margin-top: 0px; z-index: 5; } #canvaswrap { display: none; width: 600px; margin: auto; } #myCanvas:hover { cursor: crosshair; margin: auto; } #myCanvas { background-image: url(""); background-repeat: no-repeat; position: absolute; z-index: 998; } .btn { margin-left: 15px; /* margin: 0 auto; */ } .btn-lg { padding: 13px 0 13px 0 !important; } .rightbtn { position: relative; } .leftbtn { position: relative; } #loading-container { display: flex; justify-content: center; align-items: center; display: none; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); } #maintitle { color: #404040; padding-bottom: 10px; margin-left: 5%; } #loading-container { width: 200px; margin: auto; display: none; } /** BEGIN CSS **/ body { background: #fff; } @keyframes rotate-loading { 0% { transform: rotate(0deg); -ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg); } 100% { transform: rotate(360deg); -ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg); } } @-moz-keyframes rotate-loading { 0% { transform: rotate(0deg); -ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg); } 100% { transform: rotate(360deg); -ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg); } } @-webkit-keyframes rotate-loading { 0% { transform: rotate(0deg); -ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg); } 100% { transform: rotate(360deg); -ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg); } } @-o-keyframes rotate-loading { 0% { transform: rotate(0deg); -ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg); } 100% { transform: rotate(360deg); -ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg); } } @keyframes rotate-loading { 0% { transform: rotate(0deg); -ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg); } 100% { transform: rotate(360deg); -ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg); } } @-moz-keyframes rotate-loading { 0% { transform: rotate(0deg); -ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg); } 100% { transform: rotate(360deg); -ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg); } } @-webkit-keyframes rotate-loading { 0% { transform: rotate(0deg); -ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg); } 100% { transform: rotate(360deg); -ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg); } } @-o-keyframes rotate-loading { 0% { transform: rotate(0deg); -ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg); } 100% { transform: rotate(360deg); -ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg); } } @keyframes loading-text-opacity { 0% { opacity: 0; } 20% { opacity: 0; } 50% { opacity: 1; } 100% { opacity: 0; } } @-moz-keyframes loading-text-opacity { 0% { opacity: 0; } 20% { opacity: 0; } 50% { opacity: 1; } 100% { opacity: 0; } } @-webkit-keyframes loading-text-opacity { 0% { opacity: 0; } 20% { opacity: 0; } 50% { opacity: 1; } 100% { opacity: 0; } } @-o-keyframes loading-text-opacity { 0% { opacity: 0; } 20% { opacity: 0; } 50% { opacity: 1; } 100% { opacity: 0; } } .loading-container, .loading { height: 200px; position: relative; width: 200px; border-radius: 100%; } .loading-container { margin: 40px auto; } .loading { border: 2px solid transparent; border-color: transparent #000 transparent #FFF; -moz-animation: rotate-loading 1.5s linear 0s infinite normal; -moz-transform-origin: 50% 50%; -o-animation: rotate-loading 1.5s linear 0s infinite normal; -o-transform-origin: 50% 50%; -webkit-animation: rotate-loading 1.5s linear 0s infinite normal; -webkit-transform-origin: 50% 50%; animation: rotate-loading 1.5s linear 0s infinite normal; transform-origin: 50% 50%; } .loading-container:hover .loading { border-color: transparent #E45635 transparent #E45635; } .loading-container:hover .loading, .loading-container .loading { -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; transition: all 0.5s ease-in-out; } #loading-text { -moz-animation: loading-text-opacity 2s linear 0s infinite normal; -o-animation: loading-text-opacity 2s linear 0s infinite normal; -webkit-animation: loading-text-opacity 2s linear 0s infinite normal; animation: loading-text-opacity 2s linear 0s infinite normal; color: #000000; font-size: 16px; opacity: 0; position: relative; text-align: center; text-transform: uppercase; bottom: 110px; width: 200px; margin: auto; } #ffmpegsource { cursor: pointer; } body { background-color: white; font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif; } .noUi-value-large { padding-top: 3px; } .noUi-connect { background: #0099ff !important; } video { margin: 0 auto; margin-top: 40px; display: block; } #scrubber { width: 100%; position: relative; z-index: 100; } .slidecontainer { margin-top: 50px; } .noUi-pointerle { outline: none; } .noUi-pointerle-upper { outline: none; } .noUi-pointerle { top: -13px !important; } #selectendpoint { position: absolute; top: 50%; transform: translateY(-50%); width: calc(100% - 250px); display: none; justify-content: space-around; } #dimensionenpoint { width: 280px; height: 380px; display: inline-block; } #dimensionenpoint:hover { cursor: pointer; } #sizeenpoint { width: 280px; height: 380px; display: inline-block; } #sizeenpoint:hover { cursor: pointer; } #videofile1 { width: 280px; height: 280px; position: absolute; } #videofile2:hover { opacity: 0; cursor: pointer; } #videofile2 { width: 280px; height: 280px; position: absolute; transition: opacity 0.2s; } #dimensions1 { width: 283px; position: absolute; } #dimensions2 { width: 283px; position: absolute; transition: opacity 0.2s; } #dimensions2:hover { opacity: 0; cursor: pointer; } p { text-align: center; font-size: 2em; margin-bottom: -3px; } .eg { text-align: center; margin-bottom: 2px; } #gifmb { width: 600px; position: relative; z-index: 100; margin: auto; } #gifmbwrap { width: calc(100% - 250px); display: none; margin: auto; position: absolute; top: 50%; transform: translateY(-50%); height: 383px; } #gifmbwrapmessage { text-align: center; margin-bottom: 40px; } div:focus { outline: none; } #selectedmbnumber { font-size: 10em; } #selectedmb { text-align: center; } #videowidthselector { width: 550px; margin: auto; position: relative; z-index: 100; } #videoheightselector { right: 0; margin: auto; position: relative; z-index: 200; margin-bottom: -18px; right: 272px; } .dimentionsselectioncontainer { display: none; margin-left: 20px; top: 50%; transform: translateY(-50%); width: calc(100% - 230px); margin: auto; position: absolute; } #dimensionstext { font-size: 8em; /* float: left; */ text-align: center; /* margin-top: -250px; */ /* width: 600px; */ width: 100%; /* display: none; */ margin: auto; position: absolute; top: 50%; transform: translateY(-50%); margin-left: 30px; } #final { border: solid 1px black; } #finaldim { display: none; } #finalsize { display: none; margin-bottom: 15px; text-align: center; } #finalgiffile:hover { filter: drop-shadow(2px 2px 4px black); transition: 0.5s; transform: scale(1.01); cursor: -webkit-grab; } img#finalgiffile { border-radius: 3%; max-width: 600px; margin: 0 auto; } #videowidthselector > div.noUi-pips.noUi-pips-horizontal > div.noUi-value-large { font-size: 0.8em; transform: rotate(45deg); margin-top: 16px; margin-left: -2px; text-align: left; width: 2em; } #scrubber > div.noUi-base > div.noUi-origin > div.noUi-handle { margin-top: -8px; } #gifmb > div.noUi-base > div.noUi-origin > div.noUi-handle { margin-top: -8px; } #help { position: fixed; right: 16px; top: 16px; background: black; color: white; padding-left: 6px; padding-right: 6px; border-radius: 5px; padding-top: 1px; padding-bottom: 1px; z-index: 5; } #help:hover { transition: .2s; background-color: white; border: solid 1px black; color: black; position: fixed; right: 16px; top: 16px; padding-left: 5px; padding-right: 5px; border-radius: 5px; padding-top: 0px; padding-bottom: 0px; z-index: 5; } #helpmodal { z-index: 999; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); transition-timing-function: ease; animation-fill-mode: forwards; color: white; border: solid 2px white; border-radius: 5px; padding-right: 15px; width: 90%; font-size: 14px; } #helpmodalwrap { display: none; z-index: 999; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); transition-timing-function: ease; animation-fill-mode: forwards; background-color: rgba(0, 0, 0, 0.85); width: 100%; height: 100%; } .bordered { border: solid 1px white; padding-left: 2px; padding-right: 2px; } #arrowkeys { list-style: none; position: ABSOLUTE; width: 6em; right: 0px; margin-right: -10px; transform: scale(0.5); bottom: 35px; color: black; font-weight: 900; } #arrowkeys > li { position: absolute; top: 3em; display: block; text-decoration: none; text-align: center; width: 20px; height: 20px; line-height: 20px; background-color: #f1f1f1; border: 1px solid #eee; border-radius: 4px; font-size: 0.7em; } #arrowkeys > li:nth-child(1) { top: 8px; left: 3em; animation-name: clickUp; } #arrowkeys > li:nth-child(2) { left: 8px; } #arrowkeys > li:nth-child(3) { left: 3em; } #arrowkeys > li:nth-child(4) { left: calc(4px + 5em); } #openTwitter { font-size: 1em; }
css/style.css
display: none; cursor: nwse-resize; margin: 2px; width: 50px; height: 50px; position: fixed; right: 0; bottom: 0; background: linear-gradient(-45deg, #fff, #fff 9%, #797979 9%, #797979 12%, #fff 12%, #fff 15%, #797979 15%, #797979 18%, #fff 18%, #fff 21%, #797979 21%, #797979 24%, #fff 24%) } td.dropdowns { text-align: center; } table { width: 90%; } button#createsample { padding-left: 5px; padding-right: 5px; } .noUi-target { margin-bottom: 60px; } #options { width: 85%; display: none; margin-left: 5%; margin-right: 5%; } .noUi-handle.noUi-handle-lower { margin-top: -7px; } svg { width: 120px; float: left; padding-right: 15px; } #selectendpoint { display: none; } #slidecontainer { display: none; } #myprogresswrap { width: 250px; } #poster { display: none; width: 250px; margin: auto; } #sidebar { padding-top: 28px; width: 250px; /* float: left; */ position: fixed; height: 500px; left: 0; top: 0; display: none; } #selecttrimcanvas:hover { cursor: url('cross.png') 13 13, auto; } #fadetoblack { top: 0; left: 0; position: fixed; width: 100%; height: 100%; background-color: black; opacity: 0; z-index: 999; display: none; } #restart { display: none; } #message { color: black; width: 250px; text-align: center; margin-bottom: 15px; } #postSaveMessage { width: 250px; text-align: center; margin-top: 15px; } #finaldim { color: black; width: 250px; text-align: center; margin-bottom: 15px; } #finaltime { width: 250px; text-align: center; margin-bottom: 15px; display: none; } #selecttrim { display: none; width: 90%; margin: auto; margin-top: 72px; } #bodywrap { width: calc(100% - 250px); margin-left: 250px; } input:focus { outline: none !important; } button { width: 220px; margin-left: auto; margin-right: auto; margin-top: 10px; } button:focus { outline: 0; } button:hover { cursor: pointer; } body { -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } html, body { height: 100%; width: 100%; margin: 0; padding: 0; overflow: hidden; } *:hover { cursor: default; } body { font: 1em BlinkMacSystemFont; } h1 { color: black; line-height: 120px; } #logo { width: 350px; float: left; padding-right: 10px; padding-left: 15px; } #message { display: none; } div#result { width: 90%; margin: auto; margin-top: 72px; } #myProgress { display: none; width: 90%; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); height: 10px; background-color: #ddd; } #openmodal { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); transition-timing-function: ease; animation: zoomme 2.5s; animation-fill-mode: forwards; color: #404040; } #openmodalwrap { background-color: white; width: 100%; height: 120%; margin-top: -100px; position: fixed; z-index: 999; transition-timing-function: ease; animation: fademodal 2.5s; animation-fill-mode: forwards; } #openmodal:hover { /*transform: scale(10); */ } @keyframes zoomme { 0% { font-size: .1em; } 50% { font-size: 10em; } 70% { font-size: 10em; } 100% { font-size: 10em; } } @keyframes fademodal { 0% { opacity: 1; z-index: 999; } 60% { opacity: 1; filter: blur(0); z-index: 999; } 100% { opacity: 0; filter: blur(10px); z-index: 0; } } #myBar { position: absolute; width: 0; height: 100%; background-color: #0099ff; transition: width 0.3s ease; } #label { display: none; text-align: center; line-height: 10px; color: white; } #copyright { font-size: 0.8em; /* line-height: 1em; */ /* padding-bottom: 40px; */ margin-left: 15px; margin-top: -30px; } #drag { text-align: center; display: flex; justify-content: center; flex-direction: column; height: 100%; width: 100%; } #drag > div { font-size: 2em; } #drag > p { font-size: 1em; margin-top: 0px; } #filelistwrap { border: 3px dashed #999; height: calc(100% - 200px); width: 90%; margin: auto; margin-top: 0px; z-index: 5; } #canvaswrap { display: none; width: 600px; margin: auto; } #myCanvas:hover { cursor: crosshair; margin: auto; } #myCanvas { background-image: url(""); background-repeat: no-repeat; position: absolute; z-index: 998; } .btn { margin-left: 15px; /* margin: 0 auto; */ } .btn-lg { padding: 13px 0 13px 0 !important; } .rightbtn { position: relative; } .leftbtn { position: relative; } #loading-container { display: flex; justify-content: center; align-items: center; display: none; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); } #maintitle { color: #404040; padding-bottom: 10px; margin-left: 5%; } #loading-container { width: 200px; margin: auto; display: none; } /** BEGIN CSS **/ body { background: #fff; } @keyframes rotate-loading { 0% { transform: rotate(0deg); -ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg); } 100% { transform: rotate(360deg); -ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg); } } @-moz-keyframes rotate-loading { 0% { transform: rotate(0deg); -ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg); } 100% { transform: rotate(360deg); -ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg); } } @-webkit-keyframes rotate-loading { 0% { transform: rotate(0deg); -ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg); } 100% { transform: rotate(360deg); -ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg); } } @-o-keyframes rotate-loading { 0% { transform: rotate(0deg); -ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg); } 100% { transform: rotate(360deg); -ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg); } } @keyframes rotate-loading { 0% { transform: rotate(0deg); -ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg); } 100% { transform: rotate(360deg); -ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg); } } @-moz-keyframes rotate-loading { 0% { transform: rotate(0deg); -ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg); } 100% { transform: rotate(360deg); -ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg); } } @-webkit-keyframes rotate-loading { 0% { transform: rotate(0deg); -ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg); } 100% { transform: rotate(360deg); -ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg); } } @-o-keyframes rotate-loading { 0% { transform: rotate(0deg); -ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg); } 100% { transform: rotate(360deg); -ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg); } } @keyframes loading-text-opacity { 0% { opacity: 0; } 20% { opacity: 0; } 50% { opacity: 1; } 100% { opacity: 0; } } @-moz-keyframes loading-text-opacity { 0% { opacity: 0; } 20% { opacity: 0; } 50% { opacity: 1; } 100% { opacity: 0; } } @-webkit-keyframes loading-text-opacity { 0% { opacity: 0; } 20% { opacity: 0; } 50% { opacity: 1; } 100% { opacity: 0; } } @-o-keyframes loading-text-opacity { 0% { opacity: 0; } 20% { opacity: 0; } 50% { opacity: 1; } 100% { opacity: 0; } } .loading-container, .loading { height: 200px; position: relative; width: 200px; border-radius: 100%; } .loading-container { margin: 40px auto; } .loading { border: 2px solid transparent; border-color: transparent #000 transparent #FFF; -moz-animation: rotate-loading 1.5s linear 0s infinite normal; -moz-transform-origin: 50% 50%; -o-animation: rotate-loading 1.5s linear 0s infinite normal; -o-transform-origin: 50% 50%; -webkit-animation: rotate-loading 1.5s linear 0s infinite normal; -webkit-transform-origin: 50% 50%; animation: rotate-loading 1.5s linear 0s infinite normal; transform-origin: 50% 50%; } .loading-container:hover .loading { border-color: transparent #E45635 transparent #E45635; } .loading-container:hover .loading, .loading-container .loading { -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; transition: all 0.5s ease-in-out; } #loading-text { -moz-animation: loading-text-opacity 2s linear 0s infinite normal; -o-animation: loading-text-opacity 2s linear 0s infinite normal; -webkit-animation: loading-text-opacity 2s linear 0s infinite normal; animation: loading-text-opacity 2s linear 0s infinite normal; color: #000000; font-size: 16px; opacity: 0; position: relative; text-align: center; text-transform: uppercase; bottom: 110px; width: 200px; margin: auto; } #ffmpegsource { cursor: pointer; } body { background-color: white; font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif; } .noUi-value-large { padding-top: 3px; } .noUi-connect { background: #0099ff !important; } video { margin: 0 auto; margin-top: 40px; display: block; } #scrubber { width: 100%; position: relative; z-index: 100; } .slidecontainer { margin-top: 50px; } .noUi-pointerle { outline: none; } .noUi-pointerle-upper { outline: none; } .noUi-pointerle { top: -13px !important; } #selectendpoint { position: absolute; top: 50%; transform: translateY(-50%); width: calc(100% - 250px); display: none; justify-content: space-around; } #dimensionenpoint { width: 280px; height: 380px; display: inline-block; } #dimensionenpoint:hover { cursor: pointer; } #sizeenpoint { width: 280px; height: 380px; display: inline-block; } #sizeenpoint:hover { cursor: pointer; } #videofile1 { width: 280px; height: 280px; position: absolute; } #videofile2:hover { opacity: 0; cursor: pointer; } #videofile2 { width: 280px; height: 280px; position: absolute; transition: opacity 0.2s; } #dimensions1 { width: 283px; position: absolute; } #dimensions2 { width: 283px; position: absolute; transition: opacity 0.2s; } #dimensions2:hover { opacity: 0; cursor: pointer; } p { text-align: center; font-size: 2em; margin-bottom: -3px; } .eg { text-align: center; margin-bottom: 2px; } #gifmb { width: 600px; position: relative; z-index: 100; margin: auto; } #gifmbwrap { width: calc(100% - 250px); display: none; margin: auto; position: absolute; top: 50%; transform: translateY(-50%); height: 383px; } #gifmbwrapmessage { text-align: center; margin-bottom: 40px; } div:focus { outline: none; } #selectedmbnumber { font-size: 10em; } #selectedmb { text-align: center; } #videowidthselector { width: 550px; margin: auto; position: relative; z-index: 100; } #videoheightselector { right: 0; margin: auto; position: relative; z-index: 200; margin-bottom: -18px; right: 272px; } .dimentionsselectioncontainer { display: none; margin-left: 20px; top: 50%; transform: translateY(-50%); width: calc(100% - 230px); margin: auto; position: absolute; } #dimensionstext { font-size: 8em; /* float: left; */ text-align: center; /* margin-top: -250px; */ /* width: 600px; */ width: 100%; /* display: none; */ margin: auto; position: absolute; top: 50%; transform: translateY(-50%); margin-left: 30px; } #final { border: solid 1px black; } #finaldim { display: none; } #finalsize { display: none; margin-bottom: 15px; text-align: center; } #finalgiffile:hover { filter: drop-shadow(2px 2px 4px black); transition: 0.5s; transform: scale(1.01); cursor: -webkit-grab; } img#finalgiffile { border-radius: 3%; max-width: 600px; margin: 0 auto; } #videowidthselector > div.noUi-pips.noUi-pips-horizontal > div.noUi-value-large { font-size: 0.8em; transform: rotate(45deg); margin-top: 16px; margin-left: -2px; text-align: left; width: 2em; } #scrubber > div.noUi-base > div.noUi-origin > div.noUi-handle { margin-top: -8px; } #gifmb > div.noUi-base > div.noUi-origin > div.noUi-handle { margin-top: -8px; } #help { position: fixed; right: 16px; top: 16px; background: black; color: white; padding-left: 6px; padding-right: 6px; border-radius: 5px; padding-top: 1px; padding-bottom: 1px; z-index: 5; } #help:hover { transition: .2s; background-color: white; border: solid 1px black; color: black; position: fixed; right: 16px; top: 16px; padding-left: 5px; padding-right: 5px; border-radius: 5px; padding-top: 0px; padding-bottom: 0px; z-index: 5; } #helpmodal { z-index: 999; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); transition-timing-function: ease; animation-fill-mode: forwards; color: white; border: solid 2px white; border-radius: 5px; padding-right: 15px; width: 90%; font-size: 14px; } #helpmodalwrap { display: none; z-index: 999; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); transition-timing-function: ease; animation-fill-mode: forwards; background-color: rgba(0, 0, 0, 0.85); width: 100%; height: 100%; } .bordered { border: solid 1px white; padding-left: 2px; padding-right: 2px; } #arrowkeys { list-style: none; position: ABSOLUTE; width: 6em; right: 0px; margin-right: -10px; transform: scale(0.5); bottom: 35px; color: black; font-weight: 900; } #arrowkeys > li { position: absolute; top: 3em; display: block; text-decoration: none; text-align: center; width: 20px; height: 20px; line-height: 20px; background-color: #f1f1f1; border: 1px solid #eee; border-radius: 4px; font-size: 0.7em; } #arrowkeys > li:nth-child(1) { top: 8px; left: 3em; animation-name: clickUp; } #arrowkeys > li:nth-child(2) { left: 8px; } #arrowkeys > li:nth-child(3) { left: 3em; } #arrowkeys > li:nth-child(4) { left: calc(4px + 5em); } #openTwitter { font-size: 1em; }
0.31237
0.05087
body { background: #fafafa; color: #333333; height: 100vh; display: flex; flex-direction: column; margin: 0; } h1, h2, h3, h4, h5, h6 { color: #444444; } ul { margin: 0; } .bg-steel { background-color: rgba(21, 64, 193, 0.84); } .content-section { background: #ffffff; padding: 10px 20px; border: 1px solid #dddddd; border-radius: 3px; margin-bottom: 20px; } .article-title { color: #444444; } a.article-title:hover { color: #428bca; text-decoration: none; } .article-content { white-space: pre-line; } .article-img { height: 65px; width: 65px; margin-right: 16px; } .article-metadata { padding-bottom: 1px; margin-bottom: 4px; border-bottom: 1px solid #e3e3e3; } .article-metadata a:hover { color: #333; text-decoration: none; } .article-svg { width: 25px; height: 25px; vertical-align: middle; } .account-img { height: 125px; width: 125px; margin-right: 20px; margin-bottom: 16px; } .product-img { height: 200px; width: 200px; margin-right: 20px; margin-bottom: 16px; } .row { display: flex; } .column { flex: 50%; padding: 100px; } .account-heading { font-size: 2.5rem; } .chat-left { width: 550px; text-align: left; background-color: rgb(115, 149, 212); color: white; padding-bottom: 0px; margin-bottom: 0px; } .chat-right { width: 550px; padding-bottom: 0px; margin-bottom: 0px; text-align: right; background-color: rgb(192, 192, 192); color: black; } .chat-time-left { width: 550px; text-align: left; color: black; font-size: xx-small; padding-top: 0px; margin-top: 0px; } .chat-time-right { width: 550px; text-align: right; color: black; font-size: xx-small; margin-top: 0px; padding-top: 0px; } .box { margin-bottom: 10px; } .new-select { display: inline-block; } /* BEATS GENERATION */ .field-margins { margin-bottom: 10px !important; width: 20%; } /* LANDING PAGE */ .page-banner { width: 100vw; } .landing-page-content { margin-top: 2%; } /* UPLOAD PAGE */ .upload-heading { margin-top: 30px; } .upload-content { margin: 3%; } .upload-center-text { display: flex; flex-direction: column; align-items: center; justify-content: center; font-weight: bold; } .upload-button { margin-top: 100px; display: flex; justify-content: flex-end; } /* DROP ZONE STYLES */ .drop-zone { max-width: 350px; height: 350px; padding: 25px; display: flex; align-items: center; justify-content: center; text-align: center; font-family: "Quicksand", sans-serif; font-weight: 500; font-size: 20px; cursor: pointer; color: #cccccc; border: 4px dashed rgba(149, 0, 12, 0.219); border-radius: 10px; } .drop-zone--over { border-style: solid; } .drop-zone__input { display: none; } .drop-zone__thumb { width: 300px; height: 300px; border-radius: 10px; overflow: hidden; background-color: #cccccc; background-size: cover; position: relative; } .drop-zone__thumb::after { content: attr(data-label); position: absolute; bottom: 0; left: 0; width: 100%; padding: 5px 0; color: #ffffff; background: rgba(0, 0, 0, 0.75); font-size: 14px; text-align: center; } @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap"); footer { background: #000; width: 100%; } footer::before { content: ""; height: 1px; width: 100%; background: #000; } footer .content { max-width: 1250px; margin: auto; padding: 30px 40px 40px 40px; } footer .content .top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 50px; } .content .top .logo-details { color: #fff; font-size: 30px; } .content .top .media-icons { display: flex; } .content .top .media-icons a { height: 40px; width: 40px; margin: 0 8px; border-radius: 50%; text-align: center; line-height: 40px; color: #fff; font-size: 17px; text-decoration: none; transition: all 0.4s ease; } .top .media-icons a:nth-child(1) { background: #4267b2; } .top .media-icons a:nth-child(1):hover { color: #4267b2; background: #fff; } .top .media-icons a:nth-child(2) { background: #1da1f2; } .top .media-icons a:nth-child(2):hover { color: #1da1f2; background: #fff; } .top .media-icons a:nth-child(3) { background: #e1306c; } .top .media-icons a:nth-child(3):hover { color: #e1306c; background: #fff; } .top .media-icons a:nth-child(4) { background: #0077b5; } .top .media-icons a:nth-child(4):hover { color: #0077b5; background: #fff; } .top .media-icons a:nth-child(5) { background: #ff0000; } .top .media-icons a:nth-child(5):hover { color: #ff0000; background: #fff; } footer .content .link-boxes { width: 100%; display: flex; justify-content: space-between; } footer .content .link-boxes .box { width: calc(100% / 5 - 10px); } .content .link-boxes .box .link_name { color: #fff; font-size: 18px; font-weight: 400; margin-bottom: 10px; position: relative; } .link-boxes .box .link_name::before { content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 35px; background: #fff; } .content .link-boxes .box li { margin: 6px 0; list-style: none; } .content .link-boxes .box li a { color: #fff; font-size: 14px; font-weight: 400; text-decoration: none; opacity: 0.8; transition: all 0.4s ease; } .content .link-boxes .box li a:hover { opacity: 1; text-decoration: underline; } .content .link-boxes .input-box { margin-right: 55px; } .link-boxes .input-box input { height: 40px; width: calc(100% + 55px); outline: none; border: 2px solid #afafb6; background: #140b5c; border-radius: 4px; padding: 0 15px; font-size: 15px; color: #fff; margin-top: 5px; } .link-boxes .input-box input::placeholder { color: #afafb6; font-size: 16px; } .link-boxes .input-box input[type="button"] { background: #fff; color: #140b5c; border: none; font-size: 18px; font-weight: 500; margin: 4px 0; opacity: 0.8; cursor: pointer; transition: all 0.4s ease; } .input-box input[type="button"]:hover { opacity: 1; } footer .bottom-details { width: 100%; background: #2c303a; } footer .bottom-details .bottom_text { max-width: 1250px; margin: auto; padding: 20px 40px; display: flex; justify-content: space-between; } .bottom-details .bottom_text span, .bottom-details .bottom_text a { font-size: 14px; font-weight: 300; color: #fff; opacity: 0.8; text-decoration: none; } .bottom-details .bottom_text a:hover { opacity: 1; text-decoration: underline; } .bottom-details .bottom_text a { margin-right: 10px; } @media (max-width: 900px) { footer .content .link-boxes { flex-wrap: wrap; } footer .content .link-boxes .input-box { width: 40%; margin-top: 10px; } } @media (max-width: 700px) { footer { position: relative; } .content .top .logo-details { font-size: 26px; } .content .top .media-icons a { height: 35px; width: 35px; font-size: 14px; line-height: 35px; } footer .content .link-boxes .box { width: calc(100% / 3 - 10px); } footer .content .link-boxes .input-box { width: 60%; } .bottom-details .bottom_text span, .bottom-details .bottom_text a { font-size: 12px; } } @media (max-width: 520px) { footer::before { top: 145px; } footer .content .top { flex-direction: column; } .content .top .media-icons { margin-top: 16px; } footer .content .link-boxes .box { width: calc(100% / 2 - 10px); } footer .content .link-boxes .input-box { width: 100%; } } /*Static pages integration with Django*/ .main { flex: 1 0 auto; margin-bottom: 50px; } .footer { height: 100px; } .footer { background-color: #333; } .wrapper { height: 100%; display: flex; flex-direction: column; } .content { flex: 1; overflow: auto; } #logo { color: #e5a10d; font-size: xx-large; } #logo-img { width: auto; height: auto; } header { padding-bottom: 50px; margin-bottom: 50px; } /*Error page*/ .fof h2{ animation: type .5s alternate infinite; } @keyframes type { from { box-shadow: inset -3px 0 0 #888; } to { box-shadow: inset -3px 0 0 transparent; } }
web-tier/beats/static/beats/css/main.css
body { background: #fafafa; color: #333333; height: 100vh; display: flex; flex-direction: column; margin: 0; } h1, h2, h3, h4, h5, h6 { color: #444444; } ul { margin: 0; } .bg-steel { background-color: rgba(21, 64, 193, 0.84); } .content-section { background: #ffffff; padding: 10px 20px; border: 1px solid #dddddd; border-radius: 3px; margin-bottom: 20px; } .article-title { color: #444444; } a.article-title:hover { color: #428bca; text-decoration: none; } .article-content { white-space: pre-line; } .article-img { height: 65px; width: 65px; margin-right: 16px; } .article-metadata { padding-bottom: 1px; margin-bottom: 4px; border-bottom: 1px solid #e3e3e3; } .article-metadata a:hover { color: #333; text-decoration: none; } .article-svg { width: 25px; height: 25px; vertical-align: middle; } .account-img { height: 125px; width: 125px; margin-right: 20px; margin-bottom: 16px; } .product-img { height: 200px; width: 200px; margin-right: 20px; margin-bottom: 16px; } .row { display: flex; } .column { flex: 50%; padding: 100px; } .account-heading { font-size: 2.5rem; } .chat-left { width: 550px; text-align: left; background-color: rgb(115, 149, 212); color: white; padding-bottom: 0px; margin-bottom: 0px; } .chat-right { width: 550px; padding-bottom: 0px; margin-bottom: 0px; text-align: right; background-color: rgb(192, 192, 192); color: black; } .chat-time-left { width: 550px; text-align: left; color: black; font-size: xx-small; padding-top: 0px; margin-top: 0px; } .chat-time-right { width: 550px; text-align: right; color: black; font-size: xx-small; margin-top: 0px; padding-top: 0px; } .box { margin-bottom: 10px; } .new-select { display: inline-block; } /* BEATS GENERATION */ .field-margins { margin-bottom: 10px !important; width: 20%; } /* LANDING PAGE */ .page-banner { width: 100vw; } .landing-page-content { margin-top: 2%; } /* UPLOAD PAGE */ .upload-heading { margin-top: 30px; } .upload-content { margin: 3%; } .upload-center-text { display: flex; flex-direction: column; align-items: center; justify-content: center; font-weight: bold; } .upload-button { margin-top: 100px; display: flex; justify-content: flex-end; } /* DROP ZONE STYLES */ .drop-zone { max-width: 350px; height: 350px; padding: 25px; display: flex; align-items: center; justify-content: center; text-align: center; font-family: "Quicksand", sans-serif; font-weight: 500; font-size: 20px; cursor: pointer; color: #cccccc; border: 4px dashed rgba(149, 0, 12, 0.219); border-radius: 10px; } .drop-zone--over { border-style: solid; } .drop-zone__input { display: none; } .drop-zone__thumb { width: 300px; height: 300px; border-radius: 10px; overflow: hidden; background-color: #cccccc; background-size: cover; position: relative; } .drop-zone__thumb::after { content: attr(data-label); position: absolute; bottom: 0; left: 0; width: 100%; padding: 5px 0; color: #ffffff; background: rgba(0, 0, 0, 0.75); font-size: 14px; text-align: center; } @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap"); footer { background: #000; width: 100%; } footer::before { content: ""; height: 1px; width: 100%; background: #000; } footer .content { max-width: 1250px; margin: auto; padding: 30px 40px 40px 40px; } footer .content .top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 50px; } .content .top .logo-details { color: #fff; font-size: 30px; } .content .top .media-icons { display: flex; } .content .top .media-icons a { height: 40px; width: 40px; margin: 0 8px; border-radius: 50%; text-align: center; line-height: 40px; color: #fff; font-size: 17px; text-decoration: none; transition: all 0.4s ease; } .top .media-icons a:nth-child(1) { background: #4267b2; } .top .media-icons a:nth-child(1):hover { color: #4267b2; background: #fff; } .top .media-icons a:nth-child(2) { background: #1da1f2; } .top .media-icons a:nth-child(2):hover { color: #1da1f2; background: #fff; } .top .media-icons a:nth-child(3) { background: #e1306c; } .top .media-icons a:nth-child(3):hover { color: #e1306c; background: #fff; } .top .media-icons a:nth-child(4) { background: #0077b5; } .top .media-icons a:nth-child(4):hover { color: #0077b5; background: #fff; } .top .media-icons a:nth-child(5) { background: #ff0000; } .top .media-icons a:nth-child(5):hover { color: #ff0000; background: #fff; } footer .content .link-boxes { width: 100%; display: flex; justify-content: space-between; } footer .content .link-boxes .box { width: calc(100% / 5 - 10px); } .content .link-boxes .box .link_name { color: #fff; font-size: 18px; font-weight: 400; margin-bottom: 10px; position: relative; } .link-boxes .box .link_name::before { content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 35px; background: #fff; } .content .link-boxes .box li { margin: 6px 0; list-style: none; } .content .link-boxes .box li a { color: #fff; font-size: 14px; font-weight: 400; text-decoration: none; opacity: 0.8; transition: all 0.4s ease; } .content .link-boxes .box li a:hover { opacity: 1; text-decoration: underline; } .content .link-boxes .input-box { margin-right: 55px; } .link-boxes .input-box input { height: 40px; width: calc(100% + 55px); outline: none; border: 2px solid #afafb6; background: #140b5c; border-radius: 4px; padding: 0 15px; font-size: 15px; color: #fff; margin-top: 5px; } .link-boxes .input-box input::placeholder { color: #afafb6; font-size: 16px; } .link-boxes .input-box input[type="button"] { background: #fff; color: #140b5c; border: none; font-size: 18px; font-weight: 500; margin: 4px 0; opacity: 0.8; cursor: pointer; transition: all 0.4s ease; } .input-box input[type="button"]:hover { opacity: 1; } footer .bottom-details { width: 100%; background: #2c303a; } footer .bottom-details .bottom_text { max-width: 1250px; margin: auto; padding: 20px 40px; display: flex; justify-content: space-between; } .bottom-details .bottom_text span, .bottom-details .bottom_text a { font-size: 14px; font-weight: 300; color: #fff; opacity: 0.8; text-decoration: none; } .bottom-details .bottom_text a:hover { opacity: 1; text-decoration: underline; } .bottom-details .bottom_text a { margin-right: 10px; } @media (max-width: 900px) { footer .content .link-boxes { flex-wrap: wrap; } footer .content .link-boxes .input-box { width: 40%; margin-top: 10px; } } @media (max-width: 700px) { footer { position: relative; } .content .top .logo-details { font-size: 26px; } .content .top .media-icons a { height: 35px; width: 35px; font-size: 14px; line-height: 35px; } footer .content .link-boxes .box { width: calc(100% / 3 - 10px); } footer .content .link-boxes .input-box { width: 60%; } .bottom-details .bottom_text span, .bottom-details .bottom_text a { font-size: 12px; } } @media (max-width: 520px) { footer::before { top: 145px; } footer .content .top { flex-direction: column; } .content .top .media-icons { margin-top: 16px; } footer .content .link-boxes .box { width: calc(100% / 2 - 10px); } footer .content .link-boxes .input-box { width: 100%; } } /*Static pages integration with Django*/ .main { flex: 1 0 auto; margin-bottom: 50px; } .footer { height: 100px; } .footer { background-color: #333; } .wrapper { height: 100%; display: flex; flex-direction: column; } .content { flex: 1; overflow: auto; } #logo { color: #e5a10d; font-size: xx-large; } #logo-img { width: auto; height: auto; } header { padding-bottom: 50px; margin-bottom: 50px; } /*Error page*/ .fof h2{ animation: type .5s alternate infinite; } @keyframes type { from { box-shadow: inset -3px 0 0 #888; } to { box-shadow: inset -3px 0 0 transparent; } }
0.512937
0.087876
@import url("bootstrap.css"); /* .................................... */ .preloader { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background-color: #4684ee; z-index: 999999; height: 100%; width: 100%; overflow: hidden !important; } .status { width: 512px; height: 512px; position: absolute; left: 35%; top: 20%; background-image: url(../images/logo/code-loader.gif); background-repeat: no-repeat; background-position: center; -webkit-background-size: cover; background-size: cover; margin: -70px 0 0 -70px; } * { margin: 0px; padding: 0px; } .container-fluid { margin: 0px; padding: 0px; } .banner { background-image: url("../images/backgrounds/h_img.jpg"); background-repeat: no-repeat; background-position: center; background-size: cover; width: 100%; height: 680px; } .jumbotron { background: none; color: whitesmoke; text-align: center; text-transform: uppercase; font-size: 12px; } .jumbotron .logo { padding-top: 9rem; width: 77px; } .jumbotron img { padding-top: 8rem; } .jumbotron h1 { font-size: 42px; line-height: 80px; padding-top: 20px; margin-bottom: 0px; } .mouse_click { animation-name: spin; animation-duration: 4s; animation-iteration-count: infinite; -webkit-animation-iteration-count: infinite; } @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } .mouse_click:hover { animation: none; } .section-header { text-align: center; line-height: 30px; } .about-section { margin: 50px 150px; } .services { padding: 100px; background-image: url("../images/backgrounds/s_image.jpg"); width: 100%; color: whitesmoke; background-size: cover; } figure, .portfolio img { cursor: pointer; } .design-initially-hidden, .dev-initially-hidden, .p-mgt-initially-hidden { display: none; } /* image overlay on hover */ .box { position: relative; width: 50%; } .image { opacity: 1; display: block; /* width: 220px; height: 180px; */ width: 100%; height: auto; transition: .5s ease; backface-visibility: hidden; } .middle { transition: .5s ease; opacity: 0; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); background: rgba(0, 0, 0, 0.466); opacity: 0; border-radius: 3px; } .box:hover .image { opacity: 0.3; } .box:hover .middle { opacity: 1; } .project-name { display: none; color: white; font-size: 14px; padding: 0.2rem; text-transform: uppercase; font-weight: bolder; width: 116px; height: 60px; border: 3px solid white; margin: auto; border-radius: 3px; } /* image overlay on hover */ .what-we-do { margin: 50px 70px; } .what-we-do h2 { margin-bottom: 1rem; } .col-md-4 img { width: 60px; } figcaption { font-size: 14px; font-weight: bold; } .portfolio { margin: 100px; } .portfolio img { margin: 5%; width: 100%; border-radius: 3px; } .contact { padding: 50px; background-image: url("../images/backgrounds/c_image.jpg"); width: 100%; color: whitesmoke; background-size: cover; } .contact input, .contact textarea { background: none; border: 2px solid gray; border-radius: 2px; padding: 5px; } .form-control { background-color: black; color: whitesmoke; } input::-webkit-input-placeholder, textarea::-webkit-input-placeholder { color: rgba(255, 255, 255, 0.849) !important; } .contact .form-row { padding: 8px; width: 70%; margin: auto; } .form-group button { margin: auto; padding: 5px 40px; border-radius: 5px; background-image: radial-gradient(rgb(226, 216, 226), #864e05e7); border: none; color: black; } .contact button:hover { background-image: radial-gradient(rgba(226, 216, 226, 0.918), #864e05); color: #553204; font-style: italic; } .contact button:active { background-image: radial-gradient(rgba(226, 216, 226, 0.918), #864e05); border: none; } .raise:hover, .raise:focus { box-shadow: 0 0.5em 0.5em -0.4em var(--hover); transform: translateY(-0.25em); } #message-alert { display: none; } .alert { width: fit-content; margin: auto; } footer .row { width: 70%; padding: 30px 20px 10px 20px; margin: auto; justify-content: center; } footer img { width: 45px; /* padding: 5px; */ } footer h5 { font-size: 12px; line-height: 15px; }
css/styles.css
@import url("bootstrap.css"); /* .................................... */ .preloader { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background-color: #4684ee; z-index: 999999; height: 100%; width: 100%; overflow: hidden !important; } .status { width: 512px; height: 512px; position: absolute; left: 35%; top: 20%; background-image: url(../images/logo/code-loader.gif); background-repeat: no-repeat; background-position: center; -webkit-background-size: cover; background-size: cover; margin: -70px 0 0 -70px; } * { margin: 0px; padding: 0px; } .container-fluid { margin: 0px; padding: 0px; } .banner { background-image: url("../images/backgrounds/h_img.jpg"); background-repeat: no-repeat; background-position: center; background-size: cover; width: 100%; height: 680px; } .jumbotron { background: none; color: whitesmoke; text-align: center; text-transform: uppercase; font-size: 12px; } .jumbotron .logo { padding-top: 9rem; width: 77px; } .jumbotron img { padding-top: 8rem; } .jumbotron h1 { font-size: 42px; line-height: 80px; padding-top: 20px; margin-bottom: 0px; } .mouse_click { animation-name: spin; animation-duration: 4s; animation-iteration-count: infinite; -webkit-animation-iteration-count: infinite; } @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } .mouse_click:hover { animation: none; } .section-header { text-align: center; line-height: 30px; } .about-section { margin: 50px 150px; } .services { padding: 100px; background-image: url("../images/backgrounds/s_image.jpg"); width: 100%; color: whitesmoke; background-size: cover; } figure, .portfolio img { cursor: pointer; } .design-initially-hidden, .dev-initially-hidden, .p-mgt-initially-hidden { display: none; } /* image overlay on hover */ .box { position: relative; width: 50%; } .image { opacity: 1; display: block; /* width: 220px; height: 180px; */ width: 100%; height: auto; transition: .5s ease; backface-visibility: hidden; } .middle { transition: .5s ease; opacity: 0; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); background: rgba(0, 0, 0, 0.466); opacity: 0; border-radius: 3px; } .box:hover .image { opacity: 0.3; } .box:hover .middle { opacity: 1; } .project-name { display: none; color: white; font-size: 14px; padding: 0.2rem; text-transform: uppercase; font-weight: bolder; width: 116px; height: 60px; border: 3px solid white; margin: auto; border-radius: 3px; } /* image overlay on hover */ .what-we-do { margin: 50px 70px; } .what-we-do h2 { margin-bottom: 1rem; } .col-md-4 img { width: 60px; } figcaption { font-size: 14px; font-weight: bold; } .portfolio { margin: 100px; } .portfolio img { margin: 5%; width: 100%; border-radius: 3px; } .contact { padding: 50px; background-image: url("../images/backgrounds/c_image.jpg"); width: 100%; color: whitesmoke; background-size: cover; } .contact input, .contact textarea { background: none; border: 2px solid gray; border-radius: 2px; padding: 5px; } .form-control { background-color: black; color: whitesmoke; } input::-webkit-input-placeholder, textarea::-webkit-input-placeholder { color: rgba(255, 255, 255, 0.849) !important; } .contact .form-row { padding: 8px; width: 70%; margin: auto; } .form-group button { margin: auto; padding: 5px 40px; border-radius: 5px; background-image: radial-gradient(rgb(226, 216, 226), #864e05e7); border: none; color: black; } .contact button:hover { background-image: radial-gradient(rgba(226, 216, 226, 0.918), #864e05); color: #553204; font-style: italic; } .contact button:active { background-image: radial-gradient(rgba(226, 216, 226, 0.918), #864e05); border: none; } .raise:hover, .raise:focus { box-shadow: 0 0.5em 0.5em -0.4em var(--hover); transform: translateY(-0.25em); } #message-alert { display: none; } .alert { width: fit-content; margin: auto; } footer .row { width: 70%; padding: 30px 20px 10px 20px; margin: auto; justify-content: center; } footer img { width: 45px; /* padding: 5px; */ } footer h5 { font-size: 12px; line-height: 15px; }
0.371707
0.098425
@-moz-document url("http://www.allmystery.de/"), url("https://www.allmystery.de/"), url-prefix("http://www.allmystery.de/themen"), url-prefix("https://www.allmystery.de/themen"), url-prefix("http://www.allmystery.de/ena/"), url-prefix("https://www.allmystery.de/ena/"), url-prefix("http://www.allmystery.de/artikel/"), url-prefix("https://www.allmystery.de/artikel/"), url-prefix("http://www.allmystery.de/stats/"), url-prefix("https://www.allmystery.de/stats/"), url-prefix("http://www.allmystery.de/chat/"), url-prefix("https://www.allmystery.de/chat/"), url-prefix("http://www.allmystery.de/wiki/"), url-prefix("https://www.allmystery.de/wiki/"), url-prefix("http://www.allmystery.de/pn"), url-prefix("https://www.allmystery.de/pn"), url-prefix("http://www.allmystery.de/fcg"), url-prefix("https://www.allmystery.de/fcg"), url-prefix("http://www.allmystery.de/am"), url-prefix("https://www.allmystery.de/am"), url-prefix("https://www.allmystery.de/videos/") { body.page, body.popup, .titelg { background-image:url("http://static.allmystery.de/upics/4e17bc_21.jpg") !important; background-size: 100% 100% !important; background-attachment:fixed !important; } .header { background: none !important; background-color: rgba(0,0,0,0.8) !important; border-radius: 5px 5px !important; border: 1px solid rgba(0,0,0,1.0) !important; box-shadow: 0px 0px 20px #454545 !important; } .tabnav a { background-color: rgba(0,0,0,0.8) !important; color: white !important; border-radius: 5px 5px !important; } .tabnav a:hover { background-color: rgba(255,255,255,0.5) !important; border-radius: 5px 5px !important; box-shadow: 0px 0px 40px #000000 !important; transition: 1s !important; color: #000000 !important; } a.tabnav_selected, a.tabnav_js_selected { background-color: rgba(255,255,255,0.3) !important; border-radius: 5px 5px !important; box-shadow: 0px 0px 40px #000000 !important; transition: 1s !important; color: #000000 !important; } .mcell_inhalt, .mcell, .mcell2, .mcell_left, .mcell_inhalt2, .mcell_inhalt3, div.categoryHeader, div.startHeading span, div#attention, form#post_thread, .Voting, h1, div.categories div.active, div.categories div { background-color: rgba(0,0,0,0.8) !important; border: 1px solid rgba(0,0,0,1.0) !important; border-radius: 5px 5px !important; box-shadow: 0px 0px 20px #454545 !important; } .sufu { border: 1px solid rgba(0,0,0,1.0) !important; border-radius: 5px 5px !important; box-shadow: 0px 0px 20px #454545 !important; } .post, .paginator { background-color: rgba(0,0,0,0.8) !important; border-bottom: 1px solid transparent !important; border-top: 1px solid transparent !important; border-radius: 5px 5px !important; border: 1px solid rgba(0,0,0,1.0) !important; box-shadow: 0px 0px 20px #454545 !important; } .post:nth-child(even), .paginatorLast, .MainOverview td.Category, .MainOverview td.LastPost, td, tr, .start .subselector, .start .areas .area, .start .areas .area:nth-of-type(odd), .start .areas .area .main, .start .areas .area .last, .videos .videoitem, .videos .videoitem:nth-of-type(even) { background-color: rgba(0,0,0,0.8) !important; border-radius: 5px 5px !important; border: 1px solid rgba(0,0,0,1.0) !important; box-shadow: 0px 0px 20px #454545 !important; } .fm td, .fh td, .fd td { border-radius: 5px 5px !important; border: 1px solid rgba(0,0,0,1.0) !important; box-shadow: 0px 0px 20px #454545 !important; } .header_info { border-radius: 5px 5px !important; border-color: rgba(0,0,0,1.0) !important; border-width: 1px !important; border-style: solid !important; background-color: rgba(0,0,0,0.9) !important; box-shadow: 0px 0px 20px #454545 !important; } .message, .message_info { background-color: rgba(0,0,0,0.8) !important; border-radius: 5px 5px !important; border-color: rgba(0,0,0,1.0) !important; border-width: 1px !important; border-style: solid !important; box-shadow: 0px 0px 20px #454545 !important; } #intro { background-color: rgba(0,0,0,0.8) !important; border-radius: 5px 5px !important; border: 1px solid rgba(0,0,0,1.0) !important; box-shadow: 0px 0px 20px #454545 !important; } .Voting .ui-widget-content .ui-state-default { background: rgba(255,255,255,1.0) !important; border-radius: 2px 2px !important; } .Voting-bar-filling { background: rgba(121,121,121,0.8) !important; } .Voting-voted .Voting-bar-filling { background: rgba(255,255,255,0.7) !important; } textarea { border-radius: 5px 5px !important; box-shadow: 0px 0px 30px #454545 !important; } .footer hr { background-color: #000000 !important; border-radius: 4px 4px !important; } input { border-color: #000000 !important; border-radius: 5px 5px !important; box-shadow: 0px 0px 20px #454545 !important; } .quick_item_header { background-color: rgba(0,0,0,0.8) !important; border-bottom: 1px solid rgba(0,0,0,1.0) !important; border-top: 1px solid rgba(0,0,0,1.0) !important; border-radius: 5px 5px !important; box-shadow: 0px 0px 20px #454545 !important; } .quick_item_selected { background: rgba(0,0,0,1.0) !important; border-radius: 5px 5px !important; box-shadow: 0px 0px 20px #454545 !important; } #se { background-color: rgba(0,0,0,1.0) !important; border-radius: 5px 5px !important; box-shadow: 0px 0px 20px #454545 !important; } #moreMenu { border: 1px solid rgba(0,0,0,1.0) !important; background-color: rgba(0,0,0,1.0) !important; color: rgba(0,0,0,1.0) !important; border-radius: 5px 5px !important; box-shadow: 0px 0px 20px #454545 !important; } img.smallCategoryImage { border: 1px solid transparent !important; border-radius: 5px 5px !important; box-shadow: 0px 0px 20px #454545 !important; } .status { background-color: rgba(0,0,0,0.8) !important; border-radius: 5px 5px !important; box-shadow: 0px 0px 20px #454545 !important; } .useravatar { border: 1px solid transparent !important; border-radius: 5px 5px !important; box-shadow: 0px 0px 22px #ffffff !important; } .in { background-color: rgba(0,0,0,0.9) !important; border-radius: 5px 5px; box-shadow: 0px 0px 20px #454545 !important; } a[href="javascript:pn('Verwaltung', '29904')"] { color: #616161 !important; } a[href="javascript:pn('system', '28834')"] { color: #616161 !important; } .fd2 { background-color: rgba(0,0,0,0.8) !important; border: 1px solid rgba(0,0,0,1.0) !important; border-radius: 5px 5px !important; box-shadow: 0px 0px 20px #454545 !important; } .fh2 { background-color: rgba(0,0,0,0.8) !important; border: 1px solid rgba(0,0,0,1.0) !important; border-radius: 5px 5px !important; box-shadow: 0px 0px 20px #454545 !important; } .paginator { border-bottom: 1px solid rgba(0,0,0,0.9) !important; } .finfo { border-right: solid 1px transparent !important; } .fbeitrag { border-left: solid 1px transparent !important; } .status { background-color: transparent !important; } .titelg { border-bottom: 1px solid rgba(0,0,0,1.0) !important; border-radius: 5px 5px !important; } a img { border-color: transparent !important; border-radius: 5px 5px !important; } .blogs-prevpost.even { background-color: rgba(0,0,0,0.8) !important; border: 1px solid rgba(0,0,0,1.0) !important; border-radius: 5px 5px !important; box-shadow: 0px 0px 20px #454545 !important; } .blogs-prevpost { background-color: rgba(0,0,0,0.8) !important; border: 1px solid rgba(0,0,0,1.0) !important; border-radius: 5px 5px !important; box-shadow: 0px 0px 20px #454545 !important; } .voteup { background-color: rgba(0,0,0,0.9) !important; border: 1px solid rgba(0,0,0,1.0) !important; border-radius: 5px 5px !important; box-shadow: 0px 0px 20px #454545 !important; } .voteup:hover { transition: 1s !important; background-color: rgba(0,0,0,0.7) !important; border: 1px solid rgba(0,0,0,1.0) !important; border-radius: 5px 5px !important; box-shadow: 0px 0px 20px #ffffff !important; } a.mod { color: #BE0808 !important; background-color: #000000 !important; border-radius: 2px 2px !important; border: 1px solid #000000 !important; } #radio, #radio_skip, #radio_user { border: 2px solid #ffffff !important; background-color: #000000 !important; } #chat_messages { background-color: rgba(0,0,0,0.8) !important; border: 1px solid rgba(0,0,0,1.0) !important; border-radius: 5px 5px !important; } div.post.warn { background-color: rgba(152,0,0,0.8) !important; box-shadow:inset 50px 20px 80px #ff0000 !important; } } @-moz-document url("https://www.allmystery.de/fcgi/?m=messages_log"), url-prefix("https://www.allmystery.de/artikel/"), url-prefix("https://www.allmystery.de/stats/"), url-prefix("https://www.allmystery.de/wiki/"), url-prefix("https://www.allmystery.de/fcgi/?m=settings"), url-prefix("http://www.allmystery.de/artikel/"), url-prefix("http://www.allmystery.de/stats/"), url-prefix("http://www.allmystery.de/wiki/"), url-prefix("http://www.allmystery.de/fcgi/?m=settings") { .main { background-color: rgba(0,0,0,0.8) !important; border: 1px solid rgba(0,0,0,1.0) !important; border-radius: 5px 5px !important; box-shadow: 0px 0px 20px #454545 !important; } }
data/usercss/97178.user.css
@-moz-document url("http://www.allmystery.de/"), url("https://www.allmystery.de/"), url-prefix("http://www.allmystery.de/themen"), url-prefix("https://www.allmystery.de/themen"), url-prefix("http://www.allmystery.de/ena/"), url-prefix("https://www.allmystery.de/ena/"), url-prefix("http://www.allmystery.de/artikel/"), url-prefix("https://www.allmystery.de/artikel/"), url-prefix("http://www.allmystery.de/stats/"), url-prefix("https://www.allmystery.de/stats/"), url-prefix("http://www.allmystery.de/chat/"), url-prefix("https://www.allmystery.de/chat/"), url-prefix("http://www.allmystery.de/wiki/"), url-prefix("https://www.allmystery.de/wiki/"), url-prefix("http://www.allmystery.de/pn"), url-prefix("https://www.allmystery.de/pn"), url-prefix("http://www.allmystery.de/fcg"), url-prefix("https://www.allmystery.de/fcg"), url-prefix("http://www.allmystery.de/am"), url-prefix("https://www.allmystery.de/am"), url-prefix("https://www.allmystery.de/videos/") { body.page, body.popup, .titelg { background-image:url("http://static.allmystery.de/upics/4e17bc_21.jpg") !important; background-size: 100% 100% !important; background-attachment:fixed !important; } .header { background: none !important; background-color: rgba(0,0,0,0.8) !important; border-radius: 5px 5px !important; border: 1px solid rgba(0,0,0,1.0) !important; box-shadow: 0px 0px 20px #454545 !important; } .tabnav a { background-color: rgba(0,0,0,0.8) !important; color: white !important; border-radius: 5px 5px !important; } .tabnav a:hover { background-color: rgba(255,255,255,0.5) !important; border-radius: 5px 5px !important; box-shadow: 0px 0px 40px #000000 !important; transition: 1s !important; color: #000000 !important; } a.tabnav_selected, a.tabnav_js_selected { background-color: rgba(255,255,255,0.3) !important; border-radius: 5px 5px !important; box-shadow: 0px 0px 40px #000000 !important; transition: 1s !important; color: #000000 !important; } .mcell_inhalt, .mcell, .mcell2, .mcell_left, .mcell_inhalt2, .mcell_inhalt3, div.categoryHeader, div.startHeading span, div#attention, form#post_thread, .Voting, h1, div.categories div.active, div.categories div { background-color: rgba(0,0,0,0.8) !important; border: 1px solid rgba(0,0,0,1.0) !important; border-radius: 5px 5px !important; box-shadow: 0px 0px 20px #454545 !important; } .sufu { border: 1px solid rgba(0,0,0,1.0) !important; border-radius: 5px 5px !important; box-shadow: 0px 0px 20px #454545 !important; } .post, .paginator { background-color: rgba(0,0,0,0.8) !important; border-bottom: 1px solid transparent !important; border-top: 1px solid transparent !important; border-radius: 5px 5px !important; border: 1px solid rgba(0,0,0,1.0) !important; box-shadow: 0px 0px 20px #454545 !important; } .post:nth-child(even), .paginatorLast, .MainOverview td.Category, .MainOverview td.LastPost, td, tr, .start .subselector, .start .areas .area, .start .areas .area:nth-of-type(odd), .start .areas .area .main, .start .areas .area .last, .videos .videoitem, .videos .videoitem:nth-of-type(even) { background-color: rgba(0,0,0,0.8) !important; border-radius: 5px 5px !important; border: 1px solid rgba(0,0,0,1.0) !important; box-shadow: 0px 0px 20px #454545 !important; } .fm td, .fh td, .fd td { border-radius: 5px 5px !important; border: 1px solid rgba(0,0,0,1.0) !important; box-shadow: 0px 0px 20px #454545 !important; } .header_info { border-radius: 5px 5px !important; border-color: rgba(0,0,0,1.0) !important; border-width: 1px !important; border-style: solid !important; background-color: rgba(0,0,0,0.9) !important; box-shadow: 0px 0px 20px #454545 !important; } .message, .message_info { background-color: rgba(0,0,0,0.8) !important; border-radius: 5px 5px !important; border-color: rgba(0,0,0,1.0) !important; border-width: 1px !important; border-style: solid !important; box-shadow: 0px 0px 20px #454545 !important; } #intro { background-color: rgba(0,0,0,0.8) !important; border-radius: 5px 5px !important; border: 1px solid rgba(0,0,0,1.0) !important; box-shadow: 0px 0px 20px #454545 !important; } .Voting .ui-widget-content .ui-state-default { background: rgba(255,255,255,1.0) !important; border-radius: 2px 2px !important; } .Voting-bar-filling { background: rgba(121,121,121,0.8) !important; } .Voting-voted .Voting-bar-filling { background: rgba(255,255,255,0.7) !important; } textarea { border-radius: 5px 5px !important; box-shadow: 0px 0px 30px #454545 !important; } .footer hr { background-color: #000000 !important; border-radius: 4px 4px !important; } input { border-color: #000000 !important; border-radius: 5px 5px !important; box-shadow: 0px 0px 20px #454545 !important; } .quick_item_header { background-color: rgba(0,0,0,0.8) !important; border-bottom: 1px solid rgba(0,0,0,1.0) !important; border-top: 1px solid rgba(0,0,0,1.0) !important; border-radius: 5px 5px !important; box-shadow: 0px 0px 20px #454545 !important; } .quick_item_selected { background: rgba(0,0,0,1.0) !important; border-radius: 5px 5px !important; box-shadow: 0px 0px 20px #454545 !important; } #se { background-color: rgba(0,0,0,1.0) !important; border-radius: 5px 5px !important; box-shadow: 0px 0px 20px #454545 !important; } #moreMenu { border: 1px solid rgba(0,0,0,1.0) !important; background-color: rgba(0,0,0,1.0) !important; color: rgba(0,0,0,1.0) !important; border-radius: 5px 5px !important; box-shadow: 0px 0px 20px #454545 !important; } img.smallCategoryImage { border: 1px solid transparent !important; border-radius: 5px 5px !important; box-shadow: 0px 0px 20px #454545 !important; } .status { background-color: rgba(0,0,0,0.8) !important; border-radius: 5px 5px !important; box-shadow: 0px 0px 20px #454545 !important; } .useravatar { border: 1px solid transparent !important; border-radius: 5px 5px !important; box-shadow: 0px 0px 22px #ffffff !important; } .in { background-color: rgba(0,0,0,0.9) !important; border-radius: 5px 5px; box-shadow: 0px 0px 20px #454545 !important; } a[href="javascript:pn('Verwaltung', '29904')"] { color: #616161 !important; } a[href="javascript:pn('system', '28834')"] { color: #616161 !important; } .fd2 { background-color: rgba(0,0,0,0.8) !important; border: 1px solid rgba(0,0,0,1.0) !important; border-radius: 5px 5px !important; box-shadow: 0px 0px 20px #454545 !important; } .fh2 { background-color: rgba(0,0,0,0.8) !important; border: 1px solid rgba(0,0,0,1.0) !important; border-radius: 5px 5px !important; box-shadow: 0px 0px 20px #454545 !important; } .paginator { border-bottom: 1px solid rgba(0,0,0,0.9) !important; } .finfo { border-right: solid 1px transparent !important; } .fbeitrag { border-left: solid 1px transparent !important; } .status { background-color: transparent !important; } .titelg { border-bottom: 1px solid rgba(0,0,0,1.0) !important; border-radius: 5px 5px !important; } a img { border-color: transparent !important; border-radius: 5px 5px !important; } .blogs-prevpost.even { background-color: rgba(0,0,0,0.8) !important; border: 1px solid rgba(0,0,0,1.0) !important; border-radius: 5px 5px !important; box-shadow: 0px 0px 20px #454545 !important; } .blogs-prevpost { background-color: rgba(0,0,0,0.8) !important; border: 1px solid rgba(0,0,0,1.0) !important; border-radius: 5px 5px !important; box-shadow: 0px 0px 20px #454545 !important; } .voteup { background-color: rgba(0,0,0,0.9) !important; border: 1px solid rgba(0,0,0,1.0) !important; border-radius: 5px 5px !important; box-shadow: 0px 0px 20px #454545 !important; } .voteup:hover { transition: 1s !important; background-color: rgba(0,0,0,0.7) !important; border: 1px solid rgba(0,0,0,1.0) !important; border-radius: 5px 5px !important; box-shadow: 0px 0px 20px #ffffff !important; } a.mod { color: #BE0808 !important; background-color: #000000 !important; border-radius: 2px 2px !important; border: 1px solid #000000 !important; } #radio, #radio_skip, #radio_user { border: 2px solid #ffffff !important; background-color: #000000 !important; } #chat_messages { background-color: rgba(0,0,0,0.8) !important; border: 1px solid rgba(0,0,0,1.0) !important; border-radius: 5px 5px !important; } div.post.warn { background-color: rgba(152,0,0,0.8) !important; box-shadow:inset 50px 20px 80px #ff0000 !important; } } @-moz-document url("https://www.allmystery.de/fcgi/?m=messages_log"), url-prefix("https://www.allmystery.de/artikel/"), url-prefix("https://www.allmystery.de/stats/"), url-prefix("https://www.allmystery.de/wiki/"), url-prefix("https://www.allmystery.de/fcgi/?m=settings"), url-prefix("http://www.allmystery.de/artikel/"), url-prefix("http://www.allmystery.de/stats/"), url-prefix("http://www.allmystery.de/wiki/"), url-prefix("http://www.allmystery.de/fcgi/?m=settings") { .main { background-color: rgba(0,0,0,0.8) !important; border: 1px solid rgba(0,0,0,1.0) !important; border-radius: 5px 5px !important; box-shadow: 0px 0px 20px #454545 !important; } }
0.268078
0.16228
.collapsible { background-color:transparent; color: #111857; font-weight: bold; cursor: pointer; padding: 18px; width: 100%; border: none; text-align: left; outline: none; font-size: 15px; } .active, .collapsible:hover { background-color: rgb(255, 255, 255, 0.5); } .content { padding: 0 18px; display: none; overflow: hidden; background-color: rgb(255, 255, 255, 0.5); color: #111857; } .grid { display: grid; grid-template-columns: repeat(3, 1fr); justify-items: center; justify-content: space-evenly; align-items: center; grid-gap: 15px; max-width: 100%; height: 100%; } .flip-card { background-color: #e19528; width: 350px; max-width: 100%; height: 350px; perspective: 1000px; } .flip-card-inner { position: relative; width: 100%; max-width: 100%; height: 100%; text-align: center; transition: transform 0.6s; transform-style: preserve-3d; box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2); } .flip-card:hover .flip-card-inner { transform: rotateY(180deg); } .flip-card-front, .flip-card-back { position: absolute; width: 100%; max-width: 100%; height: 100%; -webkit-backface-visibility: hidden; backface-visibility: hidden; } .flip-card-front { background-color: #bbb; color: black; } .flip-card-back { background-color: white; color: white; transform: rotateY(180deg); } /* Full-width input fields */ input[type=text], input[type=password] { width: 100%; padding: 0px 20px; display: inline-block; border: 1px solid #ccc; box-sizing: border-box; } /* Set a style for all buttons */ button { background-color: #4CAF50; color: white; padding: 0px 10px; border: none; cursor: pointer; width: 100%; height: auto; } button:hover { opacity: 0.8; } /* The Modal (background) */ .modal { display: none; /* Hidden by default */ position: fixed; /* Stay in place */ z-index: 1; /* Sit on top */ left: 0; top: 0; width: 100%; /* Full width */ height: 100%; /* Full height */ overflow: auto; /* Enable scroll if needed */ background-color: rgb(0,0,0); /* Fallback color */ background-color: rgba(0,0,0,0.4); /* Black w/ opacity */ padding-top: 60px; } /* Modal Content/Box */ .modal-content { background-color: #fefefe; margin: 5px auto; /* 15% from the top and centered */ border: 1px solid #888; width: 80%; /* Could be more or less, depending on screen size */ } /* The Close Button */ .close { /* Position it in the top right corner outside of the modal */ position: absolute; right: 25px; top: 0; color: #000; font-size: 35px; font-weight: bold; } /* Close button on hover */ .close:hover, .close:focus { color: red; cursor: pointer; } /* Add Zoom Animation */ .animate { -webkit-animation: animatezoom 0.6s; animation: animatezoom 0.6s } @-webkit-keyframes animatezoom { from {-webkit-transform: scale(0)} to {-webkit-transform: scale(1)} } @keyframes animatezoom { from {transform: scale(0)} to {transform: scale(1)} } .jumbotron { height: 250px; max-width: 100%; margin-bottom:0; background-image: url(/static/css/Logo.png); background-repeat: no-repeat; background-position: center; background-color: #e19528; }
static/css/style.css
.collapsible { background-color:transparent; color: #111857; font-weight: bold; cursor: pointer; padding: 18px; width: 100%; border: none; text-align: left; outline: none; font-size: 15px; } .active, .collapsible:hover { background-color: rgb(255, 255, 255, 0.5); } .content { padding: 0 18px; display: none; overflow: hidden; background-color: rgb(255, 255, 255, 0.5); color: #111857; } .grid { display: grid; grid-template-columns: repeat(3, 1fr); justify-items: center; justify-content: space-evenly; align-items: center; grid-gap: 15px; max-width: 100%; height: 100%; } .flip-card { background-color: #e19528; width: 350px; max-width: 100%; height: 350px; perspective: 1000px; } .flip-card-inner { position: relative; width: 100%; max-width: 100%; height: 100%; text-align: center; transition: transform 0.6s; transform-style: preserve-3d; box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2); } .flip-card:hover .flip-card-inner { transform: rotateY(180deg); } .flip-card-front, .flip-card-back { position: absolute; width: 100%; max-width: 100%; height: 100%; -webkit-backface-visibility: hidden; backface-visibility: hidden; } .flip-card-front { background-color: #bbb; color: black; } .flip-card-back { background-color: white; color: white; transform: rotateY(180deg); } /* Full-width input fields */ input[type=text], input[type=password] { width: 100%; padding: 0px 20px; display: inline-block; border: 1px solid #ccc; box-sizing: border-box; } /* Set a style for all buttons */ button { background-color: #4CAF50; color: white; padding: 0px 10px; border: none; cursor: pointer; width: 100%; height: auto; } button:hover { opacity: 0.8; } /* The Modal (background) */ .modal { display: none; /* Hidden by default */ position: fixed; /* Stay in place */ z-index: 1; /* Sit on top */ left: 0; top: 0; width: 100%; /* Full width */ height: 100%; /* Full height */ overflow: auto; /* Enable scroll if needed */ background-color: rgb(0,0,0); /* Fallback color */ background-color: rgba(0,0,0,0.4); /* Black w/ opacity */ padding-top: 60px; } /* Modal Content/Box */ .modal-content { background-color: #fefefe; margin: 5px auto; /* 15% from the top and centered */ border: 1px solid #888; width: 80%; /* Could be more or less, depending on screen size */ } /* The Close Button */ .close { /* Position it in the top right corner outside of the modal */ position: absolute; right: 25px; top: 0; color: #000; font-size: 35px; font-weight: bold; } /* Close button on hover */ .close:hover, .close:focus { color: red; cursor: pointer; } /* Add Zoom Animation */ .animate { -webkit-animation: animatezoom 0.6s; animation: animatezoom 0.6s } @-webkit-keyframes animatezoom { from {-webkit-transform: scale(0)} to {-webkit-transform: scale(1)} } @keyframes animatezoom { from {transform: scale(0)} to {transform: scale(1)} } .jumbotron { height: 250px; max-width: 100%; margin-bottom:0; background-image: url(/static/css/Logo.png); background-repeat: no-repeat; background-position: center; background-color: #e19528; }
0.491456
0.125012
.SchedulePage { width: 100%; min-height: 100vh; padding: 30px 14px 100px; background: #fffbf7; overflow: hidden; } .SchedulePage-wrapper { max-width: 1148px; margin: 0 auto; } .SchedulePage-backLink { display: flex; align-items: center; margin-bottom: 30px; font-family: 'goudy-old-style'; line-height: 28px; font-size: 20px; text-align: center; letter-spacing: 0.05em; text-transform: uppercase; color: black; text-decoration: none; } .SchedulePage-backImage { display: inline-block; height: 16px; margin-right: 12px; } .SchedulePage-heading { margin-bottom: 40px; font-family: 'amador'; line-height: 56px; font-size: 56px; text-align: center; color: #313131; } .SchedulePage-columns { position: relative; display: flex; flex-direction: column; width: 100%; } .SchedulePage-column .SchedulePage-columns { flex-direction: row; } .SchedulePage-column .SchedulePage-columns .SchedulePage-column:not(:last-child)::before { position: absolute; content: ' '; top: 50%; left: 100%; width: 1px; height: calc(100% - 20px); transform: translateX(calc(-50% + 7px)) translateY(-50%); background-color: #313131; } .SchedulePage-column .SchedulePage-columns .SchedulePage-column:first-child { margin-right: 7px; } .SchedulePage-column .SchedulePage-columns .SchedulePage-column:last-child { margin-left: 7px; } .SchedulePage-column .SchedulePage-columns .SchedulePage-column:only-child { margin: 0; } .SchedulePage-column { position: relative; flex: 1; display: flex; flex-direction: column; align-items: center; } .SchedulePage-title { position: relative; width: 100%; padding: 12px 0; margin-top: 56px; font-family: 'goudy-old-style'; line-height: 28px; font-size: 20px; text-align: center; letter-spacing: 0.05em; text-transform: uppercase; color: #313131; } .SchedulePage-title.no-topMargin { margin-top: 0; } .SchedulePage-room { position: relative; display: inline-block; top: 0; width: 100%; padding: 10px 20px; font-family: 'minerva-modern'; line-height: 20px; font-size: 16px; text-align: center; font-weight: bold; color: #313131; text-decoration: none; transition: top 0.3s ease-in-out; } .SchedulePage-entry { position: relative; width: 100%; padding: 7px 0; } .SchedulePage-row { width: 100%; } .SchedulePage-entry::before, .SchedulePage-room:not(:first-child)::before, .SchedulePage-columns:not(:first-child)::before, .SchedulePage-row + .SchedulePage-row .SchedulePage-room::before, .SchedulePage-entry + .SchedulePage-row .SchedulePage-room::before { content: ' '; position: absolute; width: 100%; height: 1px; top: -1px; left: 0%; background-color: #313131; } .SchedulePage-columns:not(:first-child)::after, .SchedulePage-row + .SchedulePage-row .SchedulePage-room::after, .SchedulePage-entry + .SchedulePage-row .SchedulePage-room::after { content: ' '; position: absolute; width: 12px; height: 12px; top: 0%; left: 50%; transform: translateX(-50%) translateY(-50%); background-image: url('./circle.svg'); background-repeat: no-repeat; background-position: center; } .SchedulePage-entry:not(.is-small):not(.no-margin) { flex: 1; } .SchedulePage-entryTime { font-family: 'minerva-modern'; line-height: 20px; font-size: 16px; color: #313131; } .SchedulePage-entryTitle { position: relative; top: 0; font-family: 'goudy-old-style'; line-height: 20px; font-size: 16px; font-weight: bold; color: #313131; text-decoration: none; transition: top 0.3s ease-in-out; } .SchedulePage-entryTitle:hover, a.SchedulePage-room:hover { top: 3px; } @keyframes float { 0% { top: 0px; } 25% { top: 3px; } 75%: { top: -3px; } 100% { top: 0px; } } .SchedulePage-entrySpeaker, .SchedulePage-link { display: inline-block; font-family: 'goudy-old-style'; line-height: 20px; font-size: 16px; font-weight: normal; color: #313131; } .SchedulePage-fillers { display: none; } @media screen and (min-width: 736px) { .SchedulePage-title { padding: 15px; margin-top: 0px; } .SchedulePage-column:not(:last-child) { margin-right: 28px; } .SchedulePage-column:not(:last-child)::before { position: absolute; content: ' '; top: 50%; left: 100%; width: 1px; height: calc(100% - 20px); transform: translateX(calc(-50% + 14px)) translateY(-50%); background: #313131; } .SchedulePage-columns { display: flex; flex-direction: row; } .SchedulePage-columns.is-firstPart .SchedulePage-column .SchedulePage-entry { flex: 1; } .SchedulePage-entry:not(.is-small):not(.no-margin) { flex: none; } .SchedulePage-entry.xl { min-height: 94px; } .SchedulePage-entry.l { min-height: 74px; } } @media screen and (min-width: 1000px) { .SchedulePage { padding: 56px 56px; } .SchedulePage-fillers { display: block; } .SchedulePage-heading { line-height: 112px; font-size: 112px; } .SchedulePage-title { padding: 15px; margin-top: 0px; line-height: 40px; font-size: 28px; } .SchedulePage-room { padding: 10px 0px; line-height: 28px; font-size: 20px; } .SchedulePage-entry.xl { min-height: 126px; } .SchedulePage-entry.l { min-height: 98px; } .SchedulePage-columns.is-firstPart .SchedulePage-column .SchedulePage-entry { flex: 1; } .SchedulePage-entry:not(.is-small) { flex: none; } .SchedulePage-entryTime { line-height: 28px; font-size: 20px; } .SchedulePage-entryTitle, .SchedulePage-entrySpeaker, .SchedulePage-link { line-height: 28px; font-size: 20px; } .SchedulePage-column:not(:last-child) { margin-right: 28px; } .SchedulePage-column:not(:last-child)::before { position: absolute; content: ' '; top: 50%; left: 100%; width: 1px; height: calc(100% - 20px); transform: translateX(calc(-50% + 14px)) translateY(-50%); background: #313131; } .SchedulePage-columns { display: flex; flex-direction: row; } } @media screen and (min-width: 736px) { .SchedulePage-columns.is-firstPart .SchedulePage-column .SchedulePage-entry:not(.is-small):not(.no-margin) { min-height: 174px; } } @media screen and (min-width: 782px) { .SchedulePage-columns.is-firstPart .SchedulePage-column .SchedulePage-entry:not(.is-small):not(.no-margin) { min-height: 154px; } } @media screen and (min-width: 863px) { .SchedulePage-columns.is-firstPart .SchedulePage-column .SchedulePage-entry:not(.is-small):not(.no-margin) { min-height: 134px; } } @media screen and (min-width: 902px) { .SchedulePage-columns.is-firstPart .SchedulePage-column .SchedulePage-entry:not(.is-small):not(.no-margin) { min-height: 114px; } } @media screen and (min-width: 1000px) { .SchedulePage-columns.is-firstPart .SchedulePage-column .SchedulePage-entry:not(.is-small):not(.no-margin) { min-height: 238px; } } @media screen and (min-width: 1054px) { .SchedulePage-columns.is-firstPart .SchedulePage-column .SchedulePage-entry:not(.is-small):not(.no-margin) { min-height: 212px; } } @media screen and (min-width: 1089px) { .SchedulePage-columns.is-firstPart .SchedulePage-column .SchedulePage-entry:not(.is-small):not(.no-margin) { min-height: 210px; } } @media screen and (min-width: 1155px) { .SchedulePage-columns.is-firstPart .SchedulePage-column .SchedulePage-entry:not(.is-small):not(.no-margin) { min-height: 182px; } } @media screen and (min-width: 1196px) { .SchedulePage-entry.xl { min-height: 98px; } } @media screen and (min-width: 1205px) { .SchedulePage-columns.is-firstPart .SchedulePage-column .SchedulePage-entry:not(.is-small):not(.no-margin) { min-height: 154px; } }
src/components/SchedulePage/index.css
.SchedulePage { width: 100%; min-height: 100vh; padding: 30px 14px 100px; background: #fffbf7; overflow: hidden; } .SchedulePage-wrapper { max-width: 1148px; margin: 0 auto; } .SchedulePage-backLink { display: flex; align-items: center; margin-bottom: 30px; font-family: 'goudy-old-style'; line-height: 28px; font-size: 20px; text-align: center; letter-spacing: 0.05em; text-transform: uppercase; color: black; text-decoration: none; } .SchedulePage-backImage { display: inline-block; height: 16px; margin-right: 12px; } .SchedulePage-heading { margin-bottom: 40px; font-family: 'amador'; line-height: 56px; font-size: 56px; text-align: center; color: #313131; } .SchedulePage-columns { position: relative; display: flex; flex-direction: column; width: 100%; } .SchedulePage-column .SchedulePage-columns { flex-direction: row; } .SchedulePage-column .SchedulePage-columns .SchedulePage-column:not(:last-child)::before { position: absolute; content: ' '; top: 50%; left: 100%; width: 1px; height: calc(100% - 20px); transform: translateX(calc(-50% + 7px)) translateY(-50%); background-color: #313131; } .SchedulePage-column .SchedulePage-columns .SchedulePage-column:first-child { margin-right: 7px; } .SchedulePage-column .SchedulePage-columns .SchedulePage-column:last-child { margin-left: 7px; } .SchedulePage-column .SchedulePage-columns .SchedulePage-column:only-child { margin: 0; } .SchedulePage-column { position: relative; flex: 1; display: flex; flex-direction: column; align-items: center; } .SchedulePage-title { position: relative; width: 100%; padding: 12px 0; margin-top: 56px; font-family: 'goudy-old-style'; line-height: 28px; font-size: 20px; text-align: center; letter-spacing: 0.05em; text-transform: uppercase; color: #313131; } .SchedulePage-title.no-topMargin { margin-top: 0; } .SchedulePage-room { position: relative; display: inline-block; top: 0; width: 100%; padding: 10px 20px; font-family: 'minerva-modern'; line-height: 20px; font-size: 16px; text-align: center; font-weight: bold; color: #313131; text-decoration: none; transition: top 0.3s ease-in-out; } .SchedulePage-entry { position: relative; width: 100%; padding: 7px 0; } .SchedulePage-row { width: 100%; } .SchedulePage-entry::before, .SchedulePage-room:not(:first-child)::before, .SchedulePage-columns:not(:first-child)::before, .SchedulePage-row + .SchedulePage-row .SchedulePage-room::before, .SchedulePage-entry + .SchedulePage-row .SchedulePage-room::before { content: ' '; position: absolute; width: 100%; height: 1px; top: -1px; left: 0%; background-color: #313131; } .SchedulePage-columns:not(:first-child)::after, .SchedulePage-row + .SchedulePage-row .SchedulePage-room::after, .SchedulePage-entry + .SchedulePage-row .SchedulePage-room::after { content: ' '; position: absolute; width: 12px; height: 12px; top: 0%; left: 50%; transform: translateX(-50%) translateY(-50%); background-image: url('./circle.svg'); background-repeat: no-repeat; background-position: center; } .SchedulePage-entry:not(.is-small):not(.no-margin) { flex: 1; } .SchedulePage-entryTime { font-family: 'minerva-modern'; line-height: 20px; font-size: 16px; color: #313131; } .SchedulePage-entryTitle { position: relative; top: 0; font-family: 'goudy-old-style'; line-height: 20px; font-size: 16px; font-weight: bold; color: #313131; text-decoration: none; transition: top 0.3s ease-in-out; } .SchedulePage-entryTitle:hover, a.SchedulePage-room:hover { top: 3px; } @keyframes float { 0% { top: 0px; } 25% { top: 3px; } 75%: { top: -3px; } 100% { top: 0px; } } .SchedulePage-entrySpeaker, .SchedulePage-link { display: inline-block; font-family: 'goudy-old-style'; line-height: 20px; font-size: 16px; font-weight: normal; color: #313131; } .SchedulePage-fillers { display: none; } @media screen and (min-width: 736px) { .SchedulePage-title { padding: 15px; margin-top: 0px; } .SchedulePage-column:not(:last-child) { margin-right: 28px; } .SchedulePage-column:not(:last-child)::before { position: absolute; content: ' '; top: 50%; left: 100%; width: 1px; height: calc(100% - 20px); transform: translateX(calc(-50% + 14px)) translateY(-50%); background: #313131; } .SchedulePage-columns { display: flex; flex-direction: row; } .SchedulePage-columns.is-firstPart .SchedulePage-column .SchedulePage-entry { flex: 1; } .SchedulePage-entry:not(.is-small):not(.no-margin) { flex: none; } .SchedulePage-entry.xl { min-height: 94px; } .SchedulePage-entry.l { min-height: 74px; } } @media screen and (min-width: 1000px) { .SchedulePage { padding: 56px 56px; } .SchedulePage-fillers { display: block; } .SchedulePage-heading { line-height: 112px; font-size: 112px; } .SchedulePage-title { padding: 15px; margin-top: 0px; line-height: 40px; font-size: 28px; } .SchedulePage-room { padding: 10px 0px; line-height: 28px; font-size: 20px; } .SchedulePage-entry.xl { min-height: 126px; } .SchedulePage-entry.l { min-height: 98px; } .SchedulePage-columns.is-firstPart .SchedulePage-column .SchedulePage-entry { flex: 1; } .SchedulePage-entry:not(.is-small) { flex: none; } .SchedulePage-entryTime { line-height: 28px; font-size: 20px; } .SchedulePage-entryTitle, .SchedulePage-entrySpeaker, .SchedulePage-link { line-height: 28px; font-size: 20px; } .SchedulePage-column:not(:last-child) { margin-right: 28px; } .SchedulePage-column:not(:last-child)::before { position: absolute; content: ' '; top: 50%; left: 100%; width: 1px; height: calc(100% - 20px); transform: translateX(calc(-50% + 14px)) translateY(-50%); background: #313131; } .SchedulePage-columns { display: flex; flex-direction: row; } } @media screen and (min-width: 736px) { .SchedulePage-columns.is-firstPart .SchedulePage-column .SchedulePage-entry:not(.is-small):not(.no-margin) { min-height: 174px; } } @media screen and (min-width: 782px) { .SchedulePage-columns.is-firstPart .SchedulePage-column .SchedulePage-entry:not(.is-small):not(.no-margin) { min-height: 154px; } } @media screen and (min-width: 863px) { .SchedulePage-columns.is-firstPart .SchedulePage-column .SchedulePage-entry:not(.is-small):not(.no-margin) { min-height: 134px; } } @media screen and (min-width: 902px) { .SchedulePage-columns.is-firstPart .SchedulePage-column .SchedulePage-entry:not(.is-small):not(.no-margin) { min-height: 114px; } } @media screen and (min-width: 1000px) { .SchedulePage-columns.is-firstPart .SchedulePage-column .SchedulePage-entry:not(.is-small):not(.no-margin) { min-height: 238px; } } @media screen and (min-width: 1054px) { .SchedulePage-columns.is-firstPart .SchedulePage-column .SchedulePage-entry:not(.is-small):not(.no-margin) { min-height: 212px; } } @media screen and (min-width: 1089px) { .SchedulePage-columns.is-firstPart .SchedulePage-column .SchedulePage-entry:not(.is-small):not(.no-margin) { min-height: 210px; } } @media screen and (min-width: 1155px) { .SchedulePage-columns.is-firstPart .SchedulePage-column .SchedulePage-entry:not(.is-small):not(.no-margin) { min-height: 182px; } } @media screen and (min-width: 1196px) { .SchedulePage-entry.xl { min-height: 98px; } } @media screen and (min-width: 1205px) { .SchedulePage-columns.is-firstPart .SchedulePage-column .SchedulePage-entry:not(.is-small):not(.no-margin) { min-height: 154px; } }
0.606032
0.071819
font-family: Verdana, Geneva, sans-serif; color: #3d240b; text-align: center; line-height: 20px; font-size: 14px; } #page .roxo { color: #514aa3; } #page a:hover, #page a:visited, #page a:link, #page a:active { text-decoration: none; } #page h1, #page h2, #page h3, #page h4, #page h5, #page h6 { margin: 0; } #page h1 { color: #3d240b; font-size: 30px; font-weight: bold; } #page h2 { color: #3d240b; font-size: 30px; font-weight: bold; } #page h4 { font-size: 18px; } #page h5 { font-size: 16px; } #page #topo { background-image: url("images/back1.jpg"); padding-top: 150px; padding-bottom: 50px; } #page div#redes { float: right; margin-left: 35px; } #page div#redes ul.redes_sociais_header { padding: 0; height: 28px; text-align: right; list-style: none; margin-bottom: 0; } #page div#redes ul.redes_sociais_header li:hover { opacity: 0.6; filter: alpha(opacity=60); /* For IE8 and earlier */ } #page div#redes ul.redes_sociais_header li { margin-right: 5px; } #page div#redes ul.redes_sociais_header a { display: inline-block; width: 28px; height: 28px; } #page div#redes ul.redes_sociais_header .youtube { background-image: url("images/redes-top.png"); background-position: 10px,center; background-repeat: no-repeat; width: 28px; height: 28px; display: inline-block; } #page div#redes ul.redes_sociais_header .instagram { background-image: url("images/redes-top.png"); background-position: -20px,center; background-repeat: no-repeat; width: 28px; height: 28px; display: inline-block; } #page div#redes ul.redes_sociais_header .twitter { background-image: url("images/redes-top.png"); background-position: -50px,center; background-repeat: no-repeat; width: 28px; height: 28px; display: inline-block; } #page div#redes ul.redes_sociais_header .facebook { background-image: url("images/redes-top.png"); background-position: -80px,center; background-repeat: no-repeat; width: 28px; height: 28px; display: inline-block; } #page nav#principal { padding: 25px 0; position: absolute; right: 0; left: 0; z-index: 1010; background-color: transparent; -webkit-transition: background-color 0.5s linear, padding 0.5s linear; /* Saf3.2+, Chrome */ -moz-transition: background-color 0.5s linear, padding 0.5s linear; /* FF3.7+ */ -o-transition: background-color 0.5s linear, padding 0.5s linear; /* Opera 10.5 */ transition: background-color 0.5s linear, padding 0.5s linear; } #page nav#principal div.menu-header { margin-top: 15px; } #page nav#principal div.menu-header div.menu-op { margin-top: 3px; float: right; margin-left: 35px; } #page nav#principal div.menu-header div.menu-op a { color: #3d240b; padding-bottom: 8px; font-size: 13px; } #page nav#principal div.menu-header div.menu-op .menu-img { margin-right: 5px; vertical-align: baseline; } #page nav.fixar { padding: 15px !important; position: fixed !important; z-index: 1000 !important; margin-top: 0px !important; right: 0 !important; left: 0 !important; top: 0 !important; background-color: #f8e586 !important; } #page nav.fixar .menu-header { margin-top: 5px !important; } @media (max-width: 991px) { #page nav.fixar { padding: 5px !important; } #page nav#principal { padding: 10px 0 !important; } #page div.menu-responsivo { width: 50px; text-align: left; display: block; padding: 10px; float: right; position: relative; } #page div.menu-responsivo .dropdown-menu { left: -110px !important; } #page div.menu-header { display: none; } #page .logo { display: none !important; } #page .logob { display: block !important; float: left; margin-top: 15px; } } @media (min-width: 992px) { #page div.menu-responsivo { display: none; } #page ul.menu-header { display: block; } #page .logo { display: block !important; } #page .logob { display: none !important; } } #page #fotos { padding: 80px 0; } #page #fotos .col-md-4 { text-align: left; } #page #fotos h5 { line-height: 22px; } #page #fotos ul { color: #514aa3; padding-left: 15px; } #page #fotos ul li span { color: #858585; } #page #fotos .row { margin-bottom: 50px; } #page #fotos .row:last-child { margin-bottom: 0px; } #page #rifa { padding: 80px 0; background-image: url("images/back2.jpg"); } #page #rifa h5 { line-height: 22px; } #page #rifa .row { margin-bottom: 70px; } #page #rifa .row:last-child { margin-bottom: 0px; } #page #rifa p { margin-bottom: 15px; line-height: 25px; } #page #localizacao { padding: 250px 0; background-image: url("images/seimi-digital-maps.jpg"); -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; background-repeat: no-repeat; background-position: center center; } #page #localizacao .painel { background-color: #ef4f4f; color: #FFFFFF; padding-top: 35px; padding-bottom: 35px; border-radius: 6px; } #page #localizacao .destaque { font-size: 16px; } @media (max-width: 991px) { #page .col-md-6 { margin-bottom: 10px; } #page .wrap span::after, #page .wrap span::before { background-color: transparent !important; } #page #depoimento .dep-conteudo { margin-bottom: 50px; } #page #vantagens-home .col-md-6 { text-align: center !important; } #page #vantagens-home .wrap { margin-bottom: 15px; } #page #vantagens-home .wrapb { margin-bottom: 15px; } #page #rifa .col-md-4 { margin-bottom: 50px !important; } #page #rifa .row { margin-bottom: 0px !important; } #page #rifa h5 { margin-bottom: 50px !important; } #page #fotos h2 { margin-top: 30px; } #page #fotos .col-md-4 { margin-bottom: 50px !important; } #page #fotos .row { margin-bottom: 0px !important; } #page #fotos h5 { margin-bottom: 50px !important; } } #page #footer { padding: 60px 0; background-color: #efaf04; color: #FFFFFF; } #page #footer a { color: #FFFFFF; } #page #footer .menu-footer { display: inline-block; } #page #footer .menu-footer div.menu-op { float: left; } #page #footer .menu-footer div.menu-op a { color: white; padding-bottom: 8px; padding: 20px; } #page #footer .menu-footer div.menu-op a:hover { color: #CBC8E8; -webkit-transition: color 0.5s linear; /* Saf3.2+, Chrome */ -moz-transition: color 0.5s linear; /* FF3.7+ */ -o-transition: color 0.5s linear; /* Opera 10.5 */ transition: color 0.5s linear; } #page #footer div#redes_footer { display: inline-block; } #page #footer div#redes_footer ul.redes_sociais_footer { padding: 0; height: 50px; text-align: right; list-style: none; margin-bottom: 0; } #page #footer div#redes_footer ul.redes_sociais_footer li:hover { opacity: 0.6; filter: alpha(opacity=60); /* For IE8 and earlier */ } #page #footer div#redes_footer ul.redes_sociais_footer li { margin-right: 5px; } #page #footer div#redes_footer ul.redes_sociais_footer a { display: inline-block; width: 55px; height: 50px; } #page #footer div#redes_footer ul.redes_sociais_footer .youtube { background-image: url("images/redes-bot.jpg"); background-position: 10px,center; background-repeat: no-repeat; width: 55px; height: 50px; display: inline-block; } #page #footer div#redes_footer ul.redes_sociais_footer .instagram { background-image: url("images/redes-bot.jpg"); background-position: -50px,center; background-repeat: no-repeat; width: 55px; height: 50px; display: inline-block; } #page #footer div#redes_footer ul.redes_sociais_footer .twitter { background-image: url("images/redes-bot.jpg"); background-position: -110px,center; background-repeat: no-repeat; width: 55px; height: 50px; display: inline-block; } #page #contato { padding: 80px 0; } #page #contato h5 { margin-bottom: 40px; } #page #contato h2 { margin-bottom: 25px; } #page .input-select { border: 1px solid #888a96; padding: 16px 10px; height: auto !important; border-radius: 6px; margin-bottom: 15px; } #page .input-text { border: 1px solid #888a96; padding: 25px 10px; border-radius: 6px; margin-bottom: 15px; } #page .input-data { border: 2px solid #FFFFFF; background-color: #514aa3; padding: 10px; border-radius: 6px; } #page .input-text-branco { border: 2px solid #514aa3; padding: 10px; border-radius: 6px; width: 100%; } #page .input-checkbox { display: block; margin-left: 20%; } #page .input-checkbox span.wpcf7-list-item { width: 48%; float: left; text-align: left; margin-bottom: 10px; } #page .input-checkbox span.wpcf7-list-item input { margin: 0; margin-right: 10px; vertical-align: middle; } #page .input-contatob { border: 0; padding: 10px; border-radius: 6px; background-color: #f0f2f4; width: 90%; } #page .btn-contato { border: 0; -webkit-border-radius: 6px; -moz-border-radius: 6px; border-radius: 6px; padding: 10px 70px; background-color: #b1842c; color: white; margin-top: 10px; } #page .btn-contato:hover { background-color: #b5934e; } #page .btn-redondo { -webkit-border-radius: 8px; -moz-border-radius: 8px; border-radius: 8px; padding: 15px 45px; font-size: 16px; font-weight: bold; } #page .btn-roxo { border: 2px solid #ef4f4f; background-color: #ef4f4f; color: #FFFFFF; margin-top: 25px; -webkit-transition-duration: 0.5s; /* Safari */ transition-duration: 0.5s; } #page .btn-roxo:hover { background-color: transparent; color: #ef4f4f; } #page .btn-branco { border: 2px solid #FFFFFF; background-color: transparent; color: #FFFFFF; -webkit-transition-duration: 0.5s; /* Safari */ transition-duration: 0.5s; display: inline-block; } #page .btn-branco:hover { background-color: #FFFFFF; color: #127cc1 !important; } #page .form7 { margin-top: 40px; } #page .form7 p { margin-bottom: 20px; } #page .separador { height: 1px; width: 35%; background-color: #FFFFFF; display: inline-block; margin-bottom: 30px; } .wow { visibility: hidden; } .videoWrapper { position: relative; padding-bottom: 26.25%; /* 16:9 */ padding-top: 25px; height: 0; -webkit-box-align: center; -webkit-box-pack: center; display: -webkit-box; } .videoWrapper iframe { pointer-events: none; position: absolute; top: 0; left: 0; width: 100%; height: 100%; } .e-cinza:hover { -webkit-filter: grayscale(100%); filter: grayscale(100%); } .e-claro:hover { opacity: 0.6; filter: alpha(opacity=60); /* For IE8 and earlier */ } /*# sourceMappingURL=style.css.map */
style.css
font-family: Verdana, Geneva, sans-serif; color: #3d240b; text-align: center; line-height: 20px; font-size: 14px; } #page .roxo { color: #514aa3; } #page a:hover, #page a:visited, #page a:link, #page a:active { text-decoration: none; } #page h1, #page h2, #page h3, #page h4, #page h5, #page h6 { margin: 0; } #page h1 { color: #3d240b; font-size: 30px; font-weight: bold; } #page h2 { color: #3d240b; font-size: 30px; font-weight: bold; } #page h4 { font-size: 18px; } #page h5 { font-size: 16px; } #page #topo { background-image: url("images/back1.jpg"); padding-top: 150px; padding-bottom: 50px; } #page div#redes { float: right; margin-left: 35px; } #page div#redes ul.redes_sociais_header { padding: 0; height: 28px; text-align: right; list-style: none; margin-bottom: 0; } #page div#redes ul.redes_sociais_header li:hover { opacity: 0.6; filter: alpha(opacity=60); /* For IE8 and earlier */ } #page div#redes ul.redes_sociais_header li { margin-right: 5px; } #page div#redes ul.redes_sociais_header a { display: inline-block; width: 28px; height: 28px; } #page div#redes ul.redes_sociais_header .youtube { background-image: url("images/redes-top.png"); background-position: 10px,center; background-repeat: no-repeat; width: 28px; height: 28px; display: inline-block; } #page div#redes ul.redes_sociais_header .instagram { background-image: url("images/redes-top.png"); background-position: -20px,center; background-repeat: no-repeat; width: 28px; height: 28px; display: inline-block; } #page div#redes ul.redes_sociais_header .twitter { background-image: url("images/redes-top.png"); background-position: -50px,center; background-repeat: no-repeat; width: 28px; height: 28px; display: inline-block; } #page div#redes ul.redes_sociais_header .facebook { background-image: url("images/redes-top.png"); background-position: -80px,center; background-repeat: no-repeat; width: 28px; height: 28px; display: inline-block; } #page nav#principal { padding: 25px 0; position: absolute; right: 0; left: 0; z-index: 1010; background-color: transparent; -webkit-transition: background-color 0.5s linear, padding 0.5s linear; /* Saf3.2+, Chrome */ -moz-transition: background-color 0.5s linear, padding 0.5s linear; /* FF3.7+ */ -o-transition: background-color 0.5s linear, padding 0.5s linear; /* Opera 10.5 */ transition: background-color 0.5s linear, padding 0.5s linear; } #page nav#principal div.menu-header { margin-top: 15px; } #page nav#principal div.menu-header div.menu-op { margin-top: 3px; float: right; margin-left: 35px; } #page nav#principal div.menu-header div.menu-op a { color: #3d240b; padding-bottom: 8px; font-size: 13px; } #page nav#principal div.menu-header div.menu-op .menu-img { margin-right: 5px; vertical-align: baseline; } #page nav.fixar { padding: 15px !important; position: fixed !important; z-index: 1000 !important; margin-top: 0px !important; right: 0 !important; left: 0 !important; top: 0 !important; background-color: #f8e586 !important; } #page nav.fixar .menu-header { margin-top: 5px !important; } @media (max-width: 991px) { #page nav.fixar { padding: 5px !important; } #page nav#principal { padding: 10px 0 !important; } #page div.menu-responsivo { width: 50px; text-align: left; display: block; padding: 10px; float: right; position: relative; } #page div.menu-responsivo .dropdown-menu { left: -110px !important; } #page div.menu-header { display: none; } #page .logo { display: none !important; } #page .logob { display: block !important; float: left; margin-top: 15px; } } @media (min-width: 992px) { #page div.menu-responsivo { display: none; } #page ul.menu-header { display: block; } #page .logo { display: block !important; } #page .logob { display: none !important; } } #page #fotos { padding: 80px 0; } #page #fotos .col-md-4 { text-align: left; } #page #fotos h5 { line-height: 22px; } #page #fotos ul { color: #514aa3; padding-left: 15px; } #page #fotos ul li span { color: #858585; } #page #fotos .row { margin-bottom: 50px; } #page #fotos .row:last-child { margin-bottom: 0px; } #page #rifa { padding: 80px 0; background-image: url("images/back2.jpg"); } #page #rifa h5 { line-height: 22px; } #page #rifa .row { margin-bottom: 70px; } #page #rifa .row:last-child { margin-bottom: 0px; } #page #rifa p { margin-bottom: 15px; line-height: 25px; } #page #localizacao { padding: 250px 0; background-image: url("images/seimi-digital-maps.jpg"); -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; background-repeat: no-repeat; background-position: center center; } #page #localizacao .painel { background-color: #ef4f4f; color: #FFFFFF; padding-top: 35px; padding-bottom: 35px; border-radius: 6px; } #page #localizacao .destaque { font-size: 16px; } @media (max-width: 991px) { #page .col-md-6 { margin-bottom: 10px; } #page .wrap span::after, #page .wrap span::before { background-color: transparent !important; } #page #depoimento .dep-conteudo { margin-bottom: 50px; } #page #vantagens-home .col-md-6 { text-align: center !important; } #page #vantagens-home .wrap { margin-bottom: 15px; } #page #vantagens-home .wrapb { margin-bottom: 15px; } #page #rifa .col-md-4 { margin-bottom: 50px !important; } #page #rifa .row { margin-bottom: 0px !important; } #page #rifa h5 { margin-bottom: 50px !important; } #page #fotos h2 { margin-top: 30px; } #page #fotos .col-md-4 { margin-bottom: 50px !important; } #page #fotos .row { margin-bottom: 0px !important; } #page #fotos h5 { margin-bottom: 50px !important; } } #page #footer { padding: 60px 0; background-color: #efaf04; color: #FFFFFF; } #page #footer a { color: #FFFFFF; } #page #footer .menu-footer { display: inline-block; } #page #footer .menu-footer div.menu-op { float: left; } #page #footer .menu-footer div.menu-op a { color: white; padding-bottom: 8px; padding: 20px; } #page #footer .menu-footer div.menu-op a:hover { color: #CBC8E8; -webkit-transition: color 0.5s linear; /* Saf3.2+, Chrome */ -moz-transition: color 0.5s linear; /* FF3.7+ */ -o-transition: color 0.5s linear; /* Opera 10.5 */ transition: color 0.5s linear; } #page #footer div#redes_footer { display: inline-block; } #page #footer div#redes_footer ul.redes_sociais_footer { padding: 0; height: 50px; text-align: right; list-style: none; margin-bottom: 0; } #page #footer div#redes_footer ul.redes_sociais_footer li:hover { opacity: 0.6; filter: alpha(opacity=60); /* For IE8 and earlier */ } #page #footer div#redes_footer ul.redes_sociais_footer li { margin-right: 5px; } #page #footer div#redes_footer ul.redes_sociais_footer a { display: inline-block; width: 55px; height: 50px; } #page #footer div#redes_footer ul.redes_sociais_footer .youtube { background-image: url("images/redes-bot.jpg"); background-position: 10px,center; background-repeat: no-repeat; width: 55px; height: 50px; display: inline-block; } #page #footer div#redes_footer ul.redes_sociais_footer .instagram { background-image: url("images/redes-bot.jpg"); background-position: -50px,center; background-repeat: no-repeat; width: 55px; height: 50px; display: inline-block; } #page #footer div#redes_footer ul.redes_sociais_footer .twitter { background-image: url("images/redes-bot.jpg"); background-position: -110px,center; background-repeat: no-repeat; width: 55px; height: 50px; display: inline-block; } #page #contato { padding: 80px 0; } #page #contato h5 { margin-bottom: 40px; } #page #contato h2 { margin-bottom: 25px; } #page .input-select { border: 1px solid #888a96; padding: 16px 10px; height: auto !important; border-radius: 6px; margin-bottom: 15px; } #page .input-text { border: 1px solid #888a96; padding: 25px 10px; border-radius: 6px; margin-bottom: 15px; } #page .input-data { border: 2px solid #FFFFFF; background-color: #514aa3; padding: 10px; border-radius: 6px; } #page .input-text-branco { border: 2px solid #514aa3; padding: 10px; border-radius: 6px; width: 100%; } #page .input-checkbox { display: block; margin-left: 20%; } #page .input-checkbox span.wpcf7-list-item { width: 48%; float: left; text-align: left; margin-bottom: 10px; } #page .input-checkbox span.wpcf7-list-item input { margin: 0; margin-right: 10px; vertical-align: middle; } #page .input-contatob { border: 0; padding: 10px; border-radius: 6px; background-color: #f0f2f4; width: 90%; } #page .btn-contato { border: 0; -webkit-border-radius: 6px; -moz-border-radius: 6px; border-radius: 6px; padding: 10px 70px; background-color: #b1842c; color: white; margin-top: 10px; } #page .btn-contato:hover { background-color: #b5934e; } #page .btn-redondo { -webkit-border-radius: 8px; -moz-border-radius: 8px; border-radius: 8px; padding: 15px 45px; font-size: 16px; font-weight: bold; } #page .btn-roxo { border: 2px solid #ef4f4f; background-color: #ef4f4f; color: #FFFFFF; margin-top: 25px; -webkit-transition-duration: 0.5s; /* Safari */ transition-duration: 0.5s; } #page .btn-roxo:hover { background-color: transparent; color: #ef4f4f; } #page .btn-branco { border: 2px solid #FFFFFF; background-color: transparent; color: #FFFFFF; -webkit-transition-duration: 0.5s; /* Safari */ transition-duration: 0.5s; display: inline-block; } #page .btn-branco:hover { background-color: #FFFFFF; color: #127cc1 !important; } #page .form7 { margin-top: 40px; } #page .form7 p { margin-bottom: 20px; } #page .separador { height: 1px; width: 35%; background-color: #FFFFFF; display: inline-block; margin-bottom: 30px; } .wow { visibility: hidden; } .videoWrapper { position: relative; padding-bottom: 26.25%; /* 16:9 */ padding-top: 25px; height: 0; -webkit-box-align: center; -webkit-box-pack: center; display: -webkit-box; } .videoWrapper iframe { pointer-events: none; position: absolute; top: 0; left: 0; width: 100%; height: 100%; } .e-cinza:hover { -webkit-filter: grayscale(100%); filter: grayscale(100%); } .e-claro:hover { opacity: 0.6; filter: alpha(opacity=60); /* For IE8 and earlier */ } /*# sourceMappingURL=style.css.map */
0.268462
0.071982
._qbf-compact { font-family: Arial, Helvetica, sans-serif; font-size:11pt; display: grid; grid-template-columns: auto 1fr; color: #454f54; flex-basis: 100%; } ._qbf-compact_fieldLabel { display: flex; } ._qbf-compact_label { flex-basis: 100%; vertical-align: top; padding-right: 8px; color: #476382; text-align: right; font-weight: bold; border-right: solid 1px lightgrey; border-bottom: solid 1px #c0c0c0; } ._qbf-compact_field { display: flex; vertical-align: top; border-bottom: solid 1px #c0c0c0; } ._qbf-compact_cell { flex-basis: 100%; padding-left: 8px; padding-right: 8px; } ._qbf-compact_invisible, ._qbf-compact_invisible table, ._qbf-compact_invisible tr, ._qbf-compact_invisible td, ._qbf-compact_invisible div, ._qbf-compact_invisible input, ._qbf-compact_invisible button { visibility: hidden; height: 0px; min-height: 0px; max-height: 0px; margin: 0px; font-size: 0px; } /** -- Framed elements **/ /* ._qbf-compact_div { } */ ._qbf-compact_frameBox { border: solid 2px slategrey; color: slategrey; } ._qbf-compact_frameTop { height: fit-content; white-space: nowrap; } ._qbf-compact_frameCenter { flex: 1; display: flex; flex-direction: row; align-items: baseline; } ._qbf-compact_frameBottom { height: fit-content; white-space: nowrap; } ._qbf-compact_frameLeft { width: fit-content; white-space: nowrap; } ._qbf-compact_frameRight { width: fit-content; white-space: nowrap; } ._qbf-compact_input { /* width: 250px; */ height: 22px; white-space: nowrap; border-spacing: 0px; /*padding-top: 2px;*/ padding: 2px; border: solid 1px darkgrey; margin: 1px; display: flex; flex-direction: row; align-items: baseline; background-color: #fafaf8; } ._qbf-compact_input input { background: none; border: none; outline: none; font-family: inherit; font-size:inherit; height: inherit; padding-left: 2px; padding-right: 2px; align-items: baseline; flex: 1; color: #454f54; } ._qbf-compact_input input::-moz-selection { /* Code for Firefox */ color: white; background: dodgerblue; } ._qbf-compact_input input::selection { /* Code for Firefox */ color: white; background: dodgerblue; } ._qbf-compact_input_hover:hover { border: solid 2px cornflowerblue; margin: 0px; } ._qbf-compact_input_disabled { background-color: lightgrey; } ._qbf-compact_input_focus { border: solid 2px cornflowerblue; margin: 0px; color: darkblue; } ._qbf-compact_textsuffix { display: inline; padding-bottom: 5px; white-space: nowrap; } /* --- Password --- */ ._qbf-compact_input_eyeIcon_cell { position: relative; -webkit-user-select: none; /* Safari */ -ms-user-select: none; /* IE 10 and IE 11 */ user-select: none; /* Standard syntax */ } ._qbf-compact_input_eyeIcon_on { background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" fill="darkred" xmlns="http://www.w3.org/2000/svg"><path d="M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z"/></svg>'); background-repeat: no-repeat; position: absolute; top: 0px; height: calc(100% + 2px); background-size: 18px 18px; /* width is mandatory because it is used javascript */ width: 18px; border-left: solid 1px darkgrey; background-color: lightpink; padding-left: 0px !important; padding-right: 0px !important; } ._qbf-compact_input_eyeIcon_on:hover { background-color: lightsteelblue; } ._qbf-compact_input_eyeIcon_on_disabled { background-color: lightgrey !important; } ._qbf-compact_input_eyeIcon_on_diabled:hover { background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" fill="grey" xmlns="http://www.w3.org/2000/svg"><path d="M12 7c2.76 0 5 2.24 5 5 0 .65-.13 1.26-.36 1.83l2.92 2.92c1.51-1.26 2.7-2.89 3.43-4.75-1.73-4.39-6-7.5-11-7.5-1.4 0-2.74.25-3.98.7l2.16 2.16C10.74 7.13 11.35 7 12 7zM2 4.27l2.28 2.28.46.46A11.804 11.804 0 0 0 1 12c1.73 4.39 6 7.5 11 7.5 1.55 0 3.03-.3 4.38-.84l.42.42L19.73 22 21 20.73 3.27 3 2 4.27zM7.53 9.8l1.55 1.55c-.05.21-.08.43-.08.65 0 1.66 1.34 3 3 3 .22 0 .44-.03.65-.08l1.55 1.55c-.67.33-1.41.53-2.2.53-2.76 0-5-2.24-5-5 0-.79.2-1.53.53-2.2zm4.31-.78l3.15 3.15.02-.16c0-1.66-1.34-3-3-3l-.17.01z"/></svg>') !important; background-color: lightgrey !important; } ._qbf-compact_input_eyeIcon_off { background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" fill="grey" xmlns="http://www.w3.org/2000/svg"><path d="M12 7c2.76 0 5 2.24 5 5 0 .65-.13 1.26-.36 1.83l2.92 2.92c1.51-1.26 2.7-2.89 3.43-4.75-1.73-4.39-6-7.5-11-7.5-1.4 0-2.74.25-3.98.7l2.16 2.16C10.74 7.13 11.35 7 12 7zM2 4.27l2.28 2.28.46.46A11.804 11.804 0 0 0 1 12c1.73 4.39 6 7.5 11 7.5 1.55 0 3.03-.3 4.38-.84l.42.42L19.73 22 21 20.73 3.27 3 2 4.27zM7.53 9.8l1.55 1.55c-.05.21-.08.43-.08.65 0 1.66 1.34 3 3 3 .22 0 .44-.03.65-.08l1.55 1.55c-.67.33-1.41.53-2.2.53-2.76 0-5-2.24-5-5 0-.79.2-1.53.53-2.2zm4.31-.78l3.15 3.15.02-.16c0-1.66-1.34-3-3-3l-.17.01z"/></svg>'); background-repeat: no-repeat; position: absolute; top: 0px; height: calc(100% + 2px); background-size: 18px 18px; /* width is mandatory because it is used javascript */ width: 18px; border-left: solid 1px darkgrey; padding-left: 0px !important; padding-right: 0px !important; } ._qbf-compact_input_eyeIcon_off:hover { background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" fill="cornflowerblue" xmlns="http://www.w3.org/2000/svg"><path d="M12 7c2.76 0 5 2.24 5 5 0 .65-.13 1.26-.36 1.83l2.92 2.92c1.51-1.26 2.7-2.89 3.43-4.75-1.73-4.39-6-7.5-11-7.5-1.4 0-2.74.25-3.98.7l2.16 2.16C10.74 7.13 11.35 7 12 7zM2 4.27l2.28 2.28.46.46A11.804 11.804 0 0 0 1 12c1.73 4.39 6 7.5 11 7.5 1.55 0 3.03-.3 4.38-.84l.42.42L19.73 22 21 20.73 3.27 3 2 4.27zM7.53 9.8l1.55 1.55c-.05.21-.08.43-.08.65 0 1.66 1.34 3 3 3 .22 0 .44-.03.65-.08l1.55 1.55c-.67.33-1.41.53-2.2.53-2.76 0-5-2.24-5-5 0-.79.2-1.53.53-2.2zm4.31-.78l3.15 3.15.02-.16c0-1.66-1.34-3-3-3l-.17.01z"/></svg>'); } ._qbf-compact_input_eyeIcon_off_disabled { background-color: lightgrey !important; } ._qbf-compact_input_eyeIcon_off_disabled { background-color: lightgrey !important; } ._qbf-compact_input_eyeIcon_off_disabled:hover { background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" fill="grey" xmlns="http://www.w3.org/2000/svg"><path d="M12 7c2.76 0 5 2.24 5 5 0 .65-.13 1.26-.36 1.83l2.92 2.92c1.51-1.26 2.7-2.89 3.43-4.75-1.73-4.39-6-7.5-11-7.5-1.4 0-2.74.25-3.98.7l2.16 2.16C10.74 7.13 11.35 7 12 7zM2 4.27l2.28 2.28.46.46A11.804 11.804 0 0 0 1 12c1.73 4.39 6 7.5 11 7.5 1.55 0 3.03-.3 4.38-.84l.42.42L19.73 22 21 20.73 3.27 3 2 4.27zM7.53 9.8l1.55 1.55c-.05.21-.08.43-.08.65 0 1.66 1.34 3 3 3 .22 0 .44-.03.65-.08l1.55 1.55c-.67.33-1.41.53-2.2.53-2.76 0-5-2.24-5-5 0-.79.2-1.53.53-2.2zm4.31-.78l3.15 3.15.02-.16c0-1.66-1.34-3-3-3l-.17.01z"/></svg>') !important; background-color: lightgrey !important; } /* --- Input List --- */ ._qbf-compact_input_listIcon_cell { position: relative; -webkit-user-select: none; /* Safari */ -ms-user-select: none; /* IE 10 and IE 11 */ user-select: none; /* Standard syntax */ } ._qbf-compact_input_listIcon { background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" xmlns="http://www.w3.org/2000/svg"><g><polyline points="6,9 12,15 18,9" stroke="grey" stroke-width="4" fill="none" /></g></svg>'); background-repeat: no-repeat; position: absolute; top: 0px; height: calc(100% + 2px); background-size: 18px 18px; width: 18px; border-left: solid 1px darkgrey; padding-left: 0px !important; padding-right: 0px !important; } ._qbf-compact_input_listIcon:hover { background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" xmlns="http://www.w3.org/2000/svg"><g><polyline points="6,9 12,15 18,9" stroke="cornflowerblue" stroke-width="4" fill="none" /></g></svg>'); } ._qbf-compact_input_listIcon_disabled { background-color: lightgrey !important; } ._qbf-compact_input_listIcon_disabled:hover { background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" fill="grey" xmlns="http://www.w3.org/2000/svg"><path d="m2,8c0,0 0,0 20,0c0,0 -10,10 -10,10c0,0 -10,-10 -10,-10z"/></svg>') !important; background-color: lightgrey !important; } ._qbf-compact_input_list { min-height: 20px; max-height: 250px; border: solid 2px darkgrey; background-color: white; position: sticky; z-index: 10000; overflow-x: hidden; overflow-y: auto; } ._qbf-compact_input_list > table { table-layout:fixed; width: 100%; } ._qbf-compact_input_list > table > tbody > tr { font-family: Arial, Helvetica, sans-serif; font-size: 12pt; } ._qbf-compact_input_list > table > tbody > tr:hover { background-color: lavender; } /* --- Choice - radio --- */ ._qbf-compact input[type=radio] { display: none; } ._qbf-compact input[type=radio] + label { position: relative; padding: 2px; padding-left: 1.4rem; border: solid 2px rgba(0,0,0,0); } ._qbf-compact input[type=radio] + label::before, ._qbf-compact input[type=radio] + label::after { display: block; position: absolute; box-sizing: border-box; bottom: 2px; left: 0; content:''; width: 1rem; height: 1rem; border-radius: 1rem; } ._qbf-compact input[type=radio] + label::before { border: 2px solid grey; background-color: none; } ._qbf-compact input[type=radio]:checked + label::after { border: 2px solid #454f54; background-color: cornflowerblue; } ._qbf-compact input[type=radio]:hover + label { border: 2px solid cornflowerblue; } ._qbf-compact input[type=radio]+ label:focus { border: 2px solid cornflowerblue; outline: none; } /* --- Boolean - checkbox --- */ ._qbf-compact_checkbox { display: flex; justify-content: center; align-items: center; width: 22px; height: 18px; } ._qbf-compact_checkbox > div { cursor: default; height: 14px; width: 14px; background-color: white; border-radius: 3px; margin: 0px; margin-top: 1px; border: solid 1px black; outline: none; } ._qbf-compact_checkbox > div:hover { background-color: cornflowerblue; border-color: cornflowerblue; } ._qbf-compact_checkbox > div:focus { background-color: cornflowerblue; border-color: cornflowerblue; } ._qbf-compact_checkbox > div > div { position: relative; height: 12px; width: 12px; margin: 1px; } ._qbf-compact_checkbox > div > div > div { position: absolute; pointer-events: none; left: 3px; top: 0px; width: 5px; height: 8px; border: solid white; border-width: 0 3px 3px 0; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg); } /* checkbox - unknown */ ._qbf-compact_checkbox_unknown > div { background-color: #fafaf8; border-color: black; } ._qbf-compact_checkbox > div > div { background-color: #b3b3b3; } ._qbf-compact_checkbox > div > div > div { border-color: rgba(0,0,0,0); } /* checkbox - false */ ._qbf-compact_checkbox_false > div { background-color: #fafaf8; border-color: grey; } ._qbf-compact_checkbox_false > div > div { background-color: #fafaf8; } ._qbf-compact_checkbox_false > div > div > div { border-color: rgba(0,0,0,0); } /* checkbox - true */ ._qbf-compact_checkbox_true > div { background-color: #7EA2BF; border-color: #365a9d; } ._qbf-compact_checkbox_true:hover > div { background-color: #4d4dff; border-color: #4d4dff; } ._qbf-compact_checkbox_true > div:focus { background-color: #4d4dff; border-color: #4d4dff; } ._qbf-compact_checkbox_true > div > div { background-color:#7EA2BF; } ._qbf-compact_checkbox_true:hover > div > div { background-color: #4d4dff; } ._qbf-compact_checkbox_true > div:focus > div { background-color: #4d4dff; } ._qbf-compact_checkbox_true > div > div > div { border-color: white; } /* --- Boolean - switch --- */ ._qbf-compact_switch { display: flex; justify-content: center; align-items: center; width: 32px; height: 12px; margin: 0px; padding: 0px; } ._qbf-compact_switch > div { background-color: #fafaf8; border: solid 1px grey; border-radius: 10px; width: 26px; height: 10px; padding: 2px; cursor: default; outline: none; } ._qbf-compact_switch > div:hover { background-color: cornflowerblue; border-color: cornflowerblue; } ._qbf-compact_switch > div:focus { background-color: #4d4dff; border-color: #4d4dff; } ._qbf-compact_switch > div > div { position: relative; background-color: #fafaf8; border-radius: 10px; width: 100%; height: 100%; cursor: default; } ._qbf-compact_switch > div > div > div { position: absolute; background-color: white; border: solid 1px grey; border-radius: 12px; top: -2px; width: 12px; height: 12px; cursor: default; } /* switch - unknown */ ._qbf-compact_switch_unknown > div { background-color: lightgrey; border-color: black; } ._qbf-compact_switch_unknown > div > div { background-color: grey; } ._qbf-compact_switch_unknown > div > div > div { left: 6px; visibility: hidden; } /* switch - false */ ._qbf-compact_switch_false > div { background-color: lightgrey; border-color: grey; } ._qbf-compact_switch_false > div > div { background-color: lightgrey; } ._qbf-compact_switch_false > div:hover > div { background-color: lightgrey; } ._qbf-compact_switch_false > div:focus > div { background-color: lightgrey; } ._qbf-compact_switch_false > div > div > div { border-color: #505050; left: -2px; } /* switch - true */ ._qbf-compact_switch_true > div { background-color: #7EA2BF; } ._qbf-compact_switch_true > div > div { background-color:#7EA2BF; } ._qbf-compact_switch_true > div > div > div { left: 14px; border-color: #0c3b77; } /* -- Combobox -- */ ._qbf-compact_field select { width: 100%; height: 100%; /* background: none; */ -webkit-appearance: none; background: url('data:image/svg+xml;utf8,<svg width="24" height="20" xmlns="http://www.w3.org/2000/svg"><g><polyline points="6,7 12,13 18,7" stroke="grey" stroke-width="4" fill="none" /></g></svg>') no-repeat right rgba(0,0,0,0); border: none; outline: none; font-family: inherit; font-size:inherit; height: inherit; align-items: baseline; flex: 1; padding-right: 25px; color: #454f54; } /* -- Button -- */ ._qbf-compact_field button { width: 150px; border: solid 2px #4a7aa4; border-radius: 5px; background: linear-gradient(to bottom,#84b5df,#4a7aa4); color: white; font-family: inherit; font-size: inherit; font-weight: bold; padding-left: 10px; padding-right: 10px; padding-top: 3px; padding-bottom: 3px; margin: 1px; text-align: center; outline: none; } ._qbf-compact_field button:hover { background: linear-gradient(to bottom,#b6d8f7,#6591b7); } ._qbf-compact_field button:focus { border-color: #4d4dff; background: linear-gradient(to bottom,#b6d8f7,#6591b7); }
css/QbForm-compact.css
._qbf-compact { font-family: Arial, Helvetica, sans-serif; font-size:11pt; display: grid; grid-template-columns: auto 1fr; color: #454f54; flex-basis: 100%; } ._qbf-compact_fieldLabel { display: flex; } ._qbf-compact_label { flex-basis: 100%; vertical-align: top; padding-right: 8px; color: #476382; text-align: right; font-weight: bold; border-right: solid 1px lightgrey; border-bottom: solid 1px #c0c0c0; } ._qbf-compact_field { display: flex; vertical-align: top; border-bottom: solid 1px #c0c0c0; } ._qbf-compact_cell { flex-basis: 100%; padding-left: 8px; padding-right: 8px; } ._qbf-compact_invisible, ._qbf-compact_invisible table, ._qbf-compact_invisible tr, ._qbf-compact_invisible td, ._qbf-compact_invisible div, ._qbf-compact_invisible input, ._qbf-compact_invisible button { visibility: hidden; height: 0px; min-height: 0px; max-height: 0px; margin: 0px; font-size: 0px; } /** -- Framed elements **/ /* ._qbf-compact_div { } */ ._qbf-compact_frameBox { border: solid 2px slategrey; color: slategrey; } ._qbf-compact_frameTop { height: fit-content; white-space: nowrap; } ._qbf-compact_frameCenter { flex: 1; display: flex; flex-direction: row; align-items: baseline; } ._qbf-compact_frameBottom { height: fit-content; white-space: nowrap; } ._qbf-compact_frameLeft { width: fit-content; white-space: nowrap; } ._qbf-compact_frameRight { width: fit-content; white-space: nowrap; } ._qbf-compact_input { /* width: 250px; */ height: 22px; white-space: nowrap; border-spacing: 0px; /*padding-top: 2px;*/ padding: 2px; border: solid 1px darkgrey; margin: 1px; display: flex; flex-direction: row; align-items: baseline; background-color: #fafaf8; } ._qbf-compact_input input { background: none; border: none; outline: none; font-family: inherit; font-size:inherit; height: inherit; padding-left: 2px; padding-right: 2px; align-items: baseline; flex: 1; color: #454f54; } ._qbf-compact_input input::-moz-selection { /* Code for Firefox */ color: white; background: dodgerblue; } ._qbf-compact_input input::selection { /* Code for Firefox */ color: white; background: dodgerblue; } ._qbf-compact_input_hover:hover { border: solid 2px cornflowerblue; margin: 0px; } ._qbf-compact_input_disabled { background-color: lightgrey; } ._qbf-compact_input_focus { border: solid 2px cornflowerblue; margin: 0px; color: darkblue; } ._qbf-compact_textsuffix { display: inline; padding-bottom: 5px; white-space: nowrap; } /* --- Password --- */ ._qbf-compact_input_eyeIcon_cell { position: relative; -webkit-user-select: none; /* Safari */ -ms-user-select: none; /* IE 10 and IE 11 */ user-select: none; /* Standard syntax */ } ._qbf-compact_input_eyeIcon_on { background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" fill="darkred" xmlns="http://www.w3.org/2000/svg"><path d="M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z"/></svg>'); background-repeat: no-repeat; position: absolute; top: 0px; height: calc(100% + 2px); background-size: 18px 18px; /* width is mandatory because it is used javascript */ width: 18px; border-left: solid 1px darkgrey; background-color: lightpink; padding-left: 0px !important; padding-right: 0px !important; } ._qbf-compact_input_eyeIcon_on:hover { background-color: lightsteelblue; } ._qbf-compact_input_eyeIcon_on_disabled { background-color: lightgrey !important; } ._qbf-compact_input_eyeIcon_on_diabled:hover { background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" fill="grey" xmlns="http://www.w3.org/2000/svg"><path d="M12 7c2.76 0 5 2.24 5 5 0 .65-.13 1.26-.36 1.83l2.92 2.92c1.51-1.26 2.7-2.89 3.43-4.75-1.73-4.39-6-7.5-11-7.5-1.4 0-2.74.25-3.98.7l2.16 2.16C10.74 7.13 11.35 7 12 7zM2 4.27l2.28 2.28.46.46A11.804 11.804 0 0 0 1 12c1.73 4.39 6 7.5 11 7.5 1.55 0 3.03-.3 4.38-.84l.42.42L19.73 22 21 20.73 3.27 3 2 4.27zM7.53 9.8l1.55 1.55c-.05.21-.08.43-.08.65 0 1.66 1.34 3 3 3 .22 0 .44-.03.65-.08l1.55 1.55c-.67.33-1.41.53-2.2.53-2.76 0-5-2.24-5-5 0-.79.2-1.53.53-2.2zm4.31-.78l3.15 3.15.02-.16c0-1.66-1.34-3-3-3l-.17.01z"/></svg>') !important; background-color: lightgrey !important; } ._qbf-compact_input_eyeIcon_off { background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" fill="grey" xmlns="http://www.w3.org/2000/svg"><path d="M12 7c2.76 0 5 2.24 5 5 0 .65-.13 1.26-.36 1.83l2.92 2.92c1.51-1.26 2.7-2.89 3.43-4.75-1.73-4.39-6-7.5-11-7.5-1.4 0-2.74.25-3.98.7l2.16 2.16C10.74 7.13 11.35 7 12 7zM2 4.27l2.28 2.28.46.46A11.804 11.804 0 0 0 1 12c1.73 4.39 6 7.5 11 7.5 1.55 0 3.03-.3 4.38-.84l.42.42L19.73 22 21 20.73 3.27 3 2 4.27zM7.53 9.8l1.55 1.55c-.05.21-.08.43-.08.65 0 1.66 1.34 3 3 3 .22 0 .44-.03.65-.08l1.55 1.55c-.67.33-1.41.53-2.2.53-2.76 0-5-2.24-5-5 0-.79.2-1.53.53-2.2zm4.31-.78l3.15 3.15.02-.16c0-1.66-1.34-3-3-3l-.17.01z"/></svg>'); background-repeat: no-repeat; position: absolute; top: 0px; height: calc(100% + 2px); background-size: 18px 18px; /* width is mandatory because it is used javascript */ width: 18px; border-left: solid 1px darkgrey; padding-left: 0px !important; padding-right: 0px !important; } ._qbf-compact_input_eyeIcon_off:hover { background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" fill="cornflowerblue" xmlns="http://www.w3.org/2000/svg"><path d="M12 7c2.76 0 5 2.24 5 5 0 .65-.13 1.26-.36 1.83l2.92 2.92c1.51-1.26 2.7-2.89 3.43-4.75-1.73-4.39-6-7.5-11-7.5-1.4 0-2.74.25-3.98.7l2.16 2.16C10.74 7.13 11.35 7 12 7zM2 4.27l2.28 2.28.46.46A11.804 11.804 0 0 0 1 12c1.73 4.39 6 7.5 11 7.5 1.55 0 3.03-.3 4.38-.84l.42.42L19.73 22 21 20.73 3.27 3 2 4.27zM7.53 9.8l1.55 1.55c-.05.21-.08.43-.08.65 0 1.66 1.34 3 3 3 .22 0 .44-.03.65-.08l1.55 1.55c-.67.33-1.41.53-2.2.53-2.76 0-5-2.24-5-5 0-.79.2-1.53.53-2.2zm4.31-.78l3.15 3.15.02-.16c0-1.66-1.34-3-3-3l-.17.01z"/></svg>'); } ._qbf-compact_input_eyeIcon_off_disabled { background-color: lightgrey !important; } ._qbf-compact_input_eyeIcon_off_disabled { background-color: lightgrey !important; } ._qbf-compact_input_eyeIcon_off_disabled:hover { background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" fill="grey" xmlns="http://www.w3.org/2000/svg"><path d="M12 7c2.76 0 5 2.24 5 5 0 .65-.13 1.26-.36 1.83l2.92 2.92c1.51-1.26 2.7-2.89 3.43-4.75-1.73-4.39-6-7.5-11-7.5-1.4 0-2.74.25-3.98.7l2.16 2.16C10.74 7.13 11.35 7 12 7zM2 4.27l2.28 2.28.46.46A11.804 11.804 0 0 0 1 12c1.73 4.39 6 7.5 11 7.5 1.55 0 3.03-.3 4.38-.84l.42.42L19.73 22 21 20.73 3.27 3 2 4.27zM7.53 9.8l1.55 1.55c-.05.21-.08.43-.08.65 0 1.66 1.34 3 3 3 .22 0 .44-.03.65-.08l1.55 1.55c-.67.33-1.41.53-2.2.53-2.76 0-5-2.24-5-5 0-.79.2-1.53.53-2.2zm4.31-.78l3.15 3.15.02-.16c0-1.66-1.34-3-3-3l-.17.01z"/></svg>') !important; background-color: lightgrey !important; } /* --- Input List --- */ ._qbf-compact_input_listIcon_cell { position: relative; -webkit-user-select: none; /* Safari */ -ms-user-select: none; /* IE 10 and IE 11 */ user-select: none; /* Standard syntax */ } ._qbf-compact_input_listIcon { background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" xmlns="http://www.w3.org/2000/svg"><g><polyline points="6,9 12,15 18,9" stroke="grey" stroke-width="4" fill="none" /></g></svg>'); background-repeat: no-repeat; position: absolute; top: 0px; height: calc(100% + 2px); background-size: 18px 18px; width: 18px; border-left: solid 1px darkgrey; padding-left: 0px !important; padding-right: 0px !important; } ._qbf-compact_input_listIcon:hover { background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" xmlns="http://www.w3.org/2000/svg"><g><polyline points="6,9 12,15 18,9" stroke="cornflowerblue" stroke-width="4" fill="none" /></g></svg>'); } ._qbf-compact_input_listIcon_disabled { background-color: lightgrey !important; } ._qbf-compact_input_listIcon_disabled:hover { background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" fill="grey" xmlns="http://www.w3.org/2000/svg"><path d="m2,8c0,0 0,0 20,0c0,0 -10,10 -10,10c0,0 -10,-10 -10,-10z"/></svg>') !important; background-color: lightgrey !important; } ._qbf-compact_input_list { min-height: 20px; max-height: 250px; border: solid 2px darkgrey; background-color: white; position: sticky; z-index: 10000; overflow-x: hidden; overflow-y: auto; } ._qbf-compact_input_list > table { table-layout:fixed; width: 100%; } ._qbf-compact_input_list > table > tbody > tr { font-family: Arial, Helvetica, sans-serif; font-size: 12pt; } ._qbf-compact_input_list > table > tbody > tr:hover { background-color: lavender; } /* --- Choice - radio --- */ ._qbf-compact input[type=radio] { display: none; } ._qbf-compact input[type=radio] + label { position: relative; padding: 2px; padding-left: 1.4rem; border: solid 2px rgba(0,0,0,0); } ._qbf-compact input[type=radio] + label::before, ._qbf-compact input[type=radio] + label::after { display: block; position: absolute; box-sizing: border-box; bottom: 2px; left: 0; content:''; width: 1rem; height: 1rem; border-radius: 1rem; } ._qbf-compact input[type=radio] + label::before { border: 2px solid grey; background-color: none; } ._qbf-compact input[type=radio]:checked + label::after { border: 2px solid #454f54; background-color: cornflowerblue; } ._qbf-compact input[type=radio]:hover + label { border: 2px solid cornflowerblue; } ._qbf-compact input[type=radio]+ label:focus { border: 2px solid cornflowerblue; outline: none; } /* --- Boolean - checkbox --- */ ._qbf-compact_checkbox { display: flex; justify-content: center; align-items: center; width: 22px; height: 18px; } ._qbf-compact_checkbox > div { cursor: default; height: 14px; width: 14px; background-color: white; border-radius: 3px; margin: 0px; margin-top: 1px; border: solid 1px black; outline: none; } ._qbf-compact_checkbox > div:hover { background-color: cornflowerblue; border-color: cornflowerblue; } ._qbf-compact_checkbox > div:focus { background-color: cornflowerblue; border-color: cornflowerblue; } ._qbf-compact_checkbox > div > div { position: relative; height: 12px; width: 12px; margin: 1px; } ._qbf-compact_checkbox > div > div > div { position: absolute; pointer-events: none; left: 3px; top: 0px; width: 5px; height: 8px; border: solid white; border-width: 0 3px 3px 0; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg); } /* checkbox - unknown */ ._qbf-compact_checkbox_unknown > div { background-color: #fafaf8; border-color: black; } ._qbf-compact_checkbox > div > div { background-color: #b3b3b3; } ._qbf-compact_checkbox > div > div > div { border-color: rgba(0,0,0,0); } /* checkbox - false */ ._qbf-compact_checkbox_false > div { background-color: #fafaf8; border-color: grey; } ._qbf-compact_checkbox_false > div > div { background-color: #fafaf8; } ._qbf-compact_checkbox_false > div > div > div { border-color: rgba(0,0,0,0); } /* checkbox - true */ ._qbf-compact_checkbox_true > div { background-color: #7EA2BF; border-color: #365a9d; } ._qbf-compact_checkbox_true:hover > div { background-color: #4d4dff; border-color: #4d4dff; } ._qbf-compact_checkbox_true > div:focus { background-color: #4d4dff; border-color: #4d4dff; } ._qbf-compact_checkbox_true > div > div { background-color:#7EA2BF; } ._qbf-compact_checkbox_true:hover > div > div { background-color: #4d4dff; } ._qbf-compact_checkbox_true > div:focus > div { background-color: #4d4dff; } ._qbf-compact_checkbox_true > div > div > div { border-color: white; } /* --- Boolean - switch --- */ ._qbf-compact_switch { display: flex; justify-content: center; align-items: center; width: 32px; height: 12px; margin: 0px; padding: 0px; } ._qbf-compact_switch > div { background-color: #fafaf8; border: solid 1px grey; border-radius: 10px; width: 26px; height: 10px; padding: 2px; cursor: default; outline: none; } ._qbf-compact_switch > div:hover { background-color: cornflowerblue; border-color: cornflowerblue; } ._qbf-compact_switch > div:focus { background-color: #4d4dff; border-color: #4d4dff; } ._qbf-compact_switch > div > div { position: relative; background-color: #fafaf8; border-radius: 10px; width: 100%; height: 100%; cursor: default; } ._qbf-compact_switch > div > div > div { position: absolute; background-color: white; border: solid 1px grey; border-radius: 12px; top: -2px; width: 12px; height: 12px; cursor: default; } /* switch - unknown */ ._qbf-compact_switch_unknown > div { background-color: lightgrey; border-color: black; } ._qbf-compact_switch_unknown > div > div { background-color: grey; } ._qbf-compact_switch_unknown > div > div > div { left: 6px; visibility: hidden; } /* switch - false */ ._qbf-compact_switch_false > div { background-color: lightgrey; border-color: grey; } ._qbf-compact_switch_false > div > div { background-color: lightgrey; } ._qbf-compact_switch_false > div:hover > div { background-color: lightgrey; } ._qbf-compact_switch_false > div:focus > div { background-color: lightgrey; } ._qbf-compact_switch_false > div > div > div { border-color: #505050; left: -2px; } /* switch - true */ ._qbf-compact_switch_true > div { background-color: #7EA2BF; } ._qbf-compact_switch_true > div > div { background-color:#7EA2BF; } ._qbf-compact_switch_true > div > div > div { left: 14px; border-color: #0c3b77; } /* -- Combobox -- */ ._qbf-compact_field select { width: 100%; height: 100%; /* background: none; */ -webkit-appearance: none; background: url('data:image/svg+xml;utf8,<svg width="24" height="20" xmlns="http://www.w3.org/2000/svg"><g><polyline points="6,7 12,13 18,7" stroke="grey" stroke-width="4" fill="none" /></g></svg>') no-repeat right rgba(0,0,0,0); border: none; outline: none; font-family: inherit; font-size:inherit; height: inherit; align-items: baseline; flex: 1; padding-right: 25px; color: #454f54; } /* -- Button -- */ ._qbf-compact_field button { width: 150px; border: solid 2px #4a7aa4; border-radius: 5px; background: linear-gradient(to bottom,#84b5df,#4a7aa4); color: white; font-family: inherit; font-size: inherit; font-weight: bold; padding-left: 10px; padding-right: 10px; padding-top: 3px; padding-bottom: 3px; margin: 1px; text-align: center; outline: none; } ._qbf-compact_field button:hover { background: linear-gradient(to bottom,#b6d8f7,#6591b7); } ._qbf-compact_field button:focus { border-color: #4d4dff; background: linear-gradient(to bottom,#b6d8f7,#6591b7); }
0.496094
0.068444
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap'); body { margin: 0; font-family: 'Rajdhani', sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; background: #202047; color: #FFFFFF; } .container90 { width: 90%; margin: auto; } .primaryButton { background: #3131FF; border: 1px solid #3131FF; box-sizing: border-box; font-family: Rajdhani; font-style: normal; font-weight: 500; font-size: 16px; line-height: 20px; display: flex; align-items: center; text-align: center; letter-spacing: 0.01em; color: #FFFFFF; text-align: center; } .primaryButton:hover, .primaryButton:active, .primaryButton:focus { color: #FFFFFF; } .pt-15 { padding-top: 15px; } .pt-25 { padding-top: 25px; } .pt-35 { padding-top: 35px; } .pt-45 { padding-top: 45px; } .pt-55 { padding-top: 55px; } .mt-15 { margin-top: 15px; } .mt-25 { margin-top: 25px; } .mt-35 { margin-top: 35px; } .mt-45 { margin-top: 45px; } .mt-55 { margin-top: 55px; } .primaryInput { border: 1px solid #e7e7e7; box-sizing: border-box; height: 54px; background: #202047; font-family: Rajdhani; font-style: normal; font-weight: normal; font-size: 16px; line-height: 20px; letter-spacing: 0.01em; color: #F2F2F2 !important; } .pl55{ padding-left:55px ; } .primaryInput:hover, .primaryInput:active, .primaryInput:focus { background: #202047; } .rectangleBox { position: absolute; width: 187.53px; height: 162.53px; left: 25px; top: -6px; opacity: 1; border-radius: 10px; transform: rotate(33.88deg); background-repeat: no-repeat; } .rectangleBoxSmall { position: absolute; width: 91px; height: 91px; left: 32%; top: 25px; background-repeat: no-repeat; } .ellBoxSmall { position: absolute; width: 76px; height: 59px; left: 60%; top: 0px; background-repeat: no-repeat; } .ellBox { position: absolute; width: 139px; height: 148px; right: 0; top: -12px; background-repeat: no-repeat; } .rectBig { position: absolute; width: 168px; height: 171px; right: 13%; top: 20%; background-repeat: no-repeat; } .outlineBtn { border: 1px solid #3131FF; box-sizing: border-box; } .outlineBtn:hover { color: white; } .modal.show { display: block; } .modal-backdrop.show { opacity: 1 !important; } .modal-backdrop { background-color: rgba(0, 0, 0, .8) !important; } .modalBlueBg .modal-content { background: #202047; box-shadow: 0px 16px 4px rgba(0, 0, 0, 0.08); } .modalBlueBg .modal-heading { font-style: normal; font-weight: 600; font-size: 28px; line-height: 35px; text-align: center; text-transform: uppercase; color: #FFFFFF; } .modalBlueBg .close { color: #FFFFFF; opacity: 0.8; font-size: 45px; } .mainHeadingModal { display: flex; justify-content: space-around; } .voteProposalModal .modal-body { padding: 25px; } .voteBlock { display: flex; justify-content: space-around; margin-top: 55px; } .singleVoteBlock { cursor: pointer; } .voteImageBlock img { display: flex; justify-content: center; align-items: center; width: 100%; } .voteImageBlock.active { border-radius: 50%; border: 4px solid green; max-height: 130px; min-height: 130px; } .voteText { font-family: Rajdhani; font-style: normal; font-weight: 600; font-size: 22px; line-height: 26px; text-align: center; color: #FFFFFF; margin-bottom: 45px; margin-top: 25px; } .primaryButton { background-position: center; transition: background 0.8s; } .primaryButton:hover { background: #3535d0 radial-gradient(circle, transparent 1%, #3535d9 1%) center/15000%; } .primaryButton:active { background-color: #3131FF; background-size: 100%; transition: background 0s; } .connectTokenModalHeading { font-style: normal; font-weight: 400; font-size: 28px; line-height: 36px; text-align: center; color: #FFFFFF; } .connectTokenBorder { opacity: 1; border: 1px solid #eae9e9; box-sizing: border-box; border-radius: 10px; padding: 10px 25px; margin-top: 30px; cursor: pointer; } .connectTokenImg { width: 59px; height: 59px; object-fit: contain; margin-right: 25px; } .connectTokenName { font-style: normal; font-weight: 500; font-size: 26px; line-height: 31px; color: #FFFFFF; margin-bottom: 0; } .loaderConnect { display: flex; align-items: center; justify-content: center; line-height: 57px; vertical-align: bottom; } .connectTokenModal .close { opacity: 1; } .connectTokenModal .modal-body { padding: 15px 35px 45px; } .createProposalText { font-family: Rajdhani; font-style: normal; font-weight: normal; font-size: 15px; line-height: 20px; text-align: center; letter-spacing: 0.01em; color: #F2F2F2; } .btnDefaultBlue { background: #3131FF; border:1px solid #3131FF;; font-family: Rajdhani; font-style: normal; font-weight: bold; font-size: 17px; line-height: 22px; display: flex; align-items: center; text-align: center; letter-spacing: 0.02em; text-transform: uppercase; color: #FFFFFF; margin-top: 25px; margin-bottom: 25px; padding: 15px 45px; } .btnDefaultBlue:hover { color: #FFFFFF; } .errorInput{ font-size: 17px; font-weight: 600; } .css-1jgv6z-ToastContainer{ z-index: 9999 !important; } @media only screen and (max-width: 575px) { .container90 { width: 100%; } .lngBtn{ display: none; } .progressSingle{ width: 100% !important; } .voteBtn{ width: 100%; justify-content: center; } .outlineBtn{ margin-right: 0 !important; margin-bottom: 15px; } .keyHeading{ margin-bottom: 25px; } }
frontend/src/App.css
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap'); body { margin: 0; font-family: 'Rajdhani', sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; background: #202047; color: #FFFFFF; } .container90 { width: 90%; margin: auto; } .primaryButton { background: #3131FF; border: 1px solid #3131FF; box-sizing: border-box; font-family: Rajdhani; font-style: normal; font-weight: 500; font-size: 16px; line-height: 20px; display: flex; align-items: center; text-align: center; letter-spacing: 0.01em; color: #FFFFFF; text-align: center; } .primaryButton:hover, .primaryButton:active, .primaryButton:focus { color: #FFFFFF; } .pt-15 { padding-top: 15px; } .pt-25 { padding-top: 25px; } .pt-35 { padding-top: 35px; } .pt-45 { padding-top: 45px; } .pt-55 { padding-top: 55px; } .mt-15 { margin-top: 15px; } .mt-25 { margin-top: 25px; } .mt-35 { margin-top: 35px; } .mt-45 { margin-top: 45px; } .mt-55 { margin-top: 55px; } .primaryInput { border: 1px solid #e7e7e7; box-sizing: border-box; height: 54px; background: #202047; font-family: Rajdhani; font-style: normal; font-weight: normal; font-size: 16px; line-height: 20px; letter-spacing: 0.01em; color: #F2F2F2 !important; } .pl55{ padding-left:55px ; } .primaryInput:hover, .primaryInput:active, .primaryInput:focus { background: #202047; } .rectangleBox { position: absolute; width: 187.53px; height: 162.53px; left: 25px; top: -6px; opacity: 1; border-radius: 10px; transform: rotate(33.88deg); background-repeat: no-repeat; } .rectangleBoxSmall { position: absolute; width: 91px; height: 91px; left: 32%; top: 25px; background-repeat: no-repeat; } .ellBoxSmall { position: absolute; width: 76px; height: 59px; left: 60%; top: 0px; background-repeat: no-repeat; } .ellBox { position: absolute; width: 139px; height: 148px; right: 0; top: -12px; background-repeat: no-repeat; } .rectBig { position: absolute; width: 168px; height: 171px; right: 13%; top: 20%; background-repeat: no-repeat; } .outlineBtn { border: 1px solid #3131FF; box-sizing: border-box; } .outlineBtn:hover { color: white; } .modal.show { display: block; } .modal-backdrop.show { opacity: 1 !important; } .modal-backdrop { background-color: rgba(0, 0, 0, .8) !important; } .modalBlueBg .modal-content { background: #202047; box-shadow: 0px 16px 4px rgba(0, 0, 0, 0.08); } .modalBlueBg .modal-heading { font-style: normal; font-weight: 600; font-size: 28px; line-height: 35px; text-align: center; text-transform: uppercase; color: #FFFFFF; } .modalBlueBg .close { color: #FFFFFF; opacity: 0.8; font-size: 45px; } .mainHeadingModal { display: flex; justify-content: space-around; } .voteProposalModal .modal-body { padding: 25px; } .voteBlock { display: flex; justify-content: space-around; margin-top: 55px; } .singleVoteBlock { cursor: pointer; } .voteImageBlock img { display: flex; justify-content: center; align-items: center; width: 100%; } .voteImageBlock.active { border-radius: 50%; border: 4px solid green; max-height: 130px; min-height: 130px; } .voteText { font-family: Rajdhani; font-style: normal; font-weight: 600; font-size: 22px; line-height: 26px; text-align: center; color: #FFFFFF; margin-bottom: 45px; margin-top: 25px; } .primaryButton { background-position: center; transition: background 0.8s; } .primaryButton:hover { background: #3535d0 radial-gradient(circle, transparent 1%, #3535d9 1%) center/15000%; } .primaryButton:active { background-color: #3131FF; background-size: 100%; transition: background 0s; } .connectTokenModalHeading { font-style: normal; font-weight: 400; font-size: 28px; line-height: 36px; text-align: center; color: #FFFFFF; } .connectTokenBorder { opacity: 1; border: 1px solid #eae9e9; box-sizing: border-box; border-radius: 10px; padding: 10px 25px; margin-top: 30px; cursor: pointer; } .connectTokenImg { width: 59px; height: 59px; object-fit: contain; margin-right: 25px; } .connectTokenName { font-style: normal; font-weight: 500; font-size: 26px; line-height: 31px; color: #FFFFFF; margin-bottom: 0; } .loaderConnect { display: flex; align-items: center; justify-content: center; line-height: 57px; vertical-align: bottom; } .connectTokenModal .close { opacity: 1; } .connectTokenModal .modal-body { padding: 15px 35px 45px; } .createProposalText { font-family: Rajdhani; font-style: normal; font-weight: normal; font-size: 15px; line-height: 20px; text-align: center; letter-spacing: 0.01em; color: #F2F2F2; } .btnDefaultBlue { background: #3131FF; border:1px solid #3131FF;; font-family: Rajdhani; font-style: normal; font-weight: bold; font-size: 17px; line-height: 22px; display: flex; align-items: center; text-align: center; letter-spacing: 0.02em; text-transform: uppercase; color: #FFFFFF; margin-top: 25px; margin-bottom: 25px; padding: 15px 45px; } .btnDefaultBlue:hover { color: #FFFFFF; } .errorInput{ font-size: 17px; font-weight: 600; } .css-1jgv6z-ToastContainer{ z-index: 9999 !important; } @media only screen and (max-width: 575px) { .container90 { width: 100%; } .lngBtn{ display: none; } .progressSingle{ width: 100% !important; } .voteBtn{ width: 100%; justify-content: center; } .outlineBtn{ margin-right: 0 !important; margin-bottom: 15px; } .keyHeading{ margin-bottom: 25px; } }
0.44071
0.071203
* { margin: 0; padding: 0; } body { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; height: 100vh; background-color: #000000; } i { opacity: 0; font-size: 28px; color: #5c5252; will-change: transform; -webkit-transform: scale(.1); transform: scale(.1); -webkit-transition: all .3s ease; transition: all .3s ease; } .facebook{ color: #3b5999; } .twitter{ color: #08a0e9; } .insta{ color: #d6249f; } .github{ color : #333; } .btn_wrap { position: relative; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; overflow: hidden; cursor: pointer; width: 240px; height: 72px; background-color: #EEEEED; border-radius: 80px; padding: 0 18px; will-change: transform; -webkit-transition: all .2s ease-in-out; transition: all .2s ease-in-out; } .btn_wrap:hover { /* transition-delay: .4s; */ -webkit-transform: scale(1.1); transform: scale(1.1) } span { position: absolute; z-index: 99; width: 240px; height: 72px; border-radius: 80px; font-family: cursive; font-size: 20px; text-align: center; line-height: 70px; letter-spacing: 2px; color: #EEEEED; background-image: linear-gradient(to right bottom, #d16ba5, #cc66ac, #c561b5, #bb5fbe, #af5dc8, #9671e0, #7483f2, #4093ff, #00b3ff, #00ceff, #00e6fe, #5ffbf1); padding: 0 18px; -webkit-transition: all 1.2s ease; transition: all 1.2s ease; } .container { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-pack: distribute; justify-content: space-around; -webkit-box-align: center; -ms-flex-align: center; align-items: center; width: 240px; height: 64px; border-radius: 80px; } .container i:nth-of-type(1) { -webkit-transition-delay: 1.1s; transition-delay: 1.1s; } .container i:nth-of-type(2) { -webkit-transition-delay: .9s; transition-delay: .9s; } .container i:nth-of-type(3) { -webkit-transition-delay: .7s; transition-delay: .7s; } .container i:nth-of-type(4) { -webkit-transition-delay: .4s; transition-delay: .4s; } .btn_wrap:hover span { -webkit-transition-delay: .25s; transition-delay: .25s; -webkit-transform: translateX(-280px); transform: translateX(-280px) } .btn_wrap:hover i { opacity: 1; -webkit-transform: scale(1); transform: scale(1); }
style.css
* { margin: 0; padding: 0; } body { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; height: 100vh; background-color: #000000; } i { opacity: 0; font-size: 28px; color: #5c5252; will-change: transform; -webkit-transform: scale(.1); transform: scale(.1); -webkit-transition: all .3s ease; transition: all .3s ease; } .facebook{ color: #3b5999; } .twitter{ color: #08a0e9; } .insta{ color: #d6249f; } .github{ color : #333; } .btn_wrap { position: relative; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; overflow: hidden; cursor: pointer; width: 240px; height: 72px; background-color: #EEEEED; border-radius: 80px; padding: 0 18px; will-change: transform; -webkit-transition: all .2s ease-in-out; transition: all .2s ease-in-out; } .btn_wrap:hover { /* transition-delay: .4s; */ -webkit-transform: scale(1.1); transform: scale(1.1) } span { position: absolute; z-index: 99; width: 240px; height: 72px; border-radius: 80px; font-family: cursive; font-size: 20px; text-align: center; line-height: 70px; letter-spacing: 2px; color: #EEEEED; background-image: linear-gradient(to right bottom, #d16ba5, #cc66ac, #c561b5, #bb5fbe, #af5dc8, #9671e0, #7483f2, #4093ff, #00b3ff, #00ceff, #00e6fe, #5ffbf1); padding: 0 18px; -webkit-transition: all 1.2s ease; transition: all 1.2s ease; } .container { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-pack: distribute; justify-content: space-around; -webkit-box-align: center; -ms-flex-align: center; align-items: center; width: 240px; height: 64px; border-radius: 80px; } .container i:nth-of-type(1) { -webkit-transition-delay: 1.1s; transition-delay: 1.1s; } .container i:nth-of-type(2) { -webkit-transition-delay: .9s; transition-delay: .9s; } .container i:nth-of-type(3) { -webkit-transition-delay: .7s; transition-delay: .7s; } .container i:nth-of-type(4) { -webkit-transition-delay: .4s; transition-delay: .4s; } .btn_wrap:hover span { -webkit-transition-delay: .25s; transition-delay: .25s; -webkit-transform: translateX(-280px); transform: translateX(-280px) } .btn_wrap:hover i { opacity: 1; -webkit-transform: scale(1); transform: scale(1); }
0.301465
0.052765
@import './default-config.css'; @import 'config.css'; .bold { font-weight: bold; } .lighColor { color: var(--ut-front-react-standardPaginationLightColor); } .wrap { display: flex; } .wrap > div { height: 23px; } .wrap > div > div { line-height: 21px; } .pageSwitherWrap { z-index: 10; overflow: hidden; clear: both; flex-grow: 1; } .pageBoxesWrap { text-align: center; z-index: 2; flex-grow: 10; } .pageSizeBoxWrap { z-index: 10; overflow: hidden; flex-grow: 1; display: flex; justify-content: flex-end; } /* Specific */ .pageSwitherWrap .numberInputWrap { width: 60px; float: left; } .numberInput { box-shadow: none; } .pageSwitherWrap .numberInputWrap .numberInput { width: 90%; padding: 1% 5%; border: 1px solid var(--ut-front-react-standardPaginationBorderColor); height: 21px; } .pageSwitherWrap .numberInputWrap .numberInput::-webkit-inner-spin-button, .pageSwitherWrap .numberInputWrap .numberInput::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; } .pageSwitherWrap .rightWrap { float: left; } .pageBoxesWrap .pageBoxesWrapInnerWrap{ display: inline-block; } .pageBoxesWrap .pageBoxesWrapInnerWrap .pageBox { min-width: 34px; padding: 0px 9px; line-height: 20px; border: 1px solid var(--ut-front-react-standardPaginationBorderColor); border-left: none; display: inline-block; cursor: pointer; text-align: center; position: relative; -webkit-user-select: none; /* Chrome/Safari/Opera */ -moz-user-select: none; /* Firefox */ -ms-user-select: none; /* Internet Explorer/Edge */ user-select: none; /* Non-prefixed version, currently */ } :global(html[dir='rtl']) .pageBoxesWrap .pageBoxesWrapInnerWrap .pageBox:last-child { border-left: 1px solid var(--ut-front-react-standardPaginationBorderColor); } :global(html:not([dir='rtl'])) .pageBoxesWrap .pageBoxesWrapInnerWrap .pageBox:first-child { border-left: 1px solid var(--ut-front-react-standardPaginationBorderColor); } .pageBoxesWrap .pageBoxesWrapInnerWrap .pageBox:hover { background: var(--ut-front-react-standardPaginationBackgroundHoverColor); } .pageBoxesWrap .pageBoxesWrapInnerWrap .active { background: var(--ut-front-react-standardPaginationBackgroundActiveColor); color: var(--ut-front-react-standardPaginationTextActiveColor); } .pageBoxesWrap .pageBoxesWrapInnerWrap .active:hover { color: var(--ut-front-react-standardPaginationTextHoverColor); } .pageBoxesWrap .pageBoxesWrapInnerWrap .pageBox .arrowWrap { width: 20px; height: 10px; position: absolute; bottom: 26px; background-image: url('./images/arrow-icon.png'); z-index: 91; display: none; } .pageBoxesWrap .pageBoxesWrapInnerWrap .pageBox .morePagesWrap { position: absolute; bottom: 35px; left: -61px; z-index: 90; padding: 1px; border: 1px solid var(--ut-front-react-standardPaginationBorderColor); background: var(--ut-front-react-standardPaginationPagesWrapColor); overflow: hidden; display: none; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; } .pageBoxesWrap .pageBoxesWrapInnerWrap .pageBox .show { display: inline !important; } .pageBoxesWrap .pageBoxesWrapInnerWrap .pageBox .morePagesWrap .morePageBox { min-width: 37px; padding: 1px 9px; border: 1px solid var(--ut-front-react-standardPaginationBorderColor); border-left: none; float: left; cursor: pointer; text-align: center; position: relative; border-top: none; -webkit-user-select: none; /* Chrome/Safari/Opera */ -moz-user-select: none; /* Firefox */ -ms-user-select: none; /* Internet Explorer/Edge */ user-select: none; /* Non-prefixed version, currently */ } .pageBoxesWrap .pageBoxesWrapInnerWrap .pageBox .morePagesWrap .morePageBox:nth-child(1), .pageBoxesWrap .pageBoxesWrapInnerWrap .pageBox .morePagesWrap .morePageBox:nth-child(2), .pageBoxesWrap .pageBoxesWrapInnerWrap .pageBox .morePagesWrap .morePageBox:nth-child(3), .pageBoxesWrap .pageBoxesWrapInnerWrap .pageBox .morePagesWrap .morePageBox:nth-child(4) { border-top: 1px solid var(--ut-front-react-standardPaginationBorderColor); } .pageBoxesWrap .pageBoxesWrapInnerWrap .pageBox .morePagesWrap .morePageBox:hover { background: var(--ut-front-react-standardPaginationBackgroundHoverColor); } .pageBoxesWrap .pageBoxesWrapInnerWrap .pageBox .morePagesWrap .morePageBox:nth-child(1), .pageBoxesWrap .pageBoxesWrapInnerWrap .pageBox .morePagesWrap .morePageBox:nth-child(5), .pageBoxesWrap .pageBoxesWrapInnerWrap .pageBox .morePagesWrap .morePageBox:nth-child(9), .pageBoxesWrap .pageBoxesWrapInnerWrap .pageBox .morePagesWrap .morePageBox:nth-child(13){ border-left: 1px solid var(--ut-front-react-standardPaginationBorderColor); } .pageSizeBoxWrap .totalItemsWrap { margin-right: 10px; } :global(html[dir='rtl']) .pageSizeBoxWrap .totalItemsWrap { margin-right:0px; margin-left: 10px; } .pageSizeBoxWrap .itemPerPageDDWrap { width: 100px; margin-right: 5px; } :global(html[dir='rtl']) .pageSizeBoxWrap .itemPerPageDDWrap { margin-right: 0px; margin-left: 5px; }
components/AdvancedPagination/styles.css
@import './default-config.css'; @import 'config.css'; .bold { font-weight: bold; } .lighColor { color: var(--ut-front-react-standardPaginationLightColor); } .wrap { display: flex; } .wrap > div { height: 23px; } .wrap > div > div { line-height: 21px; } .pageSwitherWrap { z-index: 10; overflow: hidden; clear: both; flex-grow: 1; } .pageBoxesWrap { text-align: center; z-index: 2; flex-grow: 10; } .pageSizeBoxWrap { z-index: 10; overflow: hidden; flex-grow: 1; display: flex; justify-content: flex-end; } /* Specific */ .pageSwitherWrap .numberInputWrap { width: 60px; float: left; } .numberInput { box-shadow: none; } .pageSwitherWrap .numberInputWrap .numberInput { width: 90%; padding: 1% 5%; border: 1px solid var(--ut-front-react-standardPaginationBorderColor); height: 21px; } .pageSwitherWrap .numberInputWrap .numberInput::-webkit-inner-spin-button, .pageSwitherWrap .numberInputWrap .numberInput::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; } .pageSwitherWrap .rightWrap { float: left; } .pageBoxesWrap .pageBoxesWrapInnerWrap{ display: inline-block; } .pageBoxesWrap .pageBoxesWrapInnerWrap .pageBox { min-width: 34px; padding: 0px 9px; line-height: 20px; border: 1px solid var(--ut-front-react-standardPaginationBorderColor); border-left: none; display: inline-block; cursor: pointer; text-align: center; position: relative; -webkit-user-select: none; /* Chrome/Safari/Opera */ -moz-user-select: none; /* Firefox */ -ms-user-select: none; /* Internet Explorer/Edge */ user-select: none; /* Non-prefixed version, currently */ } :global(html[dir='rtl']) .pageBoxesWrap .pageBoxesWrapInnerWrap .pageBox:last-child { border-left: 1px solid var(--ut-front-react-standardPaginationBorderColor); } :global(html:not([dir='rtl'])) .pageBoxesWrap .pageBoxesWrapInnerWrap .pageBox:first-child { border-left: 1px solid var(--ut-front-react-standardPaginationBorderColor); } .pageBoxesWrap .pageBoxesWrapInnerWrap .pageBox:hover { background: var(--ut-front-react-standardPaginationBackgroundHoverColor); } .pageBoxesWrap .pageBoxesWrapInnerWrap .active { background: var(--ut-front-react-standardPaginationBackgroundActiveColor); color: var(--ut-front-react-standardPaginationTextActiveColor); } .pageBoxesWrap .pageBoxesWrapInnerWrap .active:hover { color: var(--ut-front-react-standardPaginationTextHoverColor); } .pageBoxesWrap .pageBoxesWrapInnerWrap .pageBox .arrowWrap { width: 20px; height: 10px; position: absolute; bottom: 26px; background-image: url('./images/arrow-icon.png'); z-index: 91; display: none; } .pageBoxesWrap .pageBoxesWrapInnerWrap .pageBox .morePagesWrap { position: absolute; bottom: 35px; left: -61px; z-index: 90; padding: 1px; border: 1px solid var(--ut-front-react-standardPaginationBorderColor); background: var(--ut-front-react-standardPaginationPagesWrapColor); overflow: hidden; display: none; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; } .pageBoxesWrap .pageBoxesWrapInnerWrap .pageBox .show { display: inline !important; } .pageBoxesWrap .pageBoxesWrapInnerWrap .pageBox .morePagesWrap .morePageBox { min-width: 37px; padding: 1px 9px; border: 1px solid var(--ut-front-react-standardPaginationBorderColor); border-left: none; float: left; cursor: pointer; text-align: center; position: relative; border-top: none; -webkit-user-select: none; /* Chrome/Safari/Opera */ -moz-user-select: none; /* Firefox */ -ms-user-select: none; /* Internet Explorer/Edge */ user-select: none; /* Non-prefixed version, currently */ } .pageBoxesWrap .pageBoxesWrapInnerWrap .pageBox .morePagesWrap .morePageBox:nth-child(1), .pageBoxesWrap .pageBoxesWrapInnerWrap .pageBox .morePagesWrap .morePageBox:nth-child(2), .pageBoxesWrap .pageBoxesWrapInnerWrap .pageBox .morePagesWrap .morePageBox:nth-child(3), .pageBoxesWrap .pageBoxesWrapInnerWrap .pageBox .morePagesWrap .morePageBox:nth-child(4) { border-top: 1px solid var(--ut-front-react-standardPaginationBorderColor); } .pageBoxesWrap .pageBoxesWrapInnerWrap .pageBox .morePagesWrap .morePageBox:hover { background: var(--ut-front-react-standardPaginationBackgroundHoverColor); } .pageBoxesWrap .pageBoxesWrapInnerWrap .pageBox .morePagesWrap .morePageBox:nth-child(1), .pageBoxesWrap .pageBoxesWrapInnerWrap .pageBox .morePagesWrap .morePageBox:nth-child(5), .pageBoxesWrap .pageBoxesWrapInnerWrap .pageBox .morePagesWrap .morePageBox:nth-child(9), .pageBoxesWrap .pageBoxesWrapInnerWrap .pageBox .morePagesWrap .morePageBox:nth-child(13){ border-left: 1px solid var(--ut-front-react-standardPaginationBorderColor); } .pageSizeBoxWrap .totalItemsWrap { margin-right: 10px; } :global(html[dir='rtl']) .pageSizeBoxWrap .totalItemsWrap { margin-right:0px; margin-left: 10px; } .pageSizeBoxWrap .itemPerPageDDWrap { width: 100px; margin-right: 5px; } :global(html[dir='rtl']) .pageSizeBoxWrap .itemPerPageDDWrap { margin-right: 0px; margin-left: 5px; }
0.304248
0.05455
.page { display: flex; align-items: flex-start; flex-direction: column; } .wrapper-inner { display: flex; position: relative; align-items: center; flex-direction: column; width: 192vw; height: 60.53vw; } .main { display: flex; position: relative; align-items: center; flex-direction: row; margin-top: 39.73vw; border-width: 1px; border-radius: 3.73vw; border-color: #979797; background-color: #ffffff; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5), inset 0 1px 3px 0 rgba(0, 0, 0, 0.5); border-style: solid; } .tag-wrapper { display: flex; align-items: center; flex-direction: row; margin-right: 0.27vw; width: 8vw; height: 7.47vw; font-weight: NaN; line-height: 2vw; white-space: nowrap; } .tag { margin-top: -0.13vw; margin-left: 3.87vw; max-width: 5.07vw; overflow: hidden; text-overflow: ellipsis; color: #000000; font-family: AppleColorEmoji, Apple Color Emoji; font-size: 2vw; } .view { display: flex; align-items: center; flex-direction: row; width: 86.53vw; height: 7.47vw; } .vertical-line { margin-left: -0.27vw; width: 0.27vw; height: 5.07vw; } .tagsn { position: relative; margin-top: 5.33vw; max-width: 190.4vw; height: 2.8vw; overflow: hidden; text-overflow: ellipsis; line-height: 2.8vw; white-space: nowrap; color: #c97143; font-size: 2vw; font-weight: 400; } .wrapper-inner-1 { display: flex; position: relative; align-items: center; flex-direction: column; margin-top: 0.13vw; width: 192vw; height: 75.87vw; } .divider { position: relative; margin-top: -0.13vw; width: 74.67vw; height: 0.13vw; } .main-1 { display: flex; position: relative; align-items: flex-start; flex-direction: column; margin-top: 6.93vw; } .view-1 { display: flex; position: relative; align-items: center; flex-direction: row; justify-content: center; } .mask { margin-right: 4.53vw; border-width: 1px; border-radius: 1.6vw; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.63); border-style: solid; border-color: #979797; background-color: #ff6201; width: 16.67vw; height: 3.33vw; } .overlayer { margin-right: 4.53vw; border-width: 1px; border-radius: 1.6vw; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.63); border-style: solid; border-color: #979797; background-color: #01e4ff; width: 12.4vw; height: 3.33vw; } .layer { margin-right: 4.53vw; border-width: 1px; border-radius: 1.6vw; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.63); border-style: solid; border-color: #979797; background-color: #ff6201; width: 24.4vw; height: 3.33vw; } .mask-1 { margin-right: 4.53vw; border-width: 1px; border-radius: 1.6vw; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.63); border-style: solid; border-color: #979797; background-color: #01e4ff; width: 12.4vw; height: 3.33vw; } .overlayer-1 { border-width: 1px; border-radius: 1.6vw; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.63); border-style: solid; border-color: #979797; background-color: #ff6201; width: 12.4vw; height: 3.33vw; } .view-2 { display: flex; position: relative; align-items: center; flex-direction: row; justify-content: center; margin-top: 5.33vw; } .layer-1 { margin-right: 4.53vw; border-width: 1px; border-radius: 1.6vw; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.63); border-style: solid; border-color: #979797; background-color: #53ff01; width: 21.2vw; height: 3.33vw; } .mask-2 { margin-right: 4.53vw; border-width: 1px; border-radius: 1.6vw; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.63); border-style: solid; border-color: #979797; background-color: #ff4801; width: 7.87vw; height: 3.33vw; } .overlayer-2 { margin-right: 4.53vw; border-width: 1px; border-radius: 1.6vw; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.63); border-style: solid; border-color: #979797; background-color: #01e4ff; width: 10.27vw; height: 3.33vw; } .layer-2 { margin-right: 4.53vw; border-width: 1px; border-radius: 1.6vw; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.63); border-style: solid; border-color: #979797; background-color: #ff6201; width: 26.53vw; height: 3.33vw; } .mask-3 { border-width: 1px; border-radius: 1.6vw; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.63); border-style: solid; border-color: #979797; background-color: #53ff01; width: 12.4vw; height: 3.33vw; } .view-3 { display: flex; position: relative; align-items: center; flex-direction: row; justify-content: center; margin-top: 5.2vw; } .overlayer-3 { margin-top: 0.13vw; margin-right: 4.53vw; border-width: 1px; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.63); border-style: solid; border-radius: 1.6vw; border-color: #979797; background-color: #ff6201; width: 8.4vw; height: 3.33vw; } .layer-3 { margin-top: 0.13vw; margin-right: 4.53vw; border-width: 1px; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.63); border-style: solid; border-radius: 1.6vw; border-color: #979797; background-color: #01e4ff; width: 18vw; height: 3.33vw; } .mask-4 { margin-top: -0.13vw; margin-right: 4.53vw; border-width: 1px; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.63); border-style: solid; border-radius: 1.6vw; border-color: #979797; background-color: #ff6201; width: 10.27vw; height: 3.33vw; } .overlayer-4 { margin-top: 0.13vw; margin-right: 4.53vw; border-width: 1px; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.63); border-style: solid; border-radius: 1.6vw; border-color: #979797; background-color: #53ff01; width: 12.27vw; height: 3.33vw; } .layer-4 { margin-top: 0.13vw; border-width: 1px; border-radius: 1.6vw; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.63); border-style: solid; border-color: #979797; background-color: #01e4ff; width: 27.73vw; height: 3.33vw; } .view-4 { display: flex; position: relative; align-items: center; flex-direction: row; justify-content: center; margin-top: 5.33vw; } .mask-5 { margin-right: 4.53vw; border-width: 1px; border-radius: 1.6vw; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.63); border-style: solid; border-color: #979797; background-color: #01e4ff; width: 16.67vw; height: 3.33vw; } .overlayer-5 { margin-right: 4.53vw; border-width: 1px; border-radius: 1.6vw; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.63); border-style: solid; border-color: #979797; background-color: #ff6201; width: 12.4vw; height: 3.33vw; } .layer-5 { margin-right: 4.53vw; border-width: 1px; border-radius: 1.6vw; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.63); border-style: solid; border-color: #979797; background-color: #01e4ff; width: 24.4vw; height: 3.33vw; } .mask-6 { margin-right: 4.53vw; border-width: 1px; border-radius: 1.6vw; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.63); border-style: solid; border-color: #979797; background-color: #01e4ff; width: 12.4vw; height: 3.33vw; } .overlayer-6 { border-width: 1px; border-radius: 1.6vw; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.63); border-style: solid; border-color: #979797; background-color: #ff6201; width: 12.4vw; height: 3.33vw; }
Search Page/Vue/index.css
.page { display: flex; align-items: flex-start; flex-direction: column; } .wrapper-inner { display: flex; position: relative; align-items: center; flex-direction: column; width: 192vw; height: 60.53vw; } .main { display: flex; position: relative; align-items: center; flex-direction: row; margin-top: 39.73vw; border-width: 1px; border-radius: 3.73vw; border-color: #979797; background-color: #ffffff; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5), inset 0 1px 3px 0 rgba(0, 0, 0, 0.5); border-style: solid; } .tag-wrapper { display: flex; align-items: center; flex-direction: row; margin-right: 0.27vw; width: 8vw; height: 7.47vw; font-weight: NaN; line-height: 2vw; white-space: nowrap; } .tag { margin-top: -0.13vw; margin-left: 3.87vw; max-width: 5.07vw; overflow: hidden; text-overflow: ellipsis; color: #000000; font-family: AppleColorEmoji, Apple Color Emoji; font-size: 2vw; } .view { display: flex; align-items: center; flex-direction: row; width: 86.53vw; height: 7.47vw; } .vertical-line { margin-left: -0.27vw; width: 0.27vw; height: 5.07vw; } .tagsn { position: relative; margin-top: 5.33vw; max-width: 190.4vw; height: 2.8vw; overflow: hidden; text-overflow: ellipsis; line-height: 2.8vw; white-space: nowrap; color: #c97143; font-size: 2vw; font-weight: 400; } .wrapper-inner-1 { display: flex; position: relative; align-items: center; flex-direction: column; margin-top: 0.13vw; width: 192vw; height: 75.87vw; } .divider { position: relative; margin-top: -0.13vw; width: 74.67vw; height: 0.13vw; } .main-1 { display: flex; position: relative; align-items: flex-start; flex-direction: column; margin-top: 6.93vw; } .view-1 { display: flex; position: relative; align-items: center; flex-direction: row; justify-content: center; } .mask { margin-right: 4.53vw; border-width: 1px; border-radius: 1.6vw; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.63); border-style: solid; border-color: #979797; background-color: #ff6201; width: 16.67vw; height: 3.33vw; } .overlayer { margin-right: 4.53vw; border-width: 1px; border-radius: 1.6vw; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.63); border-style: solid; border-color: #979797; background-color: #01e4ff; width: 12.4vw; height: 3.33vw; } .layer { margin-right: 4.53vw; border-width: 1px; border-radius: 1.6vw; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.63); border-style: solid; border-color: #979797; background-color: #ff6201; width: 24.4vw; height: 3.33vw; } .mask-1 { margin-right: 4.53vw; border-width: 1px; border-radius: 1.6vw; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.63); border-style: solid; border-color: #979797; background-color: #01e4ff; width: 12.4vw; height: 3.33vw; } .overlayer-1 { border-width: 1px; border-radius: 1.6vw; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.63); border-style: solid; border-color: #979797; background-color: #ff6201; width: 12.4vw; height: 3.33vw; } .view-2 { display: flex; position: relative; align-items: center; flex-direction: row; justify-content: center; margin-top: 5.33vw; } .layer-1 { margin-right: 4.53vw; border-width: 1px; border-radius: 1.6vw; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.63); border-style: solid; border-color: #979797; background-color: #53ff01; width: 21.2vw; height: 3.33vw; } .mask-2 { margin-right: 4.53vw; border-width: 1px; border-radius: 1.6vw; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.63); border-style: solid; border-color: #979797; background-color: #ff4801; width: 7.87vw; height: 3.33vw; } .overlayer-2 { margin-right: 4.53vw; border-width: 1px; border-radius: 1.6vw; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.63); border-style: solid; border-color: #979797; background-color: #01e4ff; width: 10.27vw; height: 3.33vw; } .layer-2 { margin-right: 4.53vw; border-width: 1px; border-radius: 1.6vw; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.63); border-style: solid; border-color: #979797; background-color: #ff6201; width: 26.53vw; height: 3.33vw; } .mask-3 { border-width: 1px; border-radius: 1.6vw; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.63); border-style: solid; border-color: #979797; background-color: #53ff01; width: 12.4vw; height: 3.33vw; } .view-3 { display: flex; position: relative; align-items: center; flex-direction: row; justify-content: center; margin-top: 5.2vw; } .overlayer-3 { margin-top: 0.13vw; margin-right: 4.53vw; border-width: 1px; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.63); border-style: solid; border-radius: 1.6vw; border-color: #979797; background-color: #ff6201; width: 8.4vw; height: 3.33vw; } .layer-3 { margin-top: 0.13vw; margin-right: 4.53vw; border-width: 1px; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.63); border-style: solid; border-radius: 1.6vw; border-color: #979797; background-color: #01e4ff; width: 18vw; height: 3.33vw; } .mask-4 { margin-top: -0.13vw; margin-right: 4.53vw; border-width: 1px; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.63); border-style: solid; border-radius: 1.6vw; border-color: #979797; background-color: #ff6201; width: 10.27vw; height: 3.33vw; } .overlayer-4 { margin-top: 0.13vw; margin-right: 4.53vw; border-width: 1px; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.63); border-style: solid; border-radius: 1.6vw; border-color: #979797; background-color: #53ff01; width: 12.27vw; height: 3.33vw; } .layer-4 { margin-top: 0.13vw; border-width: 1px; border-radius: 1.6vw; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.63); border-style: solid; border-color: #979797; background-color: #01e4ff; width: 27.73vw; height: 3.33vw; } .view-4 { display: flex; position: relative; align-items: center; flex-direction: row; justify-content: center; margin-top: 5.33vw; } .mask-5 { margin-right: 4.53vw; border-width: 1px; border-radius: 1.6vw; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.63); border-style: solid; border-color: #979797; background-color: #01e4ff; width: 16.67vw; height: 3.33vw; } .overlayer-5 { margin-right: 4.53vw; border-width: 1px; border-radius: 1.6vw; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.63); border-style: solid; border-color: #979797; background-color: #ff6201; width: 12.4vw; height: 3.33vw; } .layer-5 { margin-right: 4.53vw; border-width: 1px; border-radius: 1.6vw; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.63); border-style: solid; border-color: #979797; background-color: #01e4ff; width: 24.4vw; height: 3.33vw; } .mask-6 { margin-right: 4.53vw; border-width: 1px; border-radius: 1.6vw; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.63); border-style: solid; border-color: #979797; background-color: #01e4ff; width: 12.4vw; height: 3.33vw; } .overlayer-6 { border-width: 1px; border-radius: 1.6vw; box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.63); border-style: solid; border-color: #979797; background-color: #ff6201; width: 12.4vw; height: 3.33vw; }
0.53777
0.092811
* { margin: 0; padding: 0; } body { background: whitesmoke; color: #000; font-family: "Roboto", sans-serif; } .contenedor { width: 100%; max-width: 1920 px; /* margin: 20px auto;*/ display: grid; /*grid-gap: 10px;*/ grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, auto); grid-template-areas: "header header header" "contenido contenido sidebar"; } .contenedor > div, .contenedor .header, .contenedor .contenido { padding: 20px; } .contenedor .header { -webkit-box-shadow: 0px 2px 5px 0px rgba(133, 126, 133, 1); -moz-box-shadow: 0px 2px 5px 0px rgba(133, 126, 133, 1); box-shadow: 0px 2px 5px 0px rgba(133, 126, 133, 1); color: #fff; grid-area: header; } .contenedor .contenido { grid-area: contenido; } .contenedor .sidebar { grid-column: 3 / 4; padding: 20px; text-align: center; display: flex; align-items: center; justify-content: center; min-width: 500px; grid-area: sidebar; } #cerrarturno { cursor: pointer; background-color: red; color: white; text-decoration: none; text-transform: none; font-size: 20px; width: 200px; height: 40px; box-sizing: border-box; border-radius: 8px; padding-top: 6px; } #cerrarturno:hover, #cerrarturno:focus { border: 1px solid red; background-color: orangered; } .menu-principal { display: grid; grid-gap: 20px; grid-template-columns: repeat(12, 1fr); grid-auto-rows: minmax(1fr, auto); /*grid-template-rows: minmax(100px, auto) 100px;*/ } .mediopago img { width: 100px; height: 100px; text-align: center; } .one { grid-column: 1/9; grid-row: 1; } .three { grid-column: 9/13; grid-row: 1; } .five { grid-column: 1/4; grid-row: 2; } .six { grid-column: 4/7; grid-row: 2; } .seven { grid-column: 7/10; grid-row: 2; } .eight { grid-column: 10/13; grid-row: 2; } /* 1600 px*/ @media screen and (max-width: 1600px) { /* grid*/ .one { grid-column: 1/8; grid-row: 1; } .three { grid-column: 8/14; grid-row: 1; } .five { grid-column: 1/4; grid-row: 2; } .six { grid-column: 4/7; grid-row: 2; } .seven { grid-column: 7/10; grid-row: 2; } .eight { grid-column: 10/14; grid-row: 2; } } /* 1400 px*/ @media screen and (max-width: 1400px) { .menu-principal div > a { font-size: 12px; } #cobrar { width: 70%; height: 440px !important; overflow: hidden; } .mediopago img { margin: 5px; width: 90px; height: 90px; } .mediopago img:hover { width: 95px; height: 95px; } .anclanaranja { font-size: 16px; } .ancla { width: 90%; font-size: 14px; } .anclanaranja > i { margin-right: 10px; } .invisible h5 { font-size: 20px; } #cerrarturno { margin-bottom: 0px; font-size: 16px; width: 160px; height: 36px; padding-top: 4px; margin-right: 60px; margin-top: 0px; } .text-usuario { font-size: 16px; padding: 0; margin-left: 0; } .corteitem { width: 100%; margin-top: 20px; display: flex; justify-content: space-evenly; } .corteitem .seccioncorte { width: 50%; } .corteitem .seccioncorte2 { margin-left: 100px; width: 50%; } } /*1200*/ @media screen and (max-width: 1200px) { #nuevapromocion { width: 44%; } .corteitem h5 { font-size: 13px; } .corteitem h4 { font-size: 13px; } .corteitem p { font-size: 12px; } .corteitem .seccioncorte { width: 50%; } .corteitem .seccioncorte2 { margin-left: 40px; width: 50%; } #cerrarturno { margin-bottom: 40px; font-size: 14px; width: 120px; height: 32px; padding-top: 6px; margin-right: 60px; } .text-usuario { font-size: 14px; } .text-usuario i { font-size: 22px; margin-right: 4px; } .menu-principal #inputBuscar { font-size: 16px; } #nuevodepartamento { width: 40%; } .one { grid-column: 1/7; grid-row: 1; } .three { grid-column: 7/14; grid-row: 1; } .five { grid-column: 1/7; grid-row: 2; } .six { grid-column: 7/14; grid-row: 2; } .seven { grid-column: 1/7; grid-row: 3; } .eight { grid-column: 7/14; grid-row: 3; } } @media screen and (max-width: 1100px) { #nuevapromocion { width: 50%; } #eliminarproducto { padding-top: 20px; width: 440px; height: 240px; } #eliminarproducto .inputglobal { margin: 10px; max-width: 280px; height: 40px; } #nuevaPromocion { width: 80%; } #nuevapromocion .inputmedio { width: 35%; } #nuevapromocion .inputmedio2 { width: 35%; } #agregarinventario, #ajustarinventario { width: 500px; height: 400px; } #cantidad, #precio, #descuento { text-align: center; max-width: 60%; height: 260px; overflow: hidden; } } /* 1020 px*/ @media screen and (max-width: 1024px) { #nuevapromocion { width: 60%; } #nuevapromocion .inputmedio { width: 40%; } #nuevapromocion .inputmedio2 { width: 40%; } .cabecera { height: auto; display: grid; grid-gap: 20px; grid-template-columns: repeat(12, 1fr); grid-auto-rows: minmax(1fr, auto); /*grid-template-rows: minmax(100px, auto) 100px;*/ } .logo { width: 100% !important; padding: 0 10px; grid-column: 5/12; grid-row: 1; display: flex; justify-content: center; align-items: center; } .turno { width: 80%; grid-column: 1/6; grid-row: 2; display: flex; justify-content: center; } .usuario { margin-bottom: 5px; width: 100%; grid-column: 8/13; grid-row: 2; display: flex; justify-content: flex-end; } #cerrarturno { margin-bottom: 5px; font-size: 14px; height: 36px; width: 160px !important; padding: 6px; } .text-usuario { color: orange; } #eliminarproducto { padding-top: 10px; width: 460px; height: 200px; } #cobrar { width: 80%; max-height: 410px !important; overflow: hidden; } #columna2 { padding: 5px; } .mediopago img { margin: 5px; width: 70px; height: 70px; } .mediopago img:hover { width: 75px; height: 75px; } table tr { font-size: 14px; } .cabecera ul.nav-menu li a i { font-size: 20px; } .cabecera ul.nav-menu li a { font-size: 16px; } .anclanaranja { font-size: 14px; width: 60%; } .ancla { width: 100%; font-size: 13px; } .anclanaranja > i { margin-right: 10px; } .promodepto { width: 50%; } .contenido h5 { font-size: 20px; } #agregarcliente { width: 50px; height: 50px; } .contenido h4 { font-size: 28px; } .mediopago { width: 100%; display: flex; flex-wrap: wrap; } .contenedor { grid-template-areas: "header header header" "contenido contenido contenido" "sidebar sidebar sidebar"; } #nuevoproducto, #editarproducto { width: 60%; } #ingresoDinero, #salidaDinero { width: 80%; } #eliminarcliente, #eliminardepartamento, #cerrarelturno, #bajacajero, #eliminarpromocion { padding: 20px; height: 160px; } #emitirnotas { width: 80%; height: 260px; padding: 10px; } #emitirnotas textarea { height: 120px; width: 260px; background-color: white; font-size: 16px; } .corteitem .seccioncorte { width: 40%; } .corteitem .seccioncorte2 { margin-left: 10px; width: 60%; } .corteitem h4 { margin-left: 20px; font-size: 16px; } .totales { margin-left: 50px; } /* Teclado*/ #teclado { width: 70%; height: 60%; } #teclado button { width: 80px; height: 80px; } #teclado .numeros { grid-gap: 2px; } .one { grid-column: 1/7; grid-row: 1; } .three { grid-column: 7/14; grid-row: 1; } .five { grid-column: 1/7; grid-row: 2; } .six { grid-column: 7/14; grid-row: 2; } .seven { grid-column: 1/7; grid-row: 3; } .eight { grid-column: 7/14; grid-row: 3; } #modificarcliente, #nuevocliente { width: 50%; } } @media screen and (max-width: 768px) { #nuevapromocion { width: 70%; } #sincodigodinero { width: 90%; } #modificarcliente, #nuevocliente { width: 80%; } .cabecera { height: auto; display: grid; grid-gap: 0; grid-template-columns: repeat(12, 1fr); grid-auto-rows: minmax(1fr, auto); /*grid-template-rows: minmax(100px, auto) 100px;*/ } .logo { grid-column: 5/12; width: 100% !important; height: 100%; margin-bottom: 0; display: flex; text-align: center; } .turno { padding-left: 0; width: 100%; grid-column: 1/7; grid-row: 2; display: flex; justify-content: flex-start; } #cerrarturno { margin-left: 0; font-size: 14px; height: 36px; width: 180px; padding-left: 0px; } .usuario { margin-bottom: 0px; width: 100% !important; grid-column: 10/13; grid-row: 2; display: flex; justify-content: flex-start; } .text-usuario { color: orange; } .invisible { flex-direction: column; } .promodepto .anclanaranja { margin: 10px 10px; width: 60%; } .menu-principal #inputBuscar { font-size: 16px; } .invisible { margin-top: 0; padding-top: 0; } .invisible h5 { font-size: 16px; } .contenido h4 { font-size: 24px; } #agregarcliente { width: 40px; height: 40px; } #cerrarelturno, #eliminarcliente, #eliminardepartamento, #bajacajero, #eliminarpromocion { width: 400px; height: 140px; } #cerrarelturno h5, #eliminarcliente h5, #eliminardepartamento h5, #bajacajero h5, #eliminarpromocion h5 { font-size: 16px; } } @media screen and (max-width: 600px) { #sincodigodinero{ background-color:yellow; } #column1{ width:90%; } #nuevapromocion { width: 80%; } #nuevapromocion .inputmedio2, #nuevapromocion .inputmedio, #nuevapromocion .inputglobal { height: 30px; } #eliminarcliente, #eliminardepartamento, #cerrarelturno, #bajacajero, #eliminarpromocion { padding: 2px; width: 90%; height: 120px; } #cerrarelturno .cancelar, #eliminarcliente .cancelar, #eliminardepartamento .cancelar, #eliminarcliente .aceptar, #eliminardepartamento .aceptar, #bajacajero .aceptar, #eliminarpromocion .aceptar, #bajacajero .cancelar, #eliminarpromocion.cancelar #cerrarelturno .aceptar { width: 40%; } .cabecera { height: 140px; display: grid; grid-gap: 0px; grid-template-columns: repeat(12, 1fr); grid-auto-rows: minmax(1fr, auto); /*grid-template-rows: minmax(100px, auto) 100px;*/ } .logo { grid-column: 3/13; width: 100% !important; height: 100%; margin-bottom: 0; display: flex; text-align: center; } .turno { padding-left: 0; width: 100%; grid-column: 1/7; grid-row: 20px; display: flex; justify-content: center; } .usuario { margin-top: 10px; width: 100% !important; grid-column: 8/13; grid-row: 2; display: flex; justify-content: flex-start; } #cerrarturno { margin-top: 15px; font-size: 12px; height: 30px; width: 180px; padding: 6px; } .text-usuario { font-size: 12px; } .corteitem h5 { font-size: 13px; } .corteitem h4 { margin-left: 13px; font-size: 12px; } .corteitem p { font-size: 12px; } .corteitem .seccioncorte { width: 50%; } .corteitem .seccioncorte2 { margin-left: 40px; width: 50%; } .totales { margin-left: 3px; margin-top: 5px; } .opcionescorte a, .opcionesmantenimiento a { font-size: 12px; height: 36px; width: 50% !important; } #inputmantenimiento { max-width: 90%; } .opcionesmantenimiento .ancla, .opcionescorte .ancla { margin: 4px; } #calculadora { margin-top: 20px; padding-left: 0; } #calculadora button { margin: 1%; height: 50px; } #calculadora .resultadocalculadora { width: 100%; height: 70px; color: white; background-color: orange; font-size: 36px; font-weight: bold; } /* Teclado*/ #teclado { width: 70%; height: 60%; } #teclado button { width: 60px; height: 60px; } #teclado .numeros { grid-gap: 2px; } #cantidad, #precio, #descuento { max-width: 90% !important; height: 280px; } #sincodigodinero { padding: 5px; } .contenedormodal #column2 .cancelar, .contenedormodal #column2 .aceptar { width: 70%; scroll-margin-top: 20px; margin-right: 0px; } #cerrarturno { width: 200px; } #cobrar { width: 98%; max-height: 410px !important; overflow: hidden; } .mediopago img { width: 50px; height: 50px; text-align: center; } #agregarinventario, #ajustarinventario { width: 90%; } #agregarinventario .inputglobal, #ajustarinventario .inputglobal { width: 50%; height: 30px; } #modificarcliente, #nuevocliente { width: 90%; } #modificarcliente .inputglobal, #nuevocliente .inputglobal { width: 60%; height: 30px; } #usernav { display: none; } svg { margin-top: 0; padding-top: 0; height: 100%; margin-top: 14px; } #contenedorinventario .contenedorh6 { width: 100%; justify-content: start; } #contenedorinventario select { width: 100%; margin: 0; margin-bottom: 10px; } #contenedorinventario .ancla { width: 46%; box-sizing: border-box; } #nuevoproducto, #editarproducto { width: 90%; padding-right: 0; } #nuevoproducto .inputglobal, #editarproducto .inputglobal { width: 60%; height: 30px; } #nuevodepartamento { padding: 20px; width: 90%; overflow: hidden; } #nuevodepartamento h5 { display: flex; justify-content: center; align-items: center; } #nuevodepartamento .inputglobal { margin: 10px; width: 100%; height: 30px; } .three .ancla { font-size: 11px; } .aproduct { width: 100px; margin-top: 10px; } .opcionesproductos .rotar { width: 150px; margin-top: 10px; } .opcionesproductos .rotar .ancla { font-size: 12px; } .opcionesproductos .ancla { font-size: 12px; } .ancla { font-size: 12px; height: 30px; } .one #inputBuscar { font-size: 14px; height: 30px; } .promodepto { display: flex; width: 100%; } .contenedor .sidebar { padding: 20px; min-width: 300px; } #teclado { padding: 0; width: 96%; height: 60%; } }
public/css/responsive.css
* { margin: 0; padding: 0; } body { background: whitesmoke; color: #000; font-family: "Roboto", sans-serif; } .contenedor { width: 100%; max-width: 1920 px; /* margin: 20px auto;*/ display: grid; /*grid-gap: 10px;*/ grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, auto); grid-template-areas: "header header header" "contenido contenido sidebar"; } .contenedor > div, .contenedor .header, .contenedor .contenido { padding: 20px; } .contenedor .header { -webkit-box-shadow: 0px 2px 5px 0px rgba(133, 126, 133, 1); -moz-box-shadow: 0px 2px 5px 0px rgba(133, 126, 133, 1); box-shadow: 0px 2px 5px 0px rgba(133, 126, 133, 1); color: #fff; grid-area: header; } .contenedor .contenido { grid-area: contenido; } .contenedor .sidebar { grid-column: 3 / 4; padding: 20px; text-align: center; display: flex; align-items: center; justify-content: center; min-width: 500px; grid-area: sidebar; } #cerrarturno { cursor: pointer; background-color: red; color: white; text-decoration: none; text-transform: none; font-size: 20px; width: 200px; height: 40px; box-sizing: border-box; border-radius: 8px; padding-top: 6px; } #cerrarturno:hover, #cerrarturno:focus { border: 1px solid red; background-color: orangered; } .menu-principal { display: grid; grid-gap: 20px; grid-template-columns: repeat(12, 1fr); grid-auto-rows: minmax(1fr, auto); /*grid-template-rows: minmax(100px, auto) 100px;*/ } .mediopago img { width: 100px; height: 100px; text-align: center; } .one { grid-column: 1/9; grid-row: 1; } .three { grid-column: 9/13; grid-row: 1; } .five { grid-column: 1/4; grid-row: 2; } .six { grid-column: 4/7; grid-row: 2; } .seven { grid-column: 7/10; grid-row: 2; } .eight { grid-column: 10/13; grid-row: 2; } /* 1600 px*/ @media screen and (max-width: 1600px) { /* grid*/ .one { grid-column: 1/8; grid-row: 1; } .three { grid-column: 8/14; grid-row: 1; } .five { grid-column: 1/4; grid-row: 2; } .six { grid-column: 4/7; grid-row: 2; } .seven { grid-column: 7/10; grid-row: 2; } .eight { grid-column: 10/14; grid-row: 2; } } /* 1400 px*/ @media screen and (max-width: 1400px) { .menu-principal div > a { font-size: 12px; } #cobrar { width: 70%; height: 440px !important; overflow: hidden; } .mediopago img { margin: 5px; width: 90px; height: 90px; } .mediopago img:hover { width: 95px; height: 95px; } .anclanaranja { font-size: 16px; } .ancla { width: 90%; font-size: 14px; } .anclanaranja > i { margin-right: 10px; } .invisible h5 { font-size: 20px; } #cerrarturno { margin-bottom: 0px; font-size: 16px; width: 160px; height: 36px; padding-top: 4px; margin-right: 60px; margin-top: 0px; } .text-usuario { font-size: 16px; padding: 0; margin-left: 0; } .corteitem { width: 100%; margin-top: 20px; display: flex; justify-content: space-evenly; } .corteitem .seccioncorte { width: 50%; } .corteitem .seccioncorte2 { margin-left: 100px; width: 50%; } } /*1200*/ @media screen and (max-width: 1200px) { #nuevapromocion { width: 44%; } .corteitem h5 { font-size: 13px; } .corteitem h4 { font-size: 13px; } .corteitem p { font-size: 12px; } .corteitem .seccioncorte { width: 50%; } .corteitem .seccioncorte2 { margin-left: 40px; width: 50%; } #cerrarturno { margin-bottom: 40px; font-size: 14px; width: 120px; height: 32px; padding-top: 6px; margin-right: 60px; } .text-usuario { font-size: 14px; } .text-usuario i { font-size: 22px; margin-right: 4px; } .menu-principal #inputBuscar { font-size: 16px; } #nuevodepartamento { width: 40%; } .one { grid-column: 1/7; grid-row: 1; } .three { grid-column: 7/14; grid-row: 1; } .five { grid-column: 1/7; grid-row: 2; } .six { grid-column: 7/14; grid-row: 2; } .seven { grid-column: 1/7; grid-row: 3; } .eight { grid-column: 7/14; grid-row: 3; } } @media screen and (max-width: 1100px) { #nuevapromocion { width: 50%; } #eliminarproducto { padding-top: 20px; width: 440px; height: 240px; } #eliminarproducto .inputglobal { margin: 10px; max-width: 280px; height: 40px; } #nuevaPromocion { width: 80%; } #nuevapromocion .inputmedio { width: 35%; } #nuevapromocion .inputmedio2 { width: 35%; } #agregarinventario, #ajustarinventario { width: 500px; height: 400px; } #cantidad, #precio, #descuento { text-align: center; max-width: 60%; height: 260px; overflow: hidden; } } /* 1020 px*/ @media screen and (max-width: 1024px) { #nuevapromocion { width: 60%; } #nuevapromocion .inputmedio { width: 40%; } #nuevapromocion .inputmedio2 { width: 40%; } .cabecera { height: auto; display: grid; grid-gap: 20px; grid-template-columns: repeat(12, 1fr); grid-auto-rows: minmax(1fr, auto); /*grid-template-rows: minmax(100px, auto) 100px;*/ } .logo { width: 100% !important; padding: 0 10px; grid-column: 5/12; grid-row: 1; display: flex; justify-content: center; align-items: center; } .turno { width: 80%; grid-column: 1/6; grid-row: 2; display: flex; justify-content: center; } .usuario { margin-bottom: 5px; width: 100%; grid-column: 8/13; grid-row: 2; display: flex; justify-content: flex-end; } #cerrarturno { margin-bottom: 5px; font-size: 14px; height: 36px; width: 160px !important; padding: 6px; } .text-usuario { color: orange; } #eliminarproducto { padding-top: 10px; width: 460px; height: 200px; } #cobrar { width: 80%; max-height: 410px !important; overflow: hidden; } #columna2 { padding: 5px; } .mediopago img { margin: 5px; width: 70px; height: 70px; } .mediopago img:hover { width: 75px; height: 75px; } table tr { font-size: 14px; } .cabecera ul.nav-menu li a i { font-size: 20px; } .cabecera ul.nav-menu li a { font-size: 16px; } .anclanaranja { font-size: 14px; width: 60%; } .ancla { width: 100%; font-size: 13px; } .anclanaranja > i { margin-right: 10px; } .promodepto { width: 50%; } .contenido h5 { font-size: 20px; } #agregarcliente { width: 50px; height: 50px; } .contenido h4 { font-size: 28px; } .mediopago { width: 100%; display: flex; flex-wrap: wrap; } .contenedor { grid-template-areas: "header header header" "contenido contenido contenido" "sidebar sidebar sidebar"; } #nuevoproducto, #editarproducto { width: 60%; } #ingresoDinero, #salidaDinero { width: 80%; } #eliminarcliente, #eliminardepartamento, #cerrarelturno, #bajacajero, #eliminarpromocion { padding: 20px; height: 160px; } #emitirnotas { width: 80%; height: 260px; padding: 10px; } #emitirnotas textarea { height: 120px; width: 260px; background-color: white; font-size: 16px; } .corteitem .seccioncorte { width: 40%; } .corteitem .seccioncorte2 { margin-left: 10px; width: 60%; } .corteitem h4 { margin-left: 20px; font-size: 16px; } .totales { margin-left: 50px; } /* Teclado*/ #teclado { width: 70%; height: 60%; } #teclado button { width: 80px; height: 80px; } #teclado .numeros { grid-gap: 2px; } .one { grid-column: 1/7; grid-row: 1; } .three { grid-column: 7/14; grid-row: 1; } .five { grid-column: 1/7; grid-row: 2; } .six { grid-column: 7/14; grid-row: 2; } .seven { grid-column: 1/7; grid-row: 3; } .eight { grid-column: 7/14; grid-row: 3; } #modificarcliente, #nuevocliente { width: 50%; } } @media screen and (max-width: 768px) { #nuevapromocion { width: 70%; } #sincodigodinero { width: 90%; } #modificarcliente, #nuevocliente { width: 80%; } .cabecera { height: auto; display: grid; grid-gap: 0; grid-template-columns: repeat(12, 1fr); grid-auto-rows: minmax(1fr, auto); /*grid-template-rows: minmax(100px, auto) 100px;*/ } .logo { grid-column: 5/12; width: 100% !important; height: 100%; margin-bottom: 0; display: flex; text-align: center; } .turno { padding-left: 0; width: 100%; grid-column: 1/7; grid-row: 2; display: flex; justify-content: flex-start; } #cerrarturno { margin-left: 0; font-size: 14px; height: 36px; width: 180px; padding-left: 0px; } .usuario { margin-bottom: 0px; width: 100% !important; grid-column: 10/13; grid-row: 2; display: flex; justify-content: flex-start; } .text-usuario { color: orange; } .invisible { flex-direction: column; } .promodepto .anclanaranja { margin: 10px 10px; width: 60%; } .menu-principal #inputBuscar { font-size: 16px; } .invisible { margin-top: 0; padding-top: 0; } .invisible h5 { font-size: 16px; } .contenido h4 { font-size: 24px; } #agregarcliente { width: 40px; height: 40px; } #cerrarelturno, #eliminarcliente, #eliminardepartamento, #bajacajero, #eliminarpromocion { width: 400px; height: 140px; } #cerrarelturno h5, #eliminarcliente h5, #eliminardepartamento h5, #bajacajero h5, #eliminarpromocion h5 { font-size: 16px; } } @media screen and (max-width: 600px) { #sincodigodinero{ background-color:yellow; } #column1{ width:90%; } #nuevapromocion { width: 80%; } #nuevapromocion .inputmedio2, #nuevapromocion .inputmedio, #nuevapromocion .inputglobal { height: 30px; } #eliminarcliente, #eliminardepartamento, #cerrarelturno, #bajacajero, #eliminarpromocion { padding: 2px; width: 90%; height: 120px; } #cerrarelturno .cancelar, #eliminarcliente .cancelar, #eliminardepartamento .cancelar, #eliminarcliente .aceptar, #eliminardepartamento .aceptar, #bajacajero .aceptar, #eliminarpromocion .aceptar, #bajacajero .cancelar, #eliminarpromocion.cancelar #cerrarelturno .aceptar { width: 40%; } .cabecera { height: 140px; display: grid; grid-gap: 0px; grid-template-columns: repeat(12, 1fr); grid-auto-rows: minmax(1fr, auto); /*grid-template-rows: minmax(100px, auto) 100px;*/ } .logo { grid-column: 3/13; width: 100% !important; height: 100%; margin-bottom: 0; display: flex; text-align: center; } .turno { padding-left: 0; width: 100%; grid-column: 1/7; grid-row: 20px; display: flex; justify-content: center; } .usuario { margin-top: 10px; width: 100% !important; grid-column: 8/13; grid-row: 2; display: flex; justify-content: flex-start; } #cerrarturno { margin-top: 15px; font-size: 12px; height: 30px; width: 180px; padding: 6px; } .text-usuario { font-size: 12px; } .corteitem h5 { font-size: 13px; } .corteitem h4 { margin-left: 13px; font-size: 12px; } .corteitem p { font-size: 12px; } .corteitem .seccioncorte { width: 50%; } .corteitem .seccioncorte2 { margin-left: 40px; width: 50%; } .totales { margin-left: 3px; margin-top: 5px; } .opcionescorte a, .opcionesmantenimiento a { font-size: 12px; height: 36px; width: 50% !important; } #inputmantenimiento { max-width: 90%; } .opcionesmantenimiento .ancla, .opcionescorte .ancla { margin: 4px; } #calculadora { margin-top: 20px; padding-left: 0; } #calculadora button { margin: 1%; height: 50px; } #calculadora .resultadocalculadora { width: 100%; height: 70px; color: white; background-color: orange; font-size: 36px; font-weight: bold; } /* Teclado*/ #teclado { width: 70%; height: 60%; } #teclado button { width: 60px; height: 60px; } #teclado .numeros { grid-gap: 2px; } #cantidad, #precio, #descuento { max-width: 90% !important; height: 280px; } #sincodigodinero { padding: 5px; } .contenedormodal #column2 .cancelar, .contenedormodal #column2 .aceptar { width: 70%; scroll-margin-top: 20px; margin-right: 0px; } #cerrarturno { width: 200px; } #cobrar { width: 98%; max-height: 410px !important; overflow: hidden; } .mediopago img { width: 50px; height: 50px; text-align: center; } #agregarinventario, #ajustarinventario { width: 90%; } #agregarinventario .inputglobal, #ajustarinventario .inputglobal { width: 50%; height: 30px; } #modificarcliente, #nuevocliente { width: 90%; } #modificarcliente .inputglobal, #nuevocliente .inputglobal { width: 60%; height: 30px; } #usernav { display: none; } svg { margin-top: 0; padding-top: 0; height: 100%; margin-top: 14px; } #contenedorinventario .contenedorh6 { width: 100%; justify-content: start; } #contenedorinventario select { width: 100%; margin: 0; margin-bottom: 10px; } #contenedorinventario .ancla { width: 46%; box-sizing: border-box; } #nuevoproducto, #editarproducto { width: 90%; padding-right: 0; } #nuevoproducto .inputglobal, #editarproducto .inputglobal { width: 60%; height: 30px; } #nuevodepartamento { padding: 20px; width: 90%; overflow: hidden; } #nuevodepartamento h5 { display: flex; justify-content: center; align-items: center; } #nuevodepartamento .inputglobal { margin: 10px; width: 100%; height: 30px; } .three .ancla { font-size: 11px; } .aproduct { width: 100px; margin-top: 10px; } .opcionesproductos .rotar { width: 150px; margin-top: 10px; } .opcionesproductos .rotar .ancla { font-size: 12px; } .opcionesproductos .ancla { font-size: 12px; } .ancla { font-size: 12px; height: 30px; } .one #inputBuscar { font-size: 14px; height: 30px; } .promodepto { display: flex; width: 100%; } .contenedor .sidebar { padding: 20px; min-width: 300px; } #teclado { padding: 0; width: 96%; height: 60%; } }
0.336549
0.113973
body {margin:0;font-family:Arial} .topnav { overflow: hidden; background-color: #7ea2e2; } .topnav a { float: left; display: block; color: #f2f2f2; text-align: center; padding: 14px 16px; text-decoration: none; font-size: 17px; } .topnav .icon { display: none; } .dropdown { float: left; overflow: hidden; } .dropdown .dropbtn { font-size: 17px; border: none; outline: none; color: white; padding: 14px 16px; background-color: inherit; font-family: inherit; margin: 0; } .dropdown-content { display: none; position: absolute; background-color: #f9f9f9; min-width: 160px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); z-index: 1; } .main-nav li{ display: inline-block; list-style: none; } .main-nav li a:hover{ border-bottom: 2px solid whitesmoke; } .dropdown-content a { float: none; color: black; padding: 12px 16px; text-decoration: none; display: block; text-align: left; } .topnav a:hover, .dropdown:hover .dropbtn { color: white; } .dropdown-content a:hover { background-color: #ddd; color: black; } .dropdown:hover .dropdown-content { display: block; } @media screen and (max-width: 600px) { .topnav a:not(:first-child), .dropdown .dropbtn { display: none; } .topnav a.icon { float: right; display: block; } } @media screen and (max-width: 600px) { .topnav.responsive {position: relative;} .topnav.responsive .icon { position: absolute; right: 0; top: 0; } .topnav.responsive a { float: none; display: block; text-align: left; } .topnav.responsive .dropdown {float: none;} .topnav.responsive .dropdown-content {position: relative;} .topnav.responsive .dropdown .dropbtn { display: block; width: 100%; text-align: left; } } .search{ float: right; margin-top: 24px; } footer{ position: fixed; bottom: 0; } .footer-distributed{ background-color: #202325; box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12); box-sizing: border-box; width: 100%; text-align: left; font: bold 16px sans-serif; padding: 35px 50px; margin-top: 80px; } .footer-distributed .footer-left, .footer-distributed .footer-center, .footer-distributed .footer-right{ display: inline-block; vertical-align: top; } .footer-distributed .footer-left{ width: 40%; } .footer-distributed h3{ color: #ffffff; font: normal 36px 'Cookie', cursive; margin: 0; } .footer-distributed h3 span{ color: #5383d3; } .footer-distributed .footer-links{ color: #ffffff; margin: 20px 0 12px; padding: 0; } .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-distributed .footer-center{ width: 35%; } .footer-distributed .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-distributed .footer-center i.fa-envelope{ font-size: 17px; line-height: 38px; } .footer-distributed .footer-center p{ display: inline-block; color: #ffffff; vertical-align: middle; margin:0; } .footer-distributed .footer-center p span{ display:block; font-weight: normal; font-size:14px; line-height:2; } .footer-distributed .footer-center p a{ color: #5383d3; text-decoration: none;; } .footer-distributed .footer-right{ width: 20%; } .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: 14px; 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; } .resize-resources{ margin-top: 15px; } @media (max-width: 880px) { .footer-distributed{ font: bold 14px sans-serif; } .footer-distributed .footer-left, .footer-distributed .footer-center, .footer-distributed .footer-right{ display: block; width: 100%; margin-bottom: 40px; text-align: center; } .footer-distributed .footer-center i{ margin-left: 0; } .main { line-height: normal; font-size: auto; } } h2{ color: white; } .img{ height: 80px; width: 80px; }
Header_and_Footer/style.css
body {margin:0;font-family:Arial} .topnav { overflow: hidden; background-color: #7ea2e2; } .topnav a { float: left; display: block; color: #f2f2f2; text-align: center; padding: 14px 16px; text-decoration: none; font-size: 17px; } .topnav .icon { display: none; } .dropdown { float: left; overflow: hidden; } .dropdown .dropbtn { font-size: 17px; border: none; outline: none; color: white; padding: 14px 16px; background-color: inherit; font-family: inherit; margin: 0; } .dropdown-content { display: none; position: absolute; background-color: #f9f9f9; min-width: 160px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); z-index: 1; } .main-nav li{ display: inline-block; list-style: none; } .main-nav li a:hover{ border-bottom: 2px solid whitesmoke; } .dropdown-content a { float: none; color: black; padding: 12px 16px; text-decoration: none; display: block; text-align: left; } .topnav a:hover, .dropdown:hover .dropbtn { color: white; } .dropdown-content a:hover { background-color: #ddd; color: black; } .dropdown:hover .dropdown-content { display: block; } @media screen and (max-width: 600px) { .topnav a:not(:first-child), .dropdown .dropbtn { display: none; } .topnav a.icon { float: right; display: block; } } @media screen and (max-width: 600px) { .topnav.responsive {position: relative;} .topnav.responsive .icon { position: absolute; right: 0; top: 0; } .topnav.responsive a { float: none; display: block; text-align: left; } .topnav.responsive .dropdown {float: none;} .topnav.responsive .dropdown-content {position: relative;} .topnav.responsive .dropdown .dropbtn { display: block; width: 100%; text-align: left; } } .search{ float: right; margin-top: 24px; } footer{ position: fixed; bottom: 0; } .footer-distributed{ background-color: #202325; box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12); box-sizing: border-box; width: 100%; text-align: left; font: bold 16px sans-serif; padding: 35px 50px; margin-top: 80px; } .footer-distributed .footer-left, .footer-distributed .footer-center, .footer-distributed .footer-right{ display: inline-block; vertical-align: top; } .footer-distributed .footer-left{ width: 40%; } .footer-distributed h3{ color: #ffffff; font: normal 36px 'Cookie', cursive; margin: 0; } .footer-distributed h3 span{ color: #5383d3; } .footer-distributed .footer-links{ color: #ffffff; margin: 20px 0 12px; padding: 0; } .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-distributed .footer-center{ width: 35%; } .footer-distributed .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-distributed .footer-center i.fa-envelope{ font-size: 17px; line-height: 38px; } .footer-distributed .footer-center p{ display: inline-block; color: #ffffff; vertical-align: middle; margin:0; } .footer-distributed .footer-center p span{ display:block; font-weight: normal; font-size:14px; line-height:2; } .footer-distributed .footer-center p a{ color: #5383d3; text-decoration: none;; } .footer-distributed .footer-right{ width: 20%; } .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: 14px; 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; } .resize-resources{ margin-top: 15px; } @media (max-width: 880px) { .footer-distributed{ font: bold 14px sans-serif; } .footer-distributed .footer-left, .footer-distributed .footer-center, .footer-distributed .footer-right{ display: block; width: 100%; margin-bottom: 40px; text-align: center; } .footer-distributed .footer-center i{ margin-left: 0; } .main { line-height: normal; font-size: auto; } } h2{ color: white; } .img{ height: 80px; width: 80px; }
0.289071
0.065695
.viewer-zoom-in, .viewer-zoom-out, .viewer-one-to-one, .viewer-reset, .viewer-prev, .viewer-play, .viewer-next, .viewer-rotate-left, .viewer-rotate-right, .viewer-flip-horizontal, .viewer-flip-vertical, .viewer-fullscreen, .viewer-fullscreen-exit, .viewer-close { font-size: 0; line-height: 0; display: block; width: 20px; height: 20px; color: transparent; background-image: url('toolbar.png'); *background-image: url('toolbar.gif'); background-repeat: no-repeat; } .viewer-zoom-in { content: 'Zoom In'; background-position: 0 0; } .viewer-zoom-out { content: 'Zoom Out'; background-position: -20px 0; } .viewer-one-to-one { content: 'One to One'; background-position: -40px 0; } .viewer-reset { content: 'Reset'; background-position: -60px 0; } .viewer-prev { content: 'Previous'; background-position: -80px 0; } .viewer-play { content: 'Play'; background-position: -100px 0; } .viewer-next { content: 'Next'; background-position: -120px 0; } .viewer-rotate-left { content: 'Rotate Left'; background-position: -140px 0; } .viewer-rotate-right { content: 'Rotate Right'; background-position: -160px 0; } .viewer-flip-horizontal { content: 'Flip Horizontal'; background-position: -180px 0; } .viewer-flip-vertical { content: 'Flip Vertical'; background-position: -200px 0; } .viewer-fullscreen { content: 'Enter Full Screen'; background-position: -220px 0; } .viewer-fullscreen-exit { content: 'Exit Full Screen'; background-position: -240px 0; } .viewer-close { content: 'Close'; background-position: -260px 0; } .viewer-button { position: absolute; top: 0px; right: 0px; cursor: pointer; border-radius: 50%; background-color: #000; background-color: rgba(0, 0, 0, .5); } .viewer-player { position: absolute; top: 0; right: 0; bottom: 0; left: 0; display: none; cursor: none; background-color: #000; } .viewer-player > img { position: absolute; top: 0; left: 0; } .viewer-toolbar { overflow: hidden; width: 240px; margin: 0 auto 3px; padding: 3px 0; } .viewer-toolbar li { float: left; overflow: hidden; width: 20px; height: 20px; cursor: pointer; background-color: #000; background-color: rgba(0, 0, 0, .5); border-radius: 50%; } .viewer-toolbar li:hover { background-color: #000; background-color: rgba(0, 0, 0, .8); } .viewer-toolbar li { margin: 2px; margin-left: 1px; } .viewer-toolbar .viewer-play { width: 30px; height: 30px; margin-top: -3px; margin-bottom: -3px; } .viewer-toolbar .viewer-play { margin: 5px; } .viewer-layer { position: absolute; width: 100%; height: 100%; top: 0px; left: 0px; background-color: #888; z-index: 2016; overflow: hidden; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; background-color: #000; background-color: rgba(0, 0, 0, .7); direction: ltr !important; -ms-touch-action: none; touch-action: none; -webkit-tap-highlight-color: transparent; -webkit-touch-callout: none; } .viewer-layer::-moz-selection, .viewer-layer *::-moz-selection { background-color: transparent; } .viewer-layer::selection, .viewer-layer *::selection { background-color: transparent; } .viewer-container { position: absolute; z-index:2017; font-size: 0; line-height: 0; top: 0; right: 0; bottom: 0; left: 0; overflow: hidden; } .viewer-container img { display: block; width: 100%; min-width: 0 !important; max-width: none !important; height: auto; min-height: 0 !important; max-height: none !important; } .viewer-canvas { position: absolute; top: 0; right: 0; bottom: 0; left: 0; overflow: hidden; } .viewer-canvas > img { width: auto; max-width: none !important; height: auto; margin: 15px auto; } .viewer-footer { position: absolute; right: 0; bottom: 0; left: 0; overflow: hidden; } .viewer-navbar { overflow: hidden; background-color: #000; background-color: rgba(0, 0, 0, .9); } .viewer-list { margin: 0; padding: 1px 0; overflow: hidden; } .viewer-list li { float: left; list-style-type:none; border:1px solid #fff; font-size: 0; line-height: 0; overflow: hidden; cursor: pointer; opacity: .5; color: transparent; filter: alpha(opacity=50); background-color: #fff; background-repeat: no-repeat; background-position: 50% 50%; background-size:cover; } .viewer-list li { margin-left: 2px; } .viewer-list .viewer-active { opacity: 1; filter: alpha(opacity=100); } .viewer-list li: hover { opacity: 1; filter: alpha(opacity=100); } .viewer-tooltip { position: absolute; text-align: center; color: #fff; font-size: 12px; line-height: 20px; top: 50%; left: 50%; display: none; width: 50px; height: 20px; margin-top: -10px; margin-left: -25px; border-radius: 10px; background-color: #000; background-color: rgba(0, 0, 0, .8); } .viewer-title { width: 100%; text-align:center; font-size: 12px; line-height: 1; display: inline-block; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; color: #fff; } .viewer-fixed { position: fixed; } .viewer-open { overflow: hidden; } .viewer-show { display: block; } .viewer-hide { display: none; } .viewer-invisible { visibility: hidden; } .viewer-move { cursor: move; cursor: -webkit-grab; cursor: -moz-grab; cursor: grab; } .viewer-fade { opacity: 0; filter: alpha(opacity=0); } .viewer-in { opacity: 1; filter: alpha(opacity=100); } .viewer-transition { -webkit-transition: all .3s ease-out; -o-transition: all .3s ease-out; transition: all .3s ease-out; } @media (max-width: 767px) { .viewer-hide-xs-down { display: none; } } @media (max-width: 991px) { .viewer-hide-sm-down { display: none; } } @media (max-width: 1199px) { .viewer-hide-md-down { display: none; } } .picThumb1, .picThumb2 { margin: 0; padding: 1px 0; } .picThumb1 li, .picThumb2 li { background-color: #fff; border: 1px solid #acacac; font-size: 14px; text-align: center; list-style-type: none; float: left; margin-left: 10px; padding: 10px; -webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.16); box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.16); } .picThumb1 li div, .picThumb2 li div { background-color: #fff; border: 1px solid #bbb; margin-bottom: 10px; font-size: 14px; list-style-type: none; }
style/viewer.css
.viewer-zoom-in, .viewer-zoom-out, .viewer-one-to-one, .viewer-reset, .viewer-prev, .viewer-play, .viewer-next, .viewer-rotate-left, .viewer-rotate-right, .viewer-flip-horizontal, .viewer-flip-vertical, .viewer-fullscreen, .viewer-fullscreen-exit, .viewer-close { font-size: 0; line-height: 0; display: block; width: 20px; height: 20px; color: transparent; background-image: url('toolbar.png'); *background-image: url('toolbar.gif'); background-repeat: no-repeat; } .viewer-zoom-in { content: 'Zoom In'; background-position: 0 0; } .viewer-zoom-out { content: 'Zoom Out'; background-position: -20px 0; } .viewer-one-to-one { content: 'One to One'; background-position: -40px 0; } .viewer-reset { content: 'Reset'; background-position: -60px 0; } .viewer-prev { content: 'Previous'; background-position: -80px 0; } .viewer-play { content: 'Play'; background-position: -100px 0; } .viewer-next { content: 'Next'; background-position: -120px 0; } .viewer-rotate-left { content: 'Rotate Left'; background-position: -140px 0; } .viewer-rotate-right { content: 'Rotate Right'; background-position: -160px 0; } .viewer-flip-horizontal { content: 'Flip Horizontal'; background-position: -180px 0; } .viewer-flip-vertical { content: 'Flip Vertical'; background-position: -200px 0; } .viewer-fullscreen { content: 'Enter Full Screen'; background-position: -220px 0; } .viewer-fullscreen-exit { content: 'Exit Full Screen'; background-position: -240px 0; } .viewer-close { content: 'Close'; background-position: -260px 0; } .viewer-button { position: absolute; top: 0px; right: 0px; cursor: pointer; border-radius: 50%; background-color: #000; background-color: rgba(0, 0, 0, .5); } .viewer-player { position: absolute; top: 0; right: 0; bottom: 0; left: 0; display: none; cursor: none; background-color: #000; } .viewer-player > img { position: absolute; top: 0; left: 0; } .viewer-toolbar { overflow: hidden; width: 240px; margin: 0 auto 3px; padding: 3px 0; } .viewer-toolbar li { float: left; overflow: hidden; width: 20px; height: 20px; cursor: pointer; background-color: #000; background-color: rgba(0, 0, 0, .5); border-radius: 50%; } .viewer-toolbar li:hover { background-color: #000; background-color: rgba(0, 0, 0, .8); } .viewer-toolbar li { margin: 2px; margin-left: 1px; } .viewer-toolbar .viewer-play { width: 30px; height: 30px; margin-top: -3px; margin-bottom: -3px; } .viewer-toolbar .viewer-play { margin: 5px; } .viewer-layer { position: absolute; width: 100%; height: 100%; top: 0px; left: 0px; background-color: #888; z-index: 2016; overflow: hidden; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; background-color: #000; background-color: rgba(0, 0, 0, .7); direction: ltr !important; -ms-touch-action: none; touch-action: none; -webkit-tap-highlight-color: transparent; -webkit-touch-callout: none; } .viewer-layer::-moz-selection, .viewer-layer *::-moz-selection { background-color: transparent; } .viewer-layer::selection, .viewer-layer *::selection { background-color: transparent; } .viewer-container { position: absolute; z-index:2017; font-size: 0; line-height: 0; top: 0; right: 0; bottom: 0; left: 0; overflow: hidden; } .viewer-container img { display: block; width: 100%; min-width: 0 !important; max-width: none !important; height: auto; min-height: 0 !important; max-height: none !important; } .viewer-canvas { position: absolute; top: 0; right: 0; bottom: 0; left: 0; overflow: hidden; } .viewer-canvas > img { width: auto; max-width: none !important; height: auto; margin: 15px auto; } .viewer-footer { position: absolute; right: 0; bottom: 0; left: 0; overflow: hidden; } .viewer-navbar { overflow: hidden; background-color: #000; background-color: rgba(0, 0, 0, .9); } .viewer-list { margin: 0; padding: 1px 0; overflow: hidden; } .viewer-list li { float: left; list-style-type:none; border:1px solid #fff; font-size: 0; line-height: 0; overflow: hidden; cursor: pointer; opacity: .5; color: transparent; filter: alpha(opacity=50); background-color: #fff; background-repeat: no-repeat; background-position: 50% 50%; background-size:cover; } .viewer-list li { margin-left: 2px; } .viewer-list .viewer-active { opacity: 1; filter: alpha(opacity=100); } .viewer-list li: hover { opacity: 1; filter: alpha(opacity=100); } .viewer-tooltip { position: absolute; text-align: center; color: #fff; font-size: 12px; line-height: 20px; top: 50%; left: 50%; display: none; width: 50px; height: 20px; margin-top: -10px; margin-left: -25px; border-radius: 10px; background-color: #000; background-color: rgba(0, 0, 0, .8); } .viewer-title { width: 100%; text-align:center; font-size: 12px; line-height: 1; display: inline-block; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; color: #fff; } .viewer-fixed { position: fixed; } .viewer-open { overflow: hidden; } .viewer-show { display: block; } .viewer-hide { display: none; } .viewer-invisible { visibility: hidden; } .viewer-move { cursor: move; cursor: -webkit-grab; cursor: -moz-grab; cursor: grab; } .viewer-fade { opacity: 0; filter: alpha(opacity=0); } .viewer-in { opacity: 1; filter: alpha(opacity=100); } .viewer-transition { -webkit-transition: all .3s ease-out; -o-transition: all .3s ease-out; transition: all .3s ease-out; } @media (max-width: 767px) { .viewer-hide-xs-down { display: none; } } @media (max-width: 991px) { .viewer-hide-sm-down { display: none; } } @media (max-width: 1199px) { .viewer-hide-md-down { display: none; } } .picThumb1, .picThumb2 { margin: 0; padding: 1px 0; } .picThumb1 li, .picThumb2 li { background-color: #fff; border: 1px solid #acacac; font-size: 14px; text-align: center; list-style-type: none; float: left; margin-left: 10px; padding: 10px; -webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.16); box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.16); } .picThumb1 li div, .picThumb2 li div { background-color: #fff; border: 1px solid #bbb; margin-bottom: 10px; font-size: 14px; list-style-type: none; }
0.460774
0.080141
.cntnr_scroll_horizontal_item { -ms-overflow-style: none; /* IE and Edge */ scrollbar-width: none; /* Firefox */ display: flex; flex-flow: row nowrap; overflow-x: scroll; width: 100%; } .cntnr_scroll_horizontal_item:hover { -webkit-animation-play-state: paused; } @-webkit-keyframes move { 0% { margin-left: -400px; } 100% { margin-left: 800px; } } .cntnr_scroll_horizontal_item::-webkit-scrollbar { /* display: none; */ } .cntnr_item_scroll { margin-left: 3%; transition: flex 300ms ease-in-out, transform 200ms ease-in-out; position: relative; flex: 0 0 30%; } .img_item_scroll { width: 100%; } .discount_price_item { background-color: #FFE900; text-align: center; font-size: 160%; padding: 1% 4%; position: absolute; height: 15%; top: 5%; right: 15%; transition: 'font-size' 300ms ease-in-out, transform 200ms ease-in-out; } .real_price_item { background-color: #CFD8DC; text-align: center; font-size: 130%; padding: 0 2%; position: absolute; height: 15%; top: 18%; right: 5%; text-decoration-line: line-through; transition: 'font-size' 300ms ease-in-out, transform 200ms ease-in-out; } .cntnr_info_type { position: absolute; bottom: 8%; right: 8%; width: 30%; height: 30%; } .cntnr_info_used { position: absolute; bottom: 5%; left: 8%; width: 30%; height: 15%; } .icon_info_type { width: 65%; } @media only screen and (min-width:320px) { .discount_price_item { font-size: 100%; } .real_price_item { font-size: 90%; } } @media screen and (min-width: 420px){ .discount_price_item { font-size: 120%; } .real_price_item { font-size: 100%; } } @media only screen and (min-width:481px) { } @media only screen and (min-width:641px) { .discount_price_item { font-size: 140%; } .real_price_item { font-size: 120%; } } @media screen and (min-width: 620px) { } @media screen and (min-width: 820px) { .discount_price_item { font-size: 170%; } .real_price_item { font-size: 150%; } } @media only screen and (min-width:961px) { .cntnr_item_scroll { flex: 0 0 25%; } } @media only screen and (min-width:1025px) { .cntnr_item_scroll { flex: 0 0 20%; } } @media only screen and (min-width:1281px) { .cntnr_item_scroll { flex: 0 0 15%; } }
css/index.css
.cntnr_scroll_horizontal_item { -ms-overflow-style: none; /* IE and Edge */ scrollbar-width: none; /* Firefox */ display: flex; flex-flow: row nowrap; overflow-x: scroll; width: 100%; } .cntnr_scroll_horizontal_item:hover { -webkit-animation-play-state: paused; } @-webkit-keyframes move { 0% { margin-left: -400px; } 100% { margin-left: 800px; } } .cntnr_scroll_horizontal_item::-webkit-scrollbar { /* display: none; */ } .cntnr_item_scroll { margin-left: 3%; transition: flex 300ms ease-in-out, transform 200ms ease-in-out; position: relative; flex: 0 0 30%; } .img_item_scroll { width: 100%; } .discount_price_item { background-color: #FFE900; text-align: center; font-size: 160%; padding: 1% 4%; position: absolute; height: 15%; top: 5%; right: 15%; transition: 'font-size' 300ms ease-in-out, transform 200ms ease-in-out; } .real_price_item { background-color: #CFD8DC; text-align: center; font-size: 130%; padding: 0 2%; position: absolute; height: 15%; top: 18%; right: 5%; text-decoration-line: line-through; transition: 'font-size' 300ms ease-in-out, transform 200ms ease-in-out; } .cntnr_info_type { position: absolute; bottom: 8%; right: 8%; width: 30%; height: 30%; } .cntnr_info_used { position: absolute; bottom: 5%; left: 8%; width: 30%; height: 15%; } .icon_info_type { width: 65%; } @media only screen and (min-width:320px) { .discount_price_item { font-size: 100%; } .real_price_item { font-size: 90%; } } @media screen and (min-width: 420px){ .discount_price_item { font-size: 120%; } .real_price_item { font-size: 100%; } } @media only screen and (min-width:481px) { } @media only screen and (min-width:641px) { .discount_price_item { font-size: 140%; } .real_price_item { font-size: 120%; } } @media screen and (min-width: 620px) { } @media screen and (min-width: 820px) { .discount_price_item { font-size: 170%; } .real_price_item { font-size: 150%; } } @media only screen and (min-width:961px) { .cntnr_item_scroll { flex: 0 0 25%; } } @media only screen and (min-width:1025px) { .cntnr_item_scroll { flex: 0 0 20%; } } @media only screen and (min-width:1281px) { .cntnr_item_scroll { flex: 0 0 15%; } }
0.340595
0.086748
@charset "UTF-8"; @import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Rampart+One&display=swap'); :root { --color0:#bccffd; --color1:#A7D5F2; --color2:#1C7FA6; --color3:#024059; --color4:#0D0D0D; --font-normal:arial, sans-serif ; --font-destaque:'Bebas Neue', arial ; --font-personalisada:'Rampart One'; } *{ margin: 0px; padding: 0px; } body{ background-color:var(--color0); } header{ background-image: linear-gradient(to bottom, var(--color2), var(--color3)) ; margin: 0px; } h1#header { text-align: center; padding: 30px; font: normal 45px 'Bugee'; font-family: var(--font-destaque); color: white; text-shadow: 3px 3px 2px #0D0D0D; } h1 { padding-bottom: 14.3px; padding-top: 17px; font:normal 40px var(--font-destaque); } p#header { text-align: center; } nav { background-color:var(--color3); padding: 8px; font-family: var(--font-destaque); font: normal 22px var(--font-destaque); box-shadow:0px 3px 8px #4b4b4b ; } nav :hover { background-color: var(--color1); color: var(--color4); padding: 13px; padding: auto; padding-bottom: 7px; } nav > a { text-decoration: none; padding: 5px; color: white; border-radius: 6px; transition-duration: .5s; font-weight: normal; } nav :active { color: var(--color2); transition-duration:.4s ; } main{ background-color: white; text-align: justify; min-width: 300px; max-width:1000px ; margin: auto; margin-top: 0px; margin-bottom: 30px; padding-right: 15px; padding-left: 15px; padding-top: 20px; font-family: var(--font-normal); border-radius: 15px; line-height: 2em; font-size: 1.2em; box-shadow:0px 0px 10px #0000007a; } img { max-width:65%; padding: 15px; } img#personalisado { max-width: 75%; display: block; margin: auto; } aside { background-color: var(--color3); padding: 10px; border-radius: 10px; } aside#tec { background-color: var(--color2); padding: 10px; border-radius: 10px; text-align: center; } h1#saiba { background-color: var(--color0); border-radius: 3px; padding: 3px; text-align: center; } h1#tecnicon { background-color: var(--color0); padding: 5px; border-radius: 5px; } p#tecnicon-p { color: white; } p#per{ color: white; } footer { background-color: var(--color2); font: normal 35px 'Rampart One'; color: white; text-align: center; padding: 7px; } strong { color: white; font: normal 45px 'Rampart One'; }
desafios/invensoes/estilo/style.css
@charset "UTF-8"; @import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Rampart+One&display=swap'); :root { --color0:#bccffd; --color1:#A7D5F2; --color2:#1C7FA6; --color3:#024059; --color4:#0D0D0D; --font-normal:arial, sans-serif ; --font-destaque:'Bebas Neue', arial ; --font-personalisada:'Rampart One'; } *{ margin: 0px; padding: 0px; } body{ background-color:var(--color0); } header{ background-image: linear-gradient(to bottom, var(--color2), var(--color3)) ; margin: 0px; } h1#header { text-align: center; padding: 30px; font: normal 45px 'Bugee'; font-family: var(--font-destaque); color: white; text-shadow: 3px 3px 2px #0D0D0D; } h1 { padding-bottom: 14.3px; padding-top: 17px; font:normal 40px var(--font-destaque); } p#header { text-align: center; } nav { background-color:var(--color3); padding: 8px; font-family: var(--font-destaque); font: normal 22px var(--font-destaque); box-shadow:0px 3px 8px #4b4b4b ; } nav :hover { background-color: var(--color1); color: var(--color4); padding: 13px; padding: auto; padding-bottom: 7px; } nav > a { text-decoration: none; padding: 5px; color: white; border-radius: 6px; transition-duration: .5s; font-weight: normal; } nav :active { color: var(--color2); transition-duration:.4s ; } main{ background-color: white; text-align: justify; min-width: 300px; max-width:1000px ; margin: auto; margin-top: 0px; margin-bottom: 30px; padding-right: 15px; padding-left: 15px; padding-top: 20px; font-family: var(--font-normal); border-radius: 15px; line-height: 2em; font-size: 1.2em; box-shadow:0px 0px 10px #0000007a; } img { max-width:65%; padding: 15px; } img#personalisado { max-width: 75%; display: block; margin: auto; } aside { background-color: var(--color3); padding: 10px; border-radius: 10px; } aside#tec { background-color: var(--color2); padding: 10px; border-radius: 10px; text-align: center; } h1#saiba { background-color: var(--color0); border-radius: 3px; padding: 3px; text-align: center; } h1#tecnicon { background-color: var(--color0); padding: 5px; border-radius: 5px; } p#tecnicon-p { color: white; } p#per{ color: white; } footer { background-color: var(--color2); font: normal 35px 'Rampart One'; color: white; text-align: center; padding: 7px; } strong { color: white; font: normal 45px 'Rampart One'; }
0.376967
0.159643
@charset "utf-8"; #container{ position: relative; background: url(../img/news/bg2.png) left bottom no-repeat , url(../img/news/bg.jpg) right no-repeat; background-size: 450px , cover; min-height: 100vh; } #subMenu{ position: absolute; left: 150px; } #subMenu li{ list-style-type: none; background-color: #fcfbf9; margin-bottom: 5px; border-radius: 5px; padding: 2px 10px; font-size: 18px; text-align: center; box-shadow: 2px 2px 5px #CCC; } #subMenu li:hover , #subMenu .thisPage{ background-color: #ef9173; } #subMenu li:hover a , #subMenu .thisPage a{ color: #FFF; } #newsList{ background-color: rgba(255,255,255,0.6); margin: 0 auto; width: 900px; padding: 50px 40px 0; } .news:first-child{ border-top: 2px solid #999; } .news{ border-bottom: 2px solid #999; padding: 30px; } .news .pic{ float: left; width: 20%; font-size: 0; } .news .pic img{ width: 100%; } .news .content{ float: left; width: 76%; padding: 0 2%; } .news .content span{ display: inline-block; background-color: #638c0b; padding: 5px 20px; color: #FFF; font-size: 18px; } .news .content .date{ margin: 10px 0; color: #638c0b; font-size: 16px; } .news .content p{ font-size: 18px; } .news .content p a{ font-weight: bold; } #newsList .page{ text-align: center; } #newsList .page span{ display: inline-block; background-color: rgba(0,0,0,0.2); margin: 20px auto; padding: 5px 30px 8px; } #newsList .page a{ display: inline-block; background-color: #4C4C4C; margin: 0 2px; width: 10px; height: 10px; border-radius: 10px; font-size: 0; vertical-align: middle; } #newsList .page a.active{ background-color: #000; background-clip: content-box; width: 8px; height: 8px; border: 2px solid #000; padding: 3px; } #container > .EN{ margin: 20px 0 80px; color: rgba(0,0,0,0.4); font-size: 10px; text-align: center; } #container > .EN span{ display: block; } @media (max-width: 980px){ #subMenu{ display: none; } #newsList{ width: 90%; padding: 5% 5% 0; } .news .pic , .news .content{ float: none; width: 90%; padding: 2% 5%; } }
css/news.css
@charset "utf-8"; #container{ position: relative; background: url(../img/news/bg2.png) left bottom no-repeat , url(../img/news/bg.jpg) right no-repeat; background-size: 450px , cover; min-height: 100vh; } #subMenu{ position: absolute; left: 150px; } #subMenu li{ list-style-type: none; background-color: #fcfbf9; margin-bottom: 5px; border-radius: 5px; padding: 2px 10px; font-size: 18px; text-align: center; box-shadow: 2px 2px 5px #CCC; } #subMenu li:hover , #subMenu .thisPage{ background-color: #ef9173; } #subMenu li:hover a , #subMenu .thisPage a{ color: #FFF; } #newsList{ background-color: rgba(255,255,255,0.6); margin: 0 auto; width: 900px; padding: 50px 40px 0; } .news:first-child{ border-top: 2px solid #999; } .news{ border-bottom: 2px solid #999; padding: 30px; } .news .pic{ float: left; width: 20%; font-size: 0; } .news .pic img{ width: 100%; } .news .content{ float: left; width: 76%; padding: 0 2%; } .news .content span{ display: inline-block; background-color: #638c0b; padding: 5px 20px; color: #FFF; font-size: 18px; } .news .content .date{ margin: 10px 0; color: #638c0b; font-size: 16px; } .news .content p{ font-size: 18px; } .news .content p a{ font-weight: bold; } #newsList .page{ text-align: center; } #newsList .page span{ display: inline-block; background-color: rgba(0,0,0,0.2); margin: 20px auto; padding: 5px 30px 8px; } #newsList .page a{ display: inline-block; background-color: #4C4C4C; margin: 0 2px; width: 10px; height: 10px; border-radius: 10px; font-size: 0; vertical-align: middle; } #newsList .page a.active{ background-color: #000; background-clip: content-box; width: 8px; height: 8px; border: 2px solid #000; padding: 3px; } #container > .EN{ margin: 20px 0 80px; color: rgba(0,0,0,0.4); font-size: 10px; text-align: center; } #container > .EN span{ display: block; } @media (max-width: 980px){ #subMenu{ display: none; } #newsList{ width: 90%; padding: 5% 5% 0; } .news .pic , .news .content{ float: none; width: 90%; padding: 2% 5%; } }
0.155046
0.044953
.filemanager{ color: #000; font-family: arial; font-size: 14px; margin-bottom: 20px; background-color: #fff; padding-bottom: 15px; } .filemanager .navbar { background-color: #fff; border: 0 none; margin: 0; padding: 10px 0 0; } .filemanager .form-control { color: #000; height: 30px; padding: 5px 10px; } .filemanager .tooltip { position: absolute; z-index: 1070; display: block; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 12px; font-weight: normal; line-height: 1.4; opacity: 0; filter: alpha(opacity=0); } .filemanager .tooltip.in { opacity: 0.9; filter: alpha(opacity=90); } .filemanager .tooltip.top { margin-top: -3px; padding: 5px 0; } .filemanager .tooltip.right { margin-left: 3px; padding: 0 5px; } .filemanager .tooltip.bottom { margin-top: 3px; padding: 5px 0; } .filemanager .tooltip.left { margin-left: -3px; padding: 0 5px; } .filemanager .tooltip-inner { max-width: 200px; padding: 3px 8px; color: #ffffff; text-align: center; text-decoration: none; background-color: #000000; border-radius: 4px; } .filemanager .tooltip-arrow { position: absolute; width: 0; height: 0; border-color: transparent; border-style: solid; } .filemanager .tooltip.top .tooltip-arrow { bottom: 0; left: 50%; margin-left: -5px; border-width: 5px 5px 0; border-top-color: #000000; } .filemanager .tooltip.top-left .tooltip-arrow { bottom: 0; right: 5px; margin-bottom: -5px; border-width: 5px 5px 0; border-top-color: #000000; } .filemanager .tooltip.top-right .tooltip-arrow { bottom: 0; left: 5px; margin-bottom: -5px; border-width: 5px 5px 0; border-top-color: #000000; } .filemanager .tooltip.right .tooltip-arrow { top: 50%; left: 0; margin-top: -5px; border-width: 5px 5px 5px 0; border-right-color: #000000; } .filemanager .tooltip.left .tooltip-arrow { top: 50%; right: 0; margin-top: -5px; border-width: 5px 0 5px 5px; border-left-color: #000000; } .filemanager .tooltip.bottom .tooltip-arrow { top: 0; left: 50%; margin-left: -5px; border-width: 0 5px 5px; border-bottom-color: #000000; } .filemanager .tooltip.bottom-left .tooltip-arrow { top: 0; right: 5px; margin-top: -5px; border-width: 0 5px 5px; border-bottom-color: #000000; } .filemanager .tooltip.bottom-right .tooltip-arrow { top: 0; left: 5px; margin-top: -5px; border-width: 0 5px 5px; border-bottom-color: #000000; } .filemanager.fixed-top > .navbar{ left: 0; margin-top: 0; padding-top: 10px; position: fixed; right: 0; z-index: 1030; top: 0; } .filemanager.fixed-top > .container-fluid{ margin-top: 92px; } .filemanager .list .item { background-color: #fff; box-shadow: 0 0 1px #666; padding: 0; text-align: center; width: 120px; cursor: pointer; position: relative; } .filemanager .list .item:hover { box-shadow: 0 0 2px #000; } .filemanager .list .item.active { box-shadow: 0 0 3px #1085E5; } .filemanager .list .item .check { display: none; } .filemanager .list .item:hover .check, .filemanager .list .item.active:hover .check{ display: block; } .filemanager .list .item.active .check{ display: block; background-color: #337ab7; opacity: 1; } .filemanager .list .item.active .check input{ outline: medium none; } .filemanager .list .item img { height: 90px; margin: 0 auto; max-height: 120px; max-width: 120px; width: 120px; } .filemanager .list .item .image { background-color: #fff; display: block; height: 90px; margin: 0; max-height: 120px; max-width: 120px; padding-top: 0; width: 120px; } .filemanager .list .item .image .content_icon { display: inline-block; height: 90px; vertical-align: middle; width: 120px; } .filemanager .list .item .image span { font-size: 80px; line-height: 80px; margin-top: 4px; } #preview_file { text-align: center; } #preview_file span { color: #337ab7; font-size: 150px; } .filemanager .list .item .col { background-color: #efefef; font-size: 13px; line-height: 13px; padding: 10px; } .filemanager .list .item .col h3{ font-size: 13px; margin: 0; overflow: hidden; padding: 0; text-overflow: ellipsis; white-space: nowrap; line-height: 15px; } .filemanager .list .scroll { /*max-height: 600px;*/ min-height: 1px; /*overflow-y: auto;*/ } .filemanager #list { list-style: outside none none; margin: 0; padding: 0; } .filemanager #list li { float: left; padding: 5px; } .filemanager #content_list.view_detalles li { margin: 0; padding: 0; width: 100%; } .filemanager #content_list.view_detalles .item .image { background-color: #efefef; display: block; height: auto; left: 35px; position: absolute; top: 0; width: 40px; z-index: 1; } .filemanager #content_list.view_detalles .item img { height: 35px; width: 40px; } .filemanager #content_list.view_detalles .item { border-bottom: 1px solid #999; box-shadow: none; text-align: left; position: relative; width: 100%; } .filemanager #content_list.view_detalles li:nth-child(2n) .col{ background-color: #F4F4F4; } .filemanager #content_list.view_detalles .back .item .col,.filemanager #content_list.view_detalles .back .item .image{ background-color: #d6d6d6; } .filemanager #content_list.view_detalles li:hover .col,.filemanager #content_list.view_detalles li:hover .image, .filemanager #content_list.view_detalles li.back:hover .item .col, .filemanager #content_list.view_detalles li.back:hover .item .image{ background-color: #fff; } .filemanager #content_list.view_detalles .item .image .content_icon { display: inline-block; height: 35px; vertical-align: middle; width: 40px; } .filemanager #content_list.view_detalles .item .image span { display: block; font-size: 22px; line-height: 34px; margin: 0 auto; text-align: center; } .filemanager #content_list.view_detalles .item .col { padding: 0 10px; text-align: left; } .filemanager #content_list.view_detalles .item .actions .open > .dropdown-menu { left: auto; right: 0; } .filemanager #list .item .type, .filemanager #list .item .size, .filemanager #list .item .date, .filemanager #list .item .actions { display: none; } .filemanager #content_list.view_detalles .item .type, .filemanager #content_list.view_detalles .item .size, .filemanager #content_list.view_detalles .item .date, .filemanager #content_list.view_detalles .item .actions { display: block; line-height: 30px; margin-top: 2px; position: absolute; right: 0; top: 0; } .filemanager #content_list.view_detalles .item .name { display: block; padding-left: 100px; padding-right: 330px; position: relative; } .filemanager #content_list.view_detalles .item .name h3{ font-size: 14px; height: 100%; line-height: 35px; margin: 0; overflow: hidden; padding: 0; text-overflow: ellipsis; white-space: nowrap; height: 36px; } .filemanager #content_list.view_detalles .item .type { right: 250px; width: 70px; } .filemanager #content_list.view_detalles .item .size { right: 160px; width: 90px; } .filemanager #content_list.view_detalles .item .date { right: 70px; width: 90px; } .filemanager #content_list.view_detalles .item .actions { width: 70px; } .filemanager #content_list.view_detalles .item .check { display: block; height: 35px; left: 0px; position: absolute; width: 35px; background-color: transparent; } .filemanager #content_list.view_detalles .item.active .check { background-color: #337ab7; } .filemanager #content_list.view_detalles .item .check label { display: block; height: 35px; margin: 0; padding: 0; width: 35px; } .filemanager #content_list.view_detalles .item .check label input{ margin: 11px 10px 10px; } .filemanager #loading { background-image: url("../images/loading.gif"); background-position: center center; background-repeat: no-repeat; min-height: 200px; width: 100%; } .filemanager .btn-toolbar { margin-top: 10px; } .filemanager .btn-toolbar, .filemanager .breadcrumb { margin-bottom: 10px; margin-top: 10px; } #actions { margin: 10px 0 0; } div.table { display: table; } div.table .file-row { display: table-row; } div.table .file-row > div { border-top: 1px solid #ddd; display: table-cell; padding: 8px; vertical-align: top; } div.table .file-row:nth-child(2n+1) { background: #f9f9f9 none repeat scroll 0 0; } #total-progress { opacity: 0; transition: opacity 0.3s linear 0s; } #previews .file-row.dz-success .progress { opacity: 0; transition: opacity 0.3s linear 0s; } #previews .file-row .delete { display: none; } #previews .file-row.dz-success .start, #previews .file-row.dz-success .cancel { display: none; } #previews .file-row.dz-success .delete { display: block; } .col_top_right > div { float: right; } .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus { background-color: #428bca; color: #fff; text-decoration: none; } #content_list #row_header_content { display: none; } #content_list.view_detalles #row_header_content { display: block; } .view_detalles #row_header_content .row_header { background-color: #DDDDDD; border-bottom: 1px solid #999; display: table; font-family: tahoma; font-size: 13px; margin: 0; width: 100%; } .view_detalles #row_header_content .col { display: table-cell; padding: 5px 10px; white-space: nowrap; } .view_detalles #row_header_content .name { padding-left: 50px; } .view_detalles #row_header_content .type { width: 70px; } .view_detalles #row_header_content .size { width: 90px; } .view_detalles #row_header_content .date { width: 90px; } .view_detalles #row_header_content .actions { width: 70px; } .fancybox-title.fancybox-title-inside-wrap h3{ margin: 0; font-size: 16px; } .fancybox-title.fancybox-title-inside-wrap p{ margin: 0; } .menu_contextual li a{ padding-left: 15px; } .menu_contextual li a:before{ font-family: "Glyphicons Halflings"; padding: 0 5px; } .menu_contextual li.view a:before{ content: "\e105"; } .menu_contextual li.move a:before{ content: "\e068"; } .menu_contextual li.rename a:before{ content: "\e065"; } .menu_contextual li.download a:before{ content: "\e025"; } .menu_contextual li.delete a:before{ content: "\e014"; } .col_top_right > .btn-group{ width: 220px; } .col_top_right > .btn-group > .grupo1{ width: 181px; } .col_top_right > .btn-group > .grupo2{ width: 40px; } .check{ width: 30px; height: 30px; position: absolute; top: 0px; right: 0px; background-color: rgb(102, 102, 102); opacity: 0.6; z-index: 10; } .check label{ display: block; height: 30px; margin: 0; padding: 0; width: 30px; text-align: center; } .check label input{ margin: 8px 8px 8px 9px; display: inline-block; } .filemanager .navbar .btn-sm, .btn-group-sm > .btn { margin: 0 2px; } .filemanager .modal-body #actions .btn{ margin: 0 2px; } .filemanager .filename_delete > span{ margin-left: 3px; } .filemanager .filename_delete > span > span{ margin-right: 5px; } img.lazy { background-image: url("../images/loading.gif"); background-position: center center; background-repeat: no-repeat; }
src/css/main.css
.filemanager{ color: #000; font-family: arial; font-size: 14px; margin-bottom: 20px; background-color: #fff; padding-bottom: 15px; } .filemanager .navbar { background-color: #fff; border: 0 none; margin: 0; padding: 10px 0 0; } .filemanager .form-control { color: #000; height: 30px; padding: 5px 10px; } .filemanager .tooltip { position: absolute; z-index: 1070; display: block; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 12px; font-weight: normal; line-height: 1.4; opacity: 0; filter: alpha(opacity=0); } .filemanager .tooltip.in { opacity: 0.9; filter: alpha(opacity=90); } .filemanager .tooltip.top { margin-top: -3px; padding: 5px 0; } .filemanager .tooltip.right { margin-left: 3px; padding: 0 5px; } .filemanager .tooltip.bottom { margin-top: 3px; padding: 5px 0; } .filemanager .tooltip.left { margin-left: -3px; padding: 0 5px; } .filemanager .tooltip-inner { max-width: 200px; padding: 3px 8px; color: #ffffff; text-align: center; text-decoration: none; background-color: #000000; border-radius: 4px; } .filemanager .tooltip-arrow { position: absolute; width: 0; height: 0; border-color: transparent; border-style: solid; } .filemanager .tooltip.top .tooltip-arrow { bottom: 0; left: 50%; margin-left: -5px; border-width: 5px 5px 0; border-top-color: #000000; } .filemanager .tooltip.top-left .tooltip-arrow { bottom: 0; right: 5px; margin-bottom: -5px; border-width: 5px 5px 0; border-top-color: #000000; } .filemanager .tooltip.top-right .tooltip-arrow { bottom: 0; left: 5px; margin-bottom: -5px; border-width: 5px 5px 0; border-top-color: #000000; } .filemanager .tooltip.right .tooltip-arrow { top: 50%; left: 0; margin-top: -5px; border-width: 5px 5px 5px 0; border-right-color: #000000; } .filemanager .tooltip.left .tooltip-arrow { top: 50%; right: 0; margin-top: -5px; border-width: 5px 0 5px 5px; border-left-color: #000000; } .filemanager .tooltip.bottom .tooltip-arrow { top: 0; left: 50%; margin-left: -5px; border-width: 0 5px 5px; border-bottom-color: #000000; } .filemanager .tooltip.bottom-left .tooltip-arrow { top: 0; right: 5px; margin-top: -5px; border-width: 0 5px 5px; border-bottom-color: #000000; } .filemanager .tooltip.bottom-right .tooltip-arrow { top: 0; left: 5px; margin-top: -5px; border-width: 0 5px 5px; border-bottom-color: #000000; } .filemanager.fixed-top > .navbar{ left: 0; margin-top: 0; padding-top: 10px; position: fixed; right: 0; z-index: 1030; top: 0; } .filemanager.fixed-top > .container-fluid{ margin-top: 92px; } .filemanager .list .item { background-color: #fff; box-shadow: 0 0 1px #666; padding: 0; text-align: center; width: 120px; cursor: pointer; position: relative; } .filemanager .list .item:hover { box-shadow: 0 0 2px #000; } .filemanager .list .item.active { box-shadow: 0 0 3px #1085E5; } .filemanager .list .item .check { display: none; } .filemanager .list .item:hover .check, .filemanager .list .item.active:hover .check{ display: block; } .filemanager .list .item.active .check{ display: block; background-color: #337ab7; opacity: 1; } .filemanager .list .item.active .check input{ outline: medium none; } .filemanager .list .item img { height: 90px; margin: 0 auto; max-height: 120px; max-width: 120px; width: 120px; } .filemanager .list .item .image { background-color: #fff; display: block; height: 90px; margin: 0; max-height: 120px; max-width: 120px; padding-top: 0; width: 120px; } .filemanager .list .item .image .content_icon { display: inline-block; height: 90px; vertical-align: middle; width: 120px; } .filemanager .list .item .image span { font-size: 80px; line-height: 80px; margin-top: 4px; } #preview_file { text-align: center; } #preview_file span { color: #337ab7; font-size: 150px; } .filemanager .list .item .col { background-color: #efefef; font-size: 13px; line-height: 13px; padding: 10px; } .filemanager .list .item .col h3{ font-size: 13px; margin: 0; overflow: hidden; padding: 0; text-overflow: ellipsis; white-space: nowrap; line-height: 15px; } .filemanager .list .scroll { /*max-height: 600px;*/ min-height: 1px; /*overflow-y: auto;*/ } .filemanager #list { list-style: outside none none; margin: 0; padding: 0; } .filemanager #list li { float: left; padding: 5px; } .filemanager #content_list.view_detalles li { margin: 0; padding: 0; width: 100%; } .filemanager #content_list.view_detalles .item .image { background-color: #efefef; display: block; height: auto; left: 35px; position: absolute; top: 0; width: 40px; z-index: 1; } .filemanager #content_list.view_detalles .item img { height: 35px; width: 40px; } .filemanager #content_list.view_detalles .item { border-bottom: 1px solid #999; box-shadow: none; text-align: left; position: relative; width: 100%; } .filemanager #content_list.view_detalles li:nth-child(2n) .col{ background-color: #F4F4F4; } .filemanager #content_list.view_detalles .back .item .col,.filemanager #content_list.view_detalles .back .item .image{ background-color: #d6d6d6; } .filemanager #content_list.view_detalles li:hover .col,.filemanager #content_list.view_detalles li:hover .image, .filemanager #content_list.view_detalles li.back:hover .item .col, .filemanager #content_list.view_detalles li.back:hover .item .image{ background-color: #fff; } .filemanager #content_list.view_detalles .item .image .content_icon { display: inline-block; height: 35px; vertical-align: middle; width: 40px; } .filemanager #content_list.view_detalles .item .image span { display: block; font-size: 22px; line-height: 34px; margin: 0 auto; text-align: center; } .filemanager #content_list.view_detalles .item .col { padding: 0 10px; text-align: left; } .filemanager #content_list.view_detalles .item .actions .open > .dropdown-menu { left: auto; right: 0; } .filemanager #list .item .type, .filemanager #list .item .size, .filemanager #list .item .date, .filemanager #list .item .actions { display: none; } .filemanager #content_list.view_detalles .item .type, .filemanager #content_list.view_detalles .item .size, .filemanager #content_list.view_detalles .item .date, .filemanager #content_list.view_detalles .item .actions { display: block; line-height: 30px; margin-top: 2px; position: absolute; right: 0; top: 0; } .filemanager #content_list.view_detalles .item .name { display: block; padding-left: 100px; padding-right: 330px; position: relative; } .filemanager #content_list.view_detalles .item .name h3{ font-size: 14px; height: 100%; line-height: 35px; margin: 0; overflow: hidden; padding: 0; text-overflow: ellipsis; white-space: nowrap; height: 36px; } .filemanager #content_list.view_detalles .item .type { right: 250px; width: 70px; } .filemanager #content_list.view_detalles .item .size { right: 160px; width: 90px; } .filemanager #content_list.view_detalles .item .date { right: 70px; width: 90px; } .filemanager #content_list.view_detalles .item .actions { width: 70px; } .filemanager #content_list.view_detalles .item .check { display: block; height: 35px; left: 0px; position: absolute; width: 35px; background-color: transparent; } .filemanager #content_list.view_detalles .item.active .check { background-color: #337ab7; } .filemanager #content_list.view_detalles .item .check label { display: block; height: 35px; margin: 0; padding: 0; width: 35px; } .filemanager #content_list.view_detalles .item .check label input{ margin: 11px 10px 10px; } .filemanager #loading { background-image: url("../images/loading.gif"); background-position: center center; background-repeat: no-repeat; min-height: 200px; width: 100%; } .filemanager .btn-toolbar { margin-top: 10px; } .filemanager .btn-toolbar, .filemanager .breadcrumb { margin-bottom: 10px; margin-top: 10px; } #actions { margin: 10px 0 0; } div.table { display: table; } div.table .file-row { display: table-row; } div.table .file-row > div { border-top: 1px solid #ddd; display: table-cell; padding: 8px; vertical-align: top; } div.table .file-row:nth-child(2n+1) { background: #f9f9f9 none repeat scroll 0 0; } #total-progress { opacity: 0; transition: opacity 0.3s linear 0s; } #previews .file-row.dz-success .progress { opacity: 0; transition: opacity 0.3s linear 0s; } #previews .file-row .delete { display: none; } #previews .file-row.dz-success .start, #previews .file-row.dz-success .cancel { display: none; } #previews .file-row.dz-success .delete { display: block; } .col_top_right > div { float: right; } .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus { background-color: #428bca; color: #fff; text-decoration: none; } #content_list #row_header_content { display: none; } #content_list.view_detalles #row_header_content { display: block; } .view_detalles #row_header_content .row_header { background-color: #DDDDDD; border-bottom: 1px solid #999; display: table; font-family: tahoma; font-size: 13px; margin: 0; width: 100%; } .view_detalles #row_header_content .col { display: table-cell; padding: 5px 10px; white-space: nowrap; } .view_detalles #row_header_content .name { padding-left: 50px; } .view_detalles #row_header_content .type { width: 70px; } .view_detalles #row_header_content .size { width: 90px; } .view_detalles #row_header_content .date { width: 90px; } .view_detalles #row_header_content .actions { width: 70px; } .fancybox-title.fancybox-title-inside-wrap h3{ margin: 0; font-size: 16px; } .fancybox-title.fancybox-title-inside-wrap p{ margin: 0; } .menu_contextual li a{ padding-left: 15px; } .menu_contextual li a:before{ font-family: "Glyphicons Halflings"; padding: 0 5px; } .menu_contextual li.view a:before{ content: "\e105"; } .menu_contextual li.move a:before{ content: "\e068"; } .menu_contextual li.rename a:before{ content: "\e065"; } .menu_contextual li.download a:before{ content: "\e025"; } .menu_contextual li.delete a:before{ content: "\e014"; } .col_top_right > .btn-group{ width: 220px; } .col_top_right > .btn-group > .grupo1{ width: 181px; } .col_top_right > .btn-group > .grupo2{ width: 40px; } .check{ width: 30px; height: 30px; position: absolute; top: 0px; right: 0px; background-color: rgb(102, 102, 102); opacity: 0.6; z-index: 10; } .check label{ display: block; height: 30px; margin: 0; padding: 0; width: 30px; text-align: center; } .check label input{ margin: 8px 8px 8px 9px; display: inline-block; } .filemanager .navbar .btn-sm, .btn-group-sm > .btn { margin: 0 2px; } .filemanager .modal-body #actions .btn{ margin: 0 2px; } .filemanager .filename_delete > span{ margin-left: 3px; } .filemanager .filename_delete > span > span{ margin-right: 5px; } img.lazy { background-image: url("../images/loading.gif"); background-position: center center; background-repeat: no-repeat; }
0.311741
0.043978
.logo { color: #ff5722; font-size: 2rem; display: -webkit-box; display: -ms-flexbox; display: -webkit-flex; display: flex; } .post { display: -webkit-box; display: -ms-flexbox; display: -webkit-flex; display: flex; } .post { margin-bottom: 1rem; } h1 { font-size: 2rem; margin-top: 0; margin-bottom: 1rem; } .post-title h1, .post-title h2 { font-size: 2rem; font-weight: normal; margin-top: 0; margin-bottom: 0.4rem; } .post-title a { color: #333; font-weight: normal; } .post-line-2, .post-line-2 a { color: gray; } .post-line-2 { margin-bottom: 0.4rem; } .vote-control { display: -webkit-box; display: -ms-flexbox; display: -webkit-flex; display: flex; flex-direction: column; -webkit-flex-direction: column; -ms-flex-direction: column; justify-content: flex-start; -webkit-justify-content: flex-start; -ms-flex-justify-content: flex-start; text-align: center; margin-top: 3px; margin-right: 15px; } .vote-button { padding: 0; background-color: #fff; width: 0; height: 0; border-left: 10px solid transparent; border-right: 10px solid transparent; cursor: pointer; cursor: hand; } .vote-button:focus { outline: 0; } .upvote { border-top: 0px; border-bottom: 15px solid #DDDDDD; margin-bottom: 10px; } .downvote { border-top: 15px solid #DDDDDD; border-bottom: 0px; } .upvote[data-state="disabled"], .downvote[data-state="disabled"] { cursor: not-allowed; } .upvote[data-state="voted"] { border-top: 0px; border-bottom: 15px solid #ff5722; } .downvote[data-state="voted"] { border-top: 15px solid #ff5722; border-bottom: 0px; } .comments { margin-top: 1rem; } .comment { display: -webkit-box; display: -ms-flexbox; display: -webkit-flex; display: flex; margin-bottom: 5px; } .indent-1 {} .indent-2 { margin-left: 40px; } .indent-3 { margin-left: 80px; } .indent-4 { margin-left: 120px; } .indent-5 { margin-left: 160px; } .indent-6 { margin-left: 200px; } .comment-text { margin-bottom: 5px; min-height: 40px; } .comment-header, .comment-header a { color: gray; } .post-text, .comment-text { background-color: #ffefeb; border: 1px solid #ffccbd; border-radius: 4px; box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05); padding-left: 8px; padding-right: 8px; } .post-text { margin-bottom: 15px; } .comment-text h1, .post-text h1 { font-size: 20px; } .comment-text h2, .post-text h2 { font-size: 17px; } .post-text h3, .post-text h4, .post-text h5, .post-text h6, .comment-text h3, .comment-text h4, .comment-text h5, .comment-text h6 { font-size: 14px; font-weight: normal; } .codehilite .hll { background-color: #ffffcc } .codehilite .c { color: #999988; font-style: italic } /* Comment */ .codehilite .err { color: #a61717; background-color: #e3d2d2 } /* Error */ .codehilite .k { color: #000000; font-weight: bold } /* Keyword */ .codehilite .o { color: #000000; font-weight: bold } /* Operator */ .codehilite .cm { color: #999988; font-style: italic } /* Comment.Multiline */ .codehilite .cp { color: #999999; font-weight: bold; font-style: italic } /* Comment.Preproc */ .codehilite .c1 { color: #999988; font-style: italic } /* Comment.Single */ .codehilite .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */ .codehilite .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */ .codehilite .ge { color: #000000; font-style: italic } /* Generic.Emph */ .codehilite .gr { color: #aa0000 } /* Generic.Error */ .codehilite .gh { color: #999999 } /* Generic.Heading */ .codehilite .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */ .codehilite .go { color: #888888 } /* Generic.Output */ .codehilite .gp { color: #555555 } /* Generic.Prompt */ .codehilite .gs { font-weight: bold } /* Generic.Strong */ .codehilite .gu { color: #aaaaaa } /* Generic.Subheading */ .codehilite .gt { color: #aa0000 } /* Generic.Traceback */ .codehilite .kc { color: #000000; font-weight: bold } /* Keyword.Constant */ .codehilite .kd { color: #000000; font-weight: bold } /* Keyword.Declaration */ .codehilite .kn { color: #000000; font-weight: bold } /* Keyword.Namespace */ .codehilite .kp { color: #000000; font-weight: bold } /* Keyword.Pseudo */ .codehilite .kr { color: #000000; font-weight: bold } /* Keyword.Reserved */ .codehilite .kt { color: #445588; font-weight: bold } /* Keyword.Type */ .codehilite .m { color: #009999 } /* Literal.Number */ .codehilite .s { color: #d01040 } /* Literal.String */ .codehilite .na { color: #008080 } /* Name.Attribute */ .codehilite .nb { color: #0086B3 } /* Name.Builtin */ .codehilite .nc { color: #445588; font-weight: bold } /* Name.Class */ .codehilite .no { color: #008080 } /* Name.Constant */ .codehilite .nd { color: #3c5d5d; font-weight: bold } /* Name.Decorator */ .codehilite .ni { color: #800080 } /* Name.Entity */ .codehilite .ne { color: #990000; font-weight: bold } /* Name.Exception */ .codehilite .nf { color: #990000; font-weight: bold } /* Name.Function */ .codehilite .nl { color: #990000; font-weight: bold } /* Name.Label */ .codehilite .nn { color: #555555 } /* Name.Namespace */ .codehilite .nt { color: #000080 } /* Name.Tag */ .codehilite .nv { color: #008080 } /* Name.Variable */ .codehilite .ow { color: #000000; font-weight: bold } /* Operator.Word */ .codehilite .w { color: #bbbbbb } /* Text.Whitespace */ .codehilite .mf { color: #009999 } /* Literal.Number.Float */ .codehilite .mh { color: #009999 } /* Literal.Number.Hex */ .codehilite .mi { color: #009999 } /* Literal.Number.Integer */ .codehilite .mo { color: #009999 } /* Literal.Number.Oct */ .codehilite .sb { color: #d01040 } /* Literal.String.Backtick */ .codehilite .sc { color: #d01040 } /* Literal.String.Char */ .codehilite .sd { color: #d01040 } /* Literal.String.Doc */ .codehilite .s2 { color: #d01040 } /* Literal.String.Double */ .codehilite .se { color: #d01040 } /* Literal.String.Escape */ .codehilite .sh { color: #d01040 } /* Literal.String.Heredoc */ .codehilite .si { color: #d01040 } /* Literal.String.Interpol */ .codehilite .sx { color: #d01040 } /* Literal.String.Other */ .codehilite .sr { color: #009926 } /* Literal.String.Regex */ .codehilite .s1 { color: #d01040 } /* Literal.String.Single */ .codehilite .ss { color: #990073 } /* Literal.String.Symbol */ .codehilite .bp { color: #999999 } /* Name.Builtin.Pseudo */ .codehilite .vc { color: #008080 } /* Name.Variable.Class */ .codehilite .vg { color: #008080 } /* Name.Variable.Global */ .codehilite .vi { color: #008080 } /* Name.Variable.Instance */ .codehilite .il { color: #009999 } /* Literal.Number.Integer.Long */
static/sitefiles/css/main.css
.logo { color: #ff5722; font-size: 2rem; display: -webkit-box; display: -ms-flexbox; display: -webkit-flex; display: flex; } .post { display: -webkit-box; display: -ms-flexbox; display: -webkit-flex; display: flex; } .post { margin-bottom: 1rem; } h1 { font-size: 2rem; margin-top: 0; margin-bottom: 1rem; } .post-title h1, .post-title h2 { font-size: 2rem; font-weight: normal; margin-top: 0; margin-bottom: 0.4rem; } .post-title a { color: #333; font-weight: normal; } .post-line-2, .post-line-2 a { color: gray; } .post-line-2 { margin-bottom: 0.4rem; } .vote-control { display: -webkit-box; display: -ms-flexbox; display: -webkit-flex; display: flex; flex-direction: column; -webkit-flex-direction: column; -ms-flex-direction: column; justify-content: flex-start; -webkit-justify-content: flex-start; -ms-flex-justify-content: flex-start; text-align: center; margin-top: 3px; margin-right: 15px; } .vote-button { padding: 0; background-color: #fff; width: 0; height: 0; border-left: 10px solid transparent; border-right: 10px solid transparent; cursor: pointer; cursor: hand; } .vote-button:focus { outline: 0; } .upvote { border-top: 0px; border-bottom: 15px solid #DDDDDD; margin-bottom: 10px; } .downvote { border-top: 15px solid #DDDDDD; border-bottom: 0px; } .upvote[data-state="disabled"], .downvote[data-state="disabled"] { cursor: not-allowed; } .upvote[data-state="voted"] { border-top: 0px; border-bottom: 15px solid #ff5722; } .downvote[data-state="voted"] { border-top: 15px solid #ff5722; border-bottom: 0px; } .comments { margin-top: 1rem; } .comment { display: -webkit-box; display: -ms-flexbox; display: -webkit-flex; display: flex; margin-bottom: 5px; } .indent-1 {} .indent-2 { margin-left: 40px; } .indent-3 { margin-left: 80px; } .indent-4 { margin-left: 120px; } .indent-5 { margin-left: 160px; } .indent-6 { margin-left: 200px; } .comment-text { margin-bottom: 5px; min-height: 40px; } .comment-header, .comment-header a { color: gray; } .post-text, .comment-text { background-color: #ffefeb; border: 1px solid #ffccbd; border-radius: 4px; box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05); padding-left: 8px; padding-right: 8px; } .post-text { margin-bottom: 15px; } .comment-text h1, .post-text h1 { font-size: 20px; } .comment-text h2, .post-text h2 { font-size: 17px; } .post-text h3, .post-text h4, .post-text h5, .post-text h6, .comment-text h3, .comment-text h4, .comment-text h5, .comment-text h6 { font-size: 14px; font-weight: normal; } .codehilite .hll { background-color: #ffffcc } .codehilite .c { color: #999988; font-style: italic } /* Comment */ .codehilite .err { color: #a61717; background-color: #e3d2d2 } /* Error */ .codehilite .k { color: #000000; font-weight: bold } /* Keyword */ .codehilite .o { color: #000000; font-weight: bold } /* Operator */ .codehilite .cm { color: #999988; font-style: italic } /* Comment.Multiline */ .codehilite .cp { color: #999999; font-weight: bold; font-style: italic } /* Comment.Preproc */ .codehilite .c1 { color: #999988; font-style: italic } /* Comment.Single */ .codehilite .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */ .codehilite .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */ .codehilite .ge { color: #000000; font-style: italic } /* Generic.Emph */ .codehilite .gr { color: #aa0000 } /* Generic.Error */ .codehilite .gh { color: #999999 } /* Generic.Heading */ .codehilite .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */ .codehilite .go { color: #888888 } /* Generic.Output */ .codehilite .gp { color: #555555 } /* Generic.Prompt */ .codehilite .gs { font-weight: bold } /* Generic.Strong */ .codehilite .gu { color: #aaaaaa } /* Generic.Subheading */ .codehilite .gt { color: #aa0000 } /* Generic.Traceback */ .codehilite .kc { color: #000000; font-weight: bold } /* Keyword.Constant */ .codehilite .kd { color: #000000; font-weight: bold } /* Keyword.Declaration */ .codehilite .kn { color: #000000; font-weight: bold } /* Keyword.Namespace */ .codehilite .kp { color: #000000; font-weight: bold } /* Keyword.Pseudo */ .codehilite .kr { color: #000000; font-weight: bold } /* Keyword.Reserved */ .codehilite .kt { color: #445588; font-weight: bold } /* Keyword.Type */ .codehilite .m { color: #009999 } /* Literal.Number */ .codehilite .s { color: #d01040 } /* Literal.String */ .codehilite .na { color: #008080 } /* Name.Attribute */ .codehilite .nb { color: #0086B3 } /* Name.Builtin */ .codehilite .nc { color: #445588; font-weight: bold } /* Name.Class */ .codehilite .no { color: #008080 } /* Name.Constant */ .codehilite .nd { color: #3c5d5d; font-weight: bold } /* Name.Decorator */ .codehilite .ni { color: #800080 } /* Name.Entity */ .codehilite .ne { color: #990000; font-weight: bold } /* Name.Exception */ .codehilite .nf { color: #990000; font-weight: bold } /* Name.Function */ .codehilite .nl { color: #990000; font-weight: bold } /* Name.Label */ .codehilite .nn { color: #555555 } /* Name.Namespace */ .codehilite .nt { color: #000080 } /* Name.Tag */ .codehilite .nv { color: #008080 } /* Name.Variable */ .codehilite .ow { color: #000000; font-weight: bold } /* Operator.Word */ .codehilite .w { color: #bbbbbb } /* Text.Whitespace */ .codehilite .mf { color: #009999 } /* Literal.Number.Float */ .codehilite .mh { color: #009999 } /* Literal.Number.Hex */ .codehilite .mi { color: #009999 } /* Literal.Number.Integer */ .codehilite .mo { color: #009999 } /* Literal.Number.Oct */ .codehilite .sb { color: #d01040 } /* Literal.String.Backtick */ .codehilite .sc { color: #d01040 } /* Literal.String.Char */ .codehilite .sd { color: #d01040 } /* Literal.String.Doc */ .codehilite .s2 { color: #d01040 } /* Literal.String.Double */ .codehilite .se { color: #d01040 } /* Literal.String.Escape */ .codehilite .sh { color: #d01040 } /* Literal.String.Heredoc */ .codehilite .si { color: #d01040 } /* Literal.String.Interpol */ .codehilite .sx { color: #d01040 } /* Literal.String.Other */ .codehilite .sr { color: #009926 } /* Literal.String.Regex */ .codehilite .s1 { color: #d01040 } /* Literal.String.Single */ .codehilite .ss { color: #990073 } /* Literal.String.Symbol */ .codehilite .bp { color: #999999 } /* Name.Builtin.Pseudo */ .codehilite .vc { color: #008080 } /* Name.Variable.Class */ .codehilite .vg { color: #008080 } /* Name.Variable.Global */ .codehilite .vi { color: #008080 } /* Name.Variable.Instance */ .codehilite .il { color: #009999 } /* Literal.Number.Integer.Long */
0.40439
0.136983
body { font-size: 1em; } h2, h3, h4, h5, h6 { text-decoration: underline; } fieldset { margin: 0 0.7em 0.7em 0; } legend { padding: 5px 10px; font-weight: bold; font-size: 1.1em; } table { margin: 0 auto; width: 95%; border: 1px solid var(--vscode-dropdown-border); } table>tbody>tr:nth-child(odd) { background: var(--vscode-input-background); color: var(--vscode-input-foreground); } .main-container { margin: 1em 1.5em; padding: 0; box-sizing: border-box; } .tab { border-bottom: 1px solid var(--vscode-dropdown-border); display: flex; padding: 0; } .tab__item { list-style: none; cursor: pointer; padding: 8px 12px; color: var(--vscode-foreground); border-bottom: 1px solid transparent; margin: 0 0 -1px 0; } .tab__item:hover { color: var(--vscode-panelTitle-activeForeground); } .tab__item--active { font-size: 1em; color: var(--vscode-panelTitle-activeForeground); border-bottom-color: var(--vscode-panelTitle-activeForeground); } .tab__content, .field-container, .crmsvcutil-row, .field, .panel_error, .panel_info { animation: fadeEffect 1s; /* Fading effect takes 1 second */ } /* Go from zero to full opacity */ @keyframes fadeEffect { from { opacity: 0; } to { opacity: 1; } } .grid--two-left-panel { display: grid; grid-template-columns: 39% 10% auto; } .grid--left-panel { display: grid; grid-template-columns: 35% auto; } .grid--left-panel-large { display: grid; grid-template-columns: 50% 50%; } .grid--right-panel { display: grid; grid-template-columns: auto 35%; } .button--panel { position: relative; height: 100%; } .button--panel button { margin: 0; position: absolute; top: 50%; left: 50%; margin-right: -50%; transform: translate(-50%, -50%); } .field { padding: 0.5em 0; } .field--buttons { padding: 0.5em 0 !important; text-align: right; } .field--buttons button, .field--buttons input[type="submit"] { margin-right: 10px; } .field--checkbox { display: flex; justify-content: flex-start; flex-direction: row; align-items: center; } .field__label { display: block; margin: 2px 0; font-weight: bold; cursor: pointer; } .field--checkbox .field__label { margin: 2px 14px 2px 4px; } .field__input { background: var(--vscode-input-background); border: 1px solid var(--vscode-dropdown-border); color: var(--vscode-input-foreground); padding: 4px; margin: 2px 0; } .field__input:focus { border-color: var(--vscode-focusBorder); outline: 0; } .field__input--wide { width: 70%; min-width: 300px; } .button { width: auto; padding: 8px 14px; border: 0; display: inline-block; cursor: pointer; } .button:hover { background-color: var(--vscode-button-hoverBackground); } .button--danger { color: var(--vscode-button-foreground); background-color: var(--vscode-inputValidation-errorBackground); border: 1px solid var(--vscode-contrastBorder); } .button--danger:hover { background-color: var(--vscode-inputValidation-errorBorder); } .button--primary { color: var(--vscode-button-foreground); background-color: var(--vscode-button-background); border: 1px solid var(--vscode-contrastBorder); } .button--active { background-color: var(--vscode-button-hoverBackground) } .panel_error { margin: 0 7px 10px 5px; padding: 0 10px 10px 10px; border-left-width: 5px; border-left-style: solid; background: var(--vscode-textBlockQuote-background); border-color: var(--vscode-inputValidation-errorBorder); } .panel_info { margin: 0 7px 10px 5px; padding: 0 10px 10px 10px; border-left-width: 5px; border-left-style: solid; background: var(--vscode-textBlockQuote-background); border-color: var(--vscode-inputValidation-infoBorder); } .panel__text { line-height: 1.5em; } .branding { border: none; border-width: 0; float: right; } .mb-10 { margin-bottom: 10px; } .autocomplete { /*the container must be positioned relative:*/ width: 100%; position: relative; display: inline-block; } .autocomplete-items { position: absolute; border: 1px solid var(--vscode-dropdown-border); border-bottom: none; border-top: none; z-index: 99; /*position the autocomplete items to be the same width as the container:*/ top: 100%; left: 0; right: 0; max-height: 350px; overflow: hidden; overflow-y: scroll; } .autocomplete-items button { width: 100%; text-align: left; }
resources/styles/webviewStyles.css
body { font-size: 1em; } h2, h3, h4, h5, h6 { text-decoration: underline; } fieldset { margin: 0 0.7em 0.7em 0; } legend { padding: 5px 10px; font-weight: bold; font-size: 1.1em; } table { margin: 0 auto; width: 95%; border: 1px solid var(--vscode-dropdown-border); } table>tbody>tr:nth-child(odd) { background: var(--vscode-input-background); color: var(--vscode-input-foreground); } .main-container { margin: 1em 1.5em; padding: 0; box-sizing: border-box; } .tab { border-bottom: 1px solid var(--vscode-dropdown-border); display: flex; padding: 0; } .tab__item { list-style: none; cursor: pointer; padding: 8px 12px; color: var(--vscode-foreground); border-bottom: 1px solid transparent; margin: 0 0 -1px 0; } .tab__item:hover { color: var(--vscode-panelTitle-activeForeground); } .tab__item--active { font-size: 1em; color: var(--vscode-panelTitle-activeForeground); border-bottom-color: var(--vscode-panelTitle-activeForeground); } .tab__content, .field-container, .crmsvcutil-row, .field, .panel_error, .panel_info { animation: fadeEffect 1s; /* Fading effect takes 1 second */ } /* Go from zero to full opacity */ @keyframes fadeEffect { from { opacity: 0; } to { opacity: 1; } } .grid--two-left-panel { display: grid; grid-template-columns: 39% 10% auto; } .grid--left-panel { display: grid; grid-template-columns: 35% auto; } .grid--left-panel-large { display: grid; grid-template-columns: 50% 50%; } .grid--right-panel { display: grid; grid-template-columns: auto 35%; } .button--panel { position: relative; height: 100%; } .button--panel button { margin: 0; position: absolute; top: 50%; left: 50%; margin-right: -50%; transform: translate(-50%, -50%); } .field { padding: 0.5em 0; } .field--buttons { padding: 0.5em 0 !important; text-align: right; } .field--buttons button, .field--buttons input[type="submit"] { margin-right: 10px; } .field--checkbox { display: flex; justify-content: flex-start; flex-direction: row; align-items: center; } .field__label { display: block; margin: 2px 0; font-weight: bold; cursor: pointer; } .field--checkbox .field__label { margin: 2px 14px 2px 4px; } .field__input { background: var(--vscode-input-background); border: 1px solid var(--vscode-dropdown-border); color: var(--vscode-input-foreground); padding: 4px; margin: 2px 0; } .field__input:focus { border-color: var(--vscode-focusBorder); outline: 0; } .field__input--wide { width: 70%; min-width: 300px; } .button { width: auto; padding: 8px 14px; border: 0; display: inline-block; cursor: pointer; } .button:hover { background-color: var(--vscode-button-hoverBackground); } .button--danger { color: var(--vscode-button-foreground); background-color: var(--vscode-inputValidation-errorBackground); border: 1px solid var(--vscode-contrastBorder); } .button--danger:hover { background-color: var(--vscode-inputValidation-errorBorder); } .button--primary { color: var(--vscode-button-foreground); background-color: var(--vscode-button-background); border: 1px solid var(--vscode-contrastBorder); } .button--active { background-color: var(--vscode-button-hoverBackground) } .panel_error { margin: 0 7px 10px 5px; padding: 0 10px 10px 10px; border-left-width: 5px; border-left-style: solid; background: var(--vscode-textBlockQuote-background); border-color: var(--vscode-inputValidation-errorBorder); } .panel_info { margin: 0 7px 10px 5px; padding: 0 10px 10px 10px; border-left-width: 5px; border-left-style: solid; background: var(--vscode-textBlockQuote-background); border-color: var(--vscode-inputValidation-infoBorder); } .panel__text { line-height: 1.5em; } .branding { border: none; border-width: 0; float: right; } .mb-10 { margin-bottom: 10px; } .autocomplete { /*the container must be positioned relative:*/ width: 100%; position: relative; display: inline-block; } .autocomplete-items { position: absolute; border: 1px solid var(--vscode-dropdown-border); border-bottom: none; border-top: none; z-index: 99; /*position the autocomplete items to be the same width as the container:*/ top: 100%; left: 0; right: 0; max-height: 350px; overflow: hidden; overflow-y: scroll; } .autocomplete-items button { width: 100%; text-align: left; }
0.624064
0.169956
@import url("fonts.css"); /* Header */ #header{ width:100%; background:#000; background:rgba(0, 0, 0, 0.8); padding:5px 0; letter-spacing:1px; margin-bottom:20px; position:fixed; top:0; left:0; z-index:99; height:70px; } #header h1{ padding:0 20px; margin:5px 0; text-shadow:2px 1px 1px #333, 2px 2px 1px #888; color:#EAEAEA; float:left; font-size:27px; } #backlinks{ float:right; padding:0 20px; line-height:22px; font-weight:bold; font-size:13px; } #backlinks a{ text-align:right; display:block; } /* Footer */ #footer{ width:100%; position:fixed; padding-left:20px; bottom:0; left:0; line-height:20px; color:#888; font-size:13px; background:rgb(0, 0, 0); background:rgba(0, 0, 0, 0.8); z-index:99; } #footer span{ display:block; } /* clearfix */ .clearfix { clear:both; } /* wrapper css */ #wrapper{ margin-top:70px; width:100%; } #wrapper hgroup{ text-align:center; } #wrapper h2{ margin:5px 0; color:#FF6D99; text-shadow:1px 1px 2px #A50031; font-size:33px; font-family:Arial Narrow, Arial, sans-serif; } #wrapper h3{ font-style:italic; font-weight:normal; font-size:18px; text-shadow:1px 1px 0 #fff; color:#888; margin:5px 0; } .grid{ width:188px; min-height:100px; padding: 15px; background:#fff; margin:8px; font-size:12px; float:left; box-shadow: 0 1px 3px rgba(34,25,25,0.4); -moz-box-shadow: 0 1px 3px rgba(34,25,25,0.4); -webkit-box-shadow: 0 1px 3px rgba(34,25,25,0.4); -webkit-transition: top 1s ease, left 1s ease; -moz-transition: top 1s ease, left 1s ease; -o-transition: top 1s ease, left 1s ease; -ms-transition: top 1s ease, left 1s ease; } .grid strong { border-bottom:1px solid #ccc; margin:10px 0; display:block; padding:0 0 5px; font-size:17px; } .grid .meta{ text-align:right; color:#777; font-style:italic; } .grid .imgholder img{ max-width:100%; background:#ccc; display:block; } @media screen and (max-width : 1240px) { body{ overflow:auto; } } @media screen and (max-width : 900px) { } #search-area { width: 100%; background-color: #ffffff; background-image: none; background-repeat: repeat; background-attachment: scroll; background-position: 0% 0%; background-clip: border-box; background-origin: padding-box; background-size: auto auto; border-top-width: 1px; border-right-width-value: 1px; border-bottom-width: 0px; border-left-width-value: 1px; border-top-style: solid; border-right-style-value: solid; border-bottom-style: solid; border-left-style-value: solid; border-top-color: #e6e6e6; border-right: 1px solid #e6e6e6; border-bottom-color: #e6e6e6; border-left: 1px solid #e6e6e6; border-image-source: none; border-image-slice: 100% 100% 100% 100%; border-image-width: 1 1 1 1; border-image-outset: 0 0 0 0; border-image-repeat: stretch stretch; padding-top: 10px; padding-right: 16px; padding-bottom: 10px; padding-left: 16px; } #property-form { width: 100%; height: 100%; position:relative; margin: 0px 0px 0px 0px; } #properties-area { width: 100%; height:65px; background-color: #ffffff; background-image: none; background-repeat: repeat; background-attachment: scroll; background-position: 0% 0%; background-clip: border-box; background-origin: padding-box; background-size: auto auto; border-top-width: 1px; border-right-width-value: 1px; border-bottom-width: 0px; border-left-width-value: 1px; border-top-style: solid; border-right-style-value: solid; border-left-style-value: solid; border-top-color: #e6e6e6; border-right: 1px solid #e6e6e6; border-bottom-color: #e6e6e6; border-left: 1px solid #e6e6e6; border-image-source: none; border-image-slice: 100% 100% 100% 100%; border-image-width: 1 1 1 1; border-image-outset: 0 0 0 0; border-image-repeat: stretch stretch; padding-top: 10px; padding-right: 16px; padding-bottom: 10px; padding-left: 16px; } h1, h2, h3, h4, h5, h6 { font-family: 'latoregular'; font-weight: normal; font-style: normal; margin-top: 1.6em; margin-right: 0px; margin-bottom: 0.9em; margin-left: 0px; font-weight: bold; line-height: 20px; color: #0895D3; text-rendering: optimizelegibility; } .container ul { list-style-type: none; } .container ul p { margin-left:5px; margin-bottom:12px; font-size:1.2em; font-family: 'latoregular'; font-weight: normal; font-style: normal; } li { list-style-type: none; } div.container li img { margin-left:3px; margin-right: 3px; } .controls textarea { width:25%; height:5.2em; } .sidebar { position:relative; padding-top:2.2em; float:right; width:28%; background:transparent; } .main { float:left; position:relative; width:56%; padding-left:230px; min-height:10%; margin-bottom:4px; background:transparent; } .span6 { width: 100%; display:inline; text-align:center; font-family: 'latoregular'; font-weight: normal; font-style: normal; font-size:0.9em; color:#666666; } .span6 a{ color:#787878; text-decoration:none; } .span6 a:hover{ color:#666666; text-decoration:none; } /* Line 130 */ .container, .navbar-static-top .container, .navbar-fixed-top .container, .navbar-fixed-bottom .container { width: 100%; background:transparent; } #logo { color:#0895D3; padding-top:0px; padding-left:10px; font-weight:normal; float:top; max-height:20%; width:100%; } #logo img { width:100%; height:100%; } #slogan { height: 18%; line-height:98%; float:top; padding-left:5%; padding-top:1%; color:#0895D3; font-family: 'webfontgular'; font-size:80%; font-weight:normal; } #container { background:#ffffff; border: 1px solid #e6e6e6; padding: 10px 16px 10px 16px; } #content-wrapper { width: 77.0%; padding-left:0.0%; padding-right:1.0%; margin-left:12%; margin-right:11%; margin-bottom:1.4%; -webkit-box-shadow: 16px 2px 16px 0px rgba(50, 50, 50, 0.75); -moz-box-shadow: 16px 2px 16px 0px rgba(50, 50, 50, 0.75); box-shadow: 16px 2px 16px 0px rgba(50, 50, 50, 0.75); } #header-area { background:#ffffff; border-left: 1px solid #e6e6e6; border-right: 1px solid #e6e6e6; padding: 10px 16px 10px 16px; margin-bottom:0px; } #back-button-wrapper{ min-width:73%; width:73%; float:bottom; padding-bottom:5em; min-height:1.0em; margin-left:0%; margin-right:0%; margin-top:70%; position:fixed; } #home_wrapper, #blog_wrapper, #search_wrapper, #contact_wrapper, #about_wrapper { width: 17.6%; color:#0895D3; padding:0px 1px 0px 1px; height:53%; float:left; margin:0px 0px 0px 0px; position:relative; } #home, #blog, #search, #contact, #about{ width: 100%; height:40%; float:top; position:relative; } #home_tooltip, #blog_tooltip, #search_tooltip, #contact_tooltip, #about_tooltip, .social_tooltip { width: 100%; height:50%; float:top; position:relative; margin-left: -110%; margin-top:10%; } #social_1_tooltip, #social_2_tooltip, #social_3_tooltip, #social_4_tooltip, #social_5_tooltip, #social_6_tooltip, #back_tooltip { width: 100%; height:50%; float:top; position:relative; margin-left: -110%; margin-top:11%; } #properties-area a { text-decoration:none; } #properties-area a:hover { text-decoration:none; } .spacer { float:left; margin-bottom:0px; width:3%; height:60%; } .all_tab, .sales_tab, .rentals_tab, .featured_tab { text-align:center; float:left; color:#0895D3; font-weight:normal; font-size:1.4em; width:15%; height:65%; padding-top:1.1em; margin-top:-1.3%; } .all_tab:hover, .sales_tab:hover, .rentals_tab:hover, .featured_tab:hover { color:#666666; background:#EDEDED; border-radius: 15px; } .all_tab a:hover, .all_tab:hover a, .sales_tab a:hover, .sales_tab:hover a, .rentals_tab a:hover, .rentals_tab:hover a, .featured_tab a:hover, .featured_tab:hover a { color:#666666; } .all_tab_active, .sales_tab_active, .rentals_tab_active, .featured_tab_active { float:left; padding-top:4%; text-align:center; margin-bottom:0px; width:15%; height:60%; border-left:2px #0895D3 solid; border-top:2px #0895D3 solid; border-right:2px #0895D3 solid; } body { background:#ffffff; padding-top:0px; } .container ul li a img { height:5.2em; width:7.2em; position: relative; background-color: #fff; box-shadow: 0 1px 5px rgba(0,0,0,0.25), 0 0 50px rgba(0,0,0,0.1) inset; border-radius: 3% 3% 3% 3% / 3% 3% 3% 3%; } .container ul li img:before { position: absolute; width: 2.6em; height: 1.3em; left: 10%; border-radius: 50%; z-index: -1; top: 0%; content: ""; box-shadow: 0 -7px 16px rgba(0,0,0,0.4); } .container ul li img:after { position: absolute; width: 80%; height: 40%; left: 10%; border-radius: 50%; z-index: -1; bottom: 0%; content: ""; box-shadow: 0 7px 16px rgba(0,0,0,0.4); } #sidebar h3, .sidebar h3 { padding-top:5px; padding-bottom:5px; padding-left:5px; width:70%; font-size: 1.2em; background: #eeeeee; } #listing_header { font-family:Arial,Helvetica,sans-serif; font-weight:bold; float:top; width:100%; height:1.4em; margin-top:1.5em; margin-bottom:2.0em; } .sortable { } a.sortable { color:#333333; text-decoration:none; } a.sortable:hover { color:#333333; text-decoration:none; } .meta-data-wrapper, #meta-data-wrapper { padding-left:1%; padding-top:1%; width:70%; margin-top:0%; position:relative; float:left; min-height:40%; text-align:left; } .search-panel { width:100%; } .search-panel-titles { width:100%; height:1.4em; } .search-panel-title { color:#0895D3; font-size:60%; height:1.4em; font-weight:bold; float:right; width:12.5%; margin:0px 0px 0px 0px; } #property-form label { color:#0895D3; font-size:80%; height:1.4em; font-weight:bold; float:left; width:12.5%; margin:0px 0px 0px 0px; } .search-panel-title-pets { color:#0895D3; font-size:60%; height:1.4em; font-weight:bold; float:left; width:5%; margin:0px 0px 0px 0px; } .search-panel-title-last { color:#0895D3; font-size:60%; height:1.4em; font-weight:bold; float:left; width:7%; margin:0px 0px 0px 0px; } .search-panel-field { float:left; width:12.5%; margin:1px 0px 0px 0px; } .search-panel-field-pets { float:left; width:5%; margin:1px 0px 0px 0px; } .search-panel-field-last { float:left; width:7%; margin:0px 0px 0px 0px; } .search-panel-field { width: 10%; height: 45%; padding: 0px 3% 0px 2%; background-color: #f1f1f1; border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; border-top-width: 1px; border-right-width-value: 1px; border-bottom-width: 1px; border-left-width-value: 1px; border-top-style: solid; border-right-style-value: solid; border-bottom-style: solid; border-left-style-value: solid; border-top-color: #bfbfbf; border-right-color-value: #bfbfbf; border-bottom-color: #bfbfbf; border-left-color-value: #bfbfbf; border-image-source: none; border-image-slice: 100% 100% 100% 100%; border-image-width: 1 1 1 1; border-image-outset: 0 0 0 0; border-image-repeat: stretch stretch; box-shadow: #ccddcc; color: #949ca1; padding-top: 4px; padding-right: 6px; padding-bottom: 4px; padding-left: 6px; height: auto; position: relative; z-index: 0; float:left; margin-top:3%; margin-right:1%; } #property-form input, #property-form select { width: 11%; height: 45%; padding: 0px -0.3% 0px 0.3%; margin-left:-13%; background-color: #f1f1f1; border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; border-top-width: 1px; border-right-width-value: 1px; border-bottom-width: 1px; border-left-width-value: 1px; border-top-style: solid; border-right-style-value: solid; border-bottom-style: solid; border-left-style-value: solid; border-top-color: #bfbfbf; border-right-color-value: #bfbfbf; border-bottom-color: #bfbfbf; border-left-color-value: #bfbfbf; border-image-source: none; border-image-slice: 100% 100% 100% 100%; border-image-width: 1 1 1 1; border-image-outset: 0 0 0 0; border-image-repeat: stretch stretch; box-shadow: #ccddcc; color: #949ca1; font-size:0.7em; padding-top: 4px; padding-right: 2px; padding-bottom: 4px; padding-left: 2px; height: auto; position: relative; z-index: 0; float:left; margin-top:2%; margin-right:1%; } #id_category { width: 11%; height: 45%; padding: 0px -0.3% 0px 0.3%; margin-left:-13%; float:left; margin-top:3%; margin-right:1%; } #header-leftside-bar { float:left; max-width:20%; min-width:16%; height:3%; } #header-spacer { float:left; } #options-icon-bar { float:right; margin-right:0px; padding-top:1%; min-width:6%; max-width:46%; height:100%; } #socials-wrapper { float:right; margin-right:1.0em; margin-top:0.3%; max-width:27%; min-width:6%; padding-top:1%; height:1.0em; } .social { width: 1.28em; padding:0px 0px 0px 0px; height:1.28em; float:right; margin:0px 0px 0px 0.1em; position:relative; } .social img { padding: 0px 0px 0px 0px; height:100%; width: 100%; } .properties-listing-body { float:top; width:100%; line-height:1.6em; margin-bottom:0.4em; font-family: Arial,Helvetica,sans-serif; font-weight:normal; font-size:75%; overflow:hidden; padding: 0px 2% 0px 2%; } .properties-listing-head { float:top; width:100%; line-height:1.6em; margin-bottom:0.4em; font-family: Arial,Helvetica,sans-serif;font-weight:normal; font-weight:bold; font-size:75%; overflow:hidden; padding: 0px 2% 0px 2%; } .properties-listing-head .column-one, .properties-listing-body .column-one { float:left; width:6%; padding: 0px 0.5% 0px 0.5%; } .properties-listing-head .column-two, .properties-listing-body .column-two { padding:0px 0.5% 0px 0.5%; float:left; width:10%; } .properties-listing-head .column-three, .properties-listing-body .column-three { padding:0px 0.5% 0px 0.5%; float:left; width:9%; } .properties-listing-head .column-four, .properties-listing-body .column-four { padding:0px 0.5% 0px 0.5%; float:left; width:6.5%; } .properties-listing-head .column-five, .properties-listing-body .column-five { padding:0px 0.5% 0px 0.5%; float:left; width:5%; } .properties-listing-head .column-six, .properties-listing-body .column-six { padding:0px 0.5% 0px 0.5%; font-size:0.95em; float:left; width:8%; } .properties-listing-head .column-seven, .properties-listing-body .column-seven { padding:0px 0.5% 0px 0.5%; font-size:0.95em; float:left; width:8%; } .properties-listing-head .column-eight, .properties-listing-body .column-eight { padding:0px 0.5% 0px 0.5%; font-size:0.95em; float:left; width:6%; } .properties-listing-head .column-nine, .properties-listing-body .column-nine { padding:0px 0.5% 0px 0.5%; font-size:0.95em; float:left; width:17%; } .properties-listing-head .column-ten, .properties-listing-body .column-ten { padding:0px 0.5% 0px 0.5%; font-size:0.95em; float:left; width:4%; } .properties-listing-head .column-eleven, .properties-listing-body .column-eleven { padding:0px 0.5% 0px 0.5%; font-size:0.95em; float:left; width:8%; } .back-btn { max-height:1.7em; max-width:1.7em; margin-top:1%; margin-right:0%; float:right; } #back_btn_tooltip { height:2%; width:5%; position:fixed; margin-top:1.9em; margin-left:63%; float:right; } .back_btn img { width:100%; height:100%; padding: 0px 0px 0px 0px; } .grid-level { width:100%; margin:0px 0px 15px 15px; float:top; } .property-data-line-header { width:100%; text-align:left; min-height:1%; font-size:100%; } .property-data-line { width:100%; text-align:left; min-height:1%; font-size:75%; position:relative; } .property-contact-line { width:100%; text-align:left; min-height:1%; font-size:75%; } .property-data-title { width:15%; height:90%; text-align:left; float:left; } .property-data-title-last { width:25%; height:90%; text-align:left; float:left; } .property-data-field { width:84%; height:90%; padding-left:0.4em; text-align:left; float:left; } .property-data-field-last { width:69%; height:90%; padding-left:0.4em; text-align:left; float:left; } .property-photo-wrappper { width:30%; float:left; margin:5px 5px 5px 5px; } .property-photo-wrappper img{ -webkit-box-shadow: 5px 5px 2px 0px rgba(0,0,0,0.75); -moz-box-shadow: 5px 5px 2px 0px rgba(0,0,0,0.75); box-shadow: 5px 5px 2px 0px rgba(0,0,0,0.75); } #main_wrapper { width:100% margin: 0px 9% 0px 9%; } #search_results { } h1, h2, h3 { color:#0895D3; } #contact-us { max-height: 40px; float:right; margin-left:50%; padding-left:6%; } #contact-us img{ margin-left:4em; max-height: 33px; max-width: 100px; } #contact-form, #comment-form { position:fixed; border-radius:5px; margin-top:-30%; margin-left:30%; min-height:40%; min-width:20%; background:#ffffff; border:1px #0895D3 solid; color: #0895D3; display:none; min-width:23%; min-height:32%; } .contact-form-header { float:top; background: #369DD6; font-weight:bold; min-height:5%; color:#FFFFFF; text-align:center; font-size:1.3em; margin-top:0px; padding-top:2.5%; padding-bottom:3.0%; margin-bottom:2%; } .contact-form-header-header { float:left; width:89%; height:100%; } .contact-form-row { float:top; width:100%; position:relative; } .contact-form-row-left { float:left; min-height:10%; color: #369DD6; font-size:0.90em; width:24%; padding-left:1%; font-weight:bold; height:auto; } .contact-form-row-right { float:left; color: #369DD6; font-size:0.85em; width:75%; height:auto; padding-bottom:3%; } .close-form { float:left: width:14%; margin-right:0%; height:60%; } .close-form img { min-height:3%; max-height:8%; width:8%; } .contact-form-row-right input { max-width: 84%; height: 25%; padding: 0px 0px 0px 0px; background-color: #f1f1f1; border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: #369DD6; border-right-color: #369DD6; border-bottom-color: #369DD6; border-left-color: #369DD6; border-image-source: none; border-image-slice: 100% 100% 100% 100%; border-image-width: 1 1 1 1; border-image-outset: 0 0 0 0; border-image-repeat: stretch stretch; box-shadow: #ccddcc; color: #949ca1; padding-top: 3%; padding-right: 4%; padding-bottom: 0.5%; padding-left: 3%; position: relative; z-index: 0; } .contact-form-row-right textarea { max-width: 84%; height: 100%; font-size:0.9em; min-height:7.0em; line-height:1.0em; padding: 0px 0px 0px 0px; background-color: #f1f1f1; border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: #369DD6; border-right-color: #369DD6; border-bottom-color: #369DD6; border-left-color: #369DD6; border-image-source: none; border-image-slice: 100% 100% 100% 100%; border-image-width: 1 1 1 1; border-image-outset: 0 0 0 0; border-image-repeat: stretch stretch; box-shadow: #ccddcc; color: #949ca1; padding-top: 3%; padding-right: 4%; padding-bottom: 0%; padding-left: 3%; position: relative; z-index: 0; } .contact-form-send { float:left; display:block; margin-bottom:1%; } .contact-form-send img{ width:46px; height:23px; } .search-btn { background:url('./images/search_button_png.png') no-repeat; width:40px; height:40px; } .form-search-btn { background:url('./images/search_button_png.png') no-repeat; width:40px; height:40px; float:right; } /* Line 4 */ .search-btn:hover, .search-btn:focus { background:url('./images/search_button_png_pressed.png') no-repeat; width:40px; height:40px; } #sidebar-more-properties{ float:right; width:24%; min-height:58%; margin-top:-1.0em; margin-left:47%; margin-right:2.5%; padding-top:-12.00em; margin-bottom:-17em; } #sidebar-more-properties .header-area, #sidebar-dashboard .header-area { background-color: #369DD6; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: #369DD6; border-right-color: #369DD6; border-bottom-color: #369DD6; border-left-color: #369DD6; text-align:center; color:#ffffff; float:top; min-height:5%; margin-top:7%; padding:2% 5% 2% 5%; font-size: 0.76em; font-weight:bold; } #sidebar-more-properties .main-area, #sidebar-dashboard .main-area{ padding:2% 5% 2% 5%; float:top; min-height:89%; background:#ffffff; border-right-color: #369DD6; border-bottom-color: #369DD6; border-right-width: 1px; border-left-width: 1px; border-right-style: solid; border-left-style: solid; text-align:center; color:#369DD6; font-weight:normal; font-size:0.93em; } #sidebar-more-properties .footer-area, #sidebar-dashboard .footer-area{ float:top; background:ffffff; border-bottom-width: 1px; border-left-width: 1px; border-right-width: 1px; min-height:5%; border-right-color: #369DD6; border-bottom-color: #369DD6; border-left-color: #369DD6; border-right-style: solid; border-left-style: solid; border-bottom-style: solid; } .sidebar-apartments-list, .sidebar-dashboard-list { float:top; width:100%; margin-bottom:4px; padding-top:2%; padding-bottom:2%; } .sidebar-apartments-list-left, .sidebar-dashboard-list-left { width:29%; float:left; } .sidebar-apartments-list-right, .sidebar-dashboard-list-right { width:70%; font-size:0.8em; float:left; } .contact-grid { width:100%; } .contact-grid .map { width:39.7%; float:left; } .contact-grid .details { width:20%; float:left; font-size:0.86em; font-weight:bold; } .contact-grid .details p{ line-height:0.8em; } .contact-grid .form { width:39.7%; float:left; } .djng-field-errors { display:none; } .djng-form-errors ul, .djng-form-error li, .djng-form-error li.invalid { display:none; } ul.djng-form-errors li.invalid { display:none; } /* Line 14 */ .select2-container { box-sizing: border-box; float:left; width:10%; height: 45%; padding: 0px -1.2% 0px 0.3%; margin-left:-13%; padding-top: 4px; padding-right: 2px; padding-bottom: 4px; padding-left: 2px; height: auto; position: relative; z-index: 0; float:left; margin-top:1.8%; margin-right:0%; } /* results */ .select2-results { width:100%; font-size:0.7em; max-height: 200px; padding: 0 0 0 4px; margin: 4px 4px 4px 0; position: relative; overflow-x: hidden; overflow-y: auto; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } /* Line 1 */ .btn:focus, .btn.focus { background-color: #ffffff; background-image: none; background-repeat: repeat; background-attachment: scroll; background-position: 0% 0%; background-clip: border-box; background-origin: padding-box; background-size: auto auto; border-top-color: #ffffff; border-right-color-value: #ffffff; border-bottom-color: #ffffff; border-left-color-value: #ffffff; } /* Line 1 */ .btn:hover, .follow-combo.open .btn-user-actions, .dropdown.open .user-dropdown { color: #292f33; background-color: #e1e8ed; background-image: #ffffff; border-top-color: #e1e8ed; border-right-color-value: #e1e8ed; border-bottom-color: #e1e8ed; border-left-color-value: #e1e8ed; } /* Line 1 */ .primary-btn:hover, .primary-btn:focus { color: #ffffff; } /* Line 1 */ .primary-btn:hover, .primary-btn:focus { color: #ffffff; } /* Line 1 */ .primary-btn:focus, .primary-btn.focus, .following .follow-btn:focus, .following .follow-button:focus, .email-following .email-follow-button:focus, .notifying .device-follow-button:focus, .button-group-item .content.selected:focus { background-color: #55acee; background-image: none; background-repeat: repeat; background-attachment: scroll; background-position: 0% 0%; background-clip: border-box; background-origin: padding-box; background-size: auto auto; border-top-color: #ffffff; border-right-color-value: #ffffff; border-bottom-color: #ffffff; border-left-color-value: #ffffff; } /* Line 1 */ .primary-btn:hover { background-color: #55acee; background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.15)); border-top-color: #3b88c3; border-right-color-value: #3b88c3; border-bottom-color: #3b88c3; border-left-color-value: #3b88c3; } /* Line 227 */ /* Line 1 */ input { line-height: normal; } /* Line 1 */ .t1-label, input, textarea, div[contenteditable="true"], .t1-select { margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-size: 13px; line-height: 20px; } /* Line 1 */ input, textarea, div[contenteditable="true"], .t1-select { display: inline-block; width: 210px; padding-top: 4px; padding-right: 4px; padding-bottom: 4px; padding-left: 4px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; outline-width: 0px; outline-style: none; background-color: #ffffff; border-top-width: 1px; border-right-width-value: 1px; border-bottom-width: 1px; border-left-width-value: 1px; border-top-style: solid; border-right-style-value: solid; border-bottom-style: solid; border-left-style-value: solid; border-top-color: #e1e8ed; border-right-color-value: #e1e8ed; border-bottom-color: #e1e8ed; border-left-color-value: #e1e8ed; border-image-source: none; border-image-slice: 100% 100% 100% 100%; border-image-width: 1 1 1 1; border-image-outset: 0 0 0 0; border-image-repeat: stretch stretch; border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } /* Line 1 */ input, textarea, div[contenteditable="true"] { transition-property: background; transition-duration: 0.2s; transition-timing-function: linear; transition-delay: 0s; } /* Line 1 */ .btn { background-color: #ccd6dd; background-repeat: no-repeat; border-top-width: 1px; border-right-width-value: 1px; border-bottom-width: 1px; border-left-width-value: 1px; border-top-style: solid; border-right-style-value: solid; border-bottom-style: solid; border-left-style-value: solid; border-top-color: #e1e8ed; border-right-color-value: #e1e8ed; border-bottom-color: #e1e8ed; border-left-color-value: #e1e8ed; border-image-source: none; border-image-slice: 100% 100% 100% 100%; border-image-width: 1 1 1 1; border-image-outset: 0 0 0 0; border-image-repeat: stretch stretch; border-top-left-radius: 4px; border-top-right-radius: 4px; border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; color: #66757f; cursor: pointer; display: inline-block; font-size: 14px; font-weight: bold; line-height: normal; padding-top: 8px; padding-right: 16px; padding-bottom: 8px; padding-left: 16px; position: relative; } /* Line 1 */ .btn { background-color: #f5f8fa; background-image: #ffffff; } /* Line 1 */ .primary-btn, .following.first-hover .follow-btn:hover, .following .follow-btn, .following .follow-button.cancel-hover-style:hover, .following .follow-button, .email-following .email-follow-button.cancel-hover-style:hover, .email-following .email-follow-button, .notifying .device-follow-button, .button-group-item .content.selected { color: #ffffff; background-color: #55acee; background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.05)); border-top-width: 1px; border-right-width-value: 1px; border-bottom-width: 1px; border-left-width-value: 1px; border-top-style: solid; border-right-style-value: solid; border-bottom-style: solid; border-left-style-value: solid; border-top-color: #3b88c3; border-right-color-value: #3b88c3; border-bottom-color: #3b88c3; border-left-color-value: #3b88c3; border-image-source: none; border-image-slice: 100% 100% 100% 100%; border-image-width: 1 1 1 1; border-image-outset: 0 0 0 0; border-image-repeat: stretch stretch; box-shadow: 0px 1px 0px rgba(255, 255, 255, 0.15) inset; } /* Line 1 */ button, html input[type="button"], input[type="reset"], input[type="submit"] { cursor: pointer; } /* Line 1 */ input[type="button"], input[type="reset"], input[type="submit"] { width: auto; height: auto; } /* Line 1 */ input:focus, textarea:focus, div[contenteditable="true"]:focus, div.fake-focus[contenteditable="true"] { outline-width: 0px; outline-style: none; color: #292f33; border-top-color: #56b4ef; border-right-color-value: #56b4ef; border-bottom-color: #56b4ef; border-left-color-value: #56b4ef; } /* Line 1 */ .btn.focus, .btn:focus, .btn:active, .Button:focus { outline-width: 0px; outline-style: none; } /* Line 1 */ .btn:focus, .btn.focus { background-color: #ffffff; background-image: none; background-repeat: repeat; background-attachment: scroll; background-position: 0% 0%; background-clip: border-box; background-origin: padding-box; background-size: auto auto; border-top-color: #ffffff; border-right-color-value: #ffffff; border-bottom-color: #ffffff; border-left-color-value: #ffffff; } /* Line 1 */ .btn:hover, .follow-combo.open .btn-user-actions, .dropdown.open .user-dropdown { color: #292f33; background-color: #e1e8ed; background-image: #ffffff; border-top-color: #e1e8ed; border-right-color-value: #e1e8ed; border-bottom-color: #e1e8ed; border-left-color-value: #e1e8ed; } /* Line 1 */ .primary-btn:hover, .primary-btn:focus { color: #ffffff; } /* Line 1 */ .primary-btn:hover, .primary-btn:focus { color: #ffffff; } /* Line 1 */ .primary-btn:focus, .primary-btn.focus, .following .follow-btn:focus, .following .follow-button:focus, .email-following .email-follow-button:focus, .notifying .device-follow-button:focus, .button-group-item .content.selected:focus { background-color: #55acee; background-image: none; background-repeat: repeat; background-attachment: scroll; background-position: 0% 0%; background-clip: border-box; background-origin: padding-box; background-size: auto auto; border-top-color: #ffffff; border-right-color-value: #ffffff; border-bottom-color: #ffffff; border-left-color-value: #ffffff; } /* Line 1 */ .primary-btn:hover { background-color: #55acee; background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.15)); border-top-color: #3b88c3; border-right-color-value: #3b88c3; border-bottom-color: #3b88c3; border-left-color-value: #3b88c3; } https://abs.twimg.com/a/1411978577/css/t1/twitter_logged_out.bundle.css /* Line 1 */ .SignupForm input { width: 100%; box-sizing: border-box; margin-top: 10px; } /* Line 1 */ .SignupForm input:focus { border-top-color: #55acee; border-right-color-value: #55acee; border-bottom-color: #55acee; border-left-color-value: #55acee; box-shadow: none; } /* Line 1 */ .SignupForm .primary-btn:focus { border-top-color: #ffffff; border-right-color-value: #ffffff; border-bottom-color: #ffffff; border-left-color-value: #ffffff; } #id_subject, #id_select select { width:100%; float:right; margin-left:40%; margin-top:-4%; } .contact-grid .select2-container { box-sizing: border-box; width: 39%; margin-left: 0%; padding-top: 4px; padding-right: 2px; padding-bottom: 0px; padding-left: 2px; height: auto; position: relative; z-index: 0; margin-top: 0%; margin-right: 0%; } label[for=id_message] { margin-top:10%; } ul.djng-form-errors { display:inline; } .contact-grid textarea { margin-top:2%; margin-left:0%; } .contact-grid p:last-child { margin-top:2%; } .animate-enter { -webkit-transition: 1s linear all; /* Chrome */ transition: 1s linear all; opacity: 0; } .animate-enter.animate-enter-active { opacity: 1; } /* Remove colors and add transition property */ .alert-flash { padding: 8px 35px 8px 14px; margin-bottom: 20px; text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); border: 1px solid transparent; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; /* change transition property to all */ -webkit-transition-property: all; transition-property: all; } .alert-flash h4 { margin: 0; } .alert-flash .close { position: relative; top: -2px; right: -21px; line-height: 20px; } /* add warning colors to warn class */ .alert-warn { background-color: #fcf8e3; border: 1px solid #fbeed5; } .alert-warn, .alert-warn h4 { color: #c09853; } .submenu-wrapper { margin-top:-2.5em; width:11.5em; background:transparent; position:absolute; display:none; opacity: 0.8; } #submenu-wrapper-1 { margin-left:59.7%; } #submenu-wrapper-2 { margin-left:62.5%; } #submenu-wrapper-3 { margin-left:65.3%; } .submenu-wrapper .header-upper-left { float:left; width:41%; height:100%; margin: 0px 0px 0px 0px; } .submenu-wrapper .header-upper-middle { background-image: url('./images/corner_menu_4.png'); background-repeat:no-repeat; float:left; width:17.8%; height:100%; margin: 0px 0px 0px 0px; } .submenu-wrapper .header-upper-right { float:left; width:41%; height:100%; margin: 0px 0px 0px 0px; } .submenu-wrapper .header { background:#0b94d3; height:1.2em; width:100%; margin: -2.5% 0px 0px 0px; border-top-left-radius:5px; border-top-right-radius:5px; box-shadow: 4px 4px 2px #888888; } .submenu-wrapper .footer { background:#0b94d3; height:1.2em; width:100%; margin: -1.5% 0px 0px 0px; border-bottom-left-radius:5px; border-bottom-right-radius:5px; box-shadow: 4px 4px 2px #888888; } .submenu-wrapper .main-menu-section { background:#0b94d3; margin: -1.5% 0px -1.5% 0px; width:100%; padding-top:1%; padding-bottom: 1%; box-shadow: 4px 4px 2px #888888; } .submenu-wrapper .main-menu-section a { color:#b4e9fc; font-size:1.0em; font-weight:bold; text-decoration:none; } .submenu-wrapper .main-menu-section a:hover { color:#ffffff; font-size:1.0em; font-weight:bold; text-decoration:none; } .agent-wrapper { width:90%; margin-left:5%; margin-right:5%; margin-bottom:3%; margin-top:3%; display:block; } .agent-wrapper-left { width:20%; float:left; } .agent-wrapper-right { font-weight:bold; font-size:0.9em; width:80%; float:left; color:#333333; padding-top:1%; } .agent-wrapper-left .avatar{ width:100%; float:top; height:85%; } .agent-wrapper-left .avatar img { border: solid 1px #CCC; -moz-box-shadow: 1px 1px 5px #999; -webkit-box-shadow: 1px 1px 5px #999; box-shadow: 1px 1px 5px #999; } .agent-wrapper-left .agent-data { padding: 1% 3px 2px 3px; width:100%; height:15%; float:top; color:#333333; font-weight:bold; font-size:0.8em; } .well-login { margin-top:5%; margin-left:34%; margin-right:39%; min-width:20.5%; max-width:60%; margin-bottom:10%; min-height: 20px; max-height: 30%; padding-top: 5%; padding-right: -5%; padding-bottom: 19px; padding-left: 5%; background-color: #f5f5f5; border-top-width: 1px; border-right-width-value: 1px; border-bottom-width: 1px; border-left-width-value: 1px; border-top-style: solid; border-right-style-value: solid; border-bottom-style: solid; border-left-style-value: solid; border-top-color: #e3e3e3; border-right-color-value: #e3e3e3; border-bottom-color: #e3e3e3; border-left-color-value: #e3e3e3; border-image-source: none; border-image-slice: 100% 100% 100% 100%; border-image-width: 1 1 1 1; border-image-outset: 0 0 0 0; border-image-repeat: stretch stretch; border-top-left-radius: 4px; border-top-right-radius: 4px; border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.05) inset; } .well-login img { box-shadow:none; border:none; } .well-login-social { width:80%; height:20%; margin-top:4%; margin-left:5%; } .well-login-social-icon-first { float:left; height:100%; width:30.0%; margin-right:0.5%; } .well-login-social-icon-last { float:left; height:100%; width:60.0%; margin-right:0.5%; } .well-login-social-icon { float:left; height:100%; width:16.8%; margin-right:0.5%; } /* Line 353 */ .btn-login { border-top-color: rgba(0, 0, 0, 0.15); border-right-color-value: rgba(0, 0, 0, 0.15); border-bottom-color: rgba(0, 0, 0, 0.25); border-left-color-value: rgba(0, 0, 0, 0.15); } /* Line 354 */ .btn-login-primary { color: #ffffff; text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.25); background-color: #006dcc; background-image: #0088cc; background-repeat: repeat-x; border-top-color: rgba(0, 0, 0, 0.1); border-right-color-value: rgba(0, 0, 0, 0.1); border-bottom-color: rgba(0, 0, 0, 0.25); border-left-color-value: rgba(0, 0, 0, 0.1); } /* Line 28 */ button, input[type="button"], input[type="reset"], input[type="submit"] { cursor: pointer; } /* Line 239 */ input[type="file"], input[type="image"], input[type="submit"], input[type="reset"], input[type="button"], input[type="radio"], input[type="checkbox"] { width: auto; } /* Line 322 */ .form-search input, .form-inline input, .form-horizontal input, .form-search textarea, .form-inline textarea, .form-horizontal textarea, .form-search select, .form-inline select, .form-horizontal select, .form-search .help-inline, .form-inline .help-inline, .form-horizontal .help-inline, .form-search .uneditable-input, .form-inline .uneditable-input, .form-horizontal .uneditable-input, .form-search .input-prepend, .form-inline .input-prepend, .form-horizontal .input-prepend, .form-search .input-append, .form-inline .input-append, .form-horizontal .input-append { display: inline-block; margin-bottom: 0px; vertical-align: middle; } /* Line 337 */ .btn-login:hover, .btn-login:active, .btn-login.active, .btn-login.disabled, .btn-login[disabled] { color: #333333; background-color: #e6e6e6; } /* Line 339 */ .btn-login:first-child { } /* Line 340 */ .btn-login:hover { color: #333333; background-color: #e6e6e6; background-position: 0px -15px; transition-property: background-position; transition-duration: 0.1s; transition-timing-function: linear; transition-delay: 0s; } /* Line 341 */ .btn-login:focus { outline-width: thin; outline-style: dotted; outline-color: #333333; outline-offset: -2px; } /* Line 354 */ .btn-primary:hover, .btn-primary:active, .btn-primary.active, .btn-primary.disabled, .btn-primary[disabled] { color: #ffffff; background-color: #0044cc; } /* Line 366 */ button.btn-login, input.btn-login[type="submit"] { } #sign-in-form .helptext { display:none; } #match-failure-message, #failure-message, #duplicate-user-message, #success-message, #login-failure-message,#login-success-message, #register-failure-message, #register-success-message, #password-failure-message, #activate-success-message { margin-top:-3%; } #success-message p,#login-success-message p,#register-success-message p, #activate-success-message p { color:green; font-size:1.2em; font-weight:bold; } #match-failure-message p, #failure-message p,#login-failure-message p, #duplidate-user-message p, #register-failure-message p, #password-failure-message p{ color:red; font-size:1.2em; font-weight:bold; -webkit-transition: all 4s ease-out 0s; -moz-transition: all 4s ease-out 0s; -ms-transition: all 4s ease-out 0s; -o-transition: all 4s ease-out 0s; transition: all 4s ease-out 0s; transition: all 2s ease-in-out; } .pagination { float:left; } .ul li { display:inline; } ul.pagination li.active { display:inline; } ul.pagination li.disabled { display:inline; } ul.pagination li,ul.pagination li a.page { display:inline; } /* Line 233 */ a { color: #0088cc; } /* Line 74 */ a:focus { outline-width: thin; outline-style: dotted; outline-color: #333333; outline-offset: -2px; } /* Line 80 */ a:hover, a:active { outline-width: 0px; outline-style: none; } /* Line 238 */ a:hover, a:focus { color: #005580; } /* Line 238 */ a:hover, a:focus { color: #005580; } /* Line 4997 */ .pagination ul > li > a, .pagination ul > li > span { float: left; padding-top: 4px; padding-right: 12px; padding-bottom: 4px; padding-left: 12px; line-height: 20px; background-color: #ffffff; border-top-width: 1px; border-right-width-value: 1px; border-bottom-width: 1px; border-top-style: solid; border-right-style-value: solid; border-bottom-style: solid; border-left-style-value: solid; border-top-color: #dddddd; border-right-color-value: #dddddd; border-bottom-color: #dddddd; border-left-color-value: #dddddd; border-image-source: none; border-image-slice: 100% 100% 100% 100%; border-image-width: 1 1 1 1; border-image-outset: 0 0 0 0; border-image-repeat: stretch stretch; border-left-width-value: 0px; } /* Line 5021 */ .pagination ul > .disabled > span, .pagination ul > .disabled > a, .pagination ul > .disabled > a:hover, .pagination ul > .disabled > a:focus { color: #999999; cursor: default; background-color: transparent; } /* Line 5008 */ .pagination ul > li > a:hover, .pagination ul > li > a:focus, .pagination ul > .active > a, .pagination ul > .active > span { background-color: #f5f5f5; } /* Line 5008 */ .pagination ul > li > a:hover, .pagination ul > li > a:focus, .pagination ul > .active > a, .pagination ul > .active > span { background-color: #f5f5f5; } /* Line 5030 */ .pagination ul > li:first-child > a, .pagination ul > li:first-child > span { border-left-width-value: 1px; border-bottom-left-radius: 4px; border-top-left-radius: 4px; } /* Line 5021 */ .pagination ul > .disabled > span, .pagination ul > .disabled > a, .pagination ul > .disabled > a:hover, .pagination ul > .disabled > a:focus { color: #999999; cursor: default; background-color: transparent; } /* Line 5021 */ .pagination ul > .disabled > span, .pagination ul > .disabled > a, .pagination ul > .disabled > a:hover, .pagination ul > .disabled > a:focus { color: #999999; cursor: default; background-color: transparent; } .panel-section { float:left; width:74%; min-height:58%; padding-left:2.5%; } #sidebar-dashboard { float:left; width:20%; min-height:58%; margin-right:2.5%; } #dashboard { width:100%; } #sidebar-dashboard .main-area { padding-top: 2%; padding-right: 5%; padding-bottom: 2%; padding-left: 5%; background-color: #ffffff; background-image: none; background-repeat: repeat; background-attachment: scroll; background-position: 0% 0%; background-clip: border-box; background-origin: padding-box; background-size: auto auto; border-right-color-value: #369dd6; border-bottom-color: #369dd6; border-right-width-value: 1px; border-left-width-value: 1px; border-right-style-value: solid; border-left-style-value: solid; color: #369dd6; font-weight: normal; font-size: 0.93em; min-height: 120%; } #dashboard-form { min-height:100%; display:block; margin-bottom:1.0em; } .dashboard-profile-row { width: 100%; float:top; margin-bottom:1.0em; } .dashboard-profile-titles { float:left; width:14%; color:#0895D3; } .dashboard-profile-fields { float:left; width:85%; } .dashboard-profile-fields textarea { min-height: 4.0em; }
static_files/css/styles.css
@import url("fonts.css"); /* Header */ #header{ width:100%; background:#000; background:rgba(0, 0, 0, 0.8); padding:5px 0; letter-spacing:1px; margin-bottom:20px; position:fixed; top:0; left:0; z-index:99; height:70px; } #header h1{ padding:0 20px; margin:5px 0; text-shadow:2px 1px 1px #333, 2px 2px 1px #888; color:#EAEAEA; float:left; font-size:27px; } #backlinks{ float:right; padding:0 20px; line-height:22px; font-weight:bold; font-size:13px; } #backlinks a{ text-align:right; display:block; } /* Footer */ #footer{ width:100%; position:fixed; padding-left:20px; bottom:0; left:0; line-height:20px; color:#888; font-size:13px; background:rgb(0, 0, 0); background:rgba(0, 0, 0, 0.8); z-index:99; } #footer span{ display:block; } /* clearfix */ .clearfix { clear:both; } /* wrapper css */ #wrapper{ margin-top:70px; width:100%; } #wrapper hgroup{ text-align:center; } #wrapper h2{ margin:5px 0; color:#FF6D99; text-shadow:1px 1px 2px #A50031; font-size:33px; font-family:Arial Narrow, Arial, sans-serif; } #wrapper h3{ font-style:italic; font-weight:normal; font-size:18px; text-shadow:1px 1px 0 #fff; color:#888; margin:5px 0; } .grid{ width:188px; min-height:100px; padding: 15px; background:#fff; margin:8px; font-size:12px; float:left; box-shadow: 0 1px 3px rgba(34,25,25,0.4); -moz-box-shadow: 0 1px 3px rgba(34,25,25,0.4); -webkit-box-shadow: 0 1px 3px rgba(34,25,25,0.4); -webkit-transition: top 1s ease, left 1s ease; -moz-transition: top 1s ease, left 1s ease; -o-transition: top 1s ease, left 1s ease; -ms-transition: top 1s ease, left 1s ease; } .grid strong { border-bottom:1px solid #ccc; margin:10px 0; display:block; padding:0 0 5px; font-size:17px; } .grid .meta{ text-align:right; color:#777; font-style:italic; } .grid .imgholder img{ max-width:100%; background:#ccc; display:block; } @media screen and (max-width : 1240px) { body{ overflow:auto; } } @media screen and (max-width : 900px) { } #search-area { width: 100%; background-color: #ffffff; background-image: none; background-repeat: repeat; background-attachment: scroll; background-position: 0% 0%; background-clip: border-box; background-origin: padding-box; background-size: auto auto; border-top-width: 1px; border-right-width-value: 1px; border-bottom-width: 0px; border-left-width-value: 1px; border-top-style: solid; border-right-style-value: solid; border-bottom-style: solid; border-left-style-value: solid; border-top-color: #e6e6e6; border-right: 1px solid #e6e6e6; border-bottom-color: #e6e6e6; border-left: 1px solid #e6e6e6; border-image-source: none; border-image-slice: 100% 100% 100% 100%; border-image-width: 1 1 1 1; border-image-outset: 0 0 0 0; border-image-repeat: stretch stretch; padding-top: 10px; padding-right: 16px; padding-bottom: 10px; padding-left: 16px; } #property-form { width: 100%; height: 100%; position:relative; margin: 0px 0px 0px 0px; } #properties-area { width: 100%; height:65px; background-color: #ffffff; background-image: none; background-repeat: repeat; background-attachment: scroll; background-position: 0% 0%; background-clip: border-box; background-origin: padding-box; background-size: auto auto; border-top-width: 1px; border-right-width-value: 1px; border-bottom-width: 0px; border-left-width-value: 1px; border-top-style: solid; border-right-style-value: solid; border-left-style-value: solid; border-top-color: #e6e6e6; border-right: 1px solid #e6e6e6; border-bottom-color: #e6e6e6; border-left: 1px solid #e6e6e6; border-image-source: none; border-image-slice: 100% 100% 100% 100%; border-image-width: 1 1 1 1; border-image-outset: 0 0 0 0; border-image-repeat: stretch stretch; padding-top: 10px; padding-right: 16px; padding-bottom: 10px; padding-left: 16px; } h1, h2, h3, h4, h5, h6 { font-family: 'latoregular'; font-weight: normal; font-style: normal; margin-top: 1.6em; margin-right: 0px; margin-bottom: 0.9em; margin-left: 0px; font-weight: bold; line-height: 20px; color: #0895D3; text-rendering: optimizelegibility; } .container ul { list-style-type: none; } .container ul p { margin-left:5px; margin-bottom:12px; font-size:1.2em; font-family: 'latoregular'; font-weight: normal; font-style: normal; } li { list-style-type: none; } div.container li img { margin-left:3px; margin-right: 3px; } .controls textarea { width:25%; height:5.2em; } .sidebar { position:relative; padding-top:2.2em; float:right; width:28%; background:transparent; } .main { float:left; position:relative; width:56%; padding-left:230px; min-height:10%; margin-bottom:4px; background:transparent; } .span6 { width: 100%; display:inline; text-align:center; font-family: 'latoregular'; font-weight: normal; font-style: normal; font-size:0.9em; color:#666666; } .span6 a{ color:#787878; text-decoration:none; } .span6 a:hover{ color:#666666; text-decoration:none; } /* Line 130 */ .container, .navbar-static-top .container, .navbar-fixed-top .container, .navbar-fixed-bottom .container { width: 100%; background:transparent; } #logo { color:#0895D3; padding-top:0px; padding-left:10px; font-weight:normal; float:top; max-height:20%; width:100%; } #logo img { width:100%; height:100%; } #slogan { height: 18%; line-height:98%; float:top; padding-left:5%; padding-top:1%; color:#0895D3; font-family: 'webfontgular'; font-size:80%; font-weight:normal; } #container { background:#ffffff; border: 1px solid #e6e6e6; padding: 10px 16px 10px 16px; } #content-wrapper { width: 77.0%; padding-left:0.0%; padding-right:1.0%; margin-left:12%; margin-right:11%; margin-bottom:1.4%; -webkit-box-shadow: 16px 2px 16px 0px rgba(50, 50, 50, 0.75); -moz-box-shadow: 16px 2px 16px 0px rgba(50, 50, 50, 0.75); box-shadow: 16px 2px 16px 0px rgba(50, 50, 50, 0.75); } #header-area { background:#ffffff; border-left: 1px solid #e6e6e6; border-right: 1px solid #e6e6e6; padding: 10px 16px 10px 16px; margin-bottom:0px; } #back-button-wrapper{ min-width:73%; width:73%; float:bottom; padding-bottom:5em; min-height:1.0em; margin-left:0%; margin-right:0%; margin-top:70%; position:fixed; } #home_wrapper, #blog_wrapper, #search_wrapper, #contact_wrapper, #about_wrapper { width: 17.6%; color:#0895D3; padding:0px 1px 0px 1px; height:53%; float:left; margin:0px 0px 0px 0px; position:relative; } #home, #blog, #search, #contact, #about{ width: 100%; height:40%; float:top; position:relative; } #home_tooltip, #blog_tooltip, #search_tooltip, #contact_tooltip, #about_tooltip, .social_tooltip { width: 100%; height:50%; float:top; position:relative; margin-left: -110%; margin-top:10%; } #social_1_tooltip, #social_2_tooltip, #social_3_tooltip, #social_4_tooltip, #social_5_tooltip, #social_6_tooltip, #back_tooltip { width: 100%; height:50%; float:top; position:relative; margin-left: -110%; margin-top:11%; } #properties-area a { text-decoration:none; } #properties-area a:hover { text-decoration:none; } .spacer { float:left; margin-bottom:0px; width:3%; height:60%; } .all_tab, .sales_tab, .rentals_tab, .featured_tab { text-align:center; float:left; color:#0895D3; font-weight:normal; font-size:1.4em; width:15%; height:65%; padding-top:1.1em; margin-top:-1.3%; } .all_tab:hover, .sales_tab:hover, .rentals_tab:hover, .featured_tab:hover { color:#666666; background:#EDEDED; border-radius: 15px; } .all_tab a:hover, .all_tab:hover a, .sales_tab a:hover, .sales_tab:hover a, .rentals_tab a:hover, .rentals_tab:hover a, .featured_tab a:hover, .featured_tab:hover a { color:#666666; } .all_tab_active, .sales_tab_active, .rentals_tab_active, .featured_tab_active { float:left; padding-top:4%; text-align:center; margin-bottom:0px; width:15%; height:60%; border-left:2px #0895D3 solid; border-top:2px #0895D3 solid; border-right:2px #0895D3 solid; } body { background:#ffffff; padding-top:0px; } .container ul li a img { height:5.2em; width:7.2em; position: relative; background-color: #fff; box-shadow: 0 1px 5px rgba(0,0,0,0.25), 0 0 50px rgba(0,0,0,0.1) inset; border-radius: 3% 3% 3% 3% / 3% 3% 3% 3%; } .container ul li img:before { position: absolute; width: 2.6em; height: 1.3em; left: 10%; border-radius: 50%; z-index: -1; top: 0%; content: ""; box-shadow: 0 -7px 16px rgba(0,0,0,0.4); } .container ul li img:after { position: absolute; width: 80%; height: 40%; left: 10%; border-radius: 50%; z-index: -1; bottom: 0%; content: ""; box-shadow: 0 7px 16px rgba(0,0,0,0.4); } #sidebar h3, .sidebar h3 { padding-top:5px; padding-bottom:5px; padding-left:5px; width:70%; font-size: 1.2em; background: #eeeeee; } #listing_header { font-family:Arial,Helvetica,sans-serif; font-weight:bold; float:top; width:100%; height:1.4em; margin-top:1.5em; margin-bottom:2.0em; } .sortable { } a.sortable { color:#333333; text-decoration:none; } a.sortable:hover { color:#333333; text-decoration:none; } .meta-data-wrapper, #meta-data-wrapper { padding-left:1%; padding-top:1%; width:70%; margin-top:0%; position:relative; float:left; min-height:40%; text-align:left; } .search-panel { width:100%; } .search-panel-titles { width:100%; height:1.4em; } .search-panel-title { color:#0895D3; font-size:60%; height:1.4em; font-weight:bold; float:right; width:12.5%; margin:0px 0px 0px 0px; } #property-form label { color:#0895D3; font-size:80%; height:1.4em; font-weight:bold; float:left; width:12.5%; margin:0px 0px 0px 0px; } .search-panel-title-pets { color:#0895D3; font-size:60%; height:1.4em; font-weight:bold; float:left; width:5%; margin:0px 0px 0px 0px; } .search-panel-title-last { color:#0895D3; font-size:60%; height:1.4em; font-weight:bold; float:left; width:7%; margin:0px 0px 0px 0px; } .search-panel-field { float:left; width:12.5%; margin:1px 0px 0px 0px; } .search-panel-field-pets { float:left; width:5%; margin:1px 0px 0px 0px; } .search-panel-field-last { float:left; width:7%; margin:0px 0px 0px 0px; } .search-panel-field { width: 10%; height: 45%; padding: 0px 3% 0px 2%; background-color: #f1f1f1; border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; border-top-width: 1px; border-right-width-value: 1px; border-bottom-width: 1px; border-left-width-value: 1px; border-top-style: solid; border-right-style-value: solid; border-bottom-style: solid; border-left-style-value: solid; border-top-color: #bfbfbf; border-right-color-value: #bfbfbf; border-bottom-color: #bfbfbf; border-left-color-value: #bfbfbf; border-image-source: none; border-image-slice: 100% 100% 100% 100%; border-image-width: 1 1 1 1; border-image-outset: 0 0 0 0; border-image-repeat: stretch stretch; box-shadow: #ccddcc; color: #949ca1; padding-top: 4px; padding-right: 6px; padding-bottom: 4px; padding-left: 6px; height: auto; position: relative; z-index: 0; float:left; margin-top:3%; margin-right:1%; } #property-form input, #property-form select { width: 11%; height: 45%; padding: 0px -0.3% 0px 0.3%; margin-left:-13%; background-color: #f1f1f1; border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; border-top-width: 1px; border-right-width-value: 1px; border-bottom-width: 1px; border-left-width-value: 1px; border-top-style: solid; border-right-style-value: solid; border-bottom-style: solid; border-left-style-value: solid; border-top-color: #bfbfbf; border-right-color-value: #bfbfbf; border-bottom-color: #bfbfbf; border-left-color-value: #bfbfbf; border-image-source: none; border-image-slice: 100% 100% 100% 100%; border-image-width: 1 1 1 1; border-image-outset: 0 0 0 0; border-image-repeat: stretch stretch; box-shadow: #ccddcc; color: #949ca1; font-size:0.7em; padding-top: 4px; padding-right: 2px; padding-bottom: 4px; padding-left: 2px; height: auto; position: relative; z-index: 0; float:left; margin-top:2%; margin-right:1%; } #id_category { width: 11%; height: 45%; padding: 0px -0.3% 0px 0.3%; margin-left:-13%; float:left; margin-top:3%; margin-right:1%; } #header-leftside-bar { float:left; max-width:20%; min-width:16%; height:3%; } #header-spacer { float:left; } #options-icon-bar { float:right; margin-right:0px; padding-top:1%; min-width:6%; max-width:46%; height:100%; } #socials-wrapper { float:right; margin-right:1.0em; margin-top:0.3%; max-width:27%; min-width:6%; padding-top:1%; height:1.0em; } .social { width: 1.28em; padding:0px 0px 0px 0px; height:1.28em; float:right; margin:0px 0px 0px 0.1em; position:relative; } .social img { padding: 0px 0px 0px 0px; height:100%; width: 100%; } .properties-listing-body { float:top; width:100%; line-height:1.6em; margin-bottom:0.4em; font-family: Arial,Helvetica,sans-serif; font-weight:normal; font-size:75%; overflow:hidden; padding: 0px 2% 0px 2%; } .properties-listing-head { float:top; width:100%; line-height:1.6em; margin-bottom:0.4em; font-family: Arial,Helvetica,sans-serif;font-weight:normal; font-weight:bold; font-size:75%; overflow:hidden; padding: 0px 2% 0px 2%; } .properties-listing-head .column-one, .properties-listing-body .column-one { float:left; width:6%; padding: 0px 0.5% 0px 0.5%; } .properties-listing-head .column-two, .properties-listing-body .column-two { padding:0px 0.5% 0px 0.5%; float:left; width:10%; } .properties-listing-head .column-three, .properties-listing-body .column-three { padding:0px 0.5% 0px 0.5%; float:left; width:9%; } .properties-listing-head .column-four, .properties-listing-body .column-four { padding:0px 0.5% 0px 0.5%; float:left; width:6.5%; } .properties-listing-head .column-five, .properties-listing-body .column-five { padding:0px 0.5% 0px 0.5%; float:left; width:5%; } .properties-listing-head .column-six, .properties-listing-body .column-six { padding:0px 0.5% 0px 0.5%; font-size:0.95em; float:left; width:8%; } .properties-listing-head .column-seven, .properties-listing-body .column-seven { padding:0px 0.5% 0px 0.5%; font-size:0.95em; float:left; width:8%; } .properties-listing-head .column-eight, .properties-listing-body .column-eight { padding:0px 0.5% 0px 0.5%; font-size:0.95em; float:left; width:6%; } .properties-listing-head .column-nine, .properties-listing-body .column-nine { padding:0px 0.5% 0px 0.5%; font-size:0.95em; float:left; width:17%; } .properties-listing-head .column-ten, .properties-listing-body .column-ten { padding:0px 0.5% 0px 0.5%; font-size:0.95em; float:left; width:4%; } .properties-listing-head .column-eleven, .properties-listing-body .column-eleven { padding:0px 0.5% 0px 0.5%; font-size:0.95em; float:left; width:8%; } .back-btn { max-height:1.7em; max-width:1.7em; margin-top:1%; margin-right:0%; float:right; } #back_btn_tooltip { height:2%; width:5%; position:fixed; margin-top:1.9em; margin-left:63%; float:right; } .back_btn img { width:100%; height:100%; padding: 0px 0px 0px 0px; } .grid-level { width:100%; margin:0px 0px 15px 15px; float:top; } .property-data-line-header { width:100%; text-align:left; min-height:1%; font-size:100%; } .property-data-line { width:100%; text-align:left; min-height:1%; font-size:75%; position:relative; } .property-contact-line { width:100%; text-align:left; min-height:1%; font-size:75%; } .property-data-title { width:15%; height:90%; text-align:left; float:left; } .property-data-title-last { width:25%; height:90%; text-align:left; float:left; } .property-data-field { width:84%; height:90%; padding-left:0.4em; text-align:left; float:left; } .property-data-field-last { width:69%; height:90%; padding-left:0.4em; text-align:left; float:left; } .property-photo-wrappper { width:30%; float:left; margin:5px 5px 5px 5px; } .property-photo-wrappper img{ -webkit-box-shadow: 5px 5px 2px 0px rgba(0,0,0,0.75); -moz-box-shadow: 5px 5px 2px 0px rgba(0,0,0,0.75); box-shadow: 5px 5px 2px 0px rgba(0,0,0,0.75); } #main_wrapper { width:100% margin: 0px 9% 0px 9%; } #search_results { } h1, h2, h3 { color:#0895D3; } #contact-us { max-height: 40px; float:right; margin-left:50%; padding-left:6%; } #contact-us img{ margin-left:4em; max-height: 33px; max-width: 100px; } #contact-form, #comment-form { position:fixed; border-radius:5px; margin-top:-30%; margin-left:30%; min-height:40%; min-width:20%; background:#ffffff; border:1px #0895D3 solid; color: #0895D3; display:none; min-width:23%; min-height:32%; } .contact-form-header { float:top; background: #369DD6; font-weight:bold; min-height:5%; color:#FFFFFF; text-align:center; font-size:1.3em; margin-top:0px; padding-top:2.5%; padding-bottom:3.0%; margin-bottom:2%; } .contact-form-header-header { float:left; width:89%; height:100%; } .contact-form-row { float:top; width:100%; position:relative; } .contact-form-row-left { float:left; min-height:10%; color: #369DD6; font-size:0.90em; width:24%; padding-left:1%; font-weight:bold; height:auto; } .contact-form-row-right { float:left; color: #369DD6; font-size:0.85em; width:75%; height:auto; padding-bottom:3%; } .close-form { float:left: width:14%; margin-right:0%; height:60%; } .close-form img { min-height:3%; max-height:8%; width:8%; } .contact-form-row-right input { max-width: 84%; height: 25%; padding: 0px 0px 0px 0px; background-color: #f1f1f1; border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: #369DD6; border-right-color: #369DD6; border-bottom-color: #369DD6; border-left-color: #369DD6; border-image-source: none; border-image-slice: 100% 100% 100% 100%; border-image-width: 1 1 1 1; border-image-outset: 0 0 0 0; border-image-repeat: stretch stretch; box-shadow: #ccddcc; color: #949ca1; padding-top: 3%; padding-right: 4%; padding-bottom: 0.5%; padding-left: 3%; position: relative; z-index: 0; } .contact-form-row-right textarea { max-width: 84%; height: 100%; font-size:0.9em; min-height:7.0em; line-height:1.0em; padding: 0px 0px 0px 0px; background-color: #f1f1f1; border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: #369DD6; border-right-color: #369DD6; border-bottom-color: #369DD6; border-left-color: #369DD6; border-image-source: none; border-image-slice: 100% 100% 100% 100%; border-image-width: 1 1 1 1; border-image-outset: 0 0 0 0; border-image-repeat: stretch stretch; box-shadow: #ccddcc; color: #949ca1; padding-top: 3%; padding-right: 4%; padding-bottom: 0%; padding-left: 3%; position: relative; z-index: 0; } .contact-form-send { float:left; display:block; margin-bottom:1%; } .contact-form-send img{ width:46px; height:23px; } .search-btn { background:url('./images/search_button_png.png') no-repeat; width:40px; height:40px; } .form-search-btn { background:url('./images/search_button_png.png') no-repeat; width:40px; height:40px; float:right; } /* Line 4 */ .search-btn:hover, .search-btn:focus { background:url('./images/search_button_png_pressed.png') no-repeat; width:40px; height:40px; } #sidebar-more-properties{ float:right; width:24%; min-height:58%; margin-top:-1.0em; margin-left:47%; margin-right:2.5%; padding-top:-12.00em; margin-bottom:-17em; } #sidebar-more-properties .header-area, #sidebar-dashboard .header-area { background-color: #369DD6; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: #369DD6; border-right-color: #369DD6; border-bottom-color: #369DD6; border-left-color: #369DD6; text-align:center; color:#ffffff; float:top; min-height:5%; margin-top:7%; padding:2% 5% 2% 5%; font-size: 0.76em; font-weight:bold; } #sidebar-more-properties .main-area, #sidebar-dashboard .main-area{ padding:2% 5% 2% 5%; float:top; min-height:89%; background:#ffffff; border-right-color: #369DD6; border-bottom-color: #369DD6; border-right-width: 1px; border-left-width: 1px; border-right-style: solid; border-left-style: solid; text-align:center; color:#369DD6; font-weight:normal; font-size:0.93em; } #sidebar-more-properties .footer-area, #sidebar-dashboard .footer-area{ float:top; background:ffffff; border-bottom-width: 1px; border-left-width: 1px; border-right-width: 1px; min-height:5%; border-right-color: #369DD6; border-bottom-color: #369DD6; border-left-color: #369DD6; border-right-style: solid; border-left-style: solid; border-bottom-style: solid; } .sidebar-apartments-list, .sidebar-dashboard-list { float:top; width:100%; margin-bottom:4px; padding-top:2%; padding-bottom:2%; } .sidebar-apartments-list-left, .sidebar-dashboard-list-left { width:29%; float:left; } .sidebar-apartments-list-right, .sidebar-dashboard-list-right { width:70%; font-size:0.8em; float:left; } .contact-grid { width:100%; } .contact-grid .map { width:39.7%; float:left; } .contact-grid .details { width:20%; float:left; font-size:0.86em; font-weight:bold; } .contact-grid .details p{ line-height:0.8em; } .contact-grid .form { width:39.7%; float:left; } .djng-field-errors { display:none; } .djng-form-errors ul, .djng-form-error li, .djng-form-error li.invalid { display:none; } ul.djng-form-errors li.invalid { display:none; } /* Line 14 */ .select2-container { box-sizing: border-box; float:left; width:10%; height: 45%; padding: 0px -1.2% 0px 0.3%; margin-left:-13%; padding-top: 4px; padding-right: 2px; padding-bottom: 4px; padding-left: 2px; height: auto; position: relative; z-index: 0; float:left; margin-top:1.8%; margin-right:0%; } /* results */ .select2-results { width:100%; font-size:0.7em; max-height: 200px; padding: 0 0 0 4px; margin: 4px 4px 4px 0; position: relative; overflow-x: hidden; overflow-y: auto; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } /* Line 1 */ .btn:focus, .btn.focus { background-color: #ffffff; background-image: none; background-repeat: repeat; background-attachment: scroll; background-position: 0% 0%; background-clip: border-box; background-origin: padding-box; background-size: auto auto; border-top-color: #ffffff; border-right-color-value: #ffffff; border-bottom-color: #ffffff; border-left-color-value: #ffffff; } /* Line 1 */ .btn:hover, .follow-combo.open .btn-user-actions, .dropdown.open .user-dropdown { color: #292f33; background-color: #e1e8ed; background-image: #ffffff; border-top-color: #e1e8ed; border-right-color-value: #e1e8ed; border-bottom-color: #e1e8ed; border-left-color-value: #e1e8ed; } /* Line 1 */ .primary-btn:hover, .primary-btn:focus { color: #ffffff; } /* Line 1 */ .primary-btn:hover, .primary-btn:focus { color: #ffffff; } /* Line 1 */ .primary-btn:focus, .primary-btn.focus, .following .follow-btn:focus, .following .follow-button:focus, .email-following .email-follow-button:focus, .notifying .device-follow-button:focus, .button-group-item .content.selected:focus { background-color: #55acee; background-image: none; background-repeat: repeat; background-attachment: scroll; background-position: 0% 0%; background-clip: border-box; background-origin: padding-box; background-size: auto auto; border-top-color: #ffffff; border-right-color-value: #ffffff; border-bottom-color: #ffffff; border-left-color-value: #ffffff; } /* Line 1 */ .primary-btn:hover { background-color: #55acee; background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.15)); border-top-color: #3b88c3; border-right-color-value: #3b88c3; border-bottom-color: #3b88c3; border-left-color-value: #3b88c3; } /* Line 227 */ /* Line 1 */ input { line-height: normal; } /* Line 1 */ .t1-label, input, textarea, div[contenteditable="true"], .t1-select { margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-size: 13px; line-height: 20px; } /* Line 1 */ input, textarea, div[contenteditable="true"], .t1-select { display: inline-block; width: 210px; padding-top: 4px; padding-right: 4px; padding-bottom: 4px; padding-left: 4px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; outline-width: 0px; outline-style: none; background-color: #ffffff; border-top-width: 1px; border-right-width-value: 1px; border-bottom-width: 1px; border-left-width-value: 1px; border-top-style: solid; border-right-style-value: solid; border-bottom-style: solid; border-left-style-value: solid; border-top-color: #e1e8ed; border-right-color-value: #e1e8ed; border-bottom-color: #e1e8ed; border-left-color-value: #e1e8ed; border-image-source: none; border-image-slice: 100% 100% 100% 100%; border-image-width: 1 1 1 1; border-image-outset: 0 0 0 0; border-image-repeat: stretch stretch; border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } /* Line 1 */ input, textarea, div[contenteditable="true"] { transition-property: background; transition-duration: 0.2s; transition-timing-function: linear; transition-delay: 0s; } /* Line 1 */ .btn { background-color: #ccd6dd; background-repeat: no-repeat; border-top-width: 1px; border-right-width-value: 1px; border-bottom-width: 1px; border-left-width-value: 1px; border-top-style: solid; border-right-style-value: solid; border-bottom-style: solid; border-left-style-value: solid; border-top-color: #e1e8ed; border-right-color-value: #e1e8ed; border-bottom-color: #e1e8ed; border-left-color-value: #e1e8ed; border-image-source: none; border-image-slice: 100% 100% 100% 100%; border-image-width: 1 1 1 1; border-image-outset: 0 0 0 0; border-image-repeat: stretch stretch; border-top-left-radius: 4px; border-top-right-radius: 4px; border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; color: #66757f; cursor: pointer; display: inline-block; font-size: 14px; font-weight: bold; line-height: normal; padding-top: 8px; padding-right: 16px; padding-bottom: 8px; padding-left: 16px; position: relative; } /* Line 1 */ .btn { background-color: #f5f8fa; background-image: #ffffff; } /* Line 1 */ .primary-btn, .following.first-hover .follow-btn:hover, .following .follow-btn, .following .follow-button.cancel-hover-style:hover, .following .follow-button, .email-following .email-follow-button.cancel-hover-style:hover, .email-following .email-follow-button, .notifying .device-follow-button, .button-group-item .content.selected { color: #ffffff; background-color: #55acee; background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.05)); border-top-width: 1px; border-right-width-value: 1px; border-bottom-width: 1px; border-left-width-value: 1px; border-top-style: solid; border-right-style-value: solid; border-bottom-style: solid; border-left-style-value: solid; border-top-color: #3b88c3; border-right-color-value: #3b88c3; border-bottom-color: #3b88c3; border-left-color-value: #3b88c3; border-image-source: none; border-image-slice: 100% 100% 100% 100%; border-image-width: 1 1 1 1; border-image-outset: 0 0 0 0; border-image-repeat: stretch stretch; box-shadow: 0px 1px 0px rgba(255, 255, 255, 0.15) inset; } /* Line 1 */ button, html input[type="button"], input[type="reset"], input[type="submit"] { cursor: pointer; } /* Line 1 */ input[type="button"], input[type="reset"], input[type="submit"] { width: auto; height: auto; } /* Line 1 */ input:focus, textarea:focus, div[contenteditable="true"]:focus, div.fake-focus[contenteditable="true"] { outline-width: 0px; outline-style: none; color: #292f33; border-top-color: #56b4ef; border-right-color-value: #56b4ef; border-bottom-color: #56b4ef; border-left-color-value: #56b4ef; } /* Line 1 */ .btn.focus, .btn:focus, .btn:active, .Button:focus { outline-width: 0px; outline-style: none; } /* Line 1 */ .btn:focus, .btn.focus { background-color: #ffffff; background-image: none; background-repeat: repeat; background-attachment: scroll; background-position: 0% 0%; background-clip: border-box; background-origin: padding-box; background-size: auto auto; border-top-color: #ffffff; border-right-color-value: #ffffff; border-bottom-color: #ffffff; border-left-color-value: #ffffff; } /* Line 1 */ .btn:hover, .follow-combo.open .btn-user-actions, .dropdown.open .user-dropdown { color: #292f33; background-color: #e1e8ed; background-image: #ffffff; border-top-color: #e1e8ed; border-right-color-value: #e1e8ed; border-bottom-color: #e1e8ed; border-left-color-value: #e1e8ed; } /* Line 1 */ .primary-btn:hover, .primary-btn:focus { color: #ffffff; } /* Line 1 */ .primary-btn:hover, .primary-btn:focus { color: #ffffff; } /* Line 1 */ .primary-btn:focus, .primary-btn.focus, .following .follow-btn:focus, .following .follow-button:focus, .email-following .email-follow-button:focus, .notifying .device-follow-button:focus, .button-group-item .content.selected:focus { background-color: #55acee; background-image: none; background-repeat: repeat; background-attachment: scroll; background-position: 0% 0%; background-clip: border-box; background-origin: padding-box; background-size: auto auto; border-top-color: #ffffff; border-right-color-value: #ffffff; border-bottom-color: #ffffff; border-left-color-value: #ffffff; } /* Line 1 */ .primary-btn:hover { background-color: #55acee; background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.15)); border-top-color: #3b88c3; border-right-color-value: #3b88c3; border-bottom-color: #3b88c3; border-left-color-value: #3b88c3; } https://abs.twimg.com/a/1411978577/css/t1/twitter_logged_out.bundle.css /* Line 1 */ .SignupForm input { width: 100%; box-sizing: border-box; margin-top: 10px; } /* Line 1 */ .SignupForm input:focus { border-top-color: #55acee; border-right-color-value: #55acee; border-bottom-color: #55acee; border-left-color-value: #55acee; box-shadow: none; } /* Line 1 */ .SignupForm .primary-btn:focus { border-top-color: #ffffff; border-right-color-value: #ffffff; border-bottom-color: #ffffff; border-left-color-value: #ffffff; } #id_subject, #id_select select { width:100%; float:right; margin-left:40%; margin-top:-4%; } .contact-grid .select2-container { box-sizing: border-box; width: 39%; margin-left: 0%; padding-top: 4px; padding-right: 2px; padding-bottom: 0px; padding-left: 2px; height: auto; position: relative; z-index: 0; margin-top: 0%; margin-right: 0%; } label[for=id_message] { margin-top:10%; } ul.djng-form-errors { display:inline; } .contact-grid textarea { margin-top:2%; margin-left:0%; } .contact-grid p:last-child { margin-top:2%; } .animate-enter { -webkit-transition: 1s linear all; /* Chrome */ transition: 1s linear all; opacity: 0; } .animate-enter.animate-enter-active { opacity: 1; } /* Remove colors and add transition property */ .alert-flash { padding: 8px 35px 8px 14px; margin-bottom: 20px; text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); border: 1px solid transparent; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; /* change transition property to all */ -webkit-transition-property: all; transition-property: all; } .alert-flash h4 { margin: 0; } .alert-flash .close { position: relative; top: -2px; right: -21px; line-height: 20px; } /* add warning colors to warn class */ .alert-warn { background-color: #fcf8e3; border: 1px solid #fbeed5; } .alert-warn, .alert-warn h4 { color: #c09853; } .submenu-wrapper { margin-top:-2.5em; width:11.5em; background:transparent; position:absolute; display:none; opacity: 0.8; } #submenu-wrapper-1 { margin-left:59.7%; } #submenu-wrapper-2 { margin-left:62.5%; } #submenu-wrapper-3 { margin-left:65.3%; } .submenu-wrapper .header-upper-left { float:left; width:41%; height:100%; margin: 0px 0px 0px 0px; } .submenu-wrapper .header-upper-middle { background-image: url('./images/corner_menu_4.png'); background-repeat:no-repeat; float:left; width:17.8%; height:100%; margin: 0px 0px 0px 0px; } .submenu-wrapper .header-upper-right { float:left; width:41%; height:100%; margin: 0px 0px 0px 0px; } .submenu-wrapper .header { background:#0b94d3; height:1.2em; width:100%; margin: -2.5% 0px 0px 0px; border-top-left-radius:5px; border-top-right-radius:5px; box-shadow: 4px 4px 2px #888888; } .submenu-wrapper .footer { background:#0b94d3; height:1.2em; width:100%; margin: -1.5% 0px 0px 0px; border-bottom-left-radius:5px; border-bottom-right-radius:5px; box-shadow: 4px 4px 2px #888888; } .submenu-wrapper .main-menu-section { background:#0b94d3; margin: -1.5% 0px -1.5% 0px; width:100%; padding-top:1%; padding-bottom: 1%; box-shadow: 4px 4px 2px #888888; } .submenu-wrapper .main-menu-section a { color:#b4e9fc; font-size:1.0em; font-weight:bold; text-decoration:none; } .submenu-wrapper .main-menu-section a:hover { color:#ffffff; font-size:1.0em; font-weight:bold; text-decoration:none; } .agent-wrapper { width:90%; margin-left:5%; margin-right:5%; margin-bottom:3%; margin-top:3%; display:block; } .agent-wrapper-left { width:20%; float:left; } .agent-wrapper-right { font-weight:bold; font-size:0.9em; width:80%; float:left; color:#333333; padding-top:1%; } .agent-wrapper-left .avatar{ width:100%; float:top; height:85%; } .agent-wrapper-left .avatar img { border: solid 1px #CCC; -moz-box-shadow: 1px 1px 5px #999; -webkit-box-shadow: 1px 1px 5px #999; box-shadow: 1px 1px 5px #999; } .agent-wrapper-left .agent-data { padding: 1% 3px 2px 3px; width:100%; height:15%; float:top; color:#333333; font-weight:bold; font-size:0.8em; } .well-login { margin-top:5%; margin-left:34%; margin-right:39%; min-width:20.5%; max-width:60%; margin-bottom:10%; min-height: 20px; max-height: 30%; padding-top: 5%; padding-right: -5%; padding-bottom: 19px; padding-left: 5%; background-color: #f5f5f5; border-top-width: 1px; border-right-width-value: 1px; border-bottom-width: 1px; border-left-width-value: 1px; border-top-style: solid; border-right-style-value: solid; border-bottom-style: solid; border-left-style-value: solid; border-top-color: #e3e3e3; border-right-color-value: #e3e3e3; border-bottom-color: #e3e3e3; border-left-color-value: #e3e3e3; border-image-source: none; border-image-slice: 100% 100% 100% 100%; border-image-width: 1 1 1 1; border-image-outset: 0 0 0 0; border-image-repeat: stretch stretch; border-top-left-radius: 4px; border-top-right-radius: 4px; border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.05) inset; } .well-login img { box-shadow:none; border:none; } .well-login-social { width:80%; height:20%; margin-top:4%; margin-left:5%; } .well-login-social-icon-first { float:left; height:100%; width:30.0%; margin-right:0.5%; } .well-login-social-icon-last { float:left; height:100%; width:60.0%; margin-right:0.5%; } .well-login-social-icon { float:left; height:100%; width:16.8%; margin-right:0.5%; } /* Line 353 */ .btn-login { border-top-color: rgba(0, 0, 0, 0.15); border-right-color-value: rgba(0, 0, 0, 0.15); border-bottom-color: rgba(0, 0, 0, 0.25); border-left-color-value: rgba(0, 0, 0, 0.15); } /* Line 354 */ .btn-login-primary { color: #ffffff; text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.25); background-color: #006dcc; background-image: #0088cc; background-repeat: repeat-x; border-top-color: rgba(0, 0, 0, 0.1); border-right-color-value: rgba(0, 0, 0, 0.1); border-bottom-color: rgba(0, 0, 0, 0.25); border-left-color-value: rgba(0, 0, 0, 0.1); } /* Line 28 */ button, input[type="button"], input[type="reset"], input[type="submit"] { cursor: pointer; } /* Line 239 */ input[type="file"], input[type="image"], input[type="submit"], input[type="reset"], input[type="button"], input[type="radio"], input[type="checkbox"] { width: auto; } /* Line 322 */ .form-search input, .form-inline input, .form-horizontal input, .form-search textarea, .form-inline textarea, .form-horizontal textarea, .form-search select, .form-inline select, .form-horizontal select, .form-search .help-inline, .form-inline .help-inline, .form-horizontal .help-inline, .form-search .uneditable-input, .form-inline .uneditable-input, .form-horizontal .uneditable-input, .form-search .input-prepend, .form-inline .input-prepend, .form-horizontal .input-prepend, .form-search .input-append, .form-inline .input-append, .form-horizontal .input-append { display: inline-block; margin-bottom: 0px; vertical-align: middle; } /* Line 337 */ .btn-login:hover, .btn-login:active, .btn-login.active, .btn-login.disabled, .btn-login[disabled] { color: #333333; background-color: #e6e6e6; } /* Line 339 */ .btn-login:first-child { } /* Line 340 */ .btn-login:hover { color: #333333; background-color: #e6e6e6; background-position: 0px -15px; transition-property: background-position; transition-duration: 0.1s; transition-timing-function: linear; transition-delay: 0s; } /* Line 341 */ .btn-login:focus { outline-width: thin; outline-style: dotted; outline-color: #333333; outline-offset: -2px; } /* Line 354 */ .btn-primary:hover, .btn-primary:active, .btn-primary.active, .btn-primary.disabled, .btn-primary[disabled] { color: #ffffff; background-color: #0044cc; } /* Line 366 */ button.btn-login, input.btn-login[type="submit"] { } #sign-in-form .helptext { display:none; } #match-failure-message, #failure-message, #duplicate-user-message, #success-message, #login-failure-message,#login-success-message, #register-failure-message, #register-success-message, #password-failure-message, #activate-success-message { margin-top:-3%; } #success-message p,#login-success-message p,#register-success-message p, #activate-success-message p { color:green; font-size:1.2em; font-weight:bold; } #match-failure-message p, #failure-message p,#login-failure-message p, #duplidate-user-message p, #register-failure-message p, #password-failure-message p{ color:red; font-size:1.2em; font-weight:bold; -webkit-transition: all 4s ease-out 0s; -moz-transition: all 4s ease-out 0s; -ms-transition: all 4s ease-out 0s; -o-transition: all 4s ease-out 0s; transition: all 4s ease-out 0s; transition: all 2s ease-in-out; } .pagination { float:left; } .ul li { display:inline; } ul.pagination li.active { display:inline; } ul.pagination li.disabled { display:inline; } ul.pagination li,ul.pagination li a.page { display:inline; } /* Line 233 */ a { color: #0088cc; } /* Line 74 */ a:focus { outline-width: thin; outline-style: dotted; outline-color: #333333; outline-offset: -2px; } /* Line 80 */ a:hover, a:active { outline-width: 0px; outline-style: none; } /* Line 238 */ a:hover, a:focus { color: #005580; } /* Line 238 */ a:hover, a:focus { color: #005580; } /* Line 4997 */ .pagination ul > li > a, .pagination ul > li > span { float: left; padding-top: 4px; padding-right: 12px; padding-bottom: 4px; padding-left: 12px; line-height: 20px; background-color: #ffffff; border-top-width: 1px; border-right-width-value: 1px; border-bottom-width: 1px; border-top-style: solid; border-right-style-value: solid; border-bottom-style: solid; border-left-style-value: solid; border-top-color: #dddddd; border-right-color-value: #dddddd; border-bottom-color: #dddddd; border-left-color-value: #dddddd; border-image-source: none; border-image-slice: 100% 100% 100% 100%; border-image-width: 1 1 1 1; border-image-outset: 0 0 0 0; border-image-repeat: stretch stretch; border-left-width-value: 0px; } /* Line 5021 */ .pagination ul > .disabled > span, .pagination ul > .disabled > a, .pagination ul > .disabled > a:hover, .pagination ul > .disabled > a:focus { color: #999999; cursor: default; background-color: transparent; } /* Line 5008 */ .pagination ul > li > a:hover, .pagination ul > li > a:focus, .pagination ul > .active > a, .pagination ul > .active > span { background-color: #f5f5f5; } /* Line 5008 */ .pagination ul > li > a:hover, .pagination ul > li > a:focus, .pagination ul > .active > a, .pagination ul > .active > span { background-color: #f5f5f5; } /* Line 5030 */ .pagination ul > li:first-child > a, .pagination ul > li:first-child > span { border-left-width-value: 1px; border-bottom-left-radius: 4px; border-top-left-radius: 4px; } /* Line 5021 */ .pagination ul > .disabled > span, .pagination ul > .disabled > a, .pagination ul > .disabled > a:hover, .pagination ul > .disabled > a:focus { color: #999999; cursor: default; background-color: transparent; } /* Line 5021 */ .pagination ul > .disabled > span, .pagination ul > .disabled > a, .pagination ul > .disabled > a:hover, .pagination ul > .disabled > a:focus { color: #999999; cursor: default; background-color: transparent; } .panel-section { float:left; width:74%; min-height:58%; padding-left:2.5%; } #sidebar-dashboard { float:left; width:20%; min-height:58%; margin-right:2.5%; } #dashboard { width:100%; } #sidebar-dashboard .main-area { padding-top: 2%; padding-right: 5%; padding-bottom: 2%; padding-left: 5%; background-color: #ffffff; background-image: none; background-repeat: repeat; background-attachment: scroll; background-position: 0% 0%; background-clip: border-box; background-origin: padding-box; background-size: auto auto; border-right-color-value: #369dd6; border-bottom-color: #369dd6; border-right-width-value: 1px; border-left-width-value: 1px; border-right-style-value: solid; border-left-style-value: solid; color: #369dd6; font-weight: normal; font-size: 0.93em; min-height: 120%; } #dashboard-form { min-height:100%; display:block; margin-bottom:1.0em; } .dashboard-profile-row { width: 100%; float:top; margin-bottom:1.0em; } .dashboard-profile-titles { float:left; width:14%; color:#0895D3; } .dashboard-profile-fields { float:left; width:85%; } .dashboard-profile-fields textarea { min-height: 4.0em; }
0.325949
0.056444
* { box-sizing: border-box; } .container { max-width: 1000px; margin: 0 auto; padding: 0 20px; height: auto; } img { width: 100%; height: auto; } .sketch-row { display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; margin-top: 2rem; -ms-flex-pack: center; justify-content: center; } .sketch-row__wireframe { -ms-flex-preferred-size: 100%; flex-basis: 100%; } @media only screen and (min-width: 600px) { .sketch-row__wireframe { -ms-flex-preferred-size: 35%; flex-basis: 35%; -ms-flex-negative: 0; flex-shrink: 0; } } .sketch-row__sketch { -ms-flex-preferred-size: 100%; flex-basis: 100%; } .sketch-row__sketch--tall { max-width: 600px; } .sketch-row--spacing > *:not(:first-of-type) { margin-left: 20px; } .sketch-row img { width: 100%; height: auto; } @media only screen and (max-width: 600px) { .sketch-row { -ms-flex-wrap: nowrap; flex-wrap: nowrap; } } button, .button { border-radius: 6px; padding: 20px 40px; background: #0071AD; font-family: "Open Sans", Helvetica, Arial, sans-serif; font-size: 2rem; color: #fff; } @media only screen and (max-width: 600px) { button, .button { font-size: 2rem; } } button:hover, button:active, button.active, .button:hover, .button:active, .button.active { cursor: pointer; background: #162157; color: #fff; } body { margin: 0; font-family: "Open Sans", Helvetica, Arial, sans-serif; color: #353535; } p, h1, h2, h3 { font-family: "Open Sans", Helvetica, Arial, sans-serif; font-weight: 400; } h1 { font-size: 3rem; font-weight: 600; color: #162157; margin-top: 40px; } h2 { color: #162157; font-size: 2rem; } h3 { color: #162157; font-weight: bold; } p { font-size: 1rem; } a, a:visited { color: #0071AD; } a:hover, a:visited:hover { color: #162157; cursor: pointer; } header, section, footer { width: 100%; position: relative; } footer { background: #E6EEF4; color: #353535; padding: 50px 0; text-align: center; margin-top: 20px; } footer .copyright { padding-top: 30px; } footer .copyright p { font-size: .675rem; line-height: 1rem; } @media only screen and (max-width: 600px) { .container { width: auto; max-width: 100%; height: auto; } .image { width: auto; max-width: 100%; height: auto; } button, .button { width: 100%; } body { margin: 60px 40px; width: 100%; max-width: 100%; } h1 { font-size: 3rem; } h2 { font-size: 2rem; } }
css/site.css
* { box-sizing: border-box; } .container { max-width: 1000px; margin: 0 auto; padding: 0 20px; height: auto; } img { width: 100%; height: auto; } .sketch-row { display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; margin-top: 2rem; -ms-flex-pack: center; justify-content: center; } .sketch-row__wireframe { -ms-flex-preferred-size: 100%; flex-basis: 100%; } @media only screen and (min-width: 600px) { .sketch-row__wireframe { -ms-flex-preferred-size: 35%; flex-basis: 35%; -ms-flex-negative: 0; flex-shrink: 0; } } .sketch-row__sketch { -ms-flex-preferred-size: 100%; flex-basis: 100%; } .sketch-row__sketch--tall { max-width: 600px; } .sketch-row--spacing > *:not(:first-of-type) { margin-left: 20px; } .sketch-row img { width: 100%; height: auto; } @media only screen and (max-width: 600px) { .sketch-row { -ms-flex-wrap: nowrap; flex-wrap: nowrap; } } button, .button { border-radius: 6px; padding: 20px 40px; background: #0071AD; font-family: "Open Sans", Helvetica, Arial, sans-serif; font-size: 2rem; color: #fff; } @media only screen and (max-width: 600px) { button, .button { font-size: 2rem; } } button:hover, button:active, button.active, .button:hover, .button:active, .button.active { cursor: pointer; background: #162157; color: #fff; } body { margin: 0; font-family: "Open Sans", Helvetica, Arial, sans-serif; color: #353535; } p, h1, h2, h3 { font-family: "Open Sans", Helvetica, Arial, sans-serif; font-weight: 400; } h1 { font-size: 3rem; font-weight: 600; color: #162157; margin-top: 40px; } h2 { color: #162157; font-size: 2rem; } h3 { color: #162157; font-weight: bold; } p { font-size: 1rem; } a, a:visited { color: #0071AD; } a:hover, a:visited:hover { color: #162157; cursor: pointer; } header, section, footer { width: 100%; position: relative; } footer { background: #E6EEF4; color: #353535; padding: 50px 0; text-align: center; margin-top: 20px; } footer .copyright { padding-top: 30px; } footer .copyright p { font-size: .675rem; line-height: 1rem; } @media only screen and (max-width: 600px) { .container { width: auto; max-width: 100%; height: auto; } .image { width: auto; max-width: 100%; height: auto; } button, .button { width: 100%; } body { margin: 60px 40px; width: 100%; max-width: 100%; } h1 { font-size: 3rem; } h2 { font-size: 2rem; } }
0.475605
0.078148
/*************************** * Register Items ****************************/ /*************************** * Register Right Bar ****************************/ /*************************** * Register Summary Right Bar ****************************/ .avatar-fix{ width: 60%; } .register .register-box { background-color: #FFFFFF; border-width: 1px; border-color: #e8ebf1; border-style: solid; border-radius: 6px; background-color: #ffffff; margin-top: 5px; /*box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.05);*/ } .register .paper-cut:after { content: " "; display: block; position: relative; top: 0px; left: 0px; width: 100%; height: 36px; background: -webkit-linear-gradient(#FFFFFF 0%, transparent 0%), -webkit-linear-gradient(135deg, #e8ebf1 33.33%, transparent 33.33%) 0 0%, #e8ebf1 -webkit-linear-gradient(45deg, #e8ebf1 33.33%, #FFFFFF 33.33%) 0 0%; background: -o-linear-gradient(#FFFFFF 0%, transparent 0%), -o-linear-gradient(135deg, #e8ebf1 33.33%, transparent 33.33%) 0 0%, #e8ebf1 -o-linear-gradient(45deg, #e8ebf1 33.33%, #FFFFFF 33.33%) 0 0%; background: -moz-linear-gradient(#FFFFFF 0%, transparent 0%), -moz-linear-gradient(135deg, #e8ebf1 33.33%, transparent 33.33%) 0 0%, #e8ebf1 -moz-linear-gradient(45deg, #e8ebf1 33.33%, #FFFFFF 33.33%) 0 0%; background-repeat: repeat-x; background-size: 0px 100%, 14px 27px, 14px 27px; } .register .register-items-form .item-form { text-align: center; padding: 20px; } .register .register-items-form .item-form .input-group { width: 100%; } .register .register-items-form .item-form .input-group .selectize-input { text-align: left; height: 22px !important; border: 0px solid #D7DCE5; } .register .register-items-form .item-form .input-group .selectize-input.focus { border-color: #66afe9; outline: 0; -webkit-box-shadow: none !important; box-shadow: none !important; } .register .register-items-form .item-form .input-group .selectize-dropdown.single.add-item-input { top: 38px !important; border-left: 1px solid #D7DCE5 !important; border-right: 1px solid #D7DCE5 !important; margin-left: 0 !important; } .register .register-items-form .item-form .input-group .add-item-input, .register .register-items-form .item-form .input-group .selectize-input input, .register .register-items-form .item-form .input-group #item { width: 100%; height: 42px; background-color: #FFF; -moz-border-radius: 0px; -webkit-border-radius: 0px; border-radius: 0px; color: #000; font-size: 14px; font-weight: 300; display: block; float: left; border: 1px solid #D7DCE5; padding-left: 10px; border-right-width: 0px; -webkit-appearance: none; } .register .register-items-form .item-form .input-group .add-item-input:focus, .register .register-items-form .item-form .input-group .selectize-input input:focus, .register .register-items-form .item-form .input-group #item:focus { border-color: #D7DCE5 !important; } .register .register-items-form .item-form .input-group .add-item-input.items-count, .register .register-items-form .item-form .input-group .selectize-input input.items-count, .register .register-items-form .item-form .input-group #item.items-count { border: 1px solid #D7DCE5 !important; } .register .register-items-form .item-form .input-group .input-group-addon { width: 38px; height: 22px !important; background-color: #489ee7; opacity: 1; border: 0px solid #D7DCE5; -moz-border-radius: 3px 0px 0px 3px; padding: 1px !important; } .register .register-items-form .item-form .input-group .input-group-addon > a { color: #FFFFFF; text-decoration: none; padding: 8px 15px 10px 15px; } .register .register-items-form .item-form .input-group .input-group-addon i { color: #FFF; margin-right: 5px; font-size: 16px; font-weight: 500; } .register .register-items-form .item-form .input-group .input-group-addon.register-mode.stock-dropdown { display: table-cell; } .register .register-items-form .item-form .input-group .input-group-addon.register-mode .group-heading { position: absolute; left: 2px; top: 2px; line-height: 10px; font-size: 10px; } .register .register-items-form .item-form .input-group .input-group-addon.register-mode.sale-mode, .register .register-items-form .item-form .input-group .input-group-addon.register-mode.receive-mode { background-color: #F2FFED ; border: 1px solid #85EF60; border-right-width: 0px; -moz-border-radius: 0px; -webkit-border-radius: 0px; border-radius: 0px; padding: 1px !important; } .register .register-items-form .item-form .input-group .input-group-addon.register-mode.sale-mode > a, .register .register-items-form .item-form .input-group .input-group-addon.register-mode.receive-mode > a { text-decoration: none; color: #6FD64B; font-size: 18px; font-weight: 300; padding: 8px 10px 10px 10px; } .register .register-items-form .item-form .input-group .input-group-addon.register-mode.sale-mode > a i, .register .register-items-form .item-form .input-group .input-group-addon.register-mode.receive-mode > a i { color: #6FD64B; margin-right: 5px; line-height: 18px; font-size: 16px; } .register .register-items-form .item-form .input-group .input-group-addon.register-mode.sale-mode:hover, .register .register-items-form .item-form .input-group .input-group-addon.register-mode.receive-mode:hover { background-color: #e0ffd4; } .register .register-items-form .item-form .input-group .input-group-addon.register-mode.sale-mode, .register .register-items-form .item-form .input-group .input-group-addon.register-mode.vat_order-mode, .register .register-items-form .item-form .input-group .input-group-addon.register-mode.purchase_order-mode { background-color: #F2FFED ; border: 1px solid #85EF60; border-right-width: 0px; -moz-border-radius: 0px; -webkit-border-radius: 0px; border-radius: 0px; padding: 1px !important; } .register .register-items-form .item-form .input-group .input-group-addon.register-mode.sale-mode > a, .register .register-items-form .item-form .input-group .input-group-addon.register-mode.vat_order-mode > a, .register .register-items-form .item-form .input-group .input-group-addon.register-mode.purchase_order-mode > a { text-decoration: none; color: #6FD64B; font-size: 18px; font-weight: 300; padding: 8px 10px 10px 10px; } .register .register-items-form .item-form .input-group .input-group-addon.register-mode.sale-mode > a i, .register .register-items-form .item-form .input-group .input-group-addon.register-mode.vat_order-mode > a i, .register .register-items-form .item-form .input-group .input-group-addon.register-mode.purchase_order-mode > a i { color: #6FD64B; margin-right: 5px; line-height: 18px; font-size: 16px; } .register .register-items-form .item-form .input-group .input-group-addon.register-mode.sale-mode:hover, .register .register-items-form .item-form .input-group .input-group-addon.register-mode.vat_order-mode:hover, .register .register-items-form .item-form .input-group .input-group-addon.register-mode.purchase_order-mode:hover { background-color: #e0ffd4; } .register .register-items-form .item-form .input-group .input-group-addon.register-mode.return-mode { background-color: #FFF0DD; border: 1px solid #FFCD90; -moz-border-radius: 0px; -webkit-border-radius: 0px; border-radius: 0px; } .register .register-items-form .item-form .input-group .input-group-addon.register-mode.return-mode > a { text-decoration: none; color: #FEAE4E; font-size: 18px; font-weight: 300; } .register .register-items-form .item-form .input-group .input-group-addon.register-mode.return-mode > a i { color: #FEAE4E; margin-right: 5px; line-height: 18px; font-size: 16px; } .register .register-items-form .item-form .input-group .input-group-addon.register-mode.return-mode > a i:before { content: "\e632"; } .register .register-items-form .item-form .input-group .input-group-addon.register-mode.return-mode:hover { background-color: #ffe5c3; } .register .register-items-form .item-form .input-group .input-group-addon.register-mode.store_account_payment-mode, .register .register-items-form .item-form .input-group .input-group-addon.register-mode.assigment-mode, .register .register-items-form .item-form .input-group .input-group-addon.register-mode.transfer-mode { background-color: #F9FBFC; border: 1px solid #D7DCE5; -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0; } .register .register-items-form .item-form .input-group .input-group-addon.register-mode.store_account_payment-mode > a, .register .register-items-form .item-form .input-group .input-group-addon.register-mode.assigment-mode > a, .register .register-items-form .item-form .input-group .input-group-addon.register-mode.transfer-mode > a { color: #000; margin-right: 5px; line-height: 18px; font-size: 16px; background-color: transparent; font-weight: 300; text-decoration: none; } .register .register-items-form .item-form .input-group .input-group-addon.register-mode.store_account_payment-mode > a i, .register .register-items-form .item-form .input-group .input-group-addon.register-mode.assigment-mode > a i, .register .register-items-form .item-form .input-group .input-group-addon.register-mode.transfer-mode > a i { color: #000; margin-right: 5px; line-height: 18px; font-size: 16px; } .register .register-items-form .item-form .input-group .input-group-addon.register-mode.store_account_payment-mode > a i:before, .register .register-items-form .item-form .input-group .input-group-addon.register-mode.transfer-mode > a i:before { content: "\e602"; } .register .register-items-form .item-form .input-group .input-group-addon.register-mode.store_account_payment-mode:hover, .register .register-items-form .item-form .input-group .input-group-addon.register-mode.transfer-mode:hover { background-color: #f2f6f9; } .register .register-items-form .item-form .input-group .input-group-addon.grid-buttons { /*width: 254px;*/ height: 104px; background-color: #489ee7; border: 1px solid #489ee7; -moz-border-radius: 0px 3px 3px 0px; -webkit-border-radius: 0px 3px 3px 0px; border-radius: 0px 3px 3px 0px; padding: 1px !important; } .register .register-items-form .item-form .input-group .input-group-addon.grid-buttons a { color: #FFF; font-size: 16px; font-weight: 300; text-decoration: none; padding: 8px 10px 10px 10px; } .register .register-items-form .item-form .input-group .input-group-addon.grid-buttons a i { margin-right: 5px; line-height: 18px; font-size: 14px; } .register .register-items-form .item-form .input-group .input-group-addon.grid-buttons:hover { background-color: #3192e4; } .register .register-items .register-items-holder { padding-top: 5px; } .register .register-items .register-items-holder tr.register-item-details:hover, .register .register-items .register-items-holder tr.register-item-details:hover + tr { background-color: #f5f7f9; } .register .register-items .register-items-holder td.selected, .register .register-items .register-items-holder tr:hover td { background-color: transparent; } .register .register-items .register-items-holder .register-item-content { min-height: 52px; border-bottom: 1px dotted #D7DCE5; padding-top: 10px; } .register .register-items .register-items-holder .register-item-content .register-item-bottom:hover { background-color: #f5f7f9; } .register .register-items .register-items-holder .register-item-content .register-item-bottom td { border-top-width: 0px; } .register .register-items .register-items-holder .register-item-content .delete-item, #reg_item_top .delete-item { color: #FF7474; font-size: 18px; font-weight: 500; margin: 5px; } .register .register-items .register-items-holder .register-item-content .register-item-name { color: #438AF7; font-size: 14px; font-weight: 300; max-width:300px; display:block; } .register .register-items .register-items-holder .register-item-content .register-item-name.count-items { font-size: 14px; margin-left: 20px; } .register .register-items .register-items-holder .register-item-content .register-item-extra-details { padding-left: 5px; color: #000; font-size: 12px; margin-bottom: 0px; } .register .register-items .register-items-holder .register-item-content .register-item-extra-details dt { color: #000000; text-align: left; width: 130px; line-height: 20px; min-width: 50px !important; } .register .register-items .register-items-holder .register-item-content .register-item-extra-details dd { margin-left: 0px; line-height: 20px; } .register .register-items .register-items-holder .register-item-content .register-item-extra-details a { color: #000; } .register-right { /*display: none;*/ /* Customer badge when added */ } .register .register-right fieldset { width: auto; border: solid 1px rgb(233, 236, 242); text-align: center; } .register .register-right fieldset legend { width: auto; text-align: center; font-weight: bold; font-size: 14px; border-bottom: none; padding: 0 5px 0 5px; } .register .register-right .sale-buttons { min-height: 78px; text-align: center; padding: 20px 10px; border-bottom: 1px solid #E9ECF2; } .register .register-right .sale-buttons #cancel_sale_form { display: inline-block; } .register .register-right .sale-buttons .btn { margin-right: 5px; margin-top: 5px; /*margin-bottom: 5px;*/ } .register .register-right .sale-buttons .btn-more, .register .register-right .sale-buttons .btn-default { min-width: 58px; height: 35px; background-color: #F9FBFC; border: 1px solid #D7DCE5; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; } .register .register-right .sale-buttons .btn-more i, .register .register-right .sale-buttons .btn-default i { line-height: 12px; font-size: 22px; color: #9398a0; } .register .register-right .sale-buttons .btn-group.open .dropdown-toggle.btn-suspended { background-color: #ffe5c3; border: 1px solid #ffc276; } .register .register-right .sale-buttons .btn-suspended { height: 35px; background-color: #FFF0DD; border: 1px solid #FFCD90; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; color: #FEAE4E; font-size: 12px; font-weight: 400; line-height: 20px; } .register .register-right .sale-buttons .btn-suspended:hover { background-color: #ffdaaa; } .register .register-right .sale-buttons .btn-cancel { height: 35px; background-color: #FFEAEA; border: 1px solid #FFA8A8; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; color: #FF7474; font-size: 12px; font-weight: 400; line-height: 20px; } .register .register-right .sale-buttons .btn-cancel:hover, .register .register-right .sale-buttons .btn-cancel:focus { background-color: #ffb7b7; } .register .register-right .sale-buttons .btn-group.open .dropdown-toggle { box-shadow: none !important; background-color: #f2f6f9; } .register .register-right .customer-badge { padding: 7px 30px; border-bottom: 1px solid #E9ECF2; min-height: 80px; background-color: #FFFFFF; } .register .register-right .customer-badge.location { height: 60px; } .register .register-right .customer-badge .avatar { float: left; display: inline-block; width: 60px; height: 60px; } .register .register-right .customer-badge .avatar img { width: 100%; border-radius: 50%; } .register .register-right .customer-badge .details { padding: 0px; padding-left: 72px; text-align: left; padding-top: 10px; position: relative; } .register .register-right .customer-badge .details .name { font-weight: 400; font-size: 16px; text-decoration: none; display: block; text-transform: capitalize; } .register .register-right .customer-badge .details .name .balance, .register .register-right .customer-badge .details .name .points { font-size: 12px; } .register .register-right .customer-badge .details .name:hover { color: #489ee7; } .register .register-right .customer-badge .details .email { color: #67676C; font-size: 10px; font-weight: 400; } .register .register-right .customer-badge .details .btn-edit { width: 47px; height: 36px; background-color: #F9FBFC; border: 1px solid #e8ebf1; border-right-width: 0px; border-top-width: 0px; color: #489ee7; font-size: 18px; font-weight: 500; position: absolute; top: 0; right: 0; margin-top: -7px; margin-right: -30px; } .register .register-right .customer-badge.suggestions { border-left: 0px solid #d7dce5; border-right: 0 px solid #E9ECF2; height: 60px !important; padding: 7px 15px !important; } .register .register-right .customer-badge.suggestions .avatar { width: 35px; height: auto; } .register .register-right .customer-badge.suggestions:hover, .register .register-right .customer-badge.suggestions.active, .register .register-right .customer-badge.suggestions:focus { background-color: #f3f4f8; } .register .register-right .customer-badge.suggestions .details { padding-top: 5px; text-align: left; padding-left: 40px; line-height: 14px; } .register .register-right .customer-badge.suggestions .details .name { color: #8cc2f0; } .register .register-right .customer-action-buttons .register .register-right .customer-action-buttons label { width: 49%; height: 50px; display: inline-block; color: #67676C; font-size: 16px; font-weight: 400; text-transform: capitalize; line-height: 30px; } .register .register-right .customer-action-buttons a:first-child, .register .register-right .customer-action-buttons label:first-child { border-right: 1px solid #E9ECF2; } .register .register-right .customer-action-buttons a:first-child i, .register .register-right .customer-action-buttons label:first-child i { color: #ddd; font-size: 18px; font-weight: 500; } .register .register-right .customer-action-buttons a i, .register .register-right .customer-action-buttons label i { color: #FF7474; font-size: 18px; font-weight: 500; } .register .register-right .customer-action-buttons a.email-checked i, .register .register-right .customer-action-buttons label.email-checked i { color: #489ee7; } .register .register-right .customer-action-buttons a.email-checked i:before, .register .register-right .customer-action-buttons label.email-checked i:before { content: "\f120"; } .register .register-right .customer-action-buttons a.success i, .register .register-right .customer-action-buttons label.success i { color: #489ee7; } .register .register-right .customer-action-buttons label { width: 100%; } .register .register-right .customer-form { text-align: center; padding: 20px; } .register .register-right .customer-form.sale_date { text-align: left; } .register .register-right .customer-form .input-group { width: 100%; } .register .register-right .customer-form .input-group .selectize-input, .register .register-right .customer-form .input-group #customer, .register .register-right .customer-form .input-group #supplier, .register .register-right .customer-form .input-group #employee, .register .register-right .customer-form .input-group #location { text-align: left; height: 40px !important; -webkit-appearance: none; border: 0px solid #D7DCE5; } .register .register-right .customer-form .input-group .selectize-input.focus, .register .register-right .customer-form .input-group #customer.focus, .register .register-right .customer-form .input-group #supplier.focus, .register .register-right .customer-form .input-group #employee.focus, .register .register-right .customer-form .input-group #location.focus { border-color: #66afe9; outline: 0; -webkit-box-shadow: none !important; box-shadow: none !important; } .register .register-right .customer-form .input-group .selectize-dropdown.single.add-customer-input, .register .register-right .customer-form .input-group #customer, .register .register-right .customer-form .input-group #supplier, .register .register-right .customer-form .input-group #employee, .register .register-right .customer-form .input-group #location { top: 38px !important; border-left: 1px solid #D7DCE5 !important; margin-left: 0 !important; } .register .register-right .customer-form .input-group .add-customer-input, .register .register-right .customer-form .input-group .selectize-input input, .register .register-right .customer-form .input-group #customer, .register .register-right .customer-form .input-group #supplier, .register .register-right .customer-form .input-group #employee, .register .register-right .customer-form .input-group #location { width: 100%; background-color: #FFF; -moz-border-radius: 0px 3px 3px 0px; -webkit-border-radius: 0px 3px 3px 0px; border-radius: 0px 3px 3px 0px; color: #000; font-size: 14px; font-weight: 300; display: block; float: left; border: 1px solid #D7DCE5; border-left-width: 0px !important; } .register .register-right .customer-form .input-group .add-customer-input:focus, .register .register-right .customer-form .input-group .selectize-input input:focus, .register .register-right .customer-form .input-group #customer:focus, .register .register-right .customer-form .input-group #supplier:focus, .register .register-right .customer-form .input-group #employee:focus, .register .register-right .customer-form .input-group #location:focus { border-color: #D7DCE5 !important; } .register .register-right .customer-form .input-group .input-group-addon { width: 38px !important; height: 22px !important; background-color: #489ee7 !important; opacity: 1; padding: 1px !important; border: 0px solid #D7DCE5; -moz-border-radius: 3px 0px 0px 3px; -webkit-border-radius: 3px 0px 0px 3px; border-radius: 3px 0px 0px 3px; } .register .register-right .customer-form .input-group .input-group-addon i { color: #FFF; font-size: 20px; font-weight: 500; line-height: 22px; padding: 5px 15px 7px 15px; } .register .register-summary { margin-top: 5px; } .register .register-summary .value { float: right; } .register .register-summary .list-group-item { line-height: 26px; border-width: 0px; padding: 1px 15px; } .register .register-summary .list-group-item .remove { color: #FF7474; font-size: 16px; font-weight: 500; margin: 5px; } .register .register-summary .item-tier, .register .register-summary .select-sales-person, .register .register-summary .select-service, .register .register-summary .select-store_acount_payment{ color: #67676C; font-size: 16px; font-weight: 300; display: block; padding: 5px 15px; padding-bottom: 10px; text-decoration: none; } .register .register-summary .item-tier span, .register .register-summary .select-sales-person span, .register .register-summary .select-service span, .register .register-summary .select-store_acount_payment span { float: right; color: #489ee7; font-weight: 400; } .register .register-summary .select-store_acount_payment span { padding: 0; } .register .register-summary .item-tiers, .register .register-summary .select-sales-persons, .register .register-summary .select-services, .register .register-summary .select-store_acount_payments { display: none; border-radius: 0px; } .register .register-summary .item-tiers a, .register .register-summary .select-sales-persons a { background-color: #F9FBFC; } .register .register-summary .item-tiers a:hover, .register .register-summary .select-sales-persons a:hover { color: #489ee7; } .register .register-summary .item-tiers .list-group-item, .register .register-summary .select-sales-persons .list-group-item { border-left-width: 0px; border-right-width: 0px; border-color: #E9ECF2; } .register .register-summary .item-tiers .list-group-item:first-child, .register .register-summary .select-sales-persons .list-group-item:first-child, .register .register-summary .item-tiers .list-group-item:last-child, .register .register-summary .select-sales-persons .list-group-item:last-child { border-radius: 0px; } @media (max-width: 768px) { .register .register-summary .global-discount-group .key { width: 40% !important; } } .register .register-summary .global-discount-group { padding: 5px 15px; padding-top: 0px; } .register .register-summary .global-discount-group .key { max-width: 55%; display: inline-block; } .register .register-summary .global-discount-group li { line-height: 26px; color: #67676C; font-size: 16px; font-weight: 300; } .register .register-summary .global-discount-group li .value { color: #000; font-size: 16px; font-weight: 300; } .register .register-summary .sub-total { height: 39px; background-color: #f1ffec; color: #67676C; font-size: 14px; font-weight: 300; margin-left: 0px; padding: 0px 15px; margin-top: 0px; line-height: 39px; } .register .register-summary .sub-total .value { font-weight: 400; } .register .register-summary .amount-block { height: 70px; border-top: 1px dashed #D0D3D8; border-bottom: 1px dashed #D0D3D8; } .register .register-summary .amount-block .total { padding: 10px; padding-top: 5px; display: inline-block; width: 49%; height: 68px; } .register .register-summary .amount-block .total:nth-child(1) { border-right: 1px dashed #D0D3D8; } .register .register-summary .amount-block .total .side-heading { padding-left: 5px; color: #67676C; font-size: 12px; font-weight: 400; line-height: 26px; } .register .register-summary .amount-block .total .amount { text-align: center; color: #6FD64B; font-size: 22px; font-weight: 400; } .register .register-summary .amount-block .total.amount-due .amount { color: #ff9e28; } .register .register-summary .payments { margin-top: 10px; padding-bottom: 10px; margin-bottom: 10px; border-bottom: 1px dashed #D0D3D8; } .register .register-summary .payments .remove { padding-right: 5px; } .register .register-summary .payments .key { color: #67676C; font-size: 14px; font-weight: 300; } .register .register-summary .payments .value { color: #000; font-size: 14px; font-weight: 300; } .register .register-summary .add-payment { padding: 15px; padding-top: 5px; } .register .register-summary .add-payment .btn-pay { height: 35px; background-color: #F9FBFC; border: 1px solid #D7DCE5; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; color: #000; font-size: 12px; font-weight: 300; margin-bottom: 10px; line-height: 22px; } .register .register-summary .add-payment .side-heading { padding-left: 5px; color: #67676C; font-size: 12px; font-weight: 400; line-height: 26px; } .register .register-summary .add-payment .select-payment.active { background-color: #88B7FF; color: #FFFFFF; box-shadow: none; border-color: #88B7FF; } .register .register-summary .add-payment-form { padding: 20px; } .register .register-summary .add-payment-form.input-group { width: 100%; } .register .register-summary .add-payment-form.input-group .add-input { width: 100%; background-color: #FFF; -moz-border-radius: 0px; -webkit-border-radius: 0px; border-radius: 0px; color: #000; font-size: 14px; font-weight: 300; display: block; float: left; border: 1px solid #D7DCE5; border-right-width: 0px !important; box-shadow: none; height: 39px; } .register .register-summary .add-payment-form.input-group .add-input:focus, .register .register-summary .add-payment-form.input-group .add-input:active { border-color: #D7DCE5 !important; } .register .register-summary .add-payment-form.input-group .input-group-addon { width: 38px !important; height: 38px !important; background-color: #88B7FF; opacity: 1; border: 0px solid #D7DCE5; -moz-border-radius: 0px 3px 3px 0px; -webkit-border-radius: 0px 3px 3px 0px; border-radius: 0px 3px 3px 0px; padding: 1px !important; } .register .register-summary .add-payment-form.input-group .input-group-addon > a { color: #FFFFFF; text-decoration: none; line-height: 22px; padding: 8px 20px 10px 20px; } .register .register-summary .add-payment-form.input-group .input-group-addon i { color: #FFF; margin-right: 5px; font-size: 16px; font-weight: 500; } /*.delivery_date { display: none; } .sale_date { display: none; } .group-n9 { display: none; } /*.comment-block { display: none; }*/ .register .register-summary .finish-sale { /*display: none;*/ padding: 10px 0px 40px 0px; border-top: 1px dashed #D0D3D8; } .register .register-summary .finish-sale .btn { height: 39px; background-color: #6FD64B; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; border-color: #6FD64B; box-shadow: none; color: #FFF; font-size: 16px; font-weight: 300; } .register .register-summary .comment-block { padding: 10px 0; } .register .register-summary .comment-block .side-heading { padding-left: 5px; color: #67676C; font-size: 12px; font-weight: 400; line-height: 26px; } .register-grid { /*background-color: darken(@page-color,10%);*/ margin-top: -20px; padding: 15px; } .register-grid .register-holder { border-width: 1px; border-color: #e8ebf1; border-style: solid; border-radius: 3px; height: 100px; background-color: #ffffff; padding: 0px !important; overflow: hidden; text-align: center !important; background-color: black; cursor: pointer; } .register-grid .register-holder img { width: 100%; height: auto; opacity: 0.5; position: absolute; top: 0px; left: 0; } .register-grid .register-holder:hover img { opacity: 1; position: absolute; top: 0px; z-index: 1999; } .register-grid .register-holder p { position: relative; color: white; width: 100% !important; text-align: center; margin-top: 20px; } .register-grid .register-holder.categories-holder, .register-grid .register-holder.tags-holder, .register-grid .register-holder.no-image { background-color: #FFFFFF; text-align: center !important; } .register-grid .register-holder.categories-holder p, .register-grid .register-holder.tags-holder p, .register-grid .register-holder.no-image p { color: #67676C; display: table; vertical-align: middle; text-align: center !important; height: 100px; width: 100%; } .register-grid .register-holder.categories-holder:hover, .register-grid .register-holder.tags-holder:hover, .register-grid .register-holder.no-image:hover { background-color: #f8f8f8; } .register-grid .register-holder.back-to-categories { background-color: #f9f9f9; border: 1px solid #ddd; } .register-grid .register-holder.categories-holder p { margin-top: 30px !important; } .register-items-header { min-height: 52px; line-height: 52px; background-color: #F9FBFC; border: 1px solid #E9ECF2; border-bottom: 1px solid #E9ECF2; color: #67676C; font-size: 14px; font-weight: 300; text-align: center; } .register-items-header th { text-align: center; } .modal { background-color: rgba(0, 0, 0, 0.6); } .customer-recent-sales { max-width: 800px !important; } .customer-recent-sales .modal-content { -webkit-box-shadow: 3px 3px 9px 0px rgba(0, 0, 0, 0.25); -moz-box-shadow: 3px 3px 9px 0px rgba(0, 0, 0, 0.25); box-shadow: 3px 3px 9px 0px rgba(0, 0, 0, 0.25); border: 1px solid #e9ecf2; } .customer-recent-sales .modal-header { background-color: #f2f4f7; } .customer-recent-sales .modal-header > h5 { color: #555555; letter-spacing: 0.25px; text-transform: capitalize; } .customer-recent-sales .modal-body { margin-top: 10px; } .customer-recent-sales .modal-body table tr th { border: 0px; color: #555555; font-family: 'ProximaNova-Semibold', sans-serif; font-size: 14px; letter-spacing: 0.25px; line-height: 20px; text-align: center; padding: 10px 0px; } .customer-recent-sales .modal-body table tr.table-row-hover td { border-top: 1px solid #e9ecf2; color: #000; font-family: 'ProximaNova-Regular', sans-serif; font-size: 14px; letter-spacing: 0.25px; line-height: 20px; text-align: center; padding: 10px 0px; } .customer-recent-sales .modal-body table tr.table-row-hover td a { color: #489ee7; } .customer-recent-sales .modal-body table tr.table-row-hover td a:hover { color: #3192e4; } .customer-recent-sales .modal-body table tr.table-row-hover:hover td { background-color: #f2f4f7 !important; } body.open-modal { background-color: red; } .modal-backdrop.in { opacity: 0.9 !important; background-color: red !important; } #sales_page_holder { width: 100%; height: 100%; background-color: #e8ebf1; } #sales_page_holder.fullscreen-enabled { padding-left: 30px !important; padding-right: 30px !important; } .fullscreen { margin-left: 30px; } .dismissfullscreen { color: #FF7474; background-color: #FFFFFF; width: 35px; height: 35px; font-size: 18px; font-weight: 500; margin: 5px; text-align: center; border-radius: 50%; position: absolute; z-index: 99; margin-top: -10px; margin-left: -10px; } .dismissfullscreen i { font-size: 26px; } .dismissfullscreen:hover i { color: #ff5a5a; } .close-amount li { border-color: #e9ecf2; color: #555555; } .close-amount li .pull-right { font-weight: bold; } .close-amount li .total-amount { font-size: 20px; } .close-amount li:hover, .close-amount li.active { color: #555; text-decoration: none; background-color: #f5f7f9; border-color: #e9ecf2; } .input-group-mobile.input-group { display: none; } @media (max-width: 375px) { #register.table * { font-size: 10px; } #register_container .amount-block .side-heading { font-size: 11px; line-height: 1.3em; } #register_container .amount-block .amount { font-size: 15px; } .register-right .customer-action-buttons a, .register-right .customer-action-buttons label { font-size: 10px !important; } .register-right .customer-action-buttons a:first-child i, .register-right .customer-action-buttons label:first-child i { font-size: 12px !important; } .register-right .customer-action-buttons a i, .register-right .customer-action-buttons label i { font-size: 12px !important; } .register-right a, .register-right label { font-size: 12px; } .register-right a:first-child i, .register-right label:first-child i { font-size: 14px; } .register-right a i, .register-right label i { font-size: 14px; } } @media (max-width: 768px) { .item-suggestions { top: 38px !important; margin-left: 0 !important; width: 100% !important; } .item-suggestions .name { font-size: 12px !important; } .print-buttons .btn { margin-bottom: 20px; } } /*Fix for add item input on mobile devices*/ @media (max-width: 1170px) { .add-item-input { border-left-width: 1px !important; border-right-width: 1px !important; border-radius: 4px !important; } .register-input-group .input-group-addon { display: none; } .input-group-mobile { display: block !important; margin-bottom: 20px; height: 32px; width: 100%; text-align: center; } .input-group-mobile .input-group-addon { width: 738px !important; } .input-group-mobile a { line-height: 36px; } } .ui-widget-content { border: 1px solid #d7dce5; } .change-date { padding-left: 15px; padding-right: 15px; } .receivings-finish-sale { margin-top: 20px; } @media (max-width: 600px) { .ui-autocomplete { width: 311px !important; } } @media (max-width: 400px) { .input-group-mobile { margin-left: -10px !important; } .register-btn-text { display: none; } .popover.editable-container { position: absolute; } .popover.editable-container input { text-align: right; } } .ui-menu-item { padding: 7px 15px !important; } .ui-menu-item a { padding-top: 0px !important; line-height: 14px !important; } .ui-autocomplete { max-height: 400px !important; overflow: auto; } .ui-autocomplete { position: absolute; top: 0; left: 0; padding-top: 0px !important; cursor: default; box-shadow: none !important; border-top-width: 0px !important; } /* Item suggestions on search , */ .item-suggestions { border-bottom: 1px solid #E9ECF2; /*height: 70px;*/ background-color: #FFFFFF; } .item-suggestions:hover { cursor: pointer; } .item-suggestions .item-image { float: left; display: inline-block; width: 50px; height: 50px; } .item-suggestions .item-image img { width: 100%; border-radius: 50%; } .item-suggestions .details { padding: 0px; padding-left: 60px; text-align: left; position: relative; } .item-suggestions .details .name { font-weight: 400; color: #67676C; font-size: 13px; letter-spacing: 0.2px; text-decoration: none; display: block; text-transform: capitalize; width: 350px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .item-suggestions .details .name:hover { color: #67676C !important; } .item-suggestions .details .name .balance, .item-suggestions .details .name .points { font-size: 12px; } .item-suggestions .details .name:hover { color: #489ee7; } .item-suggestions .details .attributes { color: #67676C; font-size: 12px; font-weight: 400; margin-left: 5px; } .item-suggestions .details .attributes .value { color: #4e4e52; color: #489ee7; } .item-suggestions .details .btn-edit { width: 47px; height: 36px; background-color: #F9FBFC; border: 1px solid #e8ebf1; border-right-width: 0px; border-top-width: 0px; color: #489ee7; font-size: 18px; font-weight: 500; position: absolute; top: 0; right: 0; margin-top: -7px; margin-right: -30px; } .item-suggestions:hover, .item-suggestions.active { background-color: #f3f4f8; } /*.item-suggestions .suggest-item { padding-top: 12px !important; padding-bottom: 14px !important; padding-left: 15px !important; }*/ .item-suggestions .suggest-item .name { color: #67676C !important; margin-top: 10px; padding-left: 5px; margin-bottom: 5px; } .dropdown-menu.sales-dropdown { padding: 0; border-width: 0; padding: 5px 10px; margin-right: -20px; margin-top: 5px; min-width: 240px; border-radius: 3px !important; position: absolute; right: 0 !important; border: 1px solid #D7DCE5; padding-left: 0px; padding-right: 0px; } .dropdown-menu.sales-dropdown:after { position: absolute; content: ""; width: 0; height: 0; border-style: solid; border-width: 0 11px 10px 11px; border-color: transparent transparent #FFFFFF transparent; top: 0; left: 0; margin-top: -8px; } .dropdown-menu.sales-dropdown li a { line-height: 34px; border-bottom: 1px solid #e9ecf2; color: #000000; } .dropdown-menu.sales-dropdown li a i { margin-right: 5px; } .dropdown-menu.sales-dropdown li:last-child a { border-bottom-width: 0px; } .dropdown-menu.sales-dropdown li.danger a { color: #fb5d5d; } .dropdown-menu.sales-dropdown li.danger:hover a { color: #fa2b2b; } .modal-item-info .modal-item-avatar img { float: left; border-radius: 4px; width: auto; height: 100px; margin-bottom: 10px; margin-right: 20px; } .modal-item-info .modal-item-details { margin-left: 110px; } .modal-item-info .modal-item-details .modal-item-name { font-size: 24px; color: #489ee7; display: block; } .modal-item-info .modal-item-details .modal-item-category { font-size: 14px; font-style: italic; color: #000; } .padding-left-20 { padding-left: 20px !important; } .padding-left-10 { padding-left: 15px !important; } .btn-grid, .btn-grid:focus { width: 100px; font-weight: 300; text-decoration: none; padding: 8px 12px; background-color: #F9FBFC; border: 1px solid #D7DCE5; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; line-height: 24px; font-size: 14px; color: #555555; } .btn-grid.active { background-color: #489ee7; border-color: #D7DCE5; box-shadow: none !important; color: white; } .count-items-buttons a { margin-bottom: 20px; } .text-bold { font-weight: 500; } .change-date { margin-top: 5px; } .ui-menu .ui-menu-item { list-style-image: none !important; } /* nunito-300 - latin */ @font-face { font-family: 'Nunito'; font-style: normal; font-weight: 300; src: url('../fonts/nunito-v7-latin/nunito-v7-latin-300.eot'); /* IE9 Compat Modes */ src: local('Nunito-Light'), url('../fonts/nunito-v7-latin/nunito-v7-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/nunito-v7-latin/nunito-v7-latin-300.woff2') format('woff2'), /* Super Modern Browsers */ url('../fonts/nunito-v7-latin/nunito-v7-latin-300.woff') format('woff'), /* Modern Browsers */ url('../fonts/nunito-v7-latin/nunito-v7-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */ url('../fonts/nunito-v7-latin/nunito-v7-latin-300.svg#Nunito') format('svg'); /* Legacy iOS */ } /* nunito-regular - latin */ @font-face { font-family: 'Nunito'; font-style: normal; font-weight: 400; src: url('../fonts/nunito-v7-latin/nunito-v7-latin-regular.eot'); /* IE9 Compat Modes */ src: local('Nunito-Regular'), url('../fonts/nunito-v7-latin/nunito-v7-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/nunito-v7-latin/nunito-v7-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('../fonts/nunito-v7-latin/nunito-v7-latin-regular.woff') format('woff'), /* Modern Browsers */ url('../fonts/nunito-v7-latin/nunito-v7-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('../fonts/nunito-v7-latin/nunito-v7-latin-regular.svg#Nunito') format('svg'); /* Legacy iOS */ } /* nunito-700 - latin */ @font-face { font-family: 'Nunito'; font-style: normal; font-weight: 700; src: url('../fonts/nunito-v7-latin/nunito-v7-latin-700.eot'); /* IE9 Compat Modes */ src: local('Nunito-Bold'), url('../fonts/nunito-v7-latin/nunito-v7-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/nunito-v7-latin/nunito-v7-latin-700.woff2') format('woff2'), /* Super Modern Browsers */ url('../fonts/nunito-v7-latin/nunito-v7-latin-700.woff') format('woff'), /* Modern Browsers */ url('../fonts/nunito-v7-latin/nunito-v7-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */ url('../fonts/nunito-v7-latin/nunito-v7-latin-700.svg#Nunito') format('svg'); /* Legacy iOS */ } /**************************************************** TABLE OF CONTENTS ***************************************************** 01. body 02. left-bar 03. content 04. wrapper 04. top-bar 05. global styles 06. media styles ****************************************************/ .mCSB_inside > .mCSB_container { margin-right: 0 !important; } a:focus, a:active, button::-moz-focus-inner, input[type="reset"]::-moz-focus-inner, input[type="button"]::-moz-focus-inner, input[type="submit"]::-moz-focus-inner, select::-moz-focus-inner, input[type="file"] > input[type="button"]::-moz-focus-inner { border: 0; outline: 0; } .left-bar::-webkit-scrollbar-track, .side-bar::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); background-color: #F5F5F5; } .left-bar::-webkit-scrollbar, .side-bar::-webkit-scrollbar { width: 4px; background-color: #F5F5F5; } .left-bar::-webkit-scrollbar-thumb, .side-bar::-webkit-scrollbar-thumb { background-color: #555555; border: 2px solid #555555; border-radius: 10px; } body, html { font-family: 'Helvetica Neue', 'Nunito', sans-serif; font-weight: 300; font-size: 13px; margin: 0; padding: 0; overflow-x: hidden; overflow-y: auto; letter-spacing: 0.6px; background-color: #e8ebf1; font-smooth: always; font-smoothing: antialiased; -moz-font-smoothing: antialiased; -webkit-font-smoothing: antialiased; -webkit-font-smoothing: subpixel-antialiased; min-height: 100%; } .navbar-collapse { padding: 0; } .wrapper { position: relative; overflow: hidden; min-height: 1200px; } .wrapper.open-drawer { min-height: 900px !important; } .wrapper.fixed-top-bar .top-bar { position: fixed; padding-right: 205px; } .wrapper.fixed-top-bar .main-content { padding-top: 80px; } .wrapper.fixed-top-bar.mini-bar .top-bar { padding-right: 90px; } .left-bar, .side-bar { position: fixed; height: 100%; width: 230px; background-color: #FFFFFF; display: block; float: left; box-shadow: none !important; border-right: 1px solid #dce1ea; overflow-y: auto; overflow-x: hidden; min-height: 100%; z-index: 810; -webkit-transition: -webkit-transform .3s ease-in-out,width .3s ease-in-out; -moz-transition: -moz-transform .3s ease-in-out,width .3s ease-in-out; -o-transition: -o-transform .3s ease-in-out,width .3s ease-in-out; transition: transform .3s ease-in-out,width .3s ease-in-out; } .left-bar.static-bar, .side-bar.static-bar { position: absolute; display: block; display: table-cell; height: 100%; } .left-bar.static-bar .admin-logo, .side-bar.static-bar .admin-logo { position: relative !important; } .left-bar.static-bar .menu-parent, .side-bar.static-bar .menu-parent { padding-top: 0; } .left-bar.static-bar .menu-parent i.chevron, .side-bar.static-bar .menu-parent i.chevron { line-height: 52px !important; float: right !important; } .left-bar p, .side-bar p { color: red; } .left-bar .admin-logo, .side-bar .admin-logo { background-color: #489ee7; min-height: 60px; position: absolute !important; /*width: 100%;*/ width: inherit; z-index: 999; } .left-bar .admin-logo .logo-holder, .side-bar .admin-logo .logo-holder { width: 100%; text-align: center; padding-top: 9px; } .left-bar .admin-logo .logo-holder .logo, .side-bar .admin-logo .logo-holder .logo { width: 100px; } .left-bar .admin-logo a.menu-bar, .side-bar .admin-logo a.menu-bar { color: black; font-size: 30px; display: inline-block; width: 80px; position: absolute; right: 0; height: 100%; background-color: #248be2; text-align: center; color: #FFFFFF; padding-top: 15px; text-decoration: none; } .left-bar .menu-parent, .side-bar .menu-parent { padding-top: 70px; } .left-bar .menu-parent > li, .side-bar .menu-parent > li { display: block; border-bottom: 1px solid #e9ecf2; } .left-bar .menu-parent > li.active, .side-bar .menu-parent > li.active, .left-bar .menu-parent > li:hover, .side-bar .menu-parent > li:hover { background-color: #f6f7fa; } .left-bar .menu-parent > li.active i, .side-bar .menu-parent > li.active i, .left-bar .menu-parent > li:hover i, .side-bar .menu-parent > li:hover i, .left-bar .menu-parent > li.active a, .side-bar .menu-parent > li.active a, .left-bar .menu-parent > li:hover a, .side-bar .menu-parent > li:hover a { /*color: @primary-color !important; */ } .left-bar .menu-parent > li.submenu ul, .side-bar .menu-parent > li.submenu ul { padding-left: 20px !important; } .left-bar .menu-parent > li a, .side-bar .menu-parent > li a { padding-left: 20px; padding-right: 20px; display: inline-block; height: 40px; line-height: 40px; text-decoration: none; font-size: 14px; line-height: 1.42857143; font-weight: 300; color: #555555; white-space: nowrap; width: 205px; overflow: hidden; text-overflow: ellipsis; position: relative; } .left-bar .menu-parent > li a i, .side-bar .menu-parent > li a i { padding-right: 10px; font-size: 14px; color: #1a78c8; } .left-bar .menu-parent > li a i.chevron, .side-bar .menu-parent > li a i.chevron { font-size: 10px; color: #555555; line-height: 52px; float: right; } .left-bar .menu-parent > li ul > li, .side-bar .menu-parent > li ul > li { padding-left: 40px; border-bottom: 1px solid red; border-bottom-width: 0; position: relative; } .left-bar .menu-parent > li ul > li a, .side-bar .menu-parent > li ul > li a { padding-left: 20px; } .left-bar .menu-parent > li ul > li:before, .side-bar .menu-parent > li ul > li:before { content: ''; width: 0; height: 100%; position: absolute; border-left: 1px solid #d7dce5; top: 0; left: 10px; } .left-bar .menu-parent > li ul > li:after, .side-bar .menu-parent > li ul > li:after { content: "."; position: absolute; left: 4px; top: -30px; font-size: 45px; color: #d7dce5; } .left-bar .menu-parent > li ul > li:last-child, .side-bar .menu-parent > li ul > li:last-child { padding-bottom: 10px; } .left-bar .menu-parent > li ul > li a, .side-bar .menu-parent > li ul > li a { font-size: 14px; height: 30px; line-height: 30px; } .left-bar .menu-parent > li ul > li li, .side-bar .menu-parent > li ul > li li { padding-left: 20px; border-bottom-width: 0; } .left-bar .menu-parent > li ul > li li:last-child:before, .side-bar .menu-parent > li ul > li li:last-child:before { content: ''; width: 0; height: 80%; position: absolute; border-left: 1px solid #d7dce5; top: 0; left: 10px; } .left-bar .menu-parent > li ul > li.panel, .side-bar .menu-parent > li ul > li.panel { border-bottom-width: 0; box-shadow: none; border: 0; border-radius: 0; } .left-bar .menu-parent .panel, .side-bar .menu-parent .panel { margin-bottom: 0; box-shadow: none; border-radius: 0; } .content { margin-left: 230px; background-color: #ffffff; } .content.no-margin { margin-left: 0; } .content .main-content { padding-left: 10px; padding-right: 10px; padding-top: 10px; } .top-bar { height: 60px; background-color: #FFFFFF; min-height: 0; display: table; width: 100%; position: relative; border-radius: 0; border-left-width: 0; border-right-width: 0; border-top-width: 0; border-bottom: 1px solid dark-border !important; border-bottom-color: #d7dce5; z-index: 1; } .top-bar .search { margin-top: 15px; font-weight: 300; width: 200px; padding-left: 20px; } .top-bar .search input { background-color: #f2f4f7; background-color: transparent; border: none; border-bottom: 1px solid #9e9e9e; outline: none; /*height: 3rem;*/ width: 100%; font-size: 1rem; margin: 0 0 15px 0; padding: 0; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; -webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box; -webkit-transition: 0.3s; -moz-transition: 0.3s; -o-transition: 0.3s; -ms-transition: 0.3s; transition: 0.3s; } .top-bar .navbar-default .navbar-nav > .open > a, .top-bar .navbar-default .navbar-nav > .open > a:focus, .top-bar .navbar-default .navbar-nav > .open > a:hover { background-color: #fcfeff; color: #489ee7; } .top-bar nav { -webkit-box-shadow: none !important; -moz-box-shadow: none !important; box-shadow: none !important; } .top-bar .navbar-default .navbar-nav > li > a { background-color: #FFFFFF; color: #555555; /*font-family: 'Helvetica Neue', 'Nunito', sans-serif;*/ } .top-bar .navbar-nav { margin: 0; height: 60px; -webkit-box-shadow: none !important; -moz-box-shadow: none !important; box-shadow: none !important; } .top-bar .navbar { margin: 0; } .top-bar .avatar_width .avatar_info { width: 120px; display: inline-block; white-space: nowrap !important; float: right; overflow: hidden; } .top-bar .avatar_width .avatar-holder { width: 35px; display: inline-block; margin-right: 2px; } .top-bar .avatar_width .avatar-holder img { border-radius: 50%; height: 35px; width: 35px; } .top-bar .top-elements .dropdown > a { height: 60px; overflow: hidden; position: relative; } .top-bar .top-elements .dropdown img.flag_img { width: 25px; height: auto; display: inline-block; margin-right: 8px; } .top-bar .top-elements .dropdown .dropdown-toggle.language-dropdown { text-transform: capitalize !important; } .top-bar .top-elements .dropdown .dropdown-menu { border-width: 0; border-radius: 0; background-color: #FFFFFF; border-top: 2px solid #489ee7; -webkit-transition: all 1s ease-out; position: absolute; left: auto; right: 0; padding: 10px 15px; max-height: 460px; z-index: 99; padding-bottom: 0; overflow: visible; } .top-bar .top-elements .dropdown .dropdown-menu:after { content: ""; position: absolute; top: -10px; left: auto; margin: auto; right: 20px; width: 0; height: 0; border-style: solid; border-width: 0 8px 8px 8px; border-color: transparent transparent #489ee7 transparent; z-index: 9999999999999999999999999; } .top-bar .top-elements .dropdown .dropdown-menu.neat_drop { min-width: 220px; } .top-bar .top-elements .dropdown .dropdown-menu.neat_drop a { position: relative; overflow: hidden; display: inline-block; width: 100%; padding: 5px 10px; border-bottom: 1px solid #e9ecf2; text-decoration: none; } .top-bar .top-elements .dropdown .dropdown-menu.neat_drop a:hover { background-color: #f6f7fa; } .top-bar .top-elements .dropdown .dropdown-menu.neat_drop a .text_info { font-size: 13px; font-weight: 400; display: block; line-height: 16px; letter-spacing: 0.10px; margin-top: 8px; font-family: 'Helvetica Neue', 'Nunito', sans-serif; color: #555555; } .top-bar .top-elements .dropdown .dropdown-menu.neat_drop a .time_info { font-size: 10px; font-weight: 300; color: #000; } .top-bar .top-elements .dropdown .dropdown-menu.neat_drop .last_info { text-align: center; color: #555555; padding: 15px; } .top-bar .top-elements .dropdown .dropdown-menu.neat_drop .last_info:hover { color: #2f2f2f; } .top-bar .top-elements .dropdown .dropdown-menu.neat_drop li:last-child a { border-bottom-width: 0; } .top-bar .top-elements .dropdown .dropdown-menu.notification-drop { width: 350px; } .top-bar .top-elements .dropdown .dropdown-menu.locations-drop { /*left: 0 !important;*/ padding: 0px; } .top-bar .top-elements .dropdown .dropdown-menu.locations-drop:after { content: ""; position: absolute; top: -10px; left: 20px; margin: auto; left: auto; width: 0; height: 0; border-style: solid; border-width: 0 8px 8px 8px; border-color: transparent transparent #489ee7 transparent; z-index: 99999999; } .top-bar .top-elements .dropdown .dropdown-menu.locations-drop a { width: 100%; } .top-bar .top-elements .dropdown .dropdown-menu.locations-drop .badge { margin-right: 10px; width: 15px; height: 15px; line-height: 10px !important; } .top-bar .top-elements .dropdown .dropdown-menu.locations-drop li { margin: 0px; padding: 0px; padding-left: 15px; border-bottom: 1px solid #e9ecf2; } .top-bar .top-elements .dropdown .dropdown-menu.locations-drop li:hover { background-color: #f6f7fa; } .top-bar .top-elements .dropdown .dropdown-menu.locations-drop li a { border-width: 0px; padding: 15px 0px; padding-bottom: 10px; margin-right: 12px; } .top-bar .top-elements .dropdown .dropdown-menu.avatar_drop { left: auto !important; right: 0 !important; padding: 0px !important; margin-bottom: 0px; min-width: 252px; } .top-bar .top-elements .dropdown .dropdown-menu.avatar_drop li { margin: 0px; padding: 0px; border-bottom: 1px solid #e9ecf2; } .top-bar .top-elements .dropdown .dropdown-menu.avatar_drop li:hover { background-color: #f6f7fa; } .top-bar .top-elements .dropdown .dropdown-menu.avatar_drop li:first-child { /*margin-top:0px;*/ } .top-bar .top-elements .dropdown .dropdown-menu.avatar_drop li a { border-width: 0px; padding: 10px 0px; margin-right: 12px; } .top-bar .top-elements .dropdown .dropdown-menu.avatar_drop li a .text { line-height: 16px; position: absolute; top: 14px; font-size: 14px; } .top-bar .top-elements .dropdown .dropdown-menu.avatar_drop li a i { margin-left: 12px; } .top-bar .top-elements .dropdown .dropdown-menu.avatar_drop i { color: #dadfe7; padding-right: 10px; font-size: 18px; } .top-bar .top-elements .dropdown .dropdown-menu.avatar_drop .logout_button { background: #fb5d5d; color: #FFFFFF; border-radius: 0px; height: 36px; margin: 0px !important; line-height: 16px; } .top-bar .top-elements .dropdown .dropdown-menu.avatar_drop .logout_button i { color: #FFFFFF; font-size: 20px; } .top-bar .top-elements .dropdown .dropdown-menu.avatar_drop .logout_button .text { position: absolute; line-height: 16px; top: 12px; font-size: 16px; } .top-bar .top-elements .dropdown .dropdown-menu.avatar_drop .logout_button:hover { background: #fb5353; } .top-bar .top-elements .dropdown .dropdown-menu.language-drop { padding: 0px; } .top-bar .top-elements .dropdown .dropdown-menu.language-drop li { margin: 0px; padding: 0px; padding-left: 15px; border-bottom: 1px solid #e9ecf2; } .top-bar .top-elements .dropdown .dropdown-menu.language-drop li:hover { background-color: #f6f7fa; } .top-bar .top-elements .dropdown .dropdown-menu.language-drop li a { border-width: 0px; padding: 15px 0px; padding-bottom: 10px; margin-right: 12px; } .top-bar .top-elements .dropdown .dropdown-menu.message_drop { padding: 0px; min-width: 250px; } .top-bar .top-elements .dropdown .dropdown-menu.message_drop li { margin: 0px; padding: 0px; padding-left: 12px; border-bottom: 1px solid #e9ecf2; } .top-bar .top-elements .dropdown .dropdown-menu.message_drop li:hover { background-color: #f6f7fa; } .top-bar .top-elements .dropdown .dropdown-menu.message_drop li:first-child { /*margin-top:0px;*/ } .top-bar .top-elements .dropdown .dropdown-menu.message_drop li a { border-width: 0px; padding: 10px 0px; padding-bottom: 5px; min-width: 250px; margin-left: 0px; } .top-bar .top-elements .dropdown .dropdown-menu.message_drop .bottom-links { background-color: #f9f9f9; margin-top: 0px !important; } .top-bar .top-elements .dropdown .dropdown-menu.message_drop .bottom-links a { /*height: 36px;*/ border-width: 0px; margin-top: 0px; } .top-bar .top-elements .dropdown .dropdown-menu.message_drop .avatar_left { width: 30px; display: inline-block; float: left; } .top-bar .top-elements .dropdown .dropdown-menu.message_drop .avatar_left img { width: 100%; border-radius: 50%; height: auto; } .top-bar .top-elements .dropdown .dropdown-menu.message_drop .text_info { margin-top: 0 !important; margin-left: 40px; line-height: 26px; height: 16px; overflow: hidden; } .top-bar .top-elements .dropdown .dropdown-menu.message_drop .time_info { margin-top: 0 !important; margin-left: 10px; } .top-bar .top-elements .dropdown .dropdown-menu.message_drop .time_info i { font-size: 8px; } .top-bar .top-elements .dropdown .dropdown-menu.message_drop .time_info i.online { color: #6fd64b; } .top-bar .top-elements .dropdown .dropdown-menu.message_drop .time_info i.offline { color: #fb5d5d; } .top-bar .top-elements .dropdown .dropdown-menu.message_drop .time_info i.away { color: #f7941d; } .top-bar .top-elements .dropdown .dropdown-menu.message_drop .time_info i.grey { color: #d7dce5; } .top-bar .top-elements .dropdown .dropdown-menu a { display: inline-block; position: relative; font-size: 13px; font-weight: 400; display: block; font-family: 'Helvetica Neue', 'Nunito', sans-serif; white-space: normal; color: #555555; } .top-bar .top-elements .dropdown .dropdown-menu a:hover, .top-bar .top-elements .dropdown .dropdown-menu a:active, .top-bar .top-elements .dropdown .dropdown-menu a:focus { background-color: transparent; } .top-bar .top-elements .dropdown .drop-icon { font-size: 10px; display: inline-block; vertical-align: top; position: absolute; right: 5px; top: 3px; } .top-bar .top-elements > li > a { height: 100%; line-height: 60px; padding: 0px 20px; text-decoration: none; cursor: pointer; text-align: center; position: relative; } .top-bar .top-elements .btn { border-width: 0 !important; } .top-bar .top-elements .image-holder { width: 45px; display: inline-block; } .top-bar .top-elements .image-holder img { border-radius: 50%; width: 100%; padding-right: 15px; } .top-bar .top-elements .icon-notification { font-size: 25px; vertical-align: top; } .top-bar .top-elements .info-number { float: none; color: #FFFFFF; min-width: 22px; min-height: 22px; border-radius: 50%; line-height: 22px; padding: 0; font-size: 9px; margin-left: -8px; margin-top: 5px; font-weight: 300; } .top-bar .top-elements .info-number.message { background-color: #489ee7; } .top-bar .top-elements .info-number.cart { background-color: #489ee7; position: absolute; font-size: 11px; margin-top: 29px !important; } .top-bar .top-elements .info-number.bell { background-color: #fb5d5d; } .hexagon { position: relative; width: 40px; height: 23.09px; background-color: #8476ba; margin: 11.55px 0; display: inline-block; float: left; margin-right: 15px; } .hexagon span { position: absolute; display: inline-block; left: 0; right: 0; color: #FFFFFF; font-size: 20px; text-align: center; padding-top: 1px; } .hexagon:before, .hexagon:after { content: ""; position: absolute; width: 0; border-left: 20px solid transparent; border-right: 20px solid transparent; } .hexagon:before { bottom: 100%; border-bottom: 11.55px solid #8476ba; } .hexagon:after { top: 100%; width: 0; border-top: 11.55px solid #8476ba; } .hexagon.success { background-color: #6fd64b; } .hexagon.success:before { bottom: 100%; border-bottom: 11.55px solid #6fd64b; } .hexagon.success:after { top: 100%; width: 0; border-top: 11.55px solid #6fd64b; } .hexagon.danger { background-color: #fb5d5d; } .hexagon.danger:before { bottom: 100%; border-bottom: 11.55px solid #fb5d5d; } .hexagon.danger:after { top: 100%; width: 0; border-top: 11.55px solid #fb5d5d; } .hexagon.warning { background-color: #f7941d; } .hexagon.warning:before { bottom: 100%; border-bottom: 11.55px solid #f7941d; } .hexagon.warning:after { top: 100%; width: 0; border-top: 11.55px solid #f7941d; } .hexagon.info { background-color: #489ee7; } .hexagon.info:before { bottom: 100%; border-bottom: 11.55px solid #489ee7; } .hexagon.info:after { top: 100%; width: 0; border-top: 11.55px solid #489ee7; } /************global*********/ /*.form-control { display: block; -webkit-appearance: none; width: 100%; height: 38px; padding: 6px 12px; font-size: 14px; line-height: 1.42857143; color: #555; background-color: #FFFFFF; background-image: none; border: 1px solid rgba(34, 34, 35, 0.53); border-radius: 1px; box-shadow: none; margin-bottom: 10px; } .form-control:focus { border-color: #66afe9; border-color: #d7dce5; outline: 0; box-shadow: none; }*/ .form-control::-moz-placeholder { color: #999 !important; opacity: 1; } .form-control:-ms-input-placeholder { color: #999 !important; } .form-control::-webkit-input-placeholder { color: #999 !important; } .input-group .input-group-addon { background-color: transparent; border-radius: 0; border-right-width: 0; background-color: #f2f4f7; border-color: #d7dce5; } .flatRed { background-color: #fb5d5d; } .flatBlue { background-color: #489ee7; } .flatOrange { background-color: #f7941d; } .flatGreen { background-color: #6fd64b; } .flatRedc { color: #fb5d5d !important; } .flatBluec { color: #489ee7 !important; } .flatOrangec { color: #f7941d !important; } .flatGreenc { color: #6fd64b !important; } .dashboard-stats { background-color: #FFFFFF; position: relative; min-height: 107px; padding: 3px; padding-left: 5%; box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.1); -webkit-box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.1); -moz-box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.1); border-radius: 2px; display: table; width: 100%; text-align: left; margin-bottom: 10px; } .dashboard-stats .left { float: left; padding-top: 5px; } .dashboard-stats .left h3 { font-size: 30px; font-family: 'Helvetica Neue', 'Nunito', sans-serif; font-weight: 300; } .dashboard-stats .left h4 { font-size: 16px; font-weight: 300; color: #000; line-height: 24px; } .dashboard-stats .right { position: absolute; right: 3px; top: 3px; width: 30%; bottom: 3px; border-radius: 2px; font-size: 48px; text-align: center; color: #FFFFFF; } .dashboard-stats .right i { vertical-align: middle; line-height: 107px; } .chart-parent { position: relative; clear: both; } .chart-parent .chart-height { height: 450px; } .chart-parent .ct-chart .ct-line { stroke-width: 1px; } .chart-parent .ct-chart .ct-series.ct-series-a .ct-bar, .chart-parent .ct-chart .ct-series.ct-series-a .ct-line, .chart-parent .ct-chart .ct-series.ct-series-a .ct-point, .chart-parent .ct-chart .ct-series.ct-series-a .ct-slice.ct-donut { stroke: #6fd64b; } .chart-parent .ct-chart .ct-series.ct-series-b .ct-bar, .chart-parent .ct-chart .ct-series.ct-series-b .ct-line, .chart-parent .ct-chart .ct-series.ct-series-b .ct-point, .chart-parent .ct-chart .ct-series.ct-series-b .ct-slice.ct-donut { stroke: #489ee7; } .chart-parent .ct-chart .ct-grid { stroke: rgba(142, 142, 142, 0.2) !important; stroke-width: 1px; stroke-dasharray: 0px; } .chart-parent .ct-chart .ct-point { stroke-width: 6px; stroke-linecap: round; } .piluku-panel { clear: both; background-color: #FFFFFF; box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.1); -webkit-box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.1); -moz-box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.1); margin-top: 10px; padding: 15px; } .piluku-panel.no-bg { background-color: transparent; box-shadow: none; padding: 0; } .piluku-panel .form-group { margin-right: 0px; margin-left: 0px; } .nicescroll-cursors { position: absolute; top: 0px; float: right; width: 5px; height: 604px; border: 1px solid rgba(255, 255, 255, 0.5); border-radius: 5px; background-color: rgba(66, 66, 66, 0.5) !important; background-clip: padding-box; z-index: 9999; } /*spin*/ .ion-spin { -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; -o-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; -webkit-animation-name: ion-spin; -webkit-animation-duration: 2s; -webkit-animation-iteration-count: infinite; -webkit-animation-timing-function: linear; -moz-animation-name: rotate; -moz-animation-duration: 2s; -moz-animation-iteration-count: infinite; -moz-animation-timing-function: linear; } @-webkit-keyframes ion-spin { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } 100% { -webkit-transform: rotate(359deg); transform: rotate(359deg); } } @-moz-keyframes ion-spin { 0% { -moz-transform: rotate(0deg); transform: rotate(0deg); } 100% { -moz-transform: rotate(359deg); transform: rotate(359deg); } } /**********speed up fadein*********/ @-webkit-keyframes fadeInUp { 0% { opacity: 0; -webkit-transform: translate3d(0, 20%, 0); transform: translate3d(0, 20%, 0); } 20% { opacity: 1; -webkit-transform: none; transform: none; } } @keyframes fadeInUp { 0% { opacity: 0; -webkit-transform: translate3d(0, 20%, 0); -ms-transform: translate3d(0, 20%, 0); transform: translate3d(0, 20%, 0); } 20% { opacity: 1; -webkit-transform: none; -ms-transform: none; transform: none; } } .breadcrumb { padding: 0px; border-radius: 0px; min-height: 50px; margin: -20px; margin-bottom: 10px; background: #f9f9f9; } .breadcrumb a { color: #000; line-height: 50px; padding-left: 20px; } .breadcrumb .breadcrumb-opacity { background-color: rgba(33, 150, 243, 0.5); padding: 12px; min-height: 50px; color: #ffffff; font-family: 'Helvetica Neue', 'Nunito', sans-serif; font-size: 13px; font-weight: 300; line-height: 26px; letter-spacing: 0.25px; text-transform: capitalize; } .breadcrumb .breadcrumb-opacity .parent-location { float: left; padding-right: 10px; color: #ffffff; text-decoration: none; } .breadcrumb .breadcrumb-opacity .parent-location:hover { text-decoration: underline; } .breadcrumb .breadcrumb-opacity i { float: left; padding-right: 10px; line-height: 26px; } .breadcrumb .breadcrumb-opacity .current-location { font-weight: 400; color: #ffffff; text-decoration: none; } .breadcrumb .breadcrumb-opacity .current-location:hover { text-decoration: underline; } @media (max-width: 767px) { .navbar-nav .open .dropdown-menu { position: absolute !important; float: none; width: 100%; margin-top: 0; background-color: transparent; border: 0; left: 0px !important; right: 0px !important; -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); } .avatar-holder { margin-right: 20px !important; } .navbar-nav .open .dropdown-menu > li > a, .navbar-nav .open .dropdown-menu .dropdown-header { padding: 5px 15px 5px 25px; } .navbar-nav .open .dropdown-menu > li > a { line-height: 20px; } .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus { background-image: none; } .item-suggestions { height: 50px; } .item-suggestions .suggest-item { padding: 0px !important; padding-top: 2px !important; } .item-suggestions .suggest-item .item-image { display: none !important; } .item-suggestions .suggest-item .details { padding-left: 0px; } .add-register-table { padding: 15px; } } .search .form-control { -webkit-appearance: none; background-color: #f2f6f9; } /* Medium bar width */ @media only screen and (min-width: 700px) and (max-width: 1024px) { html { height: auto; } .left-bar { width: 180px; overflow: visible !important; z-index: 999999; position: absolute; } .left-bar .menu-parent li a { width: 180px; } .left-bar .admin-logo a.menu-bar { width: 180px; } .content { margin-left: 180px; } } .menu-bar-mobile { display: none; text-decoration: none; } @media screen (max-width: 586) { .navbar-breadcrumb { padding-left: 65px !important; } } /******topnav view sidebar********/ @media only screen and (max-width: 1199px) { .navbar-breadcrumb { padding-left: 65px !important; } .content { z-index: 99999 !important; border-left: 1px solid #d7dce5; margin-left: 0; } .content .overlay.show { height: 100%; width: 100%; position: absolute; display: block; background-color: #000000; z-index: 999999999; opacity: 0.5; } .left-bar, .side-bar { position: fixed !important; height: 100%; width: 205px; background-color: #FFFFFF; display: block; float: left; box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.1); overflow-y: auto; overflow: scroll!important; margin-left: -225px; z-index: 99999999999; overflow-x: hidden !important; } .left-bar .menu-bar, .side-bar .menu-bar { display: none !important; } .left-bar .logo-holder, .side-bar .logo-holder { float: none !important; text-align: center !important; margin: 0 auto; } .left-bar.menu_appear, .side-bar.menu_appear { margin-left: 0px !important; } .left-bar.menu_appear .admin-logo, .side-bar.menu_appear .admin-logo { display: block; } .content { /*margin-left: 0; position: absolute !important; top: 0; right: 0; bottom: 0; left: 0px; width: auto; height: auto; z-index: 2; overflow: auto;*/ } .menu-bar-mobile { display: block; text-decoration: none !important; z-index: 999999999; position: absolute; padding-top: 20px; font-size: 26px; color: #FFF; width: 60px; height: 55px; left: 0; top: 0; text-align: center; } } /*********collapse to minibar function**********/ @media only screen and (min-width: 1200px) and (max-width: 1366px) { .wrapper.mini-bar .left-bar { width: 90px; overflow: visible !important; z-index: 999999; position: fixed; } .wrapper.mini-bar .left-bar .panel-group .panel + .panel { margin-top: 0 !important; } .wrapper.mini-bar .left-bar .menu-parent li:before { display: none !important; } .wrapper.mini-bar .left-bar .menu-parent li:after { display: none; } .wrapper.mini-bar .left-bar .menu-parent li span.text { display: none; opacity: 0; line-height: 36px; height: 45px !important; overflow: hidden; -webkit-animation: none !important; animation: none !important; } .wrapper.mini-bar .left-bar .menu-parent li a { width: 90px; } .wrapper.mini-bar .left-bar .menu-parent li:hover { height: 61px; padding-left: 0px; } .wrapper.mini-bar .left-bar .menu-parent li:hover a { padding-left: 7px; text-align: center; display: block; } .wrapper.mini-bar .left-bar .menu-parent li:hover span.text { opacity: 1; display: block; } .wrapper.mini-bar .left-bar .menu-parent li:hover i.icon { display: none !important; } .wrapper.mini-bar .left-bar li { /*padding:10px 5px !important;*/ /*padding-bottom: 0 !important;*/ text-align: center !important; position: relative; } .wrapper.mini-bar .left-bar li a { /*line-height: 25px !important;*/ /*font-size: 13px !important;*/ } .wrapper.mini-bar .left-bar li i { display: block !important; padding: 0 !important; /*line-height: 36px;*/ } .wrapper.mini-bar .left-bar li i.chevron { color: #555555; display: none !important; position: absolute; margin-top: -52px !important; } .wrapper.mini-bar .left-bar li ul { position: absolute; left: 100%; background-color: #FFFFFF; min-width: 200px; top: -1px; border: 1px solid #d7dce5 !important; margin-left: 1px; } .wrapper.mini-bar .left-bar .admin-logo .logo-holder { /*display: none; */ } .wrapper.mini-bar .left-bar .admin-logo .logo-holder .logo { width: 70px; } .wrapper.mini-bar .left-bar .admin-logo a.menu-bar { width: 90px; } .wrapper.mini-bar .content { margin-left: 90px; } } @media only screen and (max-width: 767px) { .top-bar img.flag_img { width: 20px !important; } .top-bar .search { margin: 10px auto; } .top-bar .search input { height: 30px; } .top-bar .navbar-nav { text-align: center; position: relative; display: table; width: 100% !important; } .top-bar .navbar-nav > li { text-align: center !important; display: inline-block !important; } .top-bar .navbar-nav > li a { min-width: 0; font-size: 14px; } .top-bar .navbar-nav > li:first-child { padding-left: 30px; } .top-bar .dropdown .avatar-holder { width: 20px; } .top-bar .icon-notification { font-size: 24px !important; display: inline-block; } .top-bar .info-number { min-width: 25px; min-height: 25px; border-radius: 50%; line-height: 25px; padding: 0; font-size: 11px; margin-left: -8px; margin-top: 5px; font-weight: 300; float: none; } .top-bar .info-number.message { background-color: #489ee7; } .top-bar .info-number.bell { background-color: #fb5d5d; } } @media only screen and (min-width: 1000px) and (max-width: 1400px) { .dashboard-stats .left { float: left; padding-top: 5px; } .dashboard-stats .left h3 { font-size: 20px; } .dashboard-stats .left h4 { font-size: 14px; } .dashboard-stats .right { position: absolute; right: 3px; top: 3px; width: 40%; bottom: 3px; border-radius: 2px; font-size: 38px; text-align: center; color: #FFFFFF; } .dashboard-stats .right i { vertical-align: middle; line-height: 107px; } } /* panels ---------------------------------------------------------------------------------------------- */ .panel-piluku { clear: both; background-color: #FFFFFF; box-shadow: none !important; -webkit-box-shadow: none !important; -moz-box-shadow: none !important; border: 1px solid #dce1ea; border-radius: 0px; } .panel-piluku > .panel-heading { border-bottom: 1px solid #e9e9e9; font-weight: normal; background: #f9f9f9; display: table; width: 100%; } .panel-piluku > .panel-heading.reports { position: relative; } .panel-piluku > .panel-heading.reports .loading { position: absolute; top: 69px; left: 23px; } .panel-piluku > .panel-heading h3 { font-size: 16px; font-weight: normal; margin-bottom: 5px; padding-top: 5px; color: #555555; } .panel-piluku > .panel-heading a { text-decoration: none !important; } .panel-piluku > .panel-heading .panel-options { float: right; } .panel-piluku > .panel-heading .panel-options a { padding: 3px; color: #d7dce5; font-size: 16px; padding-top: 10px; } .panel-piluku > .panel-heading .panel-options a:hover { text-decoration: none; color: #99a6bd; } .panel-piluku > .panel-body.no-padding { padding: 0px !important; } .panel-piluku > .panel-body .padding { padding: 15px !important; } .panel-piluku.panel-primary { border: none; border-color: none; } .panel-piluku.panel-primary > .panel-heading { color: #489ee7 !important; background-color: #ffffff; border-top: 1px solid #489ee7; } .panel-piluku.panel-primary > .panel-heading h3 { font-size: 14px; font-weight: normal; } .panel-piluku.panel-success { border-top: 1px solid #a0d269; } .panel-piluku.panel-danger { border-top: 1px solid #df6c6e; } .panel-piluku.panel-info { border-top: 1px solid #6cadd1; } .panel-piluku.panel-warning { border-top: 1px solid #eac841; } /* Load Mask ---------------------------------------------------------------------------------------------- */ .loadmask { z-index: 100; position: absolute; top: 0; left: 0; -moz-opacity: 0.5; opacity: .50; filter: alpha(opacity=50); background-color: #b3b3b3; width: 100%; height: 100%; zoom: 1; } .loadmask-msg { z-index: 20001; position: absolute; top: 0; left: 0; background: #FFFFFF; padding: 2px; } .loadmask-msg div { padding: 5px 10px 5px 25px; line-height: 16px; color: #489ee7; font: normal 11px tahoma, arial, helvetica, sans-serif; cursor: wait; } .masked { overflow: hidden !important; } .masked-relative { position: relative !important; } .masked-hidden { visibility: hidden !important; } .placeholder { background-color: white; } /* Badges Contextual classes ---------------------------------------------------------------------------------------------- */ .bg-primary { background-color: #489ee7; } .bg-success { background-color: #a0d269; } .bg-warning { background-color: #eac841; } .bg-info { background-color: #6cadd1; } .bg-danger { background-color: #df6c6e; } .graph { width: 100%; height: 300px; } /* Gritter Custom classes ---------------------------------------------------------------------------------------------- */ #gritter-notice-wrapper { top: 90px; } /* contextual gritters */ .success .gritter-item, .success .gritter-top, .success .gritter-bottom { background: none; background-color: #5CB85C !important; } .info .gritter-item, .info .gritter-top, .info .gritter-bottom { background: none; background-color: #5BC0DE; } .danger .gritter-item, .danger .gritter-top, .danger .gritter-bottom { background: none; background-color: #D9534F; } .warning .gritter-item, .warning .gritter-top, .warning .gritter-bottom { background: none; background-color: #F0AD4E; } /* Text Colors ------------------------------------------------------------------------------------------------*/ .text-success { color: #2aaf00; } .text-primary { color: #489ee7; } .text-info { color: #004cff; } .text-danger { color: #df6c6e !important; } .text-warning { color:#ec0606; } .text-white { color: #FFFFFF !important; } .text-light { color: #aaaaaa !important; } /* Sliders overwrite ---------------------------------------------------------------------------------------------- */ .table-sliders .default td { padding: 20px; } .ui-slider-range { background: #489ee7; border-color: none; } .ui-slider-handle { border-color: #87ceeb !important; width: 24px; position: absolute; margin-left: -12px; z-index: 200; background: #989dac; border-radius: 0%; } .ui-slider-handle:focus { outline: none; } .ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus { background: #d8ebf3; } #red, #green, #blue { float: left; clear: left; width: 300px; margin: 15px; } #swatch { width: 120px; height: 100px; margin-top: 18px; margin-left: 350px; background-image: none; } #red .ui-slider-range { background: #e45857; } #red .ui-slider-handle { border-color: #e45857 !important; } #green .ui-slider-range { background: #90c657; } #green .ui-slider-handle { border-color: #90c657 !important; } #blue .ui-slider-range { background: #54b5df; } #blue .ui-slider-handle { border-color: #54b5df !important; } #eq span { height: 120px; float: left; margin: 15px; } .waves-effect.waves-light .waves-ripple { background-color: #fcfeff; opacity: 0.45; color: white; } .piluku-preloader { /*background-color: lighten(@primary-color,10%);*/ /*padding-top: 30%;*/ background-color: #489ee7; display: block; width: 100%; height: 100%; position: fixed; z-index: 999999999999999; } .loader { font-size: 10px; margin: 5em auto; text-indent: -9999em; width: 11em; height: 11em; border-radius: 50%; background: #ffffff; background: -moz-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%); background: -webkit-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%); background: -o-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%); background: -ms-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%); background: linear-gradient(to right, #ffffff 10%, rgba(255, 255, 255, 0) 42%); position: relative; -webkit-animation: load3 1.4s infinite linear; animation: load3 1.4s infinite linear; } .loader:before { width: 50%; height: 50%; background: #FFF; border-radius: 100% 0 0 0; position: absolute; top: 0; left: 0; content: ''; } .loader:after { background: #489ee7; width: 75%; height: 75%; border-radius: 50%; content: ''; margin: auto; position: absolute; top: 0; left: 0; bottom: 0; right: 0; } @-webkit-keyframes load3 { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); } } @keyframes load3 { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); } } .selected img.avatar { opacity: 0.6; position: relative; z-index: 9999; } .rollover { width: auto; height: auto; position: relative; background-color: black; display: inline-block; text-align: center; line-height: 30px; } .selected .rollover { width: auto; height: auto; position: relative; background-color: black; display: inline-block; text-align: center; line-height: 30px; } .selected .rollover:after { font-family: "Ionicons"; content: "\f396"; position: absolute; font-size: 24px; top: 20%; right: 0; left: 0; color: white; z-index: 9999; } #footers { margin-top: 50px; } .selectize-dropdown [data-selectable] .highlight { background: #dddddd !important; } .customer-badge { padding: 7px 30px; border-bottom: 1px solid #E9ECF2; background-color: #FFFFFF; } .customer-badge .avatar { float: left; display: inline-block; width: 60px; height: 60px; } .customer-badge .avatar img { width: 100%; height: 36px; border-radius: 50%; } .customer-badge .details { padding: 0px; padding-left: 72px; text-align: left; padding-top: 10px; position: relative; } .customer-badge .details .name { font-weight: 400; color: #67676C; font-size: 12px; width: 250px; /*white-space: nowrap;*/ overflow: hidden; /*text-overflow: ellipsis;*/ text-decoration: none; display: block; text-transform: capitalize; } .customer-badge .details .name .balance, .customer-badge .details .name .points { font-size: 12px; } .customer-badge .details .name:hover { color: #489ee7; } .customer-badge .details .email { color: #67676C; font-size: 10px; font-weight: 400; } .customer-badge .details .btn-edit { width: 47px; height: 36px; background-color: #F9FBFC; border: 1px solid #e8ebf1; border-right-width: 0px; border-top-width: 0px; color: #489ee7; font-size: 18px; font-weight: 500; position: absolute; top: 0; right: 0; margin-top: -7px; margin-right: -30px; } .customer-badge.suggestions { border-left: 0px solid #d7dce5; border-right-width: 0px; padding: 0px !important; /*height: 48px !important;*/ cursor: pointer; } .customer-badge.suggestions .suggest-item { padding: 7px 5px !important; } .customer-badge.suggestions .suggest-item:hover, .customer-badge.suggestions .suggest-item.active, .customer-badge.suggestions .suggest-item:focus { background-color: #f3f4f8; } .customer-badge.suggestions .avatar { width: 35px !important; height: auto; } .customer-badge.suggestions .details { padding-top: 5px; text-align: left; padding-left: 40px; line-height: 14px; } .customer-badge.suggestions .details .name { color: #000; padding-left: 5px; } .customer-badge.suggestions .details .email { padding-left: 5px; color: #8cc2f0; } @media (max-width: 767px) { .customer-badge .details .name { width: 250px; } } .dropdown-backdrop { position: static; } input { -moz-box-shadow: none !important; -webkit-box-shadow: none !important; box-shadow: none !important; } .registers-list { padding-top: 35px !important; } @media print { .content { margin-left: 0px !important; } .store_account_address { margin-left: 90px; margin-bottom: 90px; } #statement_header { margin-top: 60px; margin-bottom: 30px; } #receipt_wrapper div { page-break-inside: avoid; } } @media (max-width: 992px) { .no-padding-right { padding-left: 0px; } } .no-padding-right { padding-right: 0px !important; } .no-padding-left { padding-left: 0px !important; } .content-header { background-color: #cfe6f9; margin: -36px -16px 40px -16px; border-top-left-radius: 4px; border-top-right-radius: 4px; } .content-header h3 { padding: 5px; color: white; } #sales_page_holder { padding: 5px 15px 0 15px; } #category_tree ul, .tag-tree ul { list-style: none; } #category_tree ul li, .tag-tree ul li { line-height: 36px; } #category_tree ul li:hover > ul, .tag-tree ul li:hover > ul { background-color: #cfe6f9; } .required { color: #e7505a; } .choose-location-home li { width: 100%; } .choose-location-home a { border: 1px solid #e9ecf2; line-height: 40px; display: block; padding: 10px 20px; margin-right: 5px; margin-bottom: 10px; color: #555555; border-radius: 4px; } .choose-location-home a:nth-child(2n) { background-color: #f9f9f9; } .choose-location-home a:hover { background-color: #f9f9f9; } #giftcard_log { width: 100%; } #giftcard_log p { margin: 0px; padding: 10px; margin-bottom: 2px; } .customer-suggestion-badge.suggestions { border-left: 0px solid #d7dce5; border-right: 0 px solid #E9ECF2; padding: 7px 15px; height: 40px; } .customer-suggestion-badge.suggestions .avatar { width: 35px; height: auto; } .customer-suggestion-badge.suggestions:hover, .customer-suggestion-badge.suggestions.active { background-color: #f3f4f8; } .customer-suggestion-badge.suggestions .details { padding-top: 5px; text-align: left; padding-left: 0px; line-height: 14px; } .customer-suggestion-badge.suggestions .details .name { color: #8cc2f0; } /* Media queries for Mobile */ @media (max-width: 600px) { .language-drop:after { display: none !important; } } /* Media queries for Tablet and iPad */ @media (max-width: 767px) { .message_drop { margin: 0px auto; left: 0px !important; } .message_drop:after { display: none !important; } .nopadding.panel-body { padding: 15px; } } @-webkit-keyframes display-none-transition { 0% { display: none; margin-left: -10px; } 1% { display: block; } 100% { margin-left: 0px; } } /* Loader css */ .spinner { position: absolute; z-index: 9999999; margin: 0px auto; left: 0px; right: 1px; width: 100%; height: 100%; text-align: center; font-size: 10px; background-color: rgba(255, 255, 255, 0.6); } .spinner > div { background-color: #489ee7; 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; } #grid-loader.spinner > div { height: 100px; width: 8px; margin-right: 2px; margin-top: 30px; top: 50%; } .spinner .rect2 { -webkit-animation-delay: -1.1s; animation-delay: -1.1s; } .spinner .rect3 { -webkit-animation-delay: -1s; animation-delay: -1s; } #grid-loader.spinner .rect2 { -webkit-animation-delay: -1.1s; animation-delay: -1.1s; } #grid-loader.spinner .rect3 { -webkit-animation-delay: -1s; animation-delay: -1s; } @-webkit-keyframes sk-stretchdelay { 0%, 40%, 100% { -webkit-transform: scaleY(0.4); } 20% { -webkit-transform: scaleY(1); } } @keyframes sk-stretchdelay { 0%, 40%, 100% { transform: scaleY(0.4); -webkit-transform: scaleY(0.4); } 20% { transform: scaleY(1); -webkit-transform: scaleY(1); } } .user-badge .user-badge-avatar img { width: 50px !important; height: auto; border-radius: 4px; float: left; } .user-badge .user-badge-details { margin-left: 20px; color: #489ee7; font-size: 20px; display: inline-block; } .user-badge .user-badge-details .amount { color: #eac841; } .user-badge .user-badge-details p { font-style: italic; font-size: 14px; color: #000; } .user-badge .pull-right { margin-top: 0px; } .user-badge a.btn { box-shadow: none !important; min-width: 120px; height: 35px; margin-top: 10px; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; font-size: 14px !important; font-weight: 300 !important; } .location-suggestion .details { height: 30px; width: 200px; padding-left: 0px !important; white-space: nowrap; overflow: hidden; text-overflow: ellipsis !important; } .location-suggestion .details .name { font-size: 14px !important; line-height: 26px !important; } /* Top Pagination for manage Table ---------------------------------------------------------------------------------------------- */ .pagination-top { margin: 0px; } .pagination-top strong { font-size: 14px; font-family: 'Helvetica Neue', 'Nunito', sans-serif; border-width: 0px; background: #FFFFFF !important; color: #489ee7 !important; padding: 0px 12px !important; display: inline-block; height: 35px; line-height: 35px !important; font-weight: bold; margin-top: 0px !important; } .pagination-top a { text-decoration: none; font-family: 'Helvetica Neue', 'Nunito', sans-serif; font-size: 12px !important; padding: 0px 12px !important; display: inline-block; height: 36px; line-height: 26px; background-color: #FFFFFF; color: #489ee7; margin-left: -3px; margin-right: -3px; } .pagination-top a:first-child { border-top-left-radius: 3px ; border-bottom-left-radius: 3px ; margin-right: -5px; } .pagination-top a:last-child { border-top-right-radius: 3px ; border-bottom-right-radius: 3px ; margin-left: -5px; } .pagination-top a:hover { background: #8cc2f0 !important; } .pagination-top a:hover { background-color: #489ee7; color: #FFFFFF !important; cursor: pointer; } @media (max-width: 800px) { .manage-table .panel-title { padding-top: 0px !important; } .manage-table .panel-options { clear: both; padding-top: 30px; text-align: center; } } .manage-row-options { position: relative; width: 100%; } .manage-row-options .email_buttons { border-bottom: 1px solid #e9ecf2; position: absolute; height: 76px; padding-top: 20px; width: 100%; margin-left: 5px; z-index: 8888888; background-color: white !important; text-align: left !important; } .manage-row-options .email_buttons.items { /* height: 106px; padding-top: 35px;*/ position: absolute; z-index: 99; } .manage-row-options .email_buttons.fixed-buttons { position: fixed; top: 0; } .manage-row-options .email_buttons .btn { margin-right: 20px; margin-bottom: 20px; border-radius: 3px; } /*@media (max-width: 900px) {*/ /*.email_buttons.items {*/ /*height: 180px !important;*/ /*}*/ /*}*/ .add-location-link { margin-top: 50px; } .dataTables_filter { float: right; margin: 10px; } .dataTables_length { float: left; margin: 10px; margin-top: 20px !important; } .dataTables_info { float: left; margin: 10px; } .dataTables_paginate { float: right; } .dataTables_paginate.pagination, .dataTables_paginate .pagination { margin: 5px !important; margin-top: 0px !important; } .navbar-breadcrumb { padding-left: 15px; } .navbar-breadcrumb > a { line-height: 60px; color: #707780; float: left; } .navbar-breadcrumb > a:hover { text-decoration: none; color: #489ee7; } .navbar-breadcrumb > a.current { font-size: 16px; font-weight: 400; color: #489ee7; } .navbar-breadcrumb > a + a:before { padding: 0 10px; color: #ccc; content: "/\00a0"; } a:focus { outline: none !important; } .editable-open { border: 1px dotted #489ee7 !important; padding: 2px; } body.modal-open { overflow: hidden !important; } .modal { -webkit-overflow-scrolling: auto !important; overflow-y: auto !important; } /* UI Autocomplete suggestions focus color fix*/ .ui-menu .ui-menu-item a.ui-state-focus, .ui-menu .ui-menu-item a.ui-state-active { font-weight: normal; margin: 0; color: #ffffff; background-color: #f3f4f8 !important; text-shadow: none !important; border: 0px solid red !important; } #category_item_selection_wrapper { padding: 5px !important; } .items-buttons { margin-top: 18px; } .quick-actions li, .quick-actions-horizontal li { border: 1px solid #d5d5d5; border-radius: 4px 4px 4px 4px; -webkit-box-shadow: 0 1px 0 0 #FFFFFF inset, 0 1px 0 rgba(255, 255, 255, 0.4); box-shadow: 0 1px 0 0 #FFFFFF inset, 0 1px 0 rgba(255, 255, 255, 0.4); display: inline-block; line-height: 18px; margin: 0 10px 10px; padding: 0 10px; } .quick-actions li a i[class^="icon"], .quick-actions li a i[class*=" icon"] { background-repeat: no-repeat; background-attachment: scroll; background-position: 0 0; background-color: transparent; width: 32px; height: 32px; display: block; margin: 0 auto 5px; } .quick-actions li, .quick-actions-horizontal li { padding: 0; } .quick-actions li a, .quick-actions-horizontal li a { text-align: center !important; display: block; color: #666666; text-shadow: 0 1px 0 #ffffff; } .quick-actions li:active, .quick-actions-horizontal li:active, .quick-actions li:focus, .quick-actions-horizontal li:focus { background-image: -webkit-linear-gradient(top, #eeeeee 0%, #f4f4f4 100%); background-image: linear-gradient(to bottom, #eeeeee 0%, #f4f4f4 100%); background-repeat: repeat-x; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#fff4f4f4', GradientType=0); -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2) inset, 0 1px 0 rgba(255, 255, 255, 0.4); box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2) inset, 0 1px 0 rgba(255, 255, 255, 0.4); } .quick-actions-horizontal li a span { padding: 10px 12px 10px 10px; display: inline-block; } .quick-actions-horizontal li a i[class^="icon"], .quick-actions-horizontal li a i[class*="icon"] { background-repeat: no-repeat; background-attachment: scroll; background-position: center; background-color: transparent; width: 16px; height: 16px; display: inline-block; margin: -2px 0 0 !important; border-right: 1px solid #dddddd; margin-right: 10px; padding: 20px; vertical-align: middle; } .alert-select-all .alert { margin-top: 20px; margin-bottom: 0px; } .alert-select-all .selectall, .alert-select-all .selectnone { cursor: pointer; display: none; } .alert-select-all .selectall strong, .alert-select-all .selectnone strong { text-decoration: underline; } .quick-actions a { margin-top: 5px !important; } .quick-actions a:hover { background-color: #489ee7; color: white; } .quick-actions a:hover i { color: white; } .quick-actions a i { font-size: 20px; padding-right: 20px; color: #000; border-right: 1px solid #d7dce5; margin-right: 20px; } .item-current-location { background-color: #f3f4f8; color: #006dcc; } .item-current-location .form-heading { color: #489ee7; } .config-search { float: left; } .location-settings { margin-top: 30px; } #keyboard_toggle { padding-right: 15px !important; padding-top: 15px !important; } .m-b-20 { margin-bottom: 20px; } .p-lr-15 { padding-left: 15px; padding-right: 15px; } .form-horizontal .panel-body { padding: 10px !important; } .panel-heading .reports-range { color: #6cadd1 !important; } span.compare { color: black; } span.compare_better { color: #32CD32; } span.compare_worse { color: red; } .summary-data span.compare { color: white; } .summary-data span.compare_better { color: #00ff00; } .summary-data span.compare_worse { color: #ff4d4d; } /* Print style fixes */ @media print { a[href]:after { content: none !important; } [class^="ion"], [class*=" ion"] { display: none !important; } .reports-printable { padding: 25px !important; } .reports-printable td { font-size: 10px !important; } .content { margin-left: 0px !important; } } .location-suggest { height: 50px; } .location-suggest .avatar .badge { margin-top: 5px; margin-left: 10px; width: 25px; height: 25px; border-radius: 50%; } .location-suggest .details { padding-left: 20px; } .location-suggest .details .name { line-height: 22px; } .item_kit_item_row .ion-ios-trash-outline { font-size: 24px; } @media print { #register_log_details .col-md-1, #register_log_details .col-md-2, #register_log_details .col-md-3, #register_log_details .col-md-4, #register_log_details .col-md-5, #register_log_details .col-md-6, #register_log_details .col-md-7, #register_log_details .col-md-8, #register_log_details .col-md-9, #register_log_details .col-md-10, #register_log_details .col-md-11, #register_log_details .col-md-12 { float: left; } #register_log_details .col-md-12 { width: 100%; } } .relative { position: relative; } .floating-button { position: fixed; bottom: 30px; right: 30px; z-index: 9999999999; border-radius: 3px; } .m-t-10 { margin-top: 10px; } .m-b-10 { margin-bottom: 10px; } /* -------------------------------- Primary style -------------------------------- */ /* -------------------------------- xnugget info -------------------------------- */ .cd-nugget-info { position: absolute; width: 60%; left: 50%; top: 50%; bottom: auto; right: auto; -webkit-transform: translateX(-50%) translateY(-50%); -moz-transform: translateX(-50%) translateY(-50%); -ms-transform: translateX(-50%) translateY(-50%); -o-transform: translateX(-50%) translateY(-50%); transform: translateX(-50%) translateY(-50%); z-index: 1; text-align: center; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .cd-nugget-info h1 { color: #fefffb; font-size: 2.4rem; margin: .6em 0; } .cd-nugget-info .cd-btn { -webkit-appearance: none; -moz-appearance: none; -ms-appearance: none; -o-appearance: none; appearance: none; border: none; border-radius: 50em; background: #ff962c; padding: 1em 2em; color: #fefffb; font-weight: bold; font-size: 1.4rem; cursor: pointer; box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2); } .cd-nugget-info .cd-btn:active { -webkit-transform: scale(0.9); -moz-transform: scale(0.9); -ms-transform: scale(0.9); -o-transform: scale(0.9); transform: scale(0.9); } .no-touch .cd-nugget-info .cd-btn:hover, .cd-nugget-info .cd-btn:focus { outline: none; background: #ffa346; } @media only screen and (min-width: 1100px) { .cd-nugget-info h1 { font-size: 4.2rem; font-weight: 300; } .cd-nugget-info .cd-btn { font-size: 1.6rem; } } /* -------------------------------- Main Components -------------------------------- */ .cd-tour-wrapper { position: fixed; z-index: 99999999999999; height: 90%; width: 90%; left: 50%; top: 50%; bottom: auto; right: auto; -webkit-transform: translateX(-50%) translateY(-50%); -moz-transform: translateX(-50%) translateY(-50%); -ms-transform: translateX(-50%) translateY(-50%); -o-transform: translateX(-50%) translateY(-50%); transform: translateX(-50%) translateY(-50%); visibility: hidden; opacity: 0; -webkit-transition: opacity 0.4s 0s, visibility 0s 0.4s; -moz-transition: opacity 0.4s 0s, visibility 0s 0.4s; transition: opacity 0.4s 0s, visibility 0s 0.4s; } .cd-tour-wrapper img { width: 100%; height: auto; } .cd-tour-wrapper::before { /* never visible - this is used in jQuery to check the current MQ */ display: none; content: 'mobile'; } .cd-tour-wrapper.active { /* start tour */ visibility: visible; opacity: 1; -webkit-transition: opacity 0.4s 0s, visibility 0s 0s; -moz-transition: opacity 0.4s 0s, visibility 0s 0s; transition: opacity 0.4s 0s, visibility 0s 0s; } @media only screen and (min-width: 600px) { .cd-tour-wrapper { max-width: 500px; max-height: 600px; } } @media only screen and (max-width: 900px) { .selectall { margin-top: 30px; } } .list-permission-actions { padding-left: 30px; } #permission_list { padding-left: 10px; } .child-list .page-header { margin-top: 0px; font-size: 20px !important; } .inventory-count { border-radius: 0px 3px 3px 0px !important; } .table-reports thead th, .table-reports thead td { text-align: center !important; } .ui-menu .ui-menu-item { list-style-image: none !important; } #request_section .tabs { padding-top: 0 !important; } #tbl_delivery_items { margin-bottom: 5px; } #tbl_delivery_items th { line-height: 30px; text-align: center; } #tbl_delivery_items th, #tbl_delivery_items td{ border: 1px solid #d7dce5; padding: 5px 10px; } #tbl_delivery_items input[type="checkbox"] + label span { margin-right: 0; } #delivery_info { margin-bottom: 5px; } li.pagi{ font-weight: bold; }
assets/css/style.css
/*************************** * Register Items ****************************/ /*************************** * Register Right Bar ****************************/ /*************************** * Register Summary Right Bar ****************************/ .avatar-fix{ width: 60%; } .register .register-box { background-color: #FFFFFF; border-width: 1px; border-color: #e8ebf1; border-style: solid; border-radius: 6px; background-color: #ffffff; margin-top: 5px; /*box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.05);*/ } .register .paper-cut:after { content: " "; display: block; position: relative; top: 0px; left: 0px; width: 100%; height: 36px; background: -webkit-linear-gradient(#FFFFFF 0%, transparent 0%), -webkit-linear-gradient(135deg, #e8ebf1 33.33%, transparent 33.33%) 0 0%, #e8ebf1 -webkit-linear-gradient(45deg, #e8ebf1 33.33%, #FFFFFF 33.33%) 0 0%; background: -o-linear-gradient(#FFFFFF 0%, transparent 0%), -o-linear-gradient(135deg, #e8ebf1 33.33%, transparent 33.33%) 0 0%, #e8ebf1 -o-linear-gradient(45deg, #e8ebf1 33.33%, #FFFFFF 33.33%) 0 0%; background: -moz-linear-gradient(#FFFFFF 0%, transparent 0%), -moz-linear-gradient(135deg, #e8ebf1 33.33%, transparent 33.33%) 0 0%, #e8ebf1 -moz-linear-gradient(45deg, #e8ebf1 33.33%, #FFFFFF 33.33%) 0 0%; background-repeat: repeat-x; background-size: 0px 100%, 14px 27px, 14px 27px; } .register .register-items-form .item-form { text-align: center; padding: 20px; } .register .register-items-form .item-form .input-group { width: 100%; } .register .register-items-form .item-form .input-group .selectize-input { text-align: left; height: 22px !important; border: 0px solid #D7DCE5; } .register .register-items-form .item-form .input-group .selectize-input.focus { border-color: #66afe9; outline: 0; -webkit-box-shadow: none !important; box-shadow: none !important; } .register .register-items-form .item-form .input-group .selectize-dropdown.single.add-item-input { top: 38px !important; border-left: 1px solid #D7DCE5 !important; border-right: 1px solid #D7DCE5 !important; margin-left: 0 !important; } .register .register-items-form .item-form .input-group .add-item-input, .register .register-items-form .item-form .input-group .selectize-input input, .register .register-items-form .item-form .input-group #item { width: 100%; height: 42px; background-color: #FFF; -moz-border-radius: 0px; -webkit-border-radius: 0px; border-radius: 0px; color: #000; font-size: 14px; font-weight: 300; display: block; float: left; border: 1px solid #D7DCE5; padding-left: 10px; border-right-width: 0px; -webkit-appearance: none; } .register .register-items-form .item-form .input-group .add-item-input:focus, .register .register-items-form .item-form .input-group .selectize-input input:focus, .register .register-items-form .item-form .input-group #item:focus { border-color: #D7DCE5 !important; } .register .register-items-form .item-form .input-group .add-item-input.items-count, .register .register-items-form .item-form .input-group .selectize-input input.items-count, .register .register-items-form .item-form .input-group #item.items-count { border: 1px solid #D7DCE5 !important; } .register .register-items-form .item-form .input-group .input-group-addon { width: 38px; height: 22px !important; background-color: #489ee7; opacity: 1; border: 0px solid #D7DCE5; -moz-border-radius: 3px 0px 0px 3px; padding: 1px !important; } .register .register-items-form .item-form .input-group .input-group-addon > a { color: #FFFFFF; text-decoration: none; padding: 8px 15px 10px 15px; } .register .register-items-form .item-form .input-group .input-group-addon i { color: #FFF; margin-right: 5px; font-size: 16px; font-weight: 500; } .register .register-items-form .item-form .input-group .input-group-addon.register-mode.stock-dropdown { display: table-cell; } .register .register-items-form .item-form .input-group .input-group-addon.register-mode .group-heading { position: absolute; left: 2px; top: 2px; line-height: 10px; font-size: 10px; } .register .register-items-form .item-form .input-group .input-group-addon.register-mode.sale-mode, .register .register-items-form .item-form .input-group .input-group-addon.register-mode.receive-mode { background-color: #F2FFED ; border: 1px solid #85EF60; border-right-width: 0px; -moz-border-radius: 0px; -webkit-border-radius: 0px; border-radius: 0px; padding: 1px !important; } .register .register-items-form .item-form .input-group .input-group-addon.register-mode.sale-mode > a, .register .register-items-form .item-form .input-group .input-group-addon.register-mode.receive-mode > a { text-decoration: none; color: #6FD64B; font-size: 18px; font-weight: 300; padding: 8px 10px 10px 10px; } .register .register-items-form .item-form .input-group .input-group-addon.register-mode.sale-mode > a i, .register .register-items-form .item-form .input-group .input-group-addon.register-mode.receive-mode > a i { color: #6FD64B; margin-right: 5px; line-height: 18px; font-size: 16px; } .register .register-items-form .item-form .input-group .input-group-addon.register-mode.sale-mode:hover, .register .register-items-form .item-form .input-group .input-group-addon.register-mode.receive-mode:hover { background-color: #e0ffd4; } .register .register-items-form .item-form .input-group .input-group-addon.register-mode.sale-mode, .register .register-items-form .item-form .input-group .input-group-addon.register-mode.vat_order-mode, .register .register-items-form .item-form .input-group .input-group-addon.register-mode.purchase_order-mode { background-color: #F2FFED ; border: 1px solid #85EF60; border-right-width: 0px; -moz-border-radius: 0px; -webkit-border-radius: 0px; border-radius: 0px; padding: 1px !important; } .register .register-items-form .item-form .input-group .input-group-addon.register-mode.sale-mode > a, .register .register-items-form .item-form .input-group .input-group-addon.register-mode.vat_order-mode > a, .register .register-items-form .item-form .input-group .input-group-addon.register-mode.purchase_order-mode > a { text-decoration: none; color: #6FD64B; font-size: 18px; font-weight: 300; padding: 8px 10px 10px 10px; } .register .register-items-form .item-form .input-group .input-group-addon.register-mode.sale-mode > a i, .register .register-items-form .item-form .input-group .input-group-addon.register-mode.vat_order-mode > a i, .register .register-items-form .item-form .input-group .input-group-addon.register-mode.purchase_order-mode > a i { color: #6FD64B; margin-right: 5px; line-height: 18px; font-size: 16px; } .register .register-items-form .item-form .input-group .input-group-addon.register-mode.sale-mode:hover, .register .register-items-form .item-form .input-group .input-group-addon.register-mode.vat_order-mode:hover, .register .register-items-form .item-form .input-group .input-group-addon.register-mode.purchase_order-mode:hover { background-color: #e0ffd4; } .register .register-items-form .item-form .input-group .input-group-addon.register-mode.return-mode { background-color: #FFF0DD; border: 1px solid #FFCD90; -moz-border-radius: 0px; -webkit-border-radius: 0px; border-radius: 0px; } .register .register-items-form .item-form .input-group .input-group-addon.register-mode.return-mode > a { text-decoration: none; color: #FEAE4E; font-size: 18px; font-weight: 300; } .register .register-items-form .item-form .input-group .input-group-addon.register-mode.return-mode > a i { color: #FEAE4E; margin-right: 5px; line-height: 18px; font-size: 16px; } .register .register-items-form .item-form .input-group .input-group-addon.register-mode.return-mode > a i:before { content: "\e632"; } .register .register-items-form .item-form .input-group .input-group-addon.register-mode.return-mode:hover { background-color: #ffe5c3; } .register .register-items-form .item-form .input-group .input-group-addon.register-mode.store_account_payment-mode, .register .register-items-form .item-form .input-group .input-group-addon.register-mode.assigment-mode, .register .register-items-form .item-form .input-group .input-group-addon.register-mode.transfer-mode { background-color: #F9FBFC; border: 1px solid #D7DCE5; -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0; } .register .register-items-form .item-form .input-group .input-group-addon.register-mode.store_account_payment-mode > a, .register .register-items-form .item-form .input-group .input-group-addon.register-mode.assigment-mode > a, .register .register-items-form .item-form .input-group .input-group-addon.register-mode.transfer-mode > a { color: #000; margin-right: 5px; line-height: 18px; font-size: 16px; background-color: transparent; font-weight: 300; text-decoration: none; } .register .register-items-form .item-form .input-group .input-group-addon.register-mode.store_account_payment-mode > a i, .register .register-items-form .item-form .input-group .input-group-addon.register-mode.assigment-mode > a i, .register .register-items-form .item-form .input-group .input-group-addon.register-mode.transfer-mode > a i { color: #000; margin-right: 5px; line-height: 18px; font-size: 16px; } .register .register-items-form .item-form .input-group .input-group-addon.register-mode.store_account_payment-mode > a i:before, .register .register-items-form .item-form .input-group .input-group-addon.register-mode.transfer-mode > a i:before { content: "\e602"; } .register .register-items-form .item-form .input-group .input-group-addon.register-mode.store_account_payment-mode:hover, .register .register-items-form .item-form .input-group .input-group-addon.register-mode.transfer-mode:hover { background-color: #f2f6f9; } .register .register-items-form .item-form .input-group .input-group-addon.grid-buttons { /*width: 254px;*/ height: 104px; background-color: #489ee7; border: 1px solid #489ee7; -moz-border-radius: 0px 3px 3px 0px; -webkit-border-radius: 0px 3px 3px 0px; border-radius: 0px 3px 3px 0px; padding: 1px !important; } .register .register-items-form .item-form .input-group .input-group-addon.grid-buttons a { color: #FFF; font-size: 16px; font-weight: 300; text-decoration: none; padding: 8px 10px 10px 10px; } .register .register-items-form .item-form .input-group .input-group-addon.grid-buttons a i { margin-right: 5px; line-height: 18px; font-size: 14px; } .register .register-items-form .item-form .input-group .input-group-addon.grid-buttons:hover { background-color: #3192e4; } .register .register-items .register-items-holder { padding-top: 5px; } .register .register-items .register-items-holder tr.register-item-details:hover, .register .register-items .register-items-holder tr.register-item-details:hover + tr { background-color: #f5f7f9; } .register .register-items .register-items-holder td.selected, .register .register-items .register-items-holder tr:hover td { background-color: transparent; } .register .register-items .register-items-holder .register-item-content { min-height: 52px; border-bottom: 1px dotted #D7DCE5; padding-top: 10px; } .register .register-items .register-items-holder .register-item-content .register-item-bottom:hover { background-color: #f5f7f9; } .register .register-items .register-items-holder .register-item-content .register-item-bottom td { border-top-width: 0px; } .register .register-items .register-items-holder .register-item-content .delete-item, #reg_item_top .delete-item { color: #FF7474; font-size: 18px; font-weight: 500; margin: 5px; } .register .register-items .register-items-holder .register-item-content .register-item-name { color: #438AF7; font-size: 14px; font-weight: 300; max-width:300px; display:block; } .register .register-items .register-items-holder .register-item-content .register-item-name.count-items { font-size: 14px; margin-left: 20px; } .register .register-items .register-items-holder .register-item-content .register-item-extra-details { padding-left: 5px; color: #000; font-size: 12px; margin-bottom: 0px; } .register .register-items .register-items-holder .register-item-content .register-item-extra-details dt { color: #000000; text-align: left; width: 130px; line-height: 20px; min-width: 50px !important; } .register .register-items .register-items-holder .register-item-content .register-item-extra-details dd { margin-left: 0px; line-height: 20px; } .register .register-items .register-items-holder .register-item-content .register-item-extra-details a { color: #000; } .register-right { /*display: none;*/ /* Customer badge when added */ } .register .register-right fieldset { width: auto; border: solid 1px rgb(233, 236, 242); text-align: center; } .register .register-right fieldset legend { width: auto; text-align: center; font-weight: bold; font-size: 14px; border-bottom: none; padding: 0 5px 0 5px; } .register .register-right .sale-buttons { min-height: 78px; text-align: center; padding: 20px 10px; border-bottom: 1px solid #E9ECF2; } .register .register-right .sale-buttons #cancel_sale_form { display: inline-block; } .register .register-right .sale-buttons .btn { margin-right: 5px; margin-top: 5px; /*margin-bottom: 5px;*/ } .register .register-right .sale-buttons .btn-more, .register .register-right .sale-buttons .btn-default { min-width: 58px; height: 35px; background-color: #F9FBFC; border: 1px solid #D7DCE5; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; } .register .register-right .sale-buttons .btn-more i, .register .register-right .sale-buttons .btn-default i { line-height: 12px; font-size: 22px; color: #9398a0; } .register .register-right .sale-buttons .btn-group.open .dropdown-toggle.btn-suspended { background-color: #ffe5c3; border: 1px solid #ffc276; } .register .register-right .sale-buttons .btn-suspended { height: 35px; background-color: #FFF0DD; border: 1px solid #FFCD90; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; color: #FEAE4E; font-size: 12px; font-weight: 400; line-height: 20px; } .register .register-right .sale-buttons .btn-suspended:hover { background-color: #ffdaaa; } .register .register-right .sale-buttons .btn-cancel { height: 35px; background-color: #FFEAEA; border: 1px solid #FFA8A8; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; color: #FF7474; font-size: 12px; font-weight: 400; line-height: 20px; } .register .register-right .sale-buttons .btn-cancel:hover, .register .register-right .sale-buttons .btn-cancel:focus { background-color: #ffb7b7; } .register .register-right .sale-buttons .btn-group.open .dropdown-toggle { box-shadow: none !important; background-color: #f2f6f9; } .register .register-right .customer-badge { padding: 7px 30px; border-bottom: 1px solid #E9ECF2; min-height: 80px; background-color: #FFFFFF; } .register .register-right .customer-badge.location { height: 60px; } .register .register-right .customer-badge .avatar { float: left; display: inline-block; width: 60px; height: 60px; } .register .register-right .customer-badge .avatar img { width: 100%; border-radius: 50%; } .register .register-right .customer-badge .details { padding: 0px; padding-left: 72px; text-align: left; padding-top: 10px; position: relative; } .register .register-right .customer-badge .details .name { font-weight: 400; font-size: 16px; text-decoration: none; display: block; text-transform: capitalize; } .register .register-right .customer-badge .details .name .balance, .register .register-right .customer-badge .details .name .points { font-size: 12px; } .register .register-right .customer-badge .details .name:hover { color: #489ee7; } .register .register-right .customer-badge .details .email { color: #67676C; font-size: 10px; font-weight: 400; } .register .register-right .customer-badge .details .btn-edit { width: 47px; height: 36px; background-color: #F9FBFC; border: 1px solid #e8ebf1; border-right-width: 0px; border-top-width: 0px; color: #489ee7; font-size: 18px; font-weight: 500; position: absolute; top: 0; right: 0; margin-top: -7px; margin-right: -30px; } .register .register-right .customer-badge.suggestions { border-left: 0px solid #d7dce5; border-right: 0 px solid #E9ECF2; height: 60px !important; padding: 7px 15px !important; } .register .register-right .customer-badge.suggestions .avatar { width: 35px; height: auto; } .register .register-right .customer-badge.suggestions:hover, .register .register-right .customer-badge.suggestions.active, .register .register-right .customer-badge.suggestions:focus { background-color: #f3f4f8; } .register .register-right .customer-badge.suggestions .details { padding-top: 5px; text-align: left; padding-left: 40px; line-height: 14px; } .register .register-right .customer-badge.suggestions .details .name { color: #8cc2f0; } .register .register-right .customer-action-buttons .register .register-right .customer-action-buttons label { width: 49%; height: 50px; display: inline-block; color: #67676C; font-size: 16px; font-weight: 400; text-transform: capitalize; line-height: 30px; } .register .register-right .customer-action-buttons a:first-child, .register .register-right .customer-action-buttons label:first-child { border-right: 1px solid #E9ECF2; } .register .register-right .customer-action-buttons a:first-child i, .register .register-right .customer-action-buttons label:first-child i { color: #ddd; font-size: 18px; font-weight: 500; } .register .register-right .customer-action-buttons a i, .register .register-right .customer-action-buttons label i { color: #FF7474; font-size: 18px; font-weight: 500; } .register .register-right .customer-action-buttons a.email-checked i, .register .register-right .customer-action-buttons label.email-checked i { color: #489ee7; } .register .register-right .customer-action-buttons a.email-checked i:before, .register .register-right .customer-action-buttons label.email-checked i:before { content: "\f120"; } .register .register-right .customer-action-buttons a.success i, .register .register-right .customer-action-buttons label.success i { color: #489ee7; } .register .register-right .customer-action-buttons label { width: 100%; } .register .register-right .customer-form { text-align: center; padding: 20px; } .register .register-right .customer-form.sale_date { text-align: left; } .register .register-right .customer-form .input-group { width: 100%; } .register .register-right .customer-form .input-group .selectize-input, .register .register-right .customer-form .input-group #customer, .register .register-right .customer-form .input-group #supplier, .register .register-right .customer-form .input-group #employee, .register .register-right .customer-form .input-group #location { text-align: left; height: 40px !important; -webkit-appearance: none; border: 0px solid #D7DCE5; } .register .register-right .customer-form .input-group .selectize-input.focus, .register .register-right .customer-form .input-group #customer.focus, .register .register-right .customer-form .input-group #supplier.focus, .register .register-right .customer-form .input-group #employee.focus, .register .register-right .customer-form .input-group #location.focus { border-color: #66afe9; outline: 0; -webkit-box-shadow: none !important; box-shadow: none !important; } .register .register-right .customer-form .input-group .selectize-dropdown.single.add-customer-input, .register .register-right .customer-form .input-group #customer, .register .register-right .customer-form .input-group #supplier, .register .register-right .customer-form .input-group #employee, .register .register-right .customer-form .input-group #location { top: 38px !important; border-left: 1px solid #D7DCE5 !important; margin-left: 0 !important; } .register .register-right .customer-form .input-group .add-customer-input, .register .register-right .customer-form .input-group .selectize-input input, .register .register-right .customer-form .input-group #customer, .register .register-right .customer-form .input-group #supplier, .register .register-right .customer-form .input-group #employee, .register .register-right .customer-form .input-group #location { width: 100%; background-color: #FFF; -moz-border-radius: 0px 3px 3px 0px; -webkit-border-radius: 0px 3px 3px 0px; border-radius: 0px 3px 3px 0px; color: #000; font-size: 14px; font-weight: 300; display: block; float: left; border: 1px solid #D7DCE5; border-left-width: 0px !important; } .register .register-right .customer-form .input-group .add-customer-input:focus, .register .register-right .customer-form .input-group .selectize-input input:focus, .register .register-right .customer-form .input-group #customer:focus, .register .register-right .customer-form .input-group #supplier:focus, .register .register-right .customer-form .input-group #employee:focus, .register .register-right .customer-form .input-group #location:focus { border-color: #D7DCE5 !important; } .register .register-right .customer-form .input-group .input-group-addon { width: 38px !important; height: 22px !important; background-color: #489ee7 !important; opacity: 1; padding: 1px !important; border: 0px solid #D7DCE5; -moz-border-radius: 3px 0px 0px 3px; -webkit-border-radius: 3px 0px 0px 3px; border-radius: 3px 0px 0px 3px; } .register .register-right .customer-form .input-group .input-group-addon i { color: #FFF; font-size: 20px; font-weight: 500; line-height: 22px; padding: 5px 15px 7px 15px; } .register .register-summary { margin-top: 5px; } .register .register-summary .value { float: right; } .register .register-summary .list-group-item { line-height: 26px; border-width: 0px; padding: 1px 15px; } .register .register-summary .list-group-item .remove { color: #FF7474; font-size: 16px; font-weight: 500; margin: 5px; } .register .register-summary .item-tier, .register .register-summary .select-sales-person, .register .register-summary .select-service, .register .register-summary .select-store_acount_payment{ color: #67676C; font-size: 16px; font-weight: 300; display: block; padding: 5px 15px; padding-bottom: 10px; text-decoration: none; } .register .register-summary .item-tier span, .register .register-summary .select-sales-person span, .register .register-summary .select-service span, .register .register-summary .select-store_acount_payment span { float: right; color: #489ee7; font-weight: 400; } .register .register-summary .select-store_acount_payment span { padding: 0; } .register .register-summary .item-tiers, .register .register-summary .select-sales-persons, .register .register-summary .select-services, .register .register-summary .select-store_acount_payments { display: none; border-radius: 0px; } .register .register-summary .item-tiers a, .register .register-summary .select-sales-persons a { background-color: #F9FBFC; } .register .register-summary .item-tiers a:hover, .register .register-summary .select-sales-persons a:hover { color: #489ee7; } .register .register-summary .item-tiers .list-group-item, .register .register-summary .select-sales-persons .list-group-item { border-left-width: 0px; border-right-width: 0px; border-color: #E9ECF2; } .register .register-summary .item-tiers .list-group-item:first-child, .register .register-summary .select-sales-persons .list-group-item:first-child, .register .register-summary .item-tiers .list-group-item:last-child, .register .register-summary .select-sales-persons .list-group-item:last-child { border-radius: 0px; } @media (max-width: 768px) { .register .register-summary .global-discount-group .key { width: 40% !important; } } .register .register-summary .global-discount-group { padding: 5px 15px; padding-top: 0px; } .register .register-summary .global-discount-group .key { max-width: 55%; display: inline-block; } .register .register-summary .global-discount-group li { line-height: 26px; color: #67676C; font-size: 16px; font-weight: 300; } .register .register-summary .global-discount-group li .value { color: #000; font-size: 16px; font-weight: 300; } .register .register-summary .sub-total { height: 39px; background-color: #f1ffec; color: #67676C; font-size: 14px; font-weight: 300; margin-left: 0px; padding: 0px 15px; margin-top: 0px; line-height: 39px; } .register .register-summary .sub-total .value { font-weight: 400; } .register .register-summary .amount-block { height: 70px; border-top: 1px dashed #D0D3D8; border-bottom: 1px dashed #D0D3D8; } .register .register-summary .amount-block .total { padding: 10px; padding-top: 5px; display: inline-block; width: 49%; height: 68px; } .register .register-summary .amount-block .total:nth-child(1) { border-right: 1px dashed #D0D3D8; } .register .register-summary .amount-block .total .side-heading { padding-left: 5px; color: #67676C; font-size: 12px; font-weight: 400; line-height: 26px; } .register .register-summary .amount-block .total .amount { text-align: center; color: #6FD64B; font-size: 22px; font-weight: 400; } .register .register-summary .amount-block .total.amount-due .amount { color: #ff9e28; } .register .register-summary .payments { margin-top: 10px; padding-bottom: 10px; margin-bottom: 10px; border-bottom: 1px dashed #D0D3D8; } .register .register-summary .payments .remove { padding-right: 5px; } .register .register-summary .payments .key { color: #67676C; font-size: 14px; font-weight: 300; } .register .register-summary .payments .value { color: #000; font-size: 14px; font-weight: 300; } .register .register-summary .add-payment { padding: 15px; padding-top: 5px; } .register .register-summary .add-payment .btn-pay { height: 35px; background-color: #F9FBFC; border: 1px solid #D7DCE5; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; color: #000; font-size: 12px; font-weight: 300; margin-bottom: 10px; line-height: 22px; } .register .register-summary .add-payment .side-heading { padding-left: 5px; color: #67676C; font-size: 12px; font-weight: 400; line-height: 26px; } .register .register-summary .add-payment .select-payment.active { background-color: #88B7FF; color: #FFFFFF; box-shadow: none; border-color: #88B7FF; } .register .register-summary .add-payment-form { padding: 20px; } .register .register-summary .add-payment-form.input-group { width: 100%; } .register .register-summary .add-payment-form.input-group .add-input { width: 100%; background-color: #FFF; -moz-border-radius: 0px; -webkit-border-radius: 0px; border-radius: 0px; color: #000; font-size: 14px; font-weight: 300; display: block; float: left; border: 1px solid #D7DCE5; border-right-width: 0px !important; box-shadow: none; height: 39px; } .register .register-summary .add-payment-form.input-group .add-input:focus, .register .register-summary .add-payment-form.input-group .add-input:active { border-color: #D7DCE5 !important; } .register .register-summary .add-payment-form.input-group .input-group-addon { width: 38px !important; height: 38px !important; background-color: #88B7FF; opacity: 1; border: 0px solid #D7DCE5; -moz-border-radius: 0px 3px 3px 0px; -webkit-border-radius: 0px 3px 3px 0px; border-radius: 0px 3px 3px 0px; padding: 1px !important; } .register .register-summary .add-payment-form.input-group .input-group-addon > a { color: #FFFFFF; text-decoration: none; line-height: 22px; padding: 8px 20px 10px 20px; } .register .register-summary .add-payment-form.input-group .input-group-addon i { color: #FFF; margin-right: 5px; font-size: 16px; font-weight: 500; } /*.delivery_date { display: none; } .sale_date { display: none; } .group-n9 { display: none; } /*.comment-block { display: none; }*/ .register .register-summary .finish-sale { /*display: none;*/ padding: 10px 0px 40px 0px; border-top: 1px dashed #D0D3D8; } .register .register-summary .finish-sale .btn { height: 39px; background-color: #6FD64B; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; border-color: #6FD64B; box-shadow: none; color: #FFF; font-size: 16px; font-weight: 300; } .register .register-summary .comment-block { padding: 10px 0; } .register .register-summary .comment-block .side-heading { padding-left: 5px; color: #67676C; font-size: 12px; font-weight: 400; line-height: 26px; } .register-grid { /*background-color: darken(@page-color,10%);*/ margin-top: -20px; padding: 15px; } .register-grid .register-holder { border-width: 1px; border-color: #e8ebf1; border-style: solid; border-radius: 3px; height: 100px; background-color: #ffffff; padding: 0px !important; overflow: hidden; text-align: center !important; background-color: black; cursor: pointer; } .register-grid .register-holder img { width: 100%; height: auto; opacity: 0.5; position: absolute; top: 0px; left: 0; } .register-grid .register-holder:hover img { opacity: 1; position: absolute; top: 0px; z-index: 1999; } .register-grid .register-holder p { position: relative; color: white; width: 100% !important; text-align: center; margin-top: 20px; } .register-grid .register-holder.categories-holder, .register-grid .register-holder.tags-holder, .register-grid .register-holder.no-image { background-color: #FFFFFF; text-align: center !important; } .register-grid .register-holder.categories-holder p, .register-grid .register-holder.tags-holder p, .register-grid .register-holder.no-image p { color: #67676C; display: table; vertical-align: middle; text-align: center !important; height: 100px; width: 100%; } .register-grid .register-holder.categories-holder:hover, .register-grid .register-holder.tags-holder:hover, .register-grid .register-holder.no-image:hover { background-color: #f8f8f8; } .register-grid .register-holder.back-to-categories { background-color: #f9f9f9; border: 1px solid #ddd; } .register-grid .register-holder.categories-holder p { margin-top: 30px !important; } .register-items-header { min-height: 52px; line-height: 52px; background-color: #F9FBFC; border: 1px solid #E9ECF2; border-bottom: 1px solid #E9ECF2; color: #67676C; font-size: 14px; font-weight: 300; text-align: center; } .register-items-header th { text-align: center; } .modal { background-color: rgba(0, 0, 0, 0.6); } .customer-recent-sales { max-width: 800px !important; } .customer-recent-sales .modal-content { -webkit-box-shadow: 3px 3px 9px 0px rgba(0, 0, 0, 0.25); -moz-box-shadow: 3px 3px 9px 0px rgba(0, 0, 0, 0.25); box-shadow: 3px 3px 9px 0px rgba(0, 0, 0, 0.25); border: 1px solid #e9ecf2; } .customer-recent-sales .modal-header { background-color: #f2f4f7; } .customer-recent-sales .modal-header > h5 { color: #555555; letter-spacing: 0.25px; text-transform: capitalize; } .customer-recent-sales .modal-body { margin-top: 10px; } .customer-recent-sales .modal-body table tr th { border: 0px; color: #555555; font-family: 'ProximaNova-Semibold', sans-serif; font-size: 14px; letter-spacing: 0.25px; line-height: 20px; text-align: center; padding: 10px 0px; } .customer-recent-sales .modal-body table tr.table-row-hover td { border-top: 1px solid #e9ecf2; color: #000; font-family: 'ProximaNova-Regular', sans-serif; font-size: 14px; letter-spacing: 0.25px; line-height: 20px; text-align: center; padding: 10px 0px; } .customer-recent-sales .modal-body table tr.table-row-hover td a { color: #489ee7; } .customer-recent-sales .modal-body table tr.table-row-hover td a:hover { color: #3192e4; } .customer-recent-sales .modal-body table tr.table-row-hover:hover td { background-color: #f2f4f7 !important; } body.open-modal { background-color: red; } .modal-backdrop.in { opacity: 0.9 !important; background-color: red !important; } #sales_page_holder { width: 100%; height: 100%; background-color: #e8ebf1; } #sales_page_holder.fullscreen-enabled { padding-left: 30px !important; padding-right: 30px !important; } .fullscreen { margin-left: 30px; } .dismissfullscreen { color: #FF7474; background-color: #FFFFFF; width: 35px; height: 35px; font-size: 18px; font-weight: 500; margin: 5px; text-align: center; border-radius: 50%; position: absolute; z-index: 99; margin-top: -10px; margin-left: -10px; } .dismissfullscreen i { font-size: 26px; } .dismissfullscreen:hover i { color: #ff5a5a; } .close-amount li { border-color: #e9ecf2; color: #555555; } .close-amount li .pull-right { font-weight: bold; } .close-amount li .total-amount { font-size: 20px; } .close-amount li:hover, .close-amount li.active { color: #555; text-decoration: none; background-color: #f5f7f9; border-color: #e9ecf2; } .input-group-mobile.input-group { display: none; } @media (max-width: 375px) { #register.table * { font-size: 10px; } #register_container .amount-block .side-heading { font-size: 11px; line-height: 1.3em; } #register_container .amount-block .amount { font-size: 15px; } .register-right .customer-action-buttons a, .register-right .customer-action-buttons label { font-size: 10px !important; } .register-right .customer-action-buttons a:first-child i, .register-right .customer-action-buttons label:first-child i { font-size: 12px !important; } .register-right .customer-action-buttons a i, .register-right .customer-action-buttons label i { font-size: 12px !important; } .register-right a, .register-right label { font-size: 12px; } .register-right a:first-child i, .register-right label:first-child i { font-size: 14px; } .register-right a i, .register-right label i { font-size: 14px; } } @media (max-width: 768px) { .item-suggestions { top: 38px !important; margin-left: 0 !important; width: 100% !important; } .item-suggestions .name { font-size: 12px !important; } .print-buttons .btn { margin-bottom: 20px; } } /*Fix for add item input on mobile devices*/ @media (max-width: 1170px) { .add-item-input { border-left-width: 1px !important; border-right-width: 1px !important; border-radius: 4px !important; } .register-input-group .input-group-addon { display: none; } .input-group-mobile { display: block !important; margin-bottom: 20px; height: 32px; width: 100%; text-align: center; } .input-group-mobile .input-group-addon { width: 738px !important; } .input-group-mobile a { line-height: 36px; } } .ui-widget-content { border: 1px solid #d7dce5; } .change-date { padding-left: 15px; padding-right: 15px; } .receivings-finish-sale { margin-top: 20px; } @media (max-width: 600px) { .ui-autocomplete { width: 311px !important; } } @media (max-width: 400px) { .input-group-mobile { margin-left: -10px !important; } .register-btn-text { display: none; } .popover.editable-container { position: absolute; } .popover.editable-container input { text-align: right; } } .ui-menu-item { padding: 7px 15px !important; } .ui-menu-item a { padding-top: 0px !important; line-height: 14px !important; } .ui-autocomplete { max-height: 400px !important; overflow: auto; } .ui-autocomplete { position: absolute; top: 0; left: 0; padding-top: 0px !important; cursor: default; box-shadow: none !important; border-top-width: 0px !important; } /* Item suggestions on search , */ .item-suggestions { border-bottom: 1px solid #E9ECF2; /*height: 70px;*/ background-color: #FFFFFF; } .item-suggestions:hover { cursor: pointer; } .item-suggestions .item-image { float: left; display: inline-block; width: 50px; height: 50px; } .item-suggestions .item-image img { width: 100%; border-radius: 50%; } .item-suggestions .details { padding: 0px; padding-left: 60px; text-align: left; position: relative; } .item-suggestions .details .name { font-weight: 400; color: #67676C; font-size: 13px; letter-spacing: 0.2px; text-decoration: none; display: block; text-transform: capitalize; width: 350px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .item-suggestions .details .name:hover { color: #67676C !important; } .item-suggestions .details .name .balance, .item-suggestions .details .name .points { font-size: 12px; } .item-suggestions .details .name:hover { color: #489ee7; } .item-suggestions .details .attributes { color: #67676C; font-size: 12px; font-weight: 400; margin-left: 5px; } .item-suggestions .details .attributes .value { color: #4e4e52; color: #489ee7; } .item-suggestions .details .btn-edit { width: 47px; height: 36px; background-color: #F9FBFC; border: 1px solid #e8ebf1; border-right-width: 0px; border-top-width: 0px; color: #489ee7; font-size: 18px; font-weight: 500; position: absolute; top: 0; right: 0; margin-top: -7px; margin-right: -30px; } .item-suggestions:hover, .item-suggestions.active { background-color: #f3f4f8; } /*.item-suggestions .suggest-item { padding-top: 12px !important; padding-bottom: 14px !important; padding-left: 15px !important; }*/ .item-suggestions .suggest-item .name { color: #67676C !important; margin-top: 10px; padding-left: 5px; margin-bottom: 5px; } .dropdown-menu.sales-dropdown { padding: 0; border-width: 0; padding: 5px 10px; margin-right: -20px; margin-top: 5px; min-width: 240px; border-radius: 3px !important; position: absolute; right: 0 !important; border: 1px solid #D7DCE5; padding-left: 0px; padding-right: 0px; } .dropdown-menu.sales-dropdown:after { position: absolute; content: ""; width: 0; height: 0; border-style: solid; border-width: 0 11px 10px 11px; border-color: transparent transparent #FFFFFF transparent; top: 0; left: 0; margin-top: -8px; } .dropdown-menu.sales-dropdown li a { line-height: 34px; border-bottom: 1px solid #e9ecf2; color: #000000; } .dropdown-menu.sales-dropdown li a i { margin-right: 5px; } .dropdown-menu.sales-dropdown li:last-child a { border-bottom-width: 0px; } .dropdown-menu.sales-dropdown li.danger a { color: #fb5d5d; } .dropdown-menu.sales-dropdown li.danger:hover a { color: #fa2b2b; } .modal-item-info .modal-item-avatar img { float: left; border-radius: 4px; width: auto; height: 100px; margin-bottom: 10px; margin-right: 20px; } .modal-item-info .modal-item-details { margin-left: 110px; } .modal-item-info .modal-item-details .modal-item-name { font-size: 24px; color: #489ee7; display: block; } .modal-item-info .modal-item-details .modal-item-category { font-size: 14px; font-style: italic; color: #000; } .padding-left-20 { padding-left: 20px !important; } .padding-left-10 { padding-left: 15px !important; } .btn-grid, .btn-grid:focus { width: 100px; font-weight: 300; text-decoration: none; padding: 8px 12px; background-color: #F9FBFC; border: 1px solid #D7DCE5; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; line-height: 24px; font-size: 14px; color: #555555; } .btn-grid.active { background-color: #489ee7; border-color: #D7DCE5; box-shadow: none !important; color: white; } .count-items-buttons a { margin-bottom: 20px; } .text-bold { font-weight: 500; } .change-date { margin-top: 5px; } .ui-menu .ui-menu-item { list-style-image: none !important; } /* nunito-300 - latin */ @font-face { font-family: 'Nunito'; font-style: normal; font-weight: 300; src: url('../fonts/nunito-v7-latin/nunito-v7-latin-300.eot'); /* IE9 Compat Modes */ src: local('Nunito-Light'), url('../fonts/nunito-v7-latin/nunito-v7-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/nunito-v7-latin/nunito-v7-latin-300.woff2') format('woff2'), /* Super Modern Browsers */ url('../fonts/nunito-v7-latin/nunito-v7-latin-300.woff') format('woff'), /* Modern Browsers */ url('../fonts/nunito-v7-latin/nunito-v7-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */ url('../fonts/nunito-v7-latin/nunito-v7-latin-300.svg#Nunito') format('svg'); /* Legacy iOS */ } /* nunito-regular - latin */ @font-face { font-family: 'Nunito'; font-style: normal; font-weight: 400; src: url('../fonts/nunito-v7-latin/nunito-v7-latin-regular.eot'); /* IE9 Compat Modes */ src: local('Nunito-Regular'), url('../fonts/nunito-v7-latin/nunito-v7-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/nunito-v7-latin/nunito-v7-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('../fonts/nunito-v7-latin/nunito-v7-latin-regular.woff') format('woff'), /* Modern Browsers */ url('../fonts/nunito-v7-latin/nunito-v7-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('../fonts/nunito-v7-latin/nunito-v7-latin-regular.svg#Nunito') format('svg'); /* Legacy iOS */ } /* nunito-700 - latin */ @font-face { font-family: 'Nunito'; font-style: normal; font-weight: 700; src: url('../fonts/nunito-v7-latin/nunito-v7-latin-700.eot'); /* IE9 Compat Modes */ src: local('Nunito-Bold'), url('../fonts/nunito-v7-latin/nunito-v7-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/nunito-v7-latin/nunito-v7-latin-700.woff2') format('woff2'), /* Super Modern Browsers */ url('../fonts/nunito-v7-latin/nunito-v7-latin-700.woff') format('woff'), /* Modern Browsers */ url('../fonts/nunito-v7-latin/nunito-v7-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */ url('../fonts/nunito-v7-latin/nunito-v7-latin-700.svg#Nunito') format('svg'); /* Legacy iOS */ } /**************************************************** TABLE OF CONTENTS ***************************************************** 01. body 02. left-bar 03. content 04. wrapper 04. top-bar 05. global styles 06. media styles ****************************************************/ .mCSB_inside > .mCSB_container { margin-right: 0 !important; } a:focus, a:active, button::-moz-focus-inner, input[type="reset"]::-moz-focus-inner, input[type="button"]::-moz-focus-inner, input[type="submit"]::-moz-focus-inner, select::-moz-focus-inner, input[type="file"] > input[type="button"]::-moz-focus-inner { border: 0; outline: 0; } .left-bar::-webkit-scrollbar-track, .side-bar::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); background-color: #F5F5F5; } .left-bar::-webkit-scrollbar, .side-bar::-webkit-scrollbar { width: 4px; background-color: #F5F5F5; } .left-bar::-webkit-scrollbar-thumb, .side-bar::-webkit-scrollbar-thumb { background-color: #555555; border: 2px solid #555555; border-radius: 10px; } body, html { font-family: 'Helvetica Neue', 'Nunito', sans-serif; font-weight: 300; font-size: 13px; margin: 0; padding: 0; overflow-x: hidden; overflow-y: auto; letter-spacing: 0.6px; background-color: #e8ebf1; font-smooth: always; font-smoothing: antialiased; -moz-font-smoothing: antialiased; -webkit-font-smoothing: antialiased; -webkit-font-smoothing: subpixel-antialiased; min-height: 100%; } .navbar-collapse { padding: 0; } .wrapper { position: relative; overflow: hidden; min-height: 1200px; } .wrapper.open-drawer { min-height: 900px !important; } .wrapper.fixed-top-bar .top-bar { position: fixed; padding-right: 205px; } .wrapper.fixed-top-bar .main-content { padding-top: 80px; } .wrapper.fixed-top-bar.mini-bar .top-bar { padding-right: 90px; } .left-bar, .side-bar { position: fixed; height: 100%; width: 230px; background-color: #FFFFFF; display: block; float: left; box-shadow: none !important; border-right: 1px solid #dce1ea; overflow-y: auto; overflow-x: hidden; min-height: 100%; z-index: 810; -webkit-transition: -webkit-transform .3s ease-in-out,width .3s ease-in-out; -moz-transition: -moz-transform .3s ease-in-out,width .3s ease-in-out; -o-transition: -o-transform .3s ease-in-out,width .3s ease-in-out; transition: transform .3s ease-in-out,width .3s ease-in-out; } .left-bar.static-bar, .side-bar.static-bar { position: absolute; display: block; display: table-cell; height: 100%; } .left-bar.static-bar .admin-logo, .side-bar.static-bar .admin-logo { position: relative !important; } .left-bar.static-bar .menu-parent, .side-bar.static-bar .menu-parent { padding-top: 0; } .left-bar.static-bar .menu-parent i.chevron, .side-bar.static-bar .menu-parent i.chevron { line-height: 52px !important; float: right !important; } .left-bar p, .side-bar p { color: red; } .left-bar .admin-logo, .side-bar .admin-logo { background-color: #489ee7; min-height: 60px; position: absolute !important; /*width: 100%;*/ width: inherit; z-index: 999; } .left-bar .admin-logo .logo-holder, .side-bar .admin-logo .logo-holder { width: 100%; text-align: center; padding-top: 9px; } .left-bar .admin-logo .logo-holder .logo, .side-bar .admin-logo .logo-holder .logo { width: 100px; } .left-bar .admin-logo a.menu-bar, .side-bar .admin-logo a.menu-bar { color: black; font-size: 30px; display: inline-block; width: 80px; position: absolute; right: 0; height: 100%; background-color: #248be2; text-align: center; color: #FFFFFF; padding-top: 15px; text-decoration: none; } .left-bar .menu-parent, .side-bar .menu-parent { padding-top: 70px; } .left-bar .menu-parent > li, .side-bar .menu-parent > li { display: block; border-bottom: 1px solid #e9ecf2; } .left-bar .menu-parent > li.active, .side-bar .menu-parent > li.active, .left-bar .menu-parent > li:hover, .side-bar .menu-parent > li:hover { background-color: #f6f7fa; } .left-bar .menu-parent > li.active i, .side-bar .menu-parent > li.active i, .left-bar .menu-parent > li:hover i, .side-bar .menu-parent > li:hover i, .left-bar .menu-parent > li.active a, .side-bar .menu-parent > li.active a, .left-bar .menu-parent > li:hover a, .side-bar .menu-parent > li:hover a { /*color: @primary-color !important; */ } .left-bar .menu-parent > li.submenu ul, .side-bar .menu-parent > li.submenu ul { padding-left: 20px !important; } .left-bar .menu-parent > li a, .side-bar .menu-parent > li a { padding-left: 20px; padding-right: 20px; display: inline-block; height: 40px; line-height: 40px; text-decoration: none; font-size: 14px; line-height: 1.42857143; font-weight: 300; color: #555555; white-space: nowrap; width: 205px; overflow: hidden; text-overflow: ellipsis; position: relative; } .left-bar .menu-parent > li a i, .side-bar .menu-parent > li a i { padding-right: 10px; font-size: 14px; color: #1a78c8; } .left-bar .menu-parent > li a i.chevron, .side-bar .menu-parent > li a i.chevron { font-size: 10px; color: #555555; line-height: 52px; float: right; } .left-bar .menu-parent > li ul > li, .side-bar .menu-parent > li ul > li { padding-left: 40px; border-bottom: 1px solid red; border-bottom-width: 0; position: relative; } .left-bar .menu-parent > li ul > li a, .side-bar .menu-parent > li ul > li a { padding-left: 20px; } .left-bar .menu-parent > li ul > li:before, .side-bar .menu-parent > li ul > li:before { content: ''; width: 0; height: 100%; position: absolute; border-left: 1px solid #d7dce5; top: 0; left: 10px; } .left-bar .menu-parent > li ul > li:after, .side-bar .menu-parent > li ul > li:after { content: "."; position: absolute; left: 4px; top: -30px; font-size: 45px; color: #d7dce5; } .left-bar .menu-parent > li ul > li:last-child, .side-bar .menu-parent > li ul > li:last-child { padding-bottom: 10px; } .left-bar .menu-parent > li ul > li a, .side-bar .menu-parent > li ul > li a { font-size: 14px; height: 30px; line-height: 30px; } .left-bar .menu-parent > li ul > li li, .side-bar .menu-parent > li ul > li li { padding-left: 20px; border-bottom-width: 0; } .left-bar .menu-parent > li ul > li li:last-child:before, .side-bar .menu-parent > li ul > li li:last-child:before { content: ''; width: 0; height: 80%; position: absolute; border-left: 1px solid #d7dce5; top: 0; left: 10px; } .left-bar .menu-parent > li ul > li.panel, .side-bar .menu-parent > li ul > li.panel { border-bottom-width: 0; box-shadow: none; border: 0; border-radius: 0; } .left-bar .menu-parent .panel, .side-bar .menu-parent .panel { margin-bottom: 0; box-shadow: none; border-radius: 0; } .content { margin-left: 230px; background-color: #ffffff; } .content.no-margin { margin-left: 0; } .content .main-content { padding-left: 10px; padding-right: 10px; padding-top: 10px; } .top-bar { height: 60px; background-color: #FFFFFF; min-height: 0; display: table; width: 100%; position: relative; border-radius: 0; border-left-width: 0; border-right-width: 0; border-top-width: 0; border-bottom: 1px solid dark-border !important; border-bottom-color: #d7dce5; z-index: 1; } .top-bar .search { margin-top: 15px; font-weight: 300; width: 200px; padding-left: 20px; } .top-bar .search input { background-color: #f2f4f7; background-color: transparent; border: none; border-bottom: 1px solid #9e9e9e; outline: none; /*height: 3rem;*/ width: 100%; font-size: 1rem; margin: 0 0 15px 0; padding: 0; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; -webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box; -webkit-transition: 0.3s; -moz-transition: 0.3s; -o-transition: 0.3s; -ms-transition: 0.3s; transition: 0.3s; } .top-bar .navbar-default .navbar-nav > .open > a, .top-bar .navbar-default .navbar-nav > .open > a:focus, .top-bar .navbar-default .navbar-nav > .open > a:hover { background-color: #fcfeff; color: #489ee7; } .top-bar nav { -webkit-box-shadow: none !important; -moz-box-shadow: none !important; box-shadow: none !important; } .top-bar .navbar-default .navbar-nav > li > a { background-color: #FFFFFF; color: #555555; /*font-family: 'Helvetica Neue', 'Nunito', sans-serif;*/ } .top-bar .navbar-nav { margin: 0; height: 60px; -webkit-box-shadow: none !important; -moz-box-shadow: none !important; box-shadow: none !important; } .top-bar .navbar { margin: 0; } .top-bar .avatar_width .avatar_info { width: 120px; display: inline-block; white-space: nowrap !important; float: right; overflow: hidden; } .top-bar .avatar_width .avatar-holder { width: 35px; display: inline-block; margin-right: 2px; } .top-bar .avatar_width .avatar-holder img { border-radius: 50%; height: 35px; width: 35px; } .top-bar .top-elements .dropdown > a { height: 60px; overflow: hidden; position: relative; } .top-bar .top-elements .dropdown img.flag_img { width: 25px; height: auto; display: inline-block; margin-right: 8px; } .top-bar .top-elements .dropdown .dropdown-toggle.language-dropdown { text-transform: capitalize !important; } .top-bar .top-elements .dropdown .dropdown-menu { border-width: 0; border-radius: 0; background-color: #FFFFFF; border-top: 2px solid #489ee7; -webkit-transition: all 1s ease-out; position: absolute; left: auto; right: 0; padding: 10px 15px; max-height: 460px; z-index: 99; padding-bottom: 0; overflow: visible; } .top-bar .top-elements .dropdown .dropdown-menu:after { content: ""; position: absolute; top: -10px; left: auto; margin: auto; right: 20px; width: 0; height: 0; border-style: solid; border-width: 0 8px 8px 8px; border-color: transparent transparent #489ee7 transparent; z-index: 9999999999999999999999999; } .top-bar .top-elements .dropdown .dropdown-menu.neat_drop { min-width: 220px; } .top-bar .top-elements .dropdown .dropdown-menu.neat_drop a { position: relative; overflow: hidden; display: inline-block; width: 100%; padding: 5px 10px; border-bottom: 1px solid #e9ecf2; text-decoration: none; } .top-bar .top-elements .dropdown .dropdown-menu.neat_drop a:hover { background-color: #f6f7fa; } .top-bar .top-elements .dropdown .dropdown-menu.neat_drop a .text_info { font-size: 13px; font-weight: 400; display: block; line-height: 16px; letter-spacing: 0.10px; margin-top: 8px; font-family: 'Helvetica Neue', 'Nunito', sans-serif; color: #555555; } .top-bar .top-elements .dropdown .dropdown-menu.neat_drop a .time_info { font-size: 10px; font-weight: 300; color: #000; } .top-bar .top-elements .dropdown .dropdown-menu.neat_drop .last_info { text-align: center; color: #555555; padding: 15px; } .top-bar .top-elements .dropdown .dropdown-menu.neat_drop .last_info:hover { color: #2f2f2f; } .top-bar .top-elements .dropdown .dropdown-menu.neat_drop li:last-child a { border-bottom-width: 0; } .top-bar .top-elements .dropdown .dropdown-menu.notification-drop { width: 350px; } .top-bar .top-elements .dropdown .dropdown-menu.locations-drop { /*left: 0 !important;*/ padding: 0px; } .top-bar .top-elements .dropdown .dropdown-menu.locations-drop:after { content: ""; position: absolute; top: -10px; left: 20px; margin: auto; left: auto; width: 0; height: 0; border-style: solid; border-width: 0 8px 8px 8px; border-color: transparent transparent #489ee7 transparent; z-index: 99999999; } .top-bar .top-elements .dropdown .dropdown-menu.locations-drop a { width: 100%; } .top-bar .top-elements .dropdown .dropdown-menu.locations-drop .badge { margin-right: 10px; width: 15px; height: 15px; line-height: 10px !important; } .top-bar .top-elements .dropdown .dropdown-menu.locations-drop li { margin: 0px; padding: 0px; padding-left: 15px; border-bottom: 1px solid #e9ecf2; } .top-bar .top-elements .dropdown .dropdown-menu.locations-drop li:hover { background-color: #f6f7fa; } .top-bar .top-elements .dropdown .dropdown-menu.locations-drop li a { border-width: 0px; padding: 15px 0px; padding-bottom: 10px; margin-right: 12px; } .top-bar .top-elements .dropdown .dropdown-menu.avatar_drop { left: auto !important; right: 0 !important; padding: 0px !important; margin-bottom: 0px; min-width: 252px; } .top-bar .top-elements .dropdown .dropdown-menu.avatar_drop li { margin: 0px; padding: 0px; border-bottom: 1px solid #e9ecf2; } .top-bar .top-elements .dropdown .dropdown-menu.avatar_drop li:hover { background-color: #f6f7fa; } .top-bar .top-elements .dropdown .dropdown-menu.avatar_drop li:first-child { /*margin-top:0px;*/ } .top-bar .top-elements .dropdown .dropdown-menu.avatar_drop li a { border-width: 0px; padding: 10px 0px; margin-right: 12px; } .top-bar .top-elements .dropdown .dropdown-menu.avatar_drop li a .text { line-height: 16px; position: absolute; top: 14px; font-size: 14px; } .top-bar .top-elements .dropdown .dropdown-menu.avatar_drop li a i { margin-left: 12px; } .top-bar .top-elements .dropdown .dropdown-menu.avatar_drop i { color: #dadfe7; padding-right: 10px; font-size: 18px; } .top-bar .top-elements .dropdown .dropdown-menu.avatar_drop .logout_button { background: #fb5d5d; color: #FFFFFF; border-radius: 0px; height: 36px; margin: 0px !important; line-height: 16px; } .top-bar .top-elements .dropdown .dropdown-menu.avatar_drop .logout_button i { color: #FFFFFF; font-size: 20px; } .top-bar .top-elements .dropdown .dropdown-menu.avatar_drop .logout_button .text { position: absolute; line-height: 16px; top: 12px; font-size: 16px; } .top-bar .top-elements .dropdown .dropdown-menu.avatar_drop .logout_button:hover { background: #fb5353; } .top-bar .top-elements .dropdown .dropdown-menu.language-drop { padding: 0px; } .top-bar .top-elements .dropdown .dropdown-menu.language-drop li { margin: 0px; padding: 0px; padding-left: 15px; border-bottom: 1px solid #e9ecf2; } .top-bar .top-elements .dropdown .dropdown-menu.language-drop li:hover { background-color: #f6f7fa; } .top-bar .top-elements .dropdown .dropdown-menu.language-drop li a { border-width: 0px; padding: 15px 0px; padding-bottom: 10px; margin-right: 12px; } .top-bar .top-elements .dropdown .dropdown-menu.message_drop { padding: 0px; min-width: 250px; } .top-bar .top-elements .dropdown .dropdown-menu.message_drop li { margin: 0px; padding: 0px; padding-left: 12px; border-bottom: 1px solid #e9ecf2; } .top-bar .top-elements .dropdown .dropdown-menu.message_drop li:hover { background-color: #f6f7fa; } .top-bar .top-elements .dropdown .dropdown-menu.message_drop li:first-child { /*margin-top:0px;*/ } .top-bar .top-elements .dropdown .dropdown-menu.message_drop li a { border-width: 0px; padding: 10px 0px; padding-bottom: 5px; min-width: 250px; margin-left: 0px; } .top-bar .top-elements .dropdown .dropdown-menu.message_drop .bottom-links { background-color: #f9f9f9; margin-top: 0px !important; } .top-bar .top-elements .dropdown .dropdown-menu.message_drop .bottom-links a { /*height: 36px;*/ border-width: 0px; margin-top: 0px; } .top-bar .top-elements .dropdown .dropdown-menu.message_drop .avatar_left { width: 30px; display: inline-block; float: left; } .top-bar .top-elements .dropdown .dropdown-menu.message_drop .avatar_left img { width: 100%; border-radius: 50%; height: auto; } .top-bar .top-elements .dropdown .dropdown-menu.message_drop .text_info { margin-top: 0 !important; margin-left: 40px; line-height: 26px; height: 16px; overflow: hidden; } .top-bar .top-elements .dropdown .dropdown-menu.message_drop .time_info { margin-top: 0 !important; margin-left: 10px; } .top-bar .top-elements .dropdown .dropdown-menu.message_drop .time_info i { font-size: 8px; } .top-bar .top-elements .dropdown .dropdown-menu.message_drop .time_info i.online { color: #6fd64b; } .top-bar .top-elements .dropdown .dropdown-menu.message_drop .time_info i.offline { color: #fb5d5d; } .top-bar .top-elements .dropdown .dropdown-menu.message_drop .time_info i.away { color: #f7941d; } .top-bar .top-elements .dropdown .dropdown-menu.message_drop .time_info i.grey { color: #d7dce5; } .top-bar .top-elements .dropdown .dropdown-menu a { display: inline-block; position: relative; font-size: 13px; font-weight: 400; display: block; font-family: 'Helvetica Neue', 'Nunito', sans-serif; white-space: normal; color: #555555; } .top-bar .top-elements .dropdown .dropdown-menu a:hover, .top-bar .top-elements .dropdown .dropdown-menu a:active, .top-bar .top-elements .dropdown .dropdown-menu a:focus { background-color: transparent; } .top-bar .top-elements .dropdown .drop-icon { font-size: 10px; display: inline-block; vertical-align: top; position: absolute; right: 5px; top: 3px; } .top-bar .top-elements > li > a { height: 100%; line-height: 60px; padding: 0px 20px; text-decoration: none; cursor: pointer; text-align: center; position: relative; } .top-bar .top-elements .btn { border-width: 0 !important; } .top-bar .top-elements .image-holder { width: 45px; display: inline-block; } .top-bar .top-elements .image-holder img { border-radius: 50%; width: 100%; padding-right: 15px; } .top-bar .top-elements .icon-notification { font-size: 25px; vertical-align: top; } .top-bar .top-elements .info-number { float: none; color: #FFFFFF; min-width: 22px; min-height: 22px; border-radius: 50%; line-height: 22px; padding: 0; font-size: 9px; margin-left: -8px; margin-top: 5px; font-weight: 300; } .top-bar .top-elements .info-number.message { background-color: #489ee7; } .top-bar .top-elements .info-number.cart { background-color: #489ee7; position: absolute; font-size: 11px; margin-top: 29px !important; } .top-bar .top-elements .info-number.bell { background-color: #fb5d5d; } .hexagon { position: relative; width: 40px; height: 23.09px; background-color: #8476ba; margin: 11.55px 0; display: inline-block; float: left; margin-right: 15px; } .hexagon span { position: absolute; display: inline-block; left: 0; right: 0; color: #FFFFFF; font-size: 20px; text-align: center; padding-top: 1px; } .hexagon:before, .hexagon:after { content: ""; position: absolute; width: 0; border-left: 20px solid transparent; border-right: 20px solid transparent; } .hexagon:before { bottom: 100%; border-bottom: 11.55px solid #8476ba; } .hexagon:after { top: 100%; width: 0; border-top: 11.55px solid #8476ba; } .hexagon.success { background-color: #6fd64b; } .hexagon.success:before { bottom: 100%; border-bottom: 11.55px solid #6fd64b; } .hexagon.success:after { top: 100%; width: 0; border-top: 11.55px solid #6fd64b; } .hexagon.danger { background-color: #fb5d5d; } .hexagon.danger:before { bottom: 100%; border-bottom: 11.55px solid #fb5d5d; } .hexagon.danger:after { top: 100%; width: 0; border-top: 11.55px solid #fb5d5d; } .hexagon.warning { background-color: #f7941d; } .hexagon.warning:before { bottom: 100%; border-bottom: 11.55px solid #f7941d; } .hexagon.warning:after { top: 100%; width: 0; border-top: 11.55px solid #f7941d; } .hexagon.info { background-color: #489ee7; } .hexagon.info:before { bottom: 100%; border-bottom: 11.55px solid #489ee7; } .hexagon.info:after { top: 100%; width: 0; border-top: 11.55px solid #489ee7; } /************global*********/ /*.form-control { display: block; -webkit-appearance: none; width: 100%; height: 38px; padding: 6px 12px; font-size: 14px; line-height: 1.42857143; color: #555; background-color: #FFFFFF; background-image: none; border: 1px solid rgba(34, 34, 35, 0.53); border-radius: 1px; box-shadow: none; margin-bottom: 10px; } .form-control:focus { border-color: #66afe9; border-color: #d7dce5; outline: 0; box-shadow: none; }*/ .form-control::-moz-placeholder { color: #999 !important; opacity: 1; } .form-control:-ms-input-placeholder { color: #999 !important; } .form-control::-webkit-input-placeholder { color: #999 !important; } .input-group .input-group-addon { background-color: transparent; border-radius: 0; border-right-width: 0; background-color: #f2f4f7; border-color: #d7dce5; } .flatRed { background-color: #fb5d5d; } .flatBlue { background-color: #489ee7; } .flatOrange { background-color: #f7941d; } .flatGreen { background-color: #6fd64b; } .flatRedc { color: #fb5d5d !important; } .flatBluec { color: #489ee7 !important; } .flatOrangec { color: #f7941d !important; } .flatGreenc { color: #6fd64b !important; } .dashboard-stats { background-color: #FFFFFF; position: relative; min-height: 107px; padding: 3px; padding-left: 5%; box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.1); -webkit-box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.1); -moz-box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.1); border-radius: 2px; display: table; width: 100%; text-align: left; margin-bottom: 10px; } .dashboard-stats .left { float: left; padding-top: 5px; } .dashboard-stats .left h3 { font-size: 30px; font-family: 'Helvetica Neue', 'Nunito', sans-serif; font-weight: 300; } .dashboard-stats .left h4 { font-size: 16px; font-weight: 300; color: #000; line-height: 24px; } .dashboard-stats .right { position: absolute; right: 3px; top: 3px; width: 30%; bottom: 3px; border-radius: 2px; font-size: 48px; text-align: center; color: #FFFFFF; } .dashboard-stats .right i { vertical-align: middle; line-height: 107px; } .chart-parent { position: relative; clear: both; } .chart-parent .chart-height { height: 450px; } .chart-parent .ct-chart .ct-line { stroke-width: 1px; } .chart-parent .ct-chart .ct-series.ct-series-a .ct-bar, .chart-parent .ct-chart .ct-series.ct-series-a .ct-line, .chart-parent .ct-chart .ct-series.ct-series-a .ct-point, .chart-parent .ct-chart .ct-series.ct-series-a .ct-slice.ct-donut { stroke: #6fd64b; } .chart-parent .ct-chart .ct-series.ct-series-b .ct-bar, .chart-parent .ct-chart .ct-series.ct-series-b .ct-line, .chart-parent .ct-chart .ct-series.ct-series-b .ct-point, .chart-parent .ct-chart .ct-series.ct-series-b .ct-slice.ct-donut { stroke: #489ee7; } .chart-parent .ct-chart .ct-grid { stroke: rgba(142, 142, 142, 0.2) !important; stroke-width: 1px; stroke-dasharray: 0px; } .chart-parent .ct-chart .ct-point { stroke-width: 6px; stroke-linecap: round; } .piluku-panel { clear: both; background-color: #FFFFFF; box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.1); -webkit-box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.1); -moz-box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.1); margin-top: 10px; padding: 15px; } .piluku-panel.no-bg { background-color: transparent; box-shadow: none; padding: 0; } .piluku-panel .form-group { margin-right: 0px; margin-left: 0px; } .nicescroll-cursors { position: absolute; top: 0px; float: right; width: 5px; height: 604px; border: 1px solid rgba(255, 255, 255, 0.5); border-radius: 5px; background-color: rgba(66, 66, 66, 0.5) !important; background-clip: padding-box; z-index: 9999; } /*spin*/ .ion-spin { -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; -o-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; -webkit-animation-name: ion-spin; -webkit-animation-duration: 2s; -webkit-animation-iteration-count: infinite; -webkit-animation-timing-function: linear; -moz-animation-name: rotate; -moz-animation-duration: 2s; -moz-animation-iteration-count: infinite; -moz-animation-timing-function: linear; } @-webkit-keyframes ion-spin { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } 100% { -webkit-transform: rotate(359deg); transform: rotate(359deg); } } @-moz-keyframes ion-spin { 0% { -moz-transform: rotate(0deg); transform: rotate(0deg); } 100% { -moz-transform: rotate(359deg); transform: rotate(359deg); } } /**********speed up fadein*********/ @-webkit-keyframes fadeInUp { 0% { opacity: 0; -webkit-transform: translate3d(0, 20%, 0); transform: translate3d(0, 20%, 0); } 20% { opacity: 1; -webkit-transform: none; transform: none; } } @keyframes fadeInUp { 0% { opacity: 0; -webkit-transform: translate3d(0, 20%, 0); -ms-transform: translate3d(0, 20%, 0); transform: translate3d(0, 20%, 0); } 20% { opacity: 1; -webkit-transform: none; -ms-transform: none; transform: none; } } .breadcrumb { padding: 0px; border-radius: 0px; min-height: 50px; margin: -20px; margin-bottom: 10px; background: #f9f9f9; } .breadcrumb a { color: #000; line-height: 50px; padding-left: 20px; } .breadcrumb .breadcrumb-opacity { background-color: rgba(33, 150, 243, 0.5); padding: 12px; min-height: 50px; color: #ffffff; font-family: 'Helvetica Neue', 'Nunito', sans-serif; font-size: 13px; font-weight: 300; line-height: 26px; letter-spacing: 0.25px; text-transform: capitalize; } .breadcrumb .breadcrumb-opacity .parent-location { float: left; padding-right: 10px; color: #ffffff; text-decoration: none; } .breadcrumb .breadcrumb-opacity .parent-location:hover { text-decoration: underline; } .breadcrumb .breadcrumb-opacity i { float: left; padding-right: 10px; line-height: 26px; } .breadcrumb .breadcrumb-opacity .current-location { font-weight: 400; color: #ffffff; text-decoration: none; } .breadcrumb .breadcrumb-opacity .current-location:hover { text-decoration: underline; } @media (max-width: 767px) { .navbar-nav .open .dropdown-menu { position: absolute !important; float: none; width: 100%; margin-top: 0; background-color: transparent; border: 0; left: 0px !important; right: 0px !important; -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); } .avatar-holder { margin-right: 20px !important; } .navbar-nav .open .dropdown-menu > li > a, .navbar-nav .open .dropdown-menu .dropdown-header { padding: 5px 15px 5px 25px; } .navbar-nav .open .dropdown-menu > li > a { line-height: 20px; } .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus { background-image: none; } .item-suggestions { height: 50px; } .item-suggestions .suggest-item { padding: 0px !important; padding-top: 2px !important; } .item-suggestions .suggest-item .item-image { display: none !important; } .item-suggestions .suggest-item .details { padding-left: 0px; } .add-register-table { padding: 15px; } } .search .form-control { -webkit-appearance: none; background-color: #f2f6f9; } /* Medium bar width */ @media only screen and (min-width: 700px) and (max-width: 1024px) { html { height: auto; } .left-bar { width: 180px; overflow: visible !important; z-index: 999999; position: absolute; } .left-bar .menu-parent li a { width: 180px; } .left-bar .admin-logo a.menu-bar { width: 180px; } .content { margin-left: 180px; } } .menu-bar-mobile { display: none; text-decoration: none; } @media screen (max-width: 586) { .navbar-breadcrumb { padding-left: 65px !important; } } /******topnav view sidebar********/ @media only screen and (max-width: 1199px) { .navbar-breadcrumb { padding-left: 65px !important; } .content { z-index: 99999 !important; border-left: 1px solid #d7dce5; margin-left: 0; } .content .overlay.show { height: 100%; width: 100%; position: absolute; display: block; background-color: #000000; z-index: 999999999; opacity: 0.5; } .left-bar, .side-bar { position: fixed !important; height: 100%; width: 205px; background-color: #FFFFFF; display: block; float: left; box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.1); overflow-y: auto; overflow: scroll!important; margin-left: -225px; z-index: 99999999999; overflow-x: hidden !important; } .left-bar .menu-bar, .side-bar .menu-bar { display: none !important; } .left-bar .logo-holder, .side-bar .logo-holder { float: none !important; text-align: center !important; margin: 0 auto; } .left-bar.menu_appear, .side-bar.menu_appear { margin-left: 0px !important; } .left-bar.menu_appear .admin-logo, .side-bar.menu_appear .admin-logo { display: block; } .content { /*margin-left: 0; position: absolute !important; top: 0; right: 0; bottom: 0; left: 0px; width: auto; height: auto; z-index: 2; overflow: auto;*/ } .menu-bar-mobile { display: block; text-decoration: none !important; z-index: 999999999; position: absolute; padding-top: 20px; font-size: 26px; color: #FFF; width: 60px; height: 55px; left: 0; top: 0; text-align: center; } } /*********collapse to minibar function**********/ @media only screen and (min-width: 1200px) and (max-width: 1366px) { .wrapper.mini-bar .left-bar { width: 90px; overflow: visible !important; z-index: 999999; position: fixed; } .wrapper.mini-bar .left-bar .panel-group .panel + .panel { margin-top: 0 !important; } .wrapper.mini-bar .left-bar .menu-parent li:before { display: none !important; } .wrapper.mini-bar .left-bar .menu-parent li:after { display: none; } .wrapper.mini-bar .left-bar .menu-parent li span.text { display: none; opacity: 0; line-height: 36px; height: 45px !important; overflow: hidden; -webkit-animation: none !important; animation: none !important; } .wrapper.mini-bar .left-bar .menu-parent li a { width: 90px; } .wrapper.mini-bar .left-bar .menu-parent li:hover { height: 61px; padding-left: 0px; } .wrapper.mini-bar .left-bar .menu-parent li:hover a { padding-left: 7px; text-align: center; display: block; } .wrapper.mini-bar .left-bar .menu-parent li:hover span.text { opacity: 1; display: block; } .wrapper.mini-bar .left-bar .menu-parent li:hover i.icon { display: none !important; } .wrapper.mini-bar .left-bar li { /*padding:10px 5px !important;*/ /*padding-bottom: 0 !important;*/ text-align: center !important; position: relative; } .wrapper.mini-bar .left-bar li a { /*line-height: 25px !important;*/ /*font-size: 13px !important;*/ } .wrapper.mini-bar .left-bar li i { display: block !important; padding: 0 !important; /*line-height: 36px;*/ } .wrapper.mini-bar .left-bar li i.chevron { color: #555555; display: none !important; position: absolute; margin-top: -52px !important; } .wrapper.mini-bar .left-bar li ul { position: absolute; left: 100%; background-color: #FFFFFF; min-width: 200px; top: -1px; border: 1px solid #d7dce5 !important; margin-left: 1px; } .wrapper.mini-bar .left-bar .admin-logo .logo-holder { /*display: none; */ } .wrapper.mini-bar .left-bar .admin-logo .logo-holder .logo { width: 70px; } .wrapper.mini-bar .left-bar .admin-logo a.menu-bar { width: 90px; } .wrapper.mini-bar .content { margin-left: 90px; } } @media only screen and (max-width: 767px) { .top-bar img.flag_img { width: 20px !important; } .top-bar .search { margin: 10px auto; } .top-bar .search input { height: 30px; } .top-bar .navbar-nav { text-align: center; position: relative; display: table; width: 100% !important; } .top-bar .navbar-nav > li { text-align: center !important; display: inline-block !important; } .top-bar .navbar-nav > li a { min-width: 0; font-size: 14px; } .top-bar .navbar-nav > li:first-child { padding-left: 30px; } .top-bar .dropdown .avatar-holder { width: 20px; } .top-bar .icon-notification { font-size: 24px !important; display: inline-block; } .top-bar .info-number { min-width: 25px; min-height: 25px; border-radius: 50%; line-height: 25px; padding: 0; font-size: 11px; margin-left: -8px; margin-top: 5px; font-weight: 300; float: none; } .top-bar .info-number.message { background-color: #489ee7; } .top-bar .info-number.bell { background-color: #fb5d5d; } } @media only screen and (min-width: 1000px) and (max-width: 1400px) { .dashboard-stats .left { float: left; padding-top: 5px; } .dashboard-stats .left h3 { font-size: 20px; } .dashboard-stats .left h4 { font-size: 14px; } .dashboard-stats .right { position: absolute; right: 3px; top: 3px; width: 40%; bottom: 3px; border-radius: 2px; font-size: 38px; text-align: center; color: #FFFFFF; } .dashboard-stats .right i { vertical-align: middle; line-height: 107px; } } /* panels ---------------------------------------------------------------------------------------------- */ .panel-piluku { clear: both; background-color: #FFFFFF; box-shadow: none !important; -webkit-box-shadow: none !important; -moz-box-shadow: none !important; border: 1px solid #dce1ea; border-radius: 0px; } .panel-piluku > .panel-heading { border-bottom: 1px solid #e9e9e9; font-weight: normal; background: #f9f9f9; display: table; width: 100%; } .panel-piluku > .panel-heading.reports { position: relative; } .panel-piluku > .panel-heading.reports .loading { position: absolute; top: 69px; left: 23px; } .panel-piluku > .panel-heading h3 { font-size: 16px; font-weight: normal; margin-bottom: 5px; padding-top: 5px; color: #555555; } .panel-piluku > .panel-heading a { text-decoration: none !important; } .panel-piluku > .panel-heading .panel-options { float: right; } .panel-piluku > .panel-heading .panel-options a { padding: 3px; color: #d7dce5; font-size: 16px; padding-top: 10px; } .panel-piluku > .panel-heading .panel-options a:hover { text-decoration: none; color: #99a6bd; } .panel-piluku > .panel-body.no-padding { padding: 0px !important; } .panel-piluku > .panel-body .padding { padding: 15px !important; } .panel-piluku.panel-primary { border: none; border-color: none; } .panel-piluku.panel-primary > .panel-heading { color: #489ee7 !important; background-color: #ffffff; border-top: 1px solid #489ee7; } .panel-piluku.panel-primary > .panel-heading h3 { font-size: 14px; font-weight: normal; } .panel-piluku.panel-success { border-top: 1px solid #a0d269; } .panel-piluku.panel-danger { border-top: 1px solid #df6c6e; } .panel-piluku.panel-info { border-top: 1px solid #6cadd1; } .panel-piluku.panel-warning { border-top: 1px solid #eac841; } /* Load Mask ---------------------------------------------------------------------------------------------- */ .loadmask { z-index: 100; position: absolute; top: 0; left: 0; -moz-opacity: 0.5; opacity: .50; filter: alpha(opacity=50); background-color: #b3b3b3; width: 100%; height: 100%; zoom: 1; } .loadmask-msg { z-index: 20001; position: absolute; top: 0; left: 0; background: #FFFFFF; padding: 2px; } .loadmask-msg div { padding: 5px 10px 5px 25px; line-height: 16px; color: #489ee7; font: normal 11px tahoma, arial, helvetica, sans-serif; cursor: wait; } .masked { overflow: hidden !important; } .masked-relative { position: relative !important; } .masked-hidden { visibility: hidden !important; } .placeholder { background-color: white; } /* Badges Contextual classes ---------------------------------------------------------------------------------------------- */ .bg-primary { background-color: #489ee7; } .bg-success { background-color: #a0d269; } .bg-warning { background-color: #eac841; } .bg-info { background-color: #6cadd1; } .bg-danger { background-color: #df6c6e; } .graph { width: 100%; height: 300px; } /* Gritter Custom classes ---------------------------------------------------------------------------------------------- */ #gritter-notice-wrapper { top: 90px; } /* contextual gritters */ .success .gritter-item, .success .gritter-top, .success .gritter-bottom { background: none; background-color: #5CB85C !important; } .info .gritter-item, .info .gritter-top, .info .gritter-bottom { background: none; background-color: #5BC0DE; } .danger .gritter-item, .danger .gritter-top, .danger .gritter-bottom { background: none; background-color: #D9534F; } .warning .gritter-item, .warning .gritter-top, .warning .gritter-bottom { background: none; background-color: #F0AD4E; } /* Text Colors ------------------------------------------------------------------------------------------------*/ .text-success { color: #2aaf00; } .text-primary { color: #489ee7; } .text-info { color: #004cff; } .text-danger { color: #df6c6e !important; } .text-warning { color:#ec0606; } .text-white { color: #FFFFFF !important; } .text-light { color: #aaaaaa !important; } /* Sliders overwrite ---------------------------------------------------------------------------------------------- */ .table-sliders .default td { padding: 20px; } .ui-slider-range { background: #489ee7; border-color: none; } .ui-slider-handle { border-color: #87ceeb !important; width: 24px; position: absolute; margin-left: -12px; z-index: 200; background: #989dac; border-radius: 0%; } .ui-slider-handle:focus { outline: none; } .ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus { background: #d8ebf3; } #red, #green, #blue { float: left; clear: left; width: 300px; margin: 15px; } #swatch { width: 120px; height: 100px; margin-top: 18px; margin-left: 350px; background-image: none; } #red .ui-slider-range { background: #e45857; } #red .ui-slider-handle { border-color: #e45857 !important; } #green .ui-slider-range { background: #90c657; } #green .ui-slider-handle { border-color: #90c657 !important; } #blue .ui-slider-range { background: #54b5df; } #blue .ui-slider-handle { border-color: #54b5df !important; } #eq span { height: 120px; float: left; margin: 15px; } .waves-effect.waves-light .waves-ripple { background-color: #fcfeff; opacity: 0.45; color: white; } .piluku-preloader { /*background-color: lighten(@primary-color,10%);*/ /*padding-top: 30%;*/ background-color: #489ee7; display: block; width: 100%; height: 100%; position: fixed; z-index: 999999999999999; } .loader { font-size: 10px; margin: 5em auto; text-indent: -9999em; width: 11em; height: 11em; border-radius: 50%; background: #ffffff; background: -moz-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%); background: -webkit-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%); background: -o-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%); background: -ms-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%); background: linear-gradient(to right, #ffffff 10%, rgba(255, 255, 255, 0) 42%); position: relative; -webkit-animation: load3 1.4s infinite linear; animation: load3 1.4s infinite linear; } .loader:before { width: 50%; height: 50%; background: #FFF; border-radius: 100% 0 0 0; position: absolute; top: 0; left: 0; content: ''; } .loader:after { background: #489ee7; width: 75%; height: 75%; border-radius: 50%; content: ''; margin: auto; position: absolute; top: 0; left: 0; bottom: 0; right: 0; } @-webkit-keyframes load3 { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); } } @keyframes load3 { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); } } .selected img.avatar { opacity: 0.6; position: relative; z-index: 9999; } .rollover { width: auto; height: auto; position: relative; background-color: black; display: inline-block; text-align: center; line-height: 30px; } .selected .rollover { width: auto; height: auto; position: relative; background-color: black; display: inline-block; text-align: center; line-height: 30px; } .selected .rollover:after { font-family: "Ionicons"; content: "\f396"; position: absolute; font-size: 24px; top: 20%; right: 0; left: 0; color: white; z-index: 9999; } #footers { margin-top: 50px; } .selectize-dropdown [data-selectable] .highlight { background: #dddddd !important; } .customer-badge { padding: 7px 30px; border-bottom: 1px solid #E9ECF2; background-color: #FFFFFF; } .customer-badge .avatar { float: left; display: inline-block; width: 60px; height: 60px; } .customer-badge .avatar img { width: 100%; height: 36px; border-radius: 50%; } .customer-badge .details { padding: 0px; padding-left: 72px; text-align: left; padding-top: 10px; position: relative; } .customer-badge .details .name { font-weight: 400; color: #67676C; font-size: 12px; width: 250px; /*white-space: nowrap;*/ overflow: hidden; /*text-overflow: ellipsis;*/ text-decoration: none; display: block; text-transform: capitalize; } .customer-badge .details .name .balance, .customer-badge .details .name .points { font-size: 12px; } .customer-badge .details .name:hover { color: #489ee7; } .customer-badge .details .email { color: #67676C; font-size: 10px; font-weight: 400; } .customer-badge .details .btn-edit { width: 47px; height: 36px; background-color: #F9FBFC; border: 1px solid #e8ebf1; border-right-width: 0px; border-top-width: 0px; color: #489ee7; font-size: 18px; font-weight: 500; position: absolute; top: 0; right: 0; margin-top: -7px; margin-right: -30px; } .customer-badge.suggestions { border-left: 0px solid #d7dce5; border-right-width: 0px; padding: 0px !important; /*height: 48px !important;*/ cursor: pointer; } .customer-badge.suggestions .suggest-item { padding: 7px 5px !important; } .customer-badge.suggestions .suggest-item:hover, .customer-badge.suggestions .suggest-item.active, .customer-badge.suggestions .suggest-item:focus { background-color: #f3f4f8; } .customer-badge.suggestions .avatar { width: 35px !important; height: auto; } .customer-badge.suggestions .details { padding-top: 5px; text-align: left; padding-left: 40px; line-height: 14px; } .customer-badge.suggestions .details .name { color: #000; padding-left: 5px; } .customer-badge.suggestions .details .email { padding-left: 5px; color: #8cc2f0; } @media (max-width: 767px) { .customer-badge .details .name { width: 250px; } } .dropdown-backdrop { position: static; } input { -moz-box-shadow: none !important; -webkit-box-shadow: none !important; box-shadow: none !important; } .registers-list { padding-top: 35px !important; } @media print { .content { margin-left: 0px !important; } .store_account_address { margin-left: 90px; margin-bottom: 90px; } #statement_header { margin-top: 60px; margin-bottom: 30px; } #receipt_wrapper div { page-break-inside: avoid; } } @media (max-width: 992px) { .no-padding-right { padding-left: 0px; } } .no-padding-right { padding-right: 0px !important; } .no-padding-left { padding-left: 0px !important; } .content-header { background-color: #cfe6f9; margin: -36px -16px 40px -16px; border-top-left-radius: 4px; border-top-right-radius: 4px; } .content-header h3 { padding: 5px; color: white; } #sales_page_holder { padding: 5px 15px 0 15px; } #category_tree ul, .tag-tree ul { list-style: none; } #category_tree ul li, .tag-tree ul li { line-height: 36px; } #category_tree ul li:hover > ul, .tag-tree ul li:hover > ul { background-color: #cfe6f9; } .required { color: #e7505a; } .choose-location-home li { width: 100%; } .choose-location-home a { border: 1px solid #e9ecf2; line-height: 40px; display: block; padding: 10px 20px; margin-right: 5px; margin-bottom: 10px; color: #555555; border-radius: 4px; } .choose-location-home a:nth-child(2n) { background-color: #f9f9f9; } .choose-location-home a:hover { background-color: #f9f9f9; } #giftcard_log { width: 100%; } #giftcard_log p { margin: 0px; padding: 10px; margin-bottom: 2px; } .customer-suggestion-badge.suggestions { border-left: 0px solid #d7dce5; border-right: 0 px solid #E9ECF2; padding: 7px 15px; height: 40px; } .customer-suggestion-badge.suggestions .avatar { width: 35px; height: auto; } .customer-suggestion-badge.suggestions:hover, .customer-suggestion-badge.suggestions.active { background-color: #f3f4f8; } .customer-suggestion-badge.suggestions .details { padding-top: 5px; text-align: left; padding-left: 0px; line-height: 14px; } .customer-suggestion-badge.suggestions .details .name { color: #8cc2f0; } /* Media queries for Mobile */ @media (max-width: 600px) { .language-drop:after { display: none !important; } } /* Media queries for Tablet and iPad */ @media (max-width: 767px) { .message_drop { margin: 0px auto; left: 0px !important; } .message_drop:after { display: none !important; } .nopadding.panel-body { padding: 15px; } } @-webkit-keyframes display-none-transition { 0% { display: none; margin-left: -10px; } 1% { display: block; } 100% { margin-left: 0px; } } /* Loader css */ .spinner { position: absolute; z-index: 9999999; margin: 0px auto; left: 0px; right: 1px; width: 100%; height: 100%; text-align: center; font-size: 10px; background-color: rgba(255, 255, 255, 0.6); } .spinner > div { background-color: #489ee7; 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; } #grid-loader.spinner > div { height: 100px; width: 8px; margin-right: 2px; margin-top: 30px; top: 50%; } .spinner .rect2 { -webkit-animation-delay: -1.1s; animation-delay: -1.1s; } .spinner .rect3 { -webkit-animation-delay: -1s; animation-delay: -1s; } #grid-loader.spinner .rect2 { -webkit-animation-delay: -1.1s; animation-delay: -1.1s; } #grid-loader.spinner .rect3 { -webkit-animation-delay: -1s; animation-delay: -1s; } @-webkit-keyframes sk-stretchdelay { 0%, 40%, 100% { -webkit-transform: scaleY(0.4); } 20% { -webkit-transform: scaleY(1); } } @keyframes sk-stretchdelay { 0%, 40%, 100% { transform: scaleY(0.4); -webkit-transform: scaleY(0.4); } 20% { transform: scaleY(1); -webkit-transform: scaleY(1); } } .user-badge .user-badge-avatar img { width: 50px !important; height: auto; border-radius: 4px; float: left; } .user-badge .user-badge-details { margin-left: 20px; color: #489ee7; font-size: 20px; display: inline-block; } .user-badge .user-badge-details .amount { color: #eac841; } .user-badge .user-badge-details p { font-style: italic; font-size: 14px; color: #000; } .user-badge .pull-right { margin-top: 0px; } .user-badge a.btn { box-shadow: none !important; min-width: 120px; height: 35px; margin-top: 10px; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; font-size: 14px !important; font-weight: 300 !important; } .location-suggestion .details { height: 30px; width: 200px; padding-left: 0px !important; white-space: nowrap; overflow: hidden; text-overflow: ellipsis !important; } .location-suggestion .details .name { font-size: 14px !important; line-height: 26px !important; } /* Top Pagination for manage Table ---------------------------------------------------------------------------------------------- */ .pagination-top { margin: 0px; } .pagination-top strong { font-size: 14px; font-family: 'Helvetica Neue', 'Nunito', sans-serif; border-width: 0px; background: #FFFFFF !important; color: #489ee7 !important; padding: 0px 12px !important; display: inline-block; height: 35px; line-height: 35px !important; font-weight: bold; margin-top: 0px !important; } .pagination-top a { text-decoration: none; font-family: 'Helvetica Neue', 'Nunito', sans-serif; font-size: 12px !important; padding: 0px 12px !important; display: inline-block; height: 36px; line-height: 26px; background-color: #FFFFFF; color: #489ee7; margin-left: -3px; margin-right: -3px; } .pagination-top a:first-child { border-top-left-radius: 3px ; border-bottom-left-radius: 3px ; margin-right: -5px; } .pagination-top a:last-child { border-top-right-radius: 3px ; border-bottom-right-radius: 3px ; margin-left: -5px; } .pagination-top a:hover { background: #8cc2f0 !important; } .pagination-top a:hover { background-color: #489ee7; color: #FFFFFF !important; cursor: pointer; } @media (max-width: 800px) { .manage-table .panel-title { padding-top: 0px !important; } .manage-table .panel-options { clear: both; padding-top: 30px; text-align: center; } } .manage-row-options { position: relative; width: 100%; } .manage-row-options .email_buttons { border-bottom: 1px solid #e9ecf2; position: absolute; height: 76px; padding-top: 20px; width: 100%; margin-left: 5px; z-index: 8888888; background-color: white !important; text-align: left !important; } .manage-row-options .email_buttons.items { /* height: 106px; padding-top: 35px;*/ position: absolute; z-index: 99; } .manage-row-options .email_buttons.fixed-buttons { position: fixed; top: 0; } .manage-row-options .email_buttons .btn { margin-right: 20px; margin-bottom: 20px; border-radius: 3px; } /*@media (max-width: 900px) {*/ /*.email_buttons.items {*/ /*height: 180px !important;*/ /*}*/ /*}*/ .add-location-link { margin-top: 50px; } .dataTables_filter { float: right; margin: 10px; } .dataTables_length { float: left; margin: 10px; margin-top: 20px !important; } .dataTables_info { float: left; margin: 10px; } .dataTables_paginate { float: right; } .dataTables_paginate.pagination, .dataTables_paginate .pagination { margin: 5px !important; margin-top: 0px !important; } .navbar-breadcrumb { padding-left: 15px; } .navbar-breadcrumb > a { line-height: 60px; color: #707780; float: left; } .navbar-breadcrumb > a:hover { text-decoration: none; color: #489ee7; } .navbar-breadcrumb > a.current { font-size: 16px; font-weight: 400; color: #489ee7; } .navbar-breadcrumb > a + a:before { padding: 0 10px; color: #ccc; content: "/\00a0"; } a:focus { outline: none !important; } .editable-open { border: 1px dotted #489ee7 !important; padding: 2px; } body.modal-open { overflow: hidden !important; } .modal { -webkit-overflow-scrolling: auto !important; overflow-y: auto !important; } /* UI Autocomplete suggestions focus color fix*/ .ui-menu .ui-menu-item a.ui-state-focus, .ui-menu .ui-menu-item a.ui-state-active { font-weight: normal; margin: 0; color: #ffffff; background-color: #f3f4f8 !important; text-shadow: none !important; border: 0px solid red !important; } #category_item_selection_wrapper { padding: 5px !important; } .items-buttons { margin-top: 18px; } .quick-actions li, .quick-actions-horizontal li { border: 1px solid #d5d5d5; border-radius: 4px 4px 4px 4px; -webkit-box-shadow: 0 1px 0 0 #FFFFFF inset, 0 1px 0 rgba(255, 255, 255, 0.4); box-shadow: 0 1px 0 0 #FFFFFF inset, 0 1px 0 rgba(255, 255, 255, 0.4); display: inline-block; line-height: 18px; margin: 0 10px 10px; padding: 0 10px; } .quick-actions li a i[class^="icon"], .quick-actions li a i[class*=" icon"] { background-repeat: no-repeat; background-attachment: scroll; background-position: 0 0; background-color: transparent; width: 32px; height: 32px; display: block; margin: 0 auto 5px; } .quick-actions li, .quick-actions-horizontal li { padding: 0; } .quick-actions li a, .quick-actions-horizontal li a { text-align: center !important; display: block; color: #666666; text-shadow: 0 1px 0 #ffffff; } .quick-actions li:active, .quick-actions-horizontal li:active, .quick-actions li:focus, .quick-actions-horizontal li:focus { background-image: -webkit-linear-gradient(top, #eeeeee 0%, #f4f4f4 100%); background-image: linear-gradient(to bottom, #eeeeee 0%, #f4f4f4 100%); background-repeat: repeat-x; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#fff4f4f4', GradientType=0); -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2) inset, 0 1px 0 rgba(255, 255, 255, 0.4); box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2) inset, 0 1px 0 rgba(255, 255, 255, 0.4); } .quick-actions-horizontal li a span { padding: 10px 12px 10px 10px; display: inline-block; } .quick-actions-horizontal li a i[class^="icon"], .quick-actions-horizontal li a i[class*="icon"] { background-repeat: no-repeat; background-attachment: scroll; background-position: center; background-color: transparent; width: 16px; height: 16px; display: inline-block; margin: -2px 0 0 !important; border-right: 1px solid #dddddd; margin-right: 10px; padding: 20px; vertical-align: middle; } .alert-select-all .alert { margin-top: 20px; margin-bottom: 0px; } .alert-select-all .selectall, .alert-select-all .selectnone { cursor: pointer; display: none; } .alert-select-all .selectall strong, .alert-select-all .selectnone strong { text-decoration: underline; } .quick-actions a { margin-top: 5px !important; } .quick-actions a:hover { background-color: #489ee7; color: white; } .quick-actions a:hover i { color: white; } .quick-actions a i { font-size: 20px; padding-right: 20px; color: #000; border-right: 1px solid #d7dce5; margin-right: 20px; } .item-current-location { background-color: #f3f4f8; color: #006dcc; } .item-current-location .form-heading { color: #489ee7; } .config-search { float: left; } .location-settings { margin-top: 30px; } #keyboard_toggle { padding-right: 15px !important; padding-top: 15px !important; } .m-b-20 { margin-bottom: 20px; } .p-lr-15 { padding-left: 15px; padding-right: 15px; } .form-horizontal .panel-body { padding: 10px !important; } .panel-heading .reports-range { color: #6cadd1 !important; } span.compare { color: black; } span.compare_better { color: #32CD32; } span.compare_worse { color: red; } .summary-data span.compare { color: white; } .summary-data span.compare_better { color: #00ff00; } .summary-data span.compare_worse { color: #ff4d4d; } /* Print style fixes */ @media print { a[href]:after { content: none !important; } [class^="ion"], [class*=" ion"] { display: none !important; } .reports-printable { padding: 25px !important; } .reports-printable td { font-size: 10px !important; } .content { margin-left: 0px !important; } } .location-suggest { height: 50px; } .location-suggest .avatar .badge { margin-top: 5px; margin-left: 10px; width: 25px; height: 25px; border-radius: 50%; } .location-suggest .details { padding-left: 20px; } .location-suggest .details .name { line-height: 22px; } .item_kit_item_row .ion-ios-trash-outline { font-size: 24px; } @media print { #register_log_details .col-md-1, #register_log_details .col-md-2, #register_log_details .col-md-3, #register_log_details .col-md-4, #register_log_details .col-md-5, #register_log_details .col-md-6, #register_log_details .col-md-7, #register_log_details .col-md-8, #register_log_details .col-md-9, #register_log_details .col-md-10, #register_log_details .col-md-11, #register_log_details .col-md-12 { float: left; } #register_log_details .col-md-12 { width: 100%; } } .relative { position: relative; } .floating-button { position: fixed; bottom: 30px; right: 30px; z-index: 9999999999; border-radius: 3px; } .m-t-10 { margin-top: 10px; } .m-b-10 { margin-bottom: 10px; } /* -------------------------------- Primary style -------------------------------- */ /* -------------------------------- xnugget info -------------------------------- */ .cd-nugget-info { position: absolute; width: 60%; left: 50%; top: 50%; bottom: auto; right: auto; -webkit-transform: translateX(-50%) translateY(-50%); -moz-transform: translateX(-50%) translateY(-50%); -ms-transform: translateX(-50%) translateY(-50%); -o-transform: translateX(-50%) translateY(-50%); transform: translateX(-50%) translateY(-50%); z-index: 1; text-align: center; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .cd-nugget-info h1 { color: #fefffb; font-size: 2.4rem; margin: .6em 0; } .cd-nugget-info .cd-btn { -webkit-appearance: none; -moz-appearance: none; -ms-appearance: none; -o-appearance: none; appearance: none; border: none; border-radius: 50em; background: #ff962c; padding: 1em 2em; color: #fefffb; font-weight: bold; font-size: 1.4rem; cursor: pointer; box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2); } .cd-nugget-info .cd-btn:active { -webkit-transform: scale(0.9); -moz-transform: scale(0.9); -ms-transform: scale(0.9); -o-transform: scale(0.9); transform: scale(0.9); } .no-touch .cd-nugget-info .cd-btn:hover, .cd-nugget-info .cd-btn:focus { outline: none; background: #ffa346; } @media only screen and (min-width: 1100px) { .cd-nugget-info h1 { font-size: 4.2rem; font-weight: 300; } .cd-nugget-info .cd-btn { font-size: 1.6rem; } } /* -------------------------------- Main Components -------------------------------- */ .cd-tour-wrapper { position: fixed; z-index: 99999999999999; height: 90%; width: 90%; left: 50%; top: 50%; bottom: auto; right: auto; -webkit-transform: translateX(-50%) translateY(-50%); -moz-transform: translateX(-50%) translateY(-50%); -ms-transform: translateX(-50%) translateY(-50%); -o-transform: translateX(-50%) translateY(-50%); transform: translateX(-50%) translateY(-50%); visibility: hidden; opacity: 0; -webkit-transition: opacity 0.4s 0s, visibility 0s 0.4s; -moz-transition: opacity 0.4s 0s, visibility 0s 0.4s; transition: opacity 0.4s 0s, visibility 0s 0.4s; } .cd-tour-wrapper img { width: 100%; height: auto; } .cd-tour-wrapper::before { /* never visible - this is used in jQuery to check the current MQ */ display: none; content: 'mobile'; } .cd-tour-wrapper.active { /* start tour */ visibility: visible; opacity: 1; -webkit-transition: opacity 0.4s 0s, visibility 0s 0s; -moz-transition: opacity 0.4s 0s, visibility 0s 0s; transition: opacity 0.4s 0s, visibility 0s 0s; } @media only screen and (min-width: 600px) { .cd-tour-wrapper { max-width: 500px; max-height: 600px; } } @media only screen and (max-width: 900px) { .selectall { margin-top: 30px; } } .list-permission-actions { padding-left: 30px; } #permission_list { padding-left: 10px; } .child-list .page-header { margin-top: 0px; font-size: 20px !important; } .inventory-count { border-radius: 0px 3px 3px 0px !important; } .table-reports thead th, .table-reports thead td { text-align: center !important; } .ui-menu .ui-menu-item { list-style-image: none !important; } #request_section .tabs { padding-top: 0 !important; } #tbl_delivery_items { margin-bottom: 5px; } #tbl_delivery_items th { line-height: 30px; text-align: center; } #tbl_delivery_items th, #tbl_delivery_items td{ border: 1px solid #d7dce5; padding: 5px 10px; } #tbl_delivery_items input[type="checkbox"] + label span { margin-right: 0; } #delivery_info { margin-bottom: 5px; } li.pagi{ font-weight: bold; }
0.319758
0.047404
/**Div containing the color of the stars */ .jRatingAverage { background-color:#f62929; position:relative; top:0; left:0; z-index:2; height:100%; } .jRatingColor { background-color:#ff0; /* bgcolor of the stars*/ position:relative; top:0; left:0; z-index:2; height:100%; } /** Div containing the stars **/ .jStar { position:relative; left:0; z-index:3; } /** P containing the rate informations **/ p.jRatingInfos { position: absolute; z-index:9999; background: transparent url('icons/bg_jRatingInfos.png') no-repeat; color: red; display: none; width: 91px; height: 29px; font-size:16px; text-align:center; padding-top:5px; } p.jRatingInfos span.maxRate { color:#c9c9c9; font-size:14px; } .datasSent, .serverResponse { margin-top: 20px; width: 470px; height: 73px; border: 1px solid #F0F0F0; background-color: #F8F8F8; padding: 10px; float: left; margin-right: 10px } .datasSent { width: 200px; position: fixed; left: 680px; top: 0 } .serverResponse { position: fixed; left: 680px; top: 100px } .datasSent p, .serverResponse p { font-style: italic; font-size: 12px } .exemple { margin-top: 15px; } .clr { clear: both } pre { margin: 0; padding: 0 } .notice { background-color: #F4F4F4; color: #666; border: 1px solid #CECECE; padding: 10px; font-weight: bold; width: 600px; font-size: 12px; margin-top: 10px } .rating { float:left; } .rating:not(:checked) > input { position:absolute; left:-9999px; clip:rect(0,0,0,0); } .rating:not(:checked) > label { float:right; width:1em; padding:0 .1em; overflow:hidden; white-space:nowrap; cursor:pointer; margin:0px auto; font-size:140%; line-height:1.2; color:#ddd; /* text-shadow:1px 1px #bbb, 2px 2px #666, .1em .1em .2em rgba(0,0,0,.5); */ } .hidenstar{ z-index: -1; position: relative; } .activestar{} .rating:not(:checked) > label:before { content: '★ '; } .tongdanhgia{ color: #c4c4c4; font-size: 11px; display: inline-block; line-height: 21px; margin-left: 6px; } .diemsaotb{ color: #c4c4c4;display: inline-block;margin-right: 10px; font-size: 11px;} .rating > input:checked ~ label { color: #ffd800; /* text-shadow: 1px 1px #c60, 2px 2px #940, .1em .1em .2em rgba(0,0,0,.5); */ } .rating:not(:checked) > label:hover, .rating:not(:checked) > label:hover ~ label { color: gold; text-shadow:1px 1px goldenrod, 2px 2px #B57340, .1em .1em .2em rgba(0,0,0,.5); } .rating > input:checked + label:hover, .rating > input:checked + label:hover ~ label, .rating > input:checked ~ label:hover, .rating > input:checked ~ label:hover ~ label, .rating > label:hover ~ input:checked ~ label { color: #ea0; text-shadow:1px 1px goldenrod, 2px 2px #B57340, .1em .1em .2em rgba(0,0,0,.5); } .rating > label:active { position:relative; top:2px; left:2px; } .rating:not(:checked) > label::before { content: "★ "; }
public/css/jRating.jquery.css
/**Div containing the color of the stars */ .jRatingAverage { background-color:#f62929; position:relative; top:0; left:0; z-index:2; height:100%; } .jRatingColor { background-color:#ff0; /* bgcolor of the stars*/ position:relative; top:0; left:0; z-index:2; height:100%; } /** Div containing the stars **/ .jStar { position:relative; left:0; z-index:3; } /** P containing the rate informations **/ p.jRatingInfos { position: absolute; z-index:9999; background: transparent url('icons/bg_jRatingInfos.png') no-repeat; color: red; display: none; width: 91px; height: 29px; font-size:16px; text-align:center; padding-top:5px; } p.jRatingInfos span.maxRate { color:#c9c9c9; font-size:14px; } .datasSent, .serverResponse { margin-top: 20px; width: 470px; height: 73px; border: 1px solid #F0F0F0; background-color: #F8F8F8; padding: 10px; float: left; margin-right: 10px } .datasSent { width: 200px; position: fixed; left: 680px; top: 0 } .serverResponse { position: fixed; left: 680px; top: 100px } .datasSent p, .serverResponse p { font-style: italic; font-size: 12px } .exemple { margin-top: 15px; } .clr { clear: both } pre { margin: 0; padding: 0 } .notice { background-color: #F4F4F4; color: #666; border: 1px solid #CECECE; padding: 10px; font-weight: bold; width: 600px; font-size: 12px; margin-top: 10px } .rating { float:left; } .rating:not(:checked) > input { position:absolute; left:-9999px; clip:rect(0,0,0,0); } .rating:not(:checked) > label { float:right; width:1em; padding:0 .1em; overflow:hidden; white-space:nowrap; cursor:pointer; margin:0px auto; font-size:140%; line-height:1.2; color:#ddd; /* text-shadow:1px 1px #bbb, 2px 2px #666, .1em .1em .2em rgba(0,0,0,.5); */ } .hidenstar{ z-index: -1; position: relative; } .activestar{} .rating:not(:checked) > label:before { content: '★ '; } .tongdanhgia{ color: #c4c4c4; font-size: 11px; display: inline-block; line-height: 21px; margin-left: 6px; } .diemsaotb{ color: #c4c4c4;display: inline-block;margin-right: 10px; font-size: 11px;} .rating > input:checked ~ label { color: #ffd800; /* text-shadow: 1px 1px #c60, 2px 2px #940, .1em .1em .2em rgba(0,0,0,.5); */ } .rating:not(:checked) > label:hover, .rating:not(:checked) > label:hover ~ label { color: gold; text-shadow:1px 1px goldenrod, 2px 2px #B57340, .1em .1em .2em rgba(0,0,0,.5); } .rating > input:checked + label:hover, .rating > input:checked + label:hover ~ label, .rating > input:checked ~ label:hover, .rating > input:checked ~ label:hover ~ label, .rating > label:hover ~ input:checked ~ label { color: #ea0; text-shadow:1px 1px goldenrod, 2px 2px #B57340, .1em .1em .2em rgba(0,0,0,.5); } .rating > label:active { position:relative; top:2px; left:2px; } .rating:not(:checked) > label::before { content: "★ "; }
0.646014
0.122052
html{ height: 100%; } body{ height: 100%; font-size: 20px; } table{ text-align: center; } thead{ background-color: #34495e; color: white; font-size:30px; } tbody>tr{ height:30px; } textarea{ padding: 5px 11px 5px 11px; } /* tbody>tr:hover{ background-color: #1abc9c; color: white; } */ .cover_layer{ position:absolute; width:100%; height:100%; opacity: 0.7; z-index: 9998; display: flex; justify-content: center; align-items: center; display: none; } tbody{ } .pagination ul{ padding: 0; } .pagination li{ display:inline-flex; background-color: #34495e; color: white; padding:0 20px 0 20px; border-radius: 5px; cursor: pointer; user-select: none; outline:none; height: 25px; line-height: 25px; } .pagination li:hover{ background-color: #44617e } .sp:active{ background-color: #2b3c4d; } .mb{ background-color: #34495e; color: white; padding:5px 20px 5px 20px; border-radius: 5px; border: none; outline:none; } .mb_b,.cb{ height: 100%; background-color: #34495e; color: white; padding:5px 20px 5px 20px; border: none; outline:none; } .cb:hover, .mb_b:hover, .mb:hover{ background-color: #44617e; } .cb:active{ background-color: #2b3c4d; } .big_button{ width:100%; margin:10px; height:50px; border:none; font-size:1.25em; outline: none; color: white; background-color: #19997f; border-radius: 5px; } #source_search{ border: none; outline: none; height:100%; width: 10em; background-color:#19997f; color:white; border-radius: 10px 0 0 10px; padding:0 0 0 20px; font-size:20px; } #source_search::-webkit-input-placeholder{ color:white; font-size:20px; font-weight: bold; } #search_bar{ height:100%; width:75%; display: inline-flex; align-items: center; } #left_wrapper{ float:left; height:100%; width:20%; background-color:#34495e; display:flex; flex-direction: column; align-items: center; } #right_wrapper{ float:right; height:100%; width:80%; background-color: #D1EEEE; display:flex; flex-direction: column; align-items: center; } #button_list{ width: 80%; display:flex; flex-direction: column; align-items: center; } #current_status_wrapper{ width: 100%; height: 30%; background-color: #D1EEEE; display:flex; align-items: center; justify-content: center; } #dashboard_view{ height:100%; width:100%; background-color: #D1EEEE; display:flex; flex-direction: column; align-items: center; display: flex; } #source_view{ height:100%; width:100%; flex-direction: column; align-items: center; } #strategy_view{ height:100%; width:100%; flex-direction: column; align-items: center; display: none; } #click_manage_view{ height:100%; width:100%; display:none; flex-direction: column; align-items: center; display: none; } #gauge{ height: 150px; width: 150px; color: white; background-color: #1abc9c; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; } #chart_wrapper{ display:flex; height: 70%; width:100%; flex-direction: column; justify-content: center; align-items: center; } #pie_chart_wrapper{ display: none; align-items: center; justify-content: center; height:90%; width:100%; } #view_style{ display: inline-flex; width:15%; left:20px; height:100%; justify-content: space-around; } .source_nav{ margin-bottom: 2%; margin-top: 2%; margin-left: 5%; margin-right: 5%; height: 6%; width: 90%; display: flex; justify-content: space-between; align-items: center; background-color:#34495e; border-radius: 10px; color:white } .source_nav>div{ display:inline-flex; align-items: center; } #list_wrapper{ display: flex; align-items: center; flex-direction: column; height:100%; width:100%; } #view{ font-size: 20px; border:none; outline: none; width:100px; height:100%; background-color: #34495e; color:white; } .pull{ display:flex; align-items: center; position: relative; } .pull_list{ display: none; padding: 10px; position: absolute; top: 100%; } .list_item{ padding:5px 10px 5px 10px; cursor: pointer; } .pull:hover{ background-color: #23313f; } .pull:hover .pull_list{ display: flex; flex-direction: column; } .pull_list>.list_item:hover{ background-color: #1abc9c; }
index.css
html{ height: 100%; } body{ height: 100%; font-size: 20px; } table{ text-align: center; } thead{ background-color: #34495e; color: white; font-size:30px; } tbody>tr{ height:30px; } textarea{ padding: 5px 11px 5px 11px; } /* tbody>tr:hover{ background-color: #1abc9c; color: white; } */ .cover_layer{ position:absolute; width:100%; height:100%; opacity: 0.7; z-index: 9998; display: flex; justify-content: center; align-items: center; display: none; } tbody{ } .pagination ul{ padding: 0; } .pagination li{ display:inline-flex; background-color: #34495e; color: white; padding:0 20px 0 20px; border-radius: 5px; cursor: pointer; user-select: none; outline:none; height: 25px; line-height: 25px; } .pagination li:hover{ background-color: #44617e } .sp:active{ background-color: #2b3c4d; } .mb{ background-color: #34495e; color: white; padding:5px 20px 5px 20px; border-radius: 5px; border: none; outline:none; } .mb_b,.cb{ height: 100%; background-color: #34495e; color: white; padding:5px 20px 5px 20px; border: none; outline:none; } .cb:hover, .mb_b:hover, .mb:hover{ background-color: #44617e; } .cb:active{ background-color: #2b3c4d; } .big_button{ width:100%; margin:10px; height:50px; border:none; font-size:1.25em; outline: none; color: white; background-color: #19997f; border-radius: 5px; } #source_search{ border: none; outline: none; height:100%; width: 10em; background-color:#19997f; color:white; border-radius: 10px 0 0 10px; padding:0 0 0 20px; font-size:20px; } #source_search::-webkit-input-placeholder{ color:white; font-size:20px; font-weight: bold; } #search_bar{ height:100%; width:75%; display: inline-flex; align-items: center; } #left_wrapper{ float:left; height:100%; width:20%; background-color:#34495e; display:flex; flex-direction: column; align-items: center; } #right_wrapper{ float:right; height:100%; width:80%; background-color: #D1EEEE; display:flex; flex-direction: column; align-items: center; } #button_list{ width: 80%; display:flex; flex-direction: column; align-items: center; } #current_status_wrapper{ width: 100%; height: 30%; background-color: #D1EEEE; display:flex; align-items: center; justify-content: center; } #dashboard_view{ height:100%; width:100%; background-color: #D1EEEE; display:flex; flex-direction: column; align-items: center; display: flex; } #source_view{ height:100%; width:100%; flex-direction: column; align-items: center; } #strategy_view{ height:100%; width:100%; flex-direction: column; align-items: center; display: none; } #click_manage_view{ height:100%; width:100%; display:none; flex-direction: column; align-items: center; display: none; } #gauge{ height: 150px; width: 150px; color: white; background-color: #1abc9c; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; } #chart_wrapper{ display:flex; height: 70%; width:100%; flex-direction: column; justify-content: center; align-items: center; } #pie_chart_wrapper{ display: none; align-items: center; justify-content: center; height:90%; width:100%; } #view_style{ display: inline-flex; width:15%; left:20px; height:100%; justify-content: space-around; } .source_nav{ margin-bottom: 2%; margin-top: 2%; margin-left: 5%; margin-right: 5%; height: 6%; width: 90%; display: flex; justify-content: space-between; align-items: center; background-color:#34495e; border-radius: 10px; color:white } .source_nav>div{ display:inline-flex; align-items: center; } #list_wrapper{ display: flex; align-items: center; flex-direction: column; height:100%; width:100%; } #view{ font-size: 20px; border:none; outline: none; width:100px; height:100%; background-color: #34495e; color:white; } .pull{ display:flex; align-items: center; position: relative; } .pull_list{ display: none; padding: 10px; position: absolute; top: 100%; } .list_item{ padding:5px 10px 5px 10px; cursor: pointer; } .pull:hover{ background-color: #23313f; } .pull:hover .pull_list{ display: flex; flex-direction: column; } .pull_list>.list_item:hover{ background-color: #1abc9c; }
0.475849
0.084871
@import url(https://fonts.googleapis.com/css?family=Open+Sans&display=swap);* { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: "Open Sans", sans-serif; } a { text-decoration: none; color: black; } main { background-image: url(/images/fondo-pag-speciali.jpg?06a79f19fbb4489a17e2dff67ce37137); } main .card-list h1 { color: blue; } main .card-list .cards { flex-wrap: wrap; display: flex; } main .card-list .cards .card { flex-basis: calc(100% / 3 - 40px); position: relative; margin: 20px; transition-duration: 0.3s; overflow: hidden; } @media screen and (max-width: 768px) { main .card-list .cards .card { flex-basis: calc(100% / 2 - 40px); } } @media screen and (max-width: 400px) { main .card-list .cards .card { flex-basis: 100%; } } main .card-list .cards .card:hover .hover { display: block; } main .card-list .cards .card:hover img { transform: scale(1.1); } main .card-list .cards .card img { display: block; width: 100%; } main .card-list .cards .card .hover { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; display: none; } main .card-list .cards .card .hover a h3 { padding-bottom: 10px; } main .prodotto { background-color: #b8dae4; } main .prodotto img { width: 100%; } main .prodotto h2 { text-align: center; color: #002d75; } main .prodotto .testo { color: #002d75; padding: 40px; } main .prodotto .succ, main .prodotto .prec { width: 100px; height: 100px; } header { background-color: #fff; text-align: center; list-style: none; } header li { display: inline-block; width: 100px; height: 50px; padding-top: 10px; } header li:hover { background-color: #daedf3; } header li:active { background-color: none; } header li a { color: black; font-size: 15px; width: 100%; } header .hamburger { display: none; } header .visible { display: none; } @media screen and (max-width: 768px) { header .hamburger { display: block; font-size: 30px; } header .visible.active { display: block; } header li { width: 100vw; height: 30px; margin: 0; padding-top: 0px; } header .navbar { display: none; } } footer { margin-left: 100px; margin-right: 100px; padding-top: 50px; } @media screen and (max-width: 768px) { footer { margin-left: 0px; margin-right: 0px; } } footer .container { float: left; position: relative; width: calc(100% / 3); background-color: #fff; margin-bottom: 50px; } @media screen and (max-width: 768px) { footer .container { width: calc(100% / 1); } } footer .container ul { list-style: none; } footer .container ul a { color: black; } footer .aria img { width: 100%; } @media (min-width: 768px) { .card { flex-basis: calc(100% / 2); } } @media (min-width: 320px) { .card { flex-basis: calc(100% / 1); } }
public/css/app.css
@import url(https://fonts.googleapis.com/css?family=Open+Sans&display=swap);* { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: "Open Sans", sans-serif; } a { text-decoration: none; color: black; } main { background-image: url(/images/fondo-pag-speciali.jpg?06a79f19fbb4489a17e2dff67ce37137); } main .card-list h1 { color: blue; } main .card-list .cards { flex-wrap: wrap; display: flex; } main .card-list .cards .card { flex-basis: calc(100% / 3 - 40px); position: relative; margin: 20px; transition-duration: 0.3s; overflow: hidden; } @media screen and (max-width: 768px) { main .card-list .cards .card { flex-basis: calc(100% / 2 - 40px); } } @media screen and (max-width: 400px) { main .card-list .cards .card { flex-basis: 100%; } } main .card-list .cards .card:hover .hover { display: block; } main .card-list .cards .card:hover img { transform: scale(1.1); } main .card-list .cards .card img { display: block; width: 100%; } main .card-list .cards .card .hover { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; display: none; } main .card-list .cards .card .hover a h3 { padding-bottom: 10px; } main .prodotto { background-color: #b8dae4; } main .prodotto img { width: 100%; } main .prodotto h2 { text-align: center; color: #002d75; } main .prodotto .testo { color: #002d75; padding: 40px; } main .prodotto .succ, main .prodotto .prec { width: 100px; height: 100px; } header { background-color: #fff; text-align: center; list-style: none; } header li { display: inline-block; width: 100px; height: 50px; padding-top: 10px; } header li:hover { background-color: #daedf3; } header li:active { background-color: none; } header li a { color: black; font-size: 15px; width: 100%; } header .hamburger { display: none; } header .visible { display: none; } @media screen and (max-width: 768px) { header .hamburger { display: block; font-size: 30px; } header .visible.active { display: block; } header li { width: 100vw; height: 30px; margin: 0; padding-top: 0px; } header .navbar { display: none; } } footer { margin-left: 100px; margin-right: 100px; padding-top: 50px; } @media screen and (max-width: 768px) { footer { margin-left: 0px; margin-right: 0px; } } footer .container { float: left; position: relative; width: calc(100% / 3); background-color: #fff; margin-bottom: 50px; } @media screen and (max-width: 768px) { footer .container { width: calc(100% / 1); } } footer .container ul { list-style: none; } footer .container ul a { color: black; } footer .aria img { width: 100%; } @media (min-width: 768px) { .card { flex-basis: calc(100% / 2); } } @media (min-width: 320px) { .card { flex-basis: calc(100% / 1); } }
0.429429
0.089853
*{margin:0;padding:0;} .all{ background: #f8f8ff; } .top{ width: 1350px; height: 175px; position: relative; margin: 0 auto; } .head{ width: 100%; top:0px; background: #e8e8e8; height: 30px; } .head ul li{ list-style:none; font-size: 15px; } .head1,.head2,.head3,.head4,.head5,.head6{ margin-right: 20px; float:right; line-height: 30px; } .head li a{ text-decoration: none; color:#66CC99; } .head li a:hover{ color: red; } .head4 img{ width: 13px; height: 7px; } .head4 ul{ z-index: 6; position: absolute; background: white; } .search-submit{ height: 35px; width: 50px; background-image: url(img/search.jpg); border:0; cursor: pointer; float: right; } .search-text{ width: 500px; height: 33px; border:1px solid red; float: left; } .search{ width: 552px; float: left; top: 58px; left: 400px; position: absolute; } .shopping-car{ height: 35px; width: 190px; float: right; cursor: pointer; z-index: 1; right: 173px; top:58px; position: absolute; } .shopping-car2{ height:71px; width: 350px; background: white; right: 173px; top: 93px; position: absolute; z-index: 3; border: 1px solid #e5e5e5; } .shopping-car2 img{ width: 70px; height: 50px; float: left; margin-top: 10px; margin-left: 20px; } .shopping-car2 p{ float: right; margin-top: 25px; margin-right: 20px; color: #c0c0c0; } .search p a{ font-size: 15px; text-decoration: none; color: #c0c0c0; } .search p a:hover{ color: red; } .logo{ width: 191px; height: 173px; position: absolute; left: 80px; top: 0; } .title a{ color: black; font-size: 16px; text-decoration: none; font-family: "Microsoft Yahei"; } .title a:hover{ color: red; } .title{ height: 40px; width: 790px; position: absolute; left: 280px; top: 145px; } .title ul li{ list-style:none; float: left; width: 80px; text-align: center; } .main{ width: 1190px; height: 480px; position: relative; margin: 0 auto; } .nav{ height: 480px; width: 191px; background: #808080; position: absolute; left: 0px; top: 0px; } .n1 a,.n2 a,.n3 a,.n4 a,.n5 a,.n6 a,.n7 a,.n8 a,.n9 a,.n10 a,.n11 a,.n12 a,.n13 a,.n14 a,.n15 a,.n16 a{ font-size: 14px; text-decoration: none; color: #ffffff; } .nav a:hover{ color: red; } .n1,.n2,.n3,.n4,.n5,.n6,.n7,.n8,.n9,.n10,.n11,.n12,.n13,.n14,.n15,.n16{ list-style: none; color: #ffffff; height: 30px; margin-left: 15px; } .nav-child{ height: 530px; width: 1000px; background: #fffaf0; position: absolute; left: 190px; top: 0px; z-index: 5; } .nav-child-title{ width: 102px; float: left; height: 447px; margin-top: 50px; } .nav-child-title ul{ margin-left: 30px; } .nav-child-title li{ list-style: none; height: 32px; } .nav-child-title a{ text-decoration: none; color:#808080; font-size: 14px; } .nav-child-title a:hover{ color: red; } .TV,.air{ width: 680px; height: 32px; border-bottom: 1px #dcdcdc solid; } .TV a,.air a{ text-decoration: none; color:#808080; font-size: 14px; margin-left: 10px; } .title-child{ width: 705px; height: 447px; float: left; margin-top: 50px; } .air li,.TV li{ float: left; height: 20px; list-style: none; width: 100px; border-left: 1px #e5e5e5 solid; } .TV a:hover,.air a:hover{ color: red; } .nav1{ height: 135px; width: 170px; float: right; margin-top: 50px; margin-right:18px; } .carousel{ overflow: hidden; width: 790px; height: 340px; position: relative; cursor: pointer; } .middle{ height:480px; width: 790px; position: absolute; left: 200px; top: 0px; } .right{ height: 480px; width: 190px; background: white; position: absolute; right: 0px; top:0px; } .active{ background: red; } .bullet { position: absolute; bottom: 10px; width: 100%; text-align: center; z-index: 4; } span { width: 12px; height: 12px; background: white; display: inline-block; margin-right: 10px; border-radius: 50%; cursor: pointer; } .arrow { text-decoration: none; cursor: pointer; line-height: 55px; text-align: center; font-size: 36px; font-weight: bold; width: 30px; height: 60px; position: absolute; z-index: 2; top: 140px; background-color: RGBA(0,0,0,.3); color: #fff; } .arrow:hover { background-color: RGBA(0,0,0,.7); } #prev { left: 0px;} #next { right:0px;} .middle-pic1,.middle-pic2{ width: 390px; height: 130px; bottom: 0px; position: absolute; } .middle-pic1{ left: 0px; cursor: pointer; } .middle-pic2{ right: 0px; cursor: pointer; } .right-top{ height: 120px; width: 190px; border-bottom: 1px solid #e5e5e5; position: absolute; top: 0px; } .right-top img{ height: 45px; width: 45px; float: left; margin-left: 20px; margin-top: 25px; } .right-top-right{ height: 50px; width: 112px; float: right; margin-right: 10px; margin-top: 25px; } .right-top-right p{ font-size: 13px; } .right-top-right p a{ text-decoration: none; color:black; } .right-top-right p a:hover{ color: red; } .right-top input{ height: 20px; width: 70px; border:2px solid red; background: white; color: red; position: absolute; bottom: 15px; } .button1{ left: 15px; } .button2{ right: 15px; } .right-top input:hover{ background: red; color: white; } .right-middle-title{ width: 170px; height: 27px; border-bottom: 1px solid #e5e5e5; } .right-middle a{ text-decoration: none; color: black; font-size: 13px; } .title1,.title2{ width: 50px; height: 19px; float: left; margin-top: 3px; text-align: center; } .title2{ border-left: 1px solid #e5e5e5; } .title3{ width: 56px; height: 19px; float: right; margin-right: 0px; margin-top: 3px; text-align:right } .right-middle{ width: 170px; height: 128px; position: absolute; top: 121px; margin-left: 9px; } .title1-text li{ list-style: none; } .title3 a:hover{ color: red; } .title2-text li{ list-style: none; } .right-bottom{ height: 210px; width: 190px; position: absolute; bottom: 0px; } .title1-text a:hover,.title2-text a:hover{ color: red; cursor: pointer; } .bottom{ width: 1190px; height: 305px; position: relative; margin: 0 auto; margin-top: 10px; background: white; } .bottom-head{ height: 50px; width: 1190px; background: #dc143c; position: absolute; top: 0px; } .bottom-head h2{ color: white; line-height: 50px; float: left; margin-left: 20px; } .bottom-head a{ float: left; text-decoration: none; color: white; margin-left:20px; margin-top: 20px; font-size: 15px; } .bottom-main{ width: 980px; height: 225px; position: absolute; top: 65px; left: 10px; } .bottom-right{ width: 180px; height: 225px; position: absolute; top: 65px; right: 10px; overflow: hidden; } .bottom-right:hover{ cursor: pointer; } .BR-active{ background: red; } .BR-bullet { position: absolute; bottom: 10px; width: 100%; text-align: center; z-index: 4; } .bottom-main li{ float: left; width: 180px; height: 215px; list-style: none; margin-left: 12px; margin-top: 8px; } .bottom-main a:hover{ color: red; } .bottom-main img{ height: 140px; margin-top: 10px; width: 100%; } .bottom-main img:hover{ cursor: pointer; } .bottom-main img:hover{ margin-top: 0px; } .bottom-main li a{ text-decoration: none; font-size: 12px; color: #808080; } .bottom-main li p{ font-size: 17px; color: red; margin-bottom: 0px; }
jingdongPage.css
*{margin:0;padding:0;} .all{ background: #f8f8ff; } .top{ width: 1350px; height: 175px; position: relative; margin: 0 auto; } .head{ width: 100%; top:0px; background: #e8e8e8; height: 30px; } .head ul li{ list-style:none; font-size: 15px; } .head1,.head2,.head3,.head4,.head5,.head6{ margin-right: 20px; float:right; line-height: 30px; } .head li a{ text-decoration: none; color:#66CC99; } .head li a:hover{ color: red; } .head4 img{ width: 13px; height: 7px; } .head4 ul{ z-index: 6; position: absolute; background: white; } .search-submit{ height: 35px; width: 50px; background-image: url(img/search.jpg); border:0; cursor: pointer; float: right; } .search-text{ width: 500px; height: 33px; border:1px solid red; float: left; } .search{ width: 552px; float: left; top: 58px; left: 400px; position: absolute; } .shopping-car{ height: 35px; width: 190px; float: right; cursor: pointer; z-index: 1; right: 173px; top:58px; position: absolute; } .shopping-car2{ height:71px; width: 350px; background: white; right: 173px; top: 93px; position: absolute; z-index: 3; border: 1px solid #e5e5e5; } .shopping-car2 img{ width: 70px; height: 50px; float: left; margin-top: 10px; margin-left: 20px; } .shopping-car2 p{ float: right; margin-top: 25px; margin-right: 20px; color: #c0c0c0; } .search p a{ font-size: 15px; text-decoration: none; color: #c0c0c0; } .search p a:hover{ color: red; } .logo{ width: 191px; height: 173px; position: absolute; left: 80px; top: 0; } .title a{ color: black; font-size: 16px; text-decoration: none; font-family: "Microsoft Yahei"; } .title a:hover{ color: red; } .title{ height: 40px; width: 790px; position: absolute; left: 280px; top: 145px; } .title ul li{ list-style:none; float: left; width: 80px; text-align: center; } .main{ width: 1190px; height: 480px; position: relative; margin: 0 auto; } .nav{ height: 480px; width: 191px; background: #808080; position: absolute; left: 0px; top: 0px; } .n1 a,.n2 a,.n3 a,.n4 a,.n5 a,.n6 a,.n7 a,.n8 a,.n9 a,.n10 a,.n11 a,.n12 a,.n13 a,.n14 a,.n15 a,.n16 a{ font-size: 14px; text-decoration: none; color: #ffffff; } .nav a:hover{ color: red; } .n1,.n2,.n3,.n4,.n5,.n6,.n7,.n8,.n9,.n10,.n11,.n12,.n13,.n14,.n15,.n16{ list-style: none; color: #ffffff; height: 30px; margin-left: 15px; } .nav-child{ height: 530px; width: 1000px; background: #fffaf0; position: absolute; left: 190px; top: 0px; z-index: 5; } .nav-child-title{ width: 102px; float: left; height: 447px; margin-top: 50px; } .nav-child-title ul{ margin-left: 30px; } .nav-child-title li{ list-style: none; height: 32px; } .nav-child-title a{ text-decoration: none; color:#808080; font-size: 14px; } .nav-child-title a:hover{ color: red; } .TV,.air{ width: 680px; height: 32px; border-bottom: 1px #dcdcdc solid; } .TV a,.air a{ text-decoration: none; color:#808080; font-size: 14px; margin-left: 10px; } .title-child{ width: 705px; height: 447px; float: left; margin-top: 50px; } .air li,.TV li{ float: left; height: 20px; list-style: none; width: 100px; border-left: 1px #e5e5e5 solid; } .TV a:hover,.air a:hover{ color: red; } .nav1{ height: 135px; width: 170px; float: right; margin-top: 50px; margin-right:18px; } .carousel{ overflow: hidden; width: 790px; height: 340px; position: relative; cursor: pointer; } .middle{ height:480px; width: 790px; position: absolute; left: 200px; top: 0px; } .right{ height: 480px; width: 190px; background: white; position: absolute; right: 0px; top:0px; } .active{ background: red; } .bullet { position: absolute; bottom: 10px; width: 100%; text-align: center; z-index: 4; } span { width: 12px; height: 12px; background: white; display: inline-block; margin-right: 10px; border-radius: 50%; cursor: pointer; } .arrow { text-decoration: none; cursor: pointer; line-height: 55px; text-align: center; font-size: 36px; font-weight: bold; width: 30px; height: 60px; position: absolute; z-index: 2; top: 140px; background-color: RGBA(0,0,0,.3); color: #fff; } .arrow:hover { background-color: RGBA(0,0,0,.7); } #prev { left: 0px;} #next { right:0px;} .middle-pic1,.middle-pic2{ width: 390px; height: 130px; bottom: 0px; position: absolute; } .middle-pic1{ left: 0px; cursor: pointer; } .middle-pic2{ right: 0px; cursor: pointer; } .right-top{ height: 120px; width: 190px; border-bottom: 1px solid #e5e5e5; position: absolute; top: 0px; } .right-top img{ height: 45px; width: 45px; float: left; margin-left: 20px; margin-top: 25px; } .right-top-right{ height: 50px; width: 112px; float: right; margin-right: 10px; margin-top: 25px; } .right-top-right p{ font-size: 13px; } .right-top-right p a{ text-decoration: none; color:black; } .right-top-right p a:hover{ color: red; } .right-top input{ height: 20px; width: 70px; border:2px solid red; background: white; color: red; position: absolute; bottom: 15px; } .button1{ left: 15px; } .button2{ right: 15px; } .right-top input:hover{ background: red; color: white; } .right-middle-title{ width: 170px; height: 27px; border-bottom: 1px solid #e5e5e5; } .right-middle a{ text-decoration: none; color: black; font-size: 13px; } .title1,.title2{ width: 50px; height: 19px; float: left; margin-top: 3px; text-align: center; } .title2{ border-left: 1px solid #e5e5e5; } .title3{ width: 56px; height: 19px; float: right; margin-right: 0px; margin-top: 3px; text-align:right } .right-middle{ width: 170px; height: 128px; position: absolute; top: 121px; margin-left: 9px; } .title1-text li{ list-style: none; } .title3 a:hover{ color: red; } .title2-text li{ list-style: none; } .right-bottom{ height: 210px; width: 190px; position: absolute; bottom: 0px; } .title1-text a:hover,.title2-text a:hover{ color: red; cursor: pointer; } .bottom{ width: 1190px; height: 305px; position: relative; margin: 0 auto; margin-top: 10px; background: white; } .bottom-head{ height: 50px; width: 1190px; background: #dc143c; position: absolute; top: 0px; } .bottom-head h2{ color: white; line-height: 50px; float: left; margin-left: 20px; } .bottom-head a{ float: left; text-decoration: none; color: white; margin-left:20px; margin-top: 20px; font-size: 15px; } .bottom-main{ width: 980px; height: 225px; position: absolute; top: 65px; left: 10px; } .bottom-right{ width: 180px; height: 225px; position: absolute; top: 65px; right: 10px; overflow: hidden; } .bottom-right:hover{ cursor: pointer; } .BR-active{ background: red; } .BR-bullet { position: absolute; bottom: 10px; width: 100%; text-align: center; z-index: 4; } .bottom-main li{ float: left; width: 180px; height: 215px; list-style: none; margin-left: 12px; margin-top: 8px; } .bottom-main a:hover{ color: red; } .bottom-main img{ height: 140px; margin-top: 10px; width: 100%; } .bottom-main img:hover{ cursor: pointer; } .bottom-main img:hover{ margin-top: 0px; } .bottom-main li a{ text-decoration: none; font-size: 12px; color: #808080; } .bottom-main li p{ font-size: 17px; color: red; margin-bottom: 0px; }
0.401219
0.059949
/* 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. */ body { background-color: #c6c6c6; } .navbar-nav { font-size: 18pt; } .navbar-brand { margin-left: 20px; } /* Provide sufficient contrast against white background */ .btn-primary { color: #fff !important; background-color: #424242; border-color: black; border-radius: 0; } .btn-primary:hover { color: rgb(200, 200, 200) !important; background-color: black; border-color: gray; cursor: pointer; } .btn-primary:active, .btn-primary:focus { color: white !important; background-color: gray !important; border-color: black !important; } /* The following sidenav properties accessed at - https://www.w3schools.com/howto/howto_js_sidenav.asp */ /* The side navigation menu */ .sidenav { height: 100%; /* 100% Full-height */ width: 0; /* 0 width - change this with JavaScript */ position: absolute; /* stay full on the side */ z-index: 1; /* Stay on top */ left: 0; background-color: #111; /* Black*/ overflow-x: hidden; /* Disable horizontal scroll */ padding-top: 60px; /* Place content 60px from the top */ transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */ } /* The navigation menu links */ .sidenav a { padding: 8px 8px 8px 32px; text-decoration: none; font-size: 25px; color: #818181; display: block; transition: 0.3s; } /* When you mouse over the navigation links, change their color */ .sidenav a:hover { color: #f1f1f1; } /* Position and style the close button (top right corner) */ .sidenav .closebtn { position: absolute; top: 0; right: 25px; font-size: 36px; margin-left: 50px; } /* Style page content - use this if you want to push the page content to the right when you open the side navigation */ #main { transition: margin-left .5s; padding: 20px; } #dashboardButton { left: auto; margin-bottom: 10px; font-weight: bold; cursor: pointer; } /* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */ @media screen and (max-height: 450px) { .sidenav { padding-top: 15px; } .sidenav a { font-size: 18px; } } /* Enrollment styles -------------------------------------------------- */ .enrollmentCard { margin-bottom: 10px; position: relative; } .enrollmentCard .card-footer { padding: 0 2px 2px 2px; font-size: .8em; font-style: oblique; } .moreInfoWatermark{ position: absolute; top: 100px; left: 100px; font-size: 2em; color: rgba(0, 0, 0, .2); } .editEnrollmentButton { position: absolute; top: 2px; right: 2px; z-index: 100; padding: 1px 5px; } .inActiveCornerLabel { position: absolute; top: 2px; left: 2px; padding: 1px 5px; opacity: .6; } .btn-outline-danger:hover { color: white !important; } .btn-outline-secondary:hover { color: white !important; } .btn-outline-success:hover { color: white !important; } /* Payment styles -------------------------------------------------- */ .deletePaymentButton { position: absolute; top: 2px; right: 2px; z-index: 100; padding: 1px 5px; background-color: white; } .deletePaymentButton:hover { background-color: red; color: white; } /* Sticky footer styles -------------------------------------------------- */ html { font-size: 14px; font-family: 'Times New Roman'; } @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; } /* Card 1 CSS - Login Screen */ navlogo img { height: 10px !important; width: 10px; } .card1 { box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2); transition: 0.3s; border-radius: 5px; background-color: white; position: relative; height: 300px; background-image: url("../Images/CWB_Dojo1.jpg"); color: white; font-size: 60px; opacity: .9; } .card1 img { background-size: contain; max-height: 150% !important; max-width: 100% !important; } .card1 p { margin-top: 100px; } .card2 { box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2); transition: 0.3s; border-radius: 5px; padding: 10px; background-color: #979797; } .card2:hover { box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2); } .container { padding: 2px 16px; } /* Form Input Color*/ .form-control:focus { border-color: #0d3500; box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgb(25 255 0 / 60%); } /* Sticky footer styles -------------------------------------------------- */ html { position: relative; min-height: 100%; } body { /* Margin bottom by footer height */ margin-bottom: 80px; } .footer { position: absolute; bottom: 0; width: 100%; white-space: nowrap; } .studenttable { width: 98%; font-size: 13pt; } .studenttable th { background-color: #3c3c3c; color: white; font-size: 10pt; padding: 0; text-indent: 10px; } .studenttable td { padding: 8px; background-color: #CBD2CF; border: 2px solid #7f9b89; } .studenttable tr td { padding: 10px !important; background-color: #eaeaeaea; border: 1px solid #a3a3a3; line-height: 12px; min-width: 120px; } .studenttable tr td a { color: #313131; } .studenttable tbody tr:hover { background-color: black !important; } /* Delete student css */ .deletestudent_table dl { margin-left: 18%; } .deletestudent_table dl dd { background-color: #e7e7e7 !important; max-width: 500px; color: black; } .deletestudent_table h4 { margin-left: 50%; font-size: 25pt; } /* Search Bar CSS */ .topnav { overflow: hidden; background-color: #ededed00; padding: 10px; margin-right: 17px; } .topnav a { float: left; display: block; color: black; text-align: center; padding: 14px 16px; text-decoration: none; font-size: 17px; } .topnav a:hover { background-color: #ddd; color: black; } .topnav a.active { background-color: #2196F3; color: white; } .topnav .search-container { float: right; } .topnav input[type=text] { padding: 6px; margin-top: 8px; font-size: 17px; border: none; margin-right: -8px; } .topnav .search-container button { float: right; padding: 6px 10px; margin-top: 8px; margin-right: 16px; background: #ddd; font-size: 17px; border: none; cursor: pointer; } .topnav .search-container button:hover { background: #ccc; } @media screen and (max-width: 600px) { .topnav .search-container { float: none; } .topnav a, .topnav input[type=text], .topnav .search-container button { float: none; display: block; text-align: left; width: 100%; margin: 0; padding: 14px; } .topnav input[type=text] { border: 1px solid #ccc; } } /* Student Add Button */ .button { display: inline-flex; height: 40px; width: 150px; border: 2px solid #BFC0C0; margin: 20px 20px 20px 20px; color: #BFC0C0; text-transform: uppercase; text-decoration: none; font-size: .8em; letter-spacing: 1.5px; align-items: center; justify-content: center; overflow: hidden; } #DisciplineAdd_Btn { position: absolute; overflow: hidden; cursor: pointer; margin-top: 1.3em; margin-left: -1px; background-color: #424242; } #button-5 { position: absolute; overflow: hidden; cursor: pointer; margin-top: 1.3em; margin-left: -1px; background-color: #424242; } #button-5 #buttonani { position: relative; transition: all .45s ease-Out; color: white; } #translate { transform: rotate(50deg); width: 100%; height: 250%; left: -200px; top: -30px; background: #40ff2c; position: absolute; transition: all .2s ease-Out; } #button-5:hover #translate { left: 0; } #button-5:hover #buttonani { color: #2D3142; } /* Edit Button */ #editbtn { position: absolute; overflow: hidden; cursor: pointer; margin-top: -3.5em; margin-left: -1px; background-color: #424242; } #editbtn #buttonani { position: relative; transition: all .45s ease-Out; color: white; } #editbtn:hover #translate { left: 0; } #editbtn:hover #buttonani { color: #2D3142; } #paymentbtn { position: absolute; overflow: hidden; cursor: pointer; margin-top: -3.5em; margin-left: 150px; background-color: #424242; } #paymentbtn #buttonani { position: relative; transition: all .45s ease-Out; color: white; } #paymentbtn:hover #translate { left: 0; } #paymentbtn:hover #buttonani { color: #2D3142; } #discbtn { position: absolute; overflow: hidden; cursor: pointer; margin-top: -3.5em; margin-left: 300px; background-color: #424242; } #discbtn #buttonani { position: relative; transition: all .45s ease-Out; color: white; } #discbtn:hover #translate { left: 0; } #discbtn:hover #buttonani { color: #2D3142; } #guardianbtn { position: absolute; overflow: hidden; cursor: pointer; margin-top: -3.5em; margin-left: 750px; background-color: #424242; } #guardianbtn #buttonani { position: relative; transition: all .45s ease-Out; color: white; } #guardianbtn:hover #translate { left: 0; } #guardianbtn:hover #buttonani { color: #2D3142; } #historybtn { position: absolute; overflow: hidden; cursor: pointer; margin-top: -3.5em; margin-left: 450px; background-color: #424242; } #historybtn #buttonani { position: relative; transition: all .45s ease-Out; color: white; } #historybtn:hover #translate { left: 0; } #historybtn:hover #buttonani { color: #2D3142; } #documentsbtn { position: absolute; overflow: hidden; cursor: pointer; margin-top: -3.5em; margin-left: 600px; background-color: #424242; } #documentsbtn #buttonani { position: relative; transition: all .45s ease-Out; color: white; } #documentsbtn:hover #translate { left: 0; } #documentsbtn:hover #buttonani { color: #2D3142; } #editbtn_sel { position: relative; cursor: pointer; margin-top: 1.8em; margin-left: -1px; background-color: #393938; color: white; } /* End of add button */ .navstyle1 { color: green; background-color: #24e324; min-width: 98%; position: absolute; height: 4px; margin-top: 55px; } .navstyle2 { color: green; background-color: #304b30; min-width: 98%; position: absolute; height: 4px; margin-top: 70px; } .navstyle3 { color: green; background-color: #24e324; min-width: 96.5%; position: absolute; height: 4px; margin-top: -110px; } .navstyle4 { color: green; background-color: #304b30; min-width: 96.5%; position: absolute; height: 4px; margin-top: -102px; } .btnsel_line { color: green; background-color: #00ff00; min-width: 96.5%; position: absolute; height: 4px; margin-top: 26px; } .navstyle3 { color: green; background-color: #24e324; width: 100%; position: absolute; height: 4px; margin-top: -110px; } .navstyle4 { color: green; background-color: #304b30; width: 100%; position: absolute; height: 4px; margin-top: -102px; } /*Student edit menu */ #editstudent_tabmenu ul li { padding: 2px !important; margin-top: 45px; } /* Student Details */ #studentdetails_table dl { display: flex; flex-flow: row wrap; font-size: 13pt; font-family: arial; } #studentdetails_table dt { flex-basis: 20%; } #studentdetails_table dl dd { background-color: #d8d8d8; font-size: 13pt; color: #393939; flex-basis: 70%; flex-grow: 1; } td > a { line-height: 30px; } /* Calendar */ #calendar { Width: 100%; margin-top: 20px; } #calmenu { margin-top: -40px; } .keypressWeeks { border: 1px solid #a3a3a3; } .joelTable th { background-color: #3c3c3c; font-size: 10pt; padding: 0; text-indent: 10px; } .joelTable td { padding: 8px; background-color: #CBD2CF; border: 2px solid #7f9b89; min-width: 90px; } .joelTable tr td { padding: 10px !important; background-color: #eaeaeaea; border: 1px solid #a3a3a3; line-height: 12px; } .joelTable tr td a { color: #313131; } .joelTable tbody tr:hover { background-color: black !important; } /* Mobile Media Queries */ @media only screen and (max-width: 650px) { .navstyle1 { display: none; } .navstyle2 { display: none; } .card1 { max-width: 90%; margin-left: -15px; } .card2 { max-width: 90%; margin-left: -15px; } .topnav a, .topnav input[type=text], .topnav .search-container button { display: none; } .nav { display: none; } #button-5 { margin-top: -30px; } body { margin: 0; } .priority-5 { display: none; } .joelTable-light tbody + tbody, .joelTable-light td, .joelTable-light th, .joelTable-light thead th { width: 30%; } #dashboardButton { display: none; } .footer { bottom: 0; height: 1em; left: 0; position: absolute; //changed to relative from fixed also works if position is not there font-size: small; width: 100%; } .moreInfoWatermark { display: none; } .form-inline .form-control { display: none; } .joelTable td { min-width: 0px; empty-cells: hide !important; } .btn-group > .btn-group:not(:last-child) > .btn, .btn-group > .btn:not(:last-child):not(.dropdown-toggle) { display: none; } .btn-group > .btn-group:not(:first-child) > .btn, .btn-group > .btn:not(:first-child) { display: none; } } /* Phone Landscape */ @media screen and (min-width: 650px) and (max-width: 1200px) and (orientation: landscape) { .joelTable td { min-width: 0px; } .navstyle1 { display: none; } .navstyle2 { display: none; } .card1 { max-width: 90%; margin-left: -15px; } .card2 { max-width: 90%; margin-left: -15px; } body { margin: 0; } .priority-5 { display: none; } .joelTable-light tbody + tbody, .joelTable-light td, .joelTable-light th, .joelTable-light thead th { width: 30%; } #dashboardButton { display: none; } .nav-tabs { align-items: flex-start; border-bottom: 0px solid #dee2e6; } #documentsbtn { width: 80px; font-size: xx-small; } #editbtn { width: 80px; font-size: xx-small; } #paymentbtn { width: 80px; font-size: xx-small; } #discbtn { width: 80px; font-size: xx-small; } #historybtn { width: 80px; font-size: xx-small; } #guardianbtn { width: 80px; font-size: xx-small; } .nav-tabs #paymentbtn { margin-left: 12%; } .nav-tabs #discbtn { margin-left: 24%; } .nav-tabs #historybtn { margin-left: 36%; } .nav-tabs #documentsbtn { margin-left: 48%; } .nav-tabs #guardianbtn { margin-left: 60%; } .col-md-10 { margin-left: auto; } .footer { bottom: 0; height: 1em; left: 0; position: absolute; //changed to relative from fixed also works if position is not there font-size: small; width: 100%; } .moreInfoWatermark { display: none; } .form-inline .form-control { display: inline-flex; width: 70px; } } /* iPad Media Queries */ @media screen and (min-width: 901px) and (max-width: 1100px) and (orientation: landscape) { .navstyle1 { margin-left: -.68%; } .navstyle2 { margin-left: -.68%; } .bg-white { display: inline-flex; min-width: -webkit-fill-available; } .footer { bottom: 0; height: 1em; left: 0; position: absolute; //changed to relative from fixed also works if position is not there font-size: small; width: 100%; } .container { max-width: 720px; } .joelTable tr td { min-width: 100px; } } @media screen and (min-width: 660px) and (max-width: 1100px) and (orientation: portrait) { .joelTable th { background-color: #3c3c3c; color: white; font-size: 10pt; padding: 0; text-indent: 10px; } .joelTable td { padding: 8px; background-color: #CBD2CF; border: 2px solid #7f9b89; min-width: 90px; } .joelTable tr td { padding: 10px !important; background-color: #eaeaeaea; border: 1px solid #a3a3a3; line-height: 12px; } .joelTable tr td a { color: #313131; } .joelTable tbody tr:hover { background-color: black !important; } .form-inline .form-control { display: inline-flex; width: fit-content; } .navstyle1 { display: none; } .navstyle2 { display: none; } .card1 { max-width: 90%; margin-left: -15px; } .card2 { max-width: 90%; margin-left: -15px; } body { margin: 0; } .priority-5 { display: none; } .joelTable-light tbody + tbody, .joelTable-light td, .joelTable-light th, .joelTable-light thead th { width: 30%; } #dashboardButton { display: none; } .nav-tabs { align-items: flex-start; border-bottom: 0px solid #dee2e6; } #documentsbtn { width: 80px; font-size: xx-small; } #editbtn { width: 80px; font-size: xx-small; } #paymentbtn { width: 80px; font-size: xx-small; } #discbtn { width: 80px; font-size: xx-small; } #historybtn { width: 80px; font-size: xx-small; } #guardianbtn { width: 80px; font-size: xx-small; } .nav-tabs #paymentbtn { margin-left: 12%; } .nav-tabs #discbtn { margin-left: 24%; } .nav-tabs #historybtn { margin-left: 36%; } .nav-tabs #documentsbtn { margin-left: 48%; } .nav-tabs #guardianbtn { margin-left: 60%; } .col-md-10 { margin-left: auto; } .footer { bottom: 0; height: 1em; left: 0; position: absolute; //changed to relative from fixed also works if position is not there font-size: small; width: 100%; } .container { max-width: 720px; } .form-inline .form-control { display: inline-flex; width: 80px; } } /* Attachment Table */ .attachmenttable tr td { padding: 15px; } .attachmenttable tbody { display: inline-block; /* whatever, just reset table layout display to go further */ } .attachmenttable tr { display: flex; flex-wrap: wrap; /* allow to wrap on multiple rows */ } .attachmenttable td { display: block; flex: initial; /* to evenly distributs flex elements */ align-items: flex-start; padding: 10px; } #Avatar.form-control.rounded-0 { background-color: #a000; border: 0; } .dashboardCard { min-height: 150px; margin-bottom: 20px; } a { color: #f3f3f3; } .navActive { font-weight: bolder; } /* Diable edge eyeball */ input[type=password]::-ms-reveal, input[type=password]::-ms-clear { display: none; } /* Resolve inconsistencies in appearance */ select, input { border-radius: 0 !important; } .password { width: 100%; padding-right: 52px; } .eyeBallContainer { position: absolute; right: 1px; top: 1px; bottom: 1px; z-index: 99; opacity: .7; }
CWBFightClub/CWBFightClub/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. */ body { background-color: #c6c6c6; } .navbar-nav { font-size: 18pt; } .navbar-brand { margin-left: 20px; } /* Provide sufficient contrast against white background */ .btn-primary { color: #fff !important; background-color: #424242; border-color: black; border-radius: 0; } .btn-primary:hover { color: rgb(200, 200, 200) !important; background-color: black; border-color: gray; cursor: pointer; } .btn-primary:active, .btn-primary:focus { color: white !important; background-color: gray !important; border-color: black !important; } /* The following sidenav properties accessed at - https://www.w3schools.com/howto/howto_js_sidenav.asp */ /* The side navigation menu */ .sidenav { height: 100%; /* 100% Full-height */ width: 0; /* 0 width - change this with JavaScript */ position: absolute; /* stay full on the side */ z-index: 1; /* Stay on top */ left: 0; background-color: #111; /* Black*/ overflow-x: hidden; /* Disable horizontal scroll */ padding-top: 60px; /* Place content 60px from the top */ transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */ } /* The navigation menu links */ .sidenav a { padding: 8px 8px 8px 32px; text-decoration: none; font-size: 25px; color: #818181; display: block; transition: 0.3s; } /* When you mouse over the navigation links, change their color */ .sidenav a:hover { color: #f1f1f1; } /* Position and style the close button (top right corner) */ .sidenav .closebtn { position: absolute; top: 0; right: 25px; font-size: 36px; margin-left: 50px; } /* Style page content - use this if you want to push the page content to the right when you open the side navigation */ #main { transition: margin-left .5s; padding: 20px; } #dashboardButton { left: auto; margin-bottom: 10px; font-weight: bold; cursor: pointer; } /* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */ @media screen and (max-height: 450px) { .sidenav { padding-top: 15px; } .sidenav a { font-size: 18px; } } /* Enrollment styles -------------------------------------------------- */ .enrollmentCard { margin-bottom: 10px; position: relative; } .enrollmentCard .card-footer { padding: 0 2px 2px 2px; font-size: .8em; font-style: oblique; } .moreInfoWatermark{ position: absolute; top: 100px; left: 100px; font-size: 2em; color: rgba(0, 0, 0, .2); } .editEnrollmentButton { position: absolute; top: 2px; right: 2px; z-index: 100; padding: 1px 5px; } .inActiveCornerLabel { position: absolute; top: 2px; left: 2px; padding: 1px 5px; opacity: .6; } .btn-outline-danger:hover { color: white !important; } .btn-outline-secondary:hover { color: white !important; } .btn-outline-success:hover { color: white !important; } /* Payment styles -------------------------------------------------- */ .deletePaymentButton { position: absolute; top: 2px; right: 2px; z-index: 100; padding: 1px 5px; background-color: white; } .deletePaymentButton:hover { background-color: red; color: white; } /* Sticky footer styles -------------------------------------------------- */ html { font-size: 14px; font-family: 'Times New Roman'; } @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; } /* Card 1 CSS - Login Screen */ navlogo img { height: 10px !important; width: 10px; } .card1 { box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2); transition: 0.3s; border-radius: 5px; background-color: white; position: relative; height: 300px; background-image: url("../Images/CWB_Dojo1.jpg"); color: white; font-size: 60px; opacity: .9; } .card1 img { background-size: contain; max-height: 150% !important; max-width: 100% !important; } .card1 p { margin-top: 100px; } .card2 { box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2); transition: 0.3s; border-radius: 5px; padding: 10px; background-color: #979797; } .card2:hover { box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2); } .container { padding: 2px 16px; } /* Form Input Color*/ .form-control:focus { border-color: #0d3500; box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgb(25 255 0 / 60%); } /* Sticky footer styles -------------------------------------------------- */ html { position: relative; min-height: 100%; } body { /* Margin bottom by footer height */ margin-bottom: 80px; } .footer { position: absolute; bottom: 0; width: 100%; white-space: nowrap; } .studenttable { width: 98%; font-size: 13pt; } .studenttable th { background-color: #3c3c3c; color: white; font-size: 10pt; padding: 0; text-indent: 10px; } .studenttable td { padding: 8px; background-color: #CBD2CF; border: 2px solid #7f9b89; } .studenttable tr td { padding: 10px !important; background-color: #eaeaeaea; border: 1px solid #a3a3a3; line-height: 12px; min-width: 120px; } .studenttable tr td a { color: #313131; } .studenttable tbody tr:hover { background-color: black !important; } /* Delete student css */ .deletestudent_table dl { margin-left: 18%; } .deletestudent_table dl dd { background-color: #e7e7e7 !important; max-width: 500px; color: black; } .deletestudent_table h4 { margin-left: 50%; font-size: 25pt; } /* Search Bar CSS */ .topnav { overflow: hidden; background-color: #ededed00; padding: 10px; margin-right: 17px; } .topnav a { float: left; display: block; color: black; text-align: center; padding: 14px 16px; text-decoration: none; font-size: 17px; } .topnav a:hover { background-color: #ddd; color: black; } .topnav a.active { background-color: #2196F3; color: white; } .topnav .search-container { float: right; } .topnav input[type=text] { padding: 6px; margin-top: 8px; font-size: 17px; border: none; margin-right: -8px; } .topnav .search-container button { float: right; padding: 6px 10px; margin-top: 8px; margin-right: 16px; background: #ddd; font-size: 17px; border: none; cursor: pointer; } .topnav .search-container button:hover { background: #ccc; } @media screen and (max-width: 600px) { .topnav .search-container { float: none; } .topnav a, .topnav input[type=text], .topnav .search-container button { float: none; display: block; text-align: left; width: 100%; margin: 0; padding: 14px; } .topnav input[type=text] { border: 1px solid #ccc; } } /* Student Add Button */ .button { display: inline-flex; height: 40px; width: 150px; border: 2px solid #BFC0C0; margin: 20px 20px 20px 20px; color: #BFC0C0; text-transform: uppercase; text-decoration: none; font-size: .8em; letter-spacing: 1.5px; align-items: center; justify-content: center; overflow: hidden; } #DisciplineAdd_Btn { position: absolute; overflow: hidden; cursor: pointer; margin-top: 1.3em; margin-left: -1px; background-color: #424242; } #button-5 { position: absolute; overflow: hidden; cursor: pointer; margin-top: 1.3em; margin-left: -1px; background-color: #424242; } #button-5 #buttonani { position: relative; transition: all .45s ease-Out; color: white; } #translate { transform: rotate(50deg); width: 100%; height: 250%; left: -200px; top: -30px; background: #40ff2c; position: absolute; transition: all .2s ease-Out; } #button-5:hover #translate { left: 0; } #button-5:hover #buttonani { color: #2D3142; } /* Edit Button */ #editbtn { position: absolute; overflow: hidden; cursor: pointer; margin-top: -3.5em; margin-left: -1px; background-color: #424242; } #editbtn #buttonani { position: relative; transition: all .45s ease-Out; color: white; } #editbtn:hover #translate { left: 0; } #editbtn:hover #buttonani { color: #2D3142; } #paymentbtn { position: absolute; overflow: hidden; cursor: pointer; margin-top: -3.5em; margin-left: 150px; background-color: #424242; } #paymentbtn #buttonani { position: relative; transition: all .45s ease-Out; color: white; } #paymentbtn:hover #translate { left: 0; } #paymentbtn:hover #buttonani { color: #2D3142; } #discbtn { position: absolute; overflow: hidden; cursor: pointer; margin-top: -3.5em; margin-left: 300px; background-color: #424242; } #discbtn #buttonani { position: relative; transition: all .45s ease-Out; color: white; } #discbtn:hover #translate { left: 0; } #discbtn:hover #buttonani { color: #2D3142; } #guardianbtn { position: absolute; overflow: hidden; cursor: pointer; margin-top: -3.5em; margin-left: 750px; background-color: #424242; } #guardianbtn #buttonani { position: relative; transition: all .45s ease-Out; color: white; } #guardianbtn:hover #translate { left: 0; } #guardianbtn:hover #buttonani { color: #2D3142; } #historybtn { position: absolute; overflow: hidden; cursor: pointer; margin-top: -3.5em; margin-left: 450px; background-color: #424242; } #historybtn #buttonani { position: relative; transition: all .45s ease-Out; color: white; } #historybtn:hover #translate { left: 0; } #historybtn:hover #buttonani { color: #2D3142; } #documentsbtn { position: absolute; overflow: hidden; cursor: pointer; margin-top: -3.5em; margin-left: 600px; background-color: #424242; } #documentsbtn #buttonani { position: relative; transition: all .45s ease-Out; color: white; } #documentsbtn:hover #translate { left: 0; } #documentsbtn:hover #buttonani { color: #2D3142; } #editbtn_sel { position: relative; cursor: pointer; margin-top: 1.8em; margin-left: -1px; background-color: #393938; color: white; } /* End of add button */ .navstyle1 { color: green; background-color: #24e324; min-width: 98%; position: absolute; height: 4px; margin-top: 55px; } .navstyle2 { color: green; background-color: #304b30; min-width: 98%; position: absolute; height: 4px; margin-top: 70px; } .navstyle3 { color: green; background-color: #24e324; min-width: 96.5%; position: absolute; height: 4px; margin-top: -110px; } .navstyle4 { color: green; background-color: #304b30; min-width: 96.5%; position: absolute; height: 4px; margin-top: -102px; } .btnsel_line { color: green; background-color: #00ff00; min-width: 96.5%; position: absolute; height: 4px; margin-top: 26px; } .navstyle3 { color: green; background-color: #24e324; width: 100%; position: absolute; height: 4px; margin-top: -110px; } .navstyle4 { color: green; background-color: #304b30; width: 100%; position: absolute; height: 4px; margin-top: -102px; } /*Student edit menu */ #editstudent_tabmenu ul li { padding: 2px !important; margin-top: 45px; } /* Student Details */ #studentdetails_table dl { display: flex; flex-flow: row wrap; font-size: 13pt; font-family: arial; } #studentdetails_table dt { flex-basis: 20%; } #studentdetails_table dl dd { background-color: #d8d8d8; font-size: 13pt; color: #393939; flex-basis: 70%; flex-grow: 1; } td > a { line-height: 30px; } /* Calendar */ #calendar { Width: 100%; margin-top: 20px; } #calmenu { margin-top: -40px; } .keypressWeeks { border: 1px solid #a3a3a3; } .joelTable th { background-color: #3c3c3c; font-size: 10pt; padding: 0; text-indent: 10px; } .joelTable td { padding: 8px; background-color: #CBD2CF; border: 2px solid #7f9b89; min-width: 90px; } .joelTable tr td { padding: 10px !important; background-color: #eaeaeaea; border: 1px solid #a3a3a3; line-height: 12px; } .joelTable tr td a { color: #313131; } .joelTable tbody tr:hover { background-color: black !important; } /* Mobile Media Queries */ @media only screen and (max-width: 650px) { .navstyle1 { display: none; } .navstyle2 { display: none; } .card1 { max-width: 90%; margin-left: -15px; } .card2 { max-width: 90%; margin-left: -15px; } .topnav a, .topnav input[type=text], .topnav .search-container button { display: none; } .nav { display: none; } #button-5 { margin-top: -30px; } body { margin: 0; } .priority-5 { display: none; } .joelTable-light tbody + tbody, .joelTable-light td, .joelTable-light th, .joelTable-light thead th { width: 30%; } #dashboardButton { display: none; } .footer { bottom: 0; height: 1em; left: 0; position: absolute; //changed to relative from fixed also works if position is not there font-size: small; width: 100%; } .moreInfoWatermark { display: none; } .form-inline .form-control { display: none; } .joelTable td { min-width: 0px; empty-cells: hide !important; } .btn-group > .btn-group:not(:last-child) > .btn, .btn-group > .btn:not(:last-child):not(.dropdown-toggle) { display: none; } .btn-group > .btn-group:not(:first-child) > .btn, .btn-group > .btn:not(:first-child) { display: none; } } /* Phone Landscape */ @media screen and (min-width: 650px) and (max-width: 1200px) and (orientation: landscape) { .joelTable td { min-width: 0px; } .navstyle1 { display: none; } .navstyle2 { display: none; } .card1 { max-width: 90%; margin-left: -15px; } .card2 { max-width: 90%; margin-left: -15px; } body { margin: 0; } .priority-5 { display: none; } .joelTable-light tbody + tbody, .joelTable-light td, .joelTable-light th, .joelTable-light thead th { width: 30%; } #dashboardButton { display: none; } .nav-tabs { align-items: flex-start; border-bottom: 0px solid #dee2e6; } #documentsbtn { width: 80px; font-size: xx-small; } #editbtn { width: 80px; font-size: xx-small; } #paymentbtn { width: 80px; font-size: xx-small; } #discbtn { width: 80px; font-size: xx-small; } #historybtn { width: 80px; font-size: xx-small; } #guardianbtn { width: 80px; font-size: xx-small; } .nav-tabs #paymentbtn { margin-left: 12%; } .nav-tabs #discbtn { margin-left: 24%; } .nav-tabs #historybtn { margin-left: 36%; } .nav-tabs #documentsbtn { margin-left: 48%; } .nav-tabs #guardianbtn { margin-left: 60%; } .col-md-10 { margin-left: auto; } .footer { bottom: 0; height: 1em; left: 0; position: absolute; //changed to relative from fixed also works if position is not there font-size: small; width: 100%; } .moreInfoWatermark { display: none; } .form-inline .form-control { display: inline-flex; width: 70px; } } /* iPad Media Queries */ @media screen and (min-width: 901px) and (max-width: 1100px) and (orientation: landscape) { .navstyle1 { margin-left: -.68%; } .navstyle2 { margin-left: -.68%; } .bg-white { display: inline-flex; min-width: -webkit-fill-available; } .footer { bottom: 0; height: 1em; left: 0; position: absolute; //changed to relative from fixed also works if position is not there font-size: small; width: 100%; } .container { max-width: 720px; } .joelTable tr td { min-width: 100px; } } @media screen and (min-width: 660px) and (max-width: 1100px) and (orientation: portrait) { .joelTable th { background-color: #3c3c3c; color: white; font-size: 10pt; padding: 0; text-indent: 10px; } .joelTable td { padding: 8px; background-color: #CBD2CF; border: 2px solid #7f9b89; min-width: 90px; } .joelTable tr td { padding: 10px !important; background-color: #eaeaeaea; border: 1px solid #a3a3a3; line-height: 12px; } .joelTable tr td a { color: #313131; } .joelTable tbody tr:hover { background-color: black !important; } .form-inline .form-control { display: inline-flex; width: fit-content; } .navstyle1 { display: none; } .navstyle2 { display: none; } .card1 { max-width: 90%; margin-left: -15px; } .card2 { max-width: 90%; margin-left: -15px; } body { margin: 0; } .priority-5 { display: none; } .joelTable-light tbody + tbody, .joelTable-light td, .joelTable-light th, .joelTable-light thead th { width: 30%; } #dashboardButton { display: none; } .nav-tabs { align-items: flex-start; border-bottom: 0px solid #dee2e6; } #documentsbtn { width: 80px; font-size: xx-small; } #editbtn { width: 80px; font-size: xx-small; } #paymentbtn { width: 80px; font-size: xx-small; } #discbtn { width: 80px; font-size: xx-small; } #historybtn { width: 80px; font-size: xx-small; } #guardianbtn { width: 80px; font-size: xx-small; } .nav-tabs #paymentbtn { margin-left: 12%; } .nav-tabs #discbtn { margin-left: 24%; } .nav-tabs #historybtn { margin-left: 36%; } .nav-tabs #documentsbtn { margin-left: 48%; } .nav-tabs #guardianbtn { margin-left: 60%; } .col-md-10 { margin-left: auto; } .footer { bottom: 0; height: 1em; left: 0; position: absolute; //changed to relative from fixed also works if position is not there font-size: small; width: 100%; } .container { max-width: 720px; } .form-inline .form-control { display: inline-flex; width: 80px; } } /* Attachment Table */ .attachmenttable tr td { padding: 15px; } .attachmenttable tbody { display: inline-block; /* whatever, just reset table layout display to go further */ } .attachmenttable tr { display: flex; flex-wrap: wrap; /* allow to wrap on multiple rows */ } .attachmenttable td { display: block; flex: initial; /* to evenly distributs flex elements */ align-items: flex-start; padding: 10px; } #Avatar.form-control.rounded-0 { background-color: #a000; border: 0; } .dashboardCard { min-height: 150px; margin-bottom: 20px; } a { color: #f3f3f3; } .navActive { font-weight: bolder; } /* Diable edge eyeball */ input[type=password]::-ms-reveal, input[type=password]::-ms-clear { display: none; } /* Resolve inconsistencies in appearance */ select, input { border-radius: 0 !important; } .password { width: 100%; padding-right: 52px; } .eyeBallContainer { position: absolute; right: 1px; top: 1px; bottom: 1px; z-index: 99; opacity: .7; }
0.612889
0.105995
.radio-custom, .checkbox-custom{margin-left: -20px} .radio-custom input[type=radio], .checkbox-custom input[type=checkbox]{position: absolute;left: -9999em;} .radio-custom > i:before, .checkbox-custom > i:before{font-size: 1.333em;vertical-align: -10%;margin-left:0;margin-right: 4px;color: #ddd} .radio-custom > i.checked:before, .checkbox-custom > i.checked:before{color: #13c4a5} .radio-custom > i.disabled:before, .checkbox-custom > i.disabled:before{color: #eee} .radio-custom > i.checked:before{content: '\f111';} .checkbox-custom > i.checked:before{content: '\f046';} .spinner .input-group-btn{display: table-cell;min-width: 25px} .spinner .input-group-btn .btn{width:25px;padding: 0;font-size: 12px;margin-left: -1px;line-height: 1;height: 19px;overflow: hidden;border-radius: 0 4px 0 0 !important;} .spinner .input-group-btn .btn+.btn{height: 20px;border-radius: 0 0 4px 0 !important;} .spinner .input-sm + .input-group-btn .btn{font-size: 10px;height: 15px;} .spinner .input-sm + .input-group-btn .btn+.btn{height: 16px;} .select{position: relative;display: inline-block;} .pillbox{border: 1px solid #e0e4e8;padding: 10px;border-radius: 4px} .pillbox ul{margin: 0;list-style: none;padding:0;} .pillbox li{display: inline-block;font-size:12px;color: #fff;;padding: 6px 8px;cursor: pointer;margin:2px;float: left;} .pillbox li:after{content: " x";font-size: 11px;font-weight: normal;opacity: 0.6;filter: alpha(opacity=60);} .pillbox li:hover:after{opacity: 0.9;filter: alpha(opacity=90);} .pillbox input{border:none;outline:0;min-height: 24px;width: auto;display: inline-block;box-shadow: none;background: transparent;} .datagrid tfoot th{font-weight: normal;} .datagrid tfoot .grid-pager .combobox{max-width: 80px;position: relative;top: 10px} .datagrid tfoot .grid-pager .combobox input{width: 40px} .datagrid tfoot .dropdown-menu{min-width: 60px;text-align: left;} .datagrid tbody{height: 256px;overflow:hidden;overflow-y:auto } #selectTextSize {position: absolute;top: 0;display: none;visibility: hidden;} .wizard { font-size: 14px; padding: 0; background-color: #f7f8f9; border-bottom: 1px solid #e0e4e8; } .wizard .badge{ margin-right: 4px; } .wizard .badge-info{ background-color: #5191d1; } .wizard .badge-success{ background-color: #3fcf7f; } .wizard ul li.complete, .wizard ul li.complete:hover{ cursor: pointer; background: #f1f5f9; } .wizard ul li.complete:after{ border-left-color:#f1f5f9; } .wizard ul { padding: 0; margin: 0; list-style: none outside none; } .wizard ul li { position: relative; float: left; padding: 0 15px 0 25px; margin: 0; color: #999999; cursor: default; height: 40px; line-height: 40px; } .wizard.wizard-vertical{float: left;border-bottom: none} .wizard.wizard-vertical + .step-content{zoom:1;overflow: hidden;padding-left: 40px} .wizard.wizard-vertical ul li { position: relative; float: none; border-bottom: 1px solid #e0e4e8; padding-left: 15px; } .wizard.wizard-vertical ul li:last-child{} .wizard ul li:first-child{ padding-left: 15px; border-radius: 4px 0 0 0; } .wizard .actions{ float: right; margin: 8px 10px 0 0; } .wizard ul li:before, .wizard ul li:after{ content: ""; position: absolute; top: -1px; bottom: -1px; right: -10px; border: 20px solid transparent; border-right: 0; border-left: 10px solid #e0e4e8; z-index: 1; } .wizard ul li:after{ right: -9px; border-left-color:#f7f8f9; z-index: 2; } .wizard ul li.active { color: #3a87ad; background: #fff; } .wizard ul li.active:after{ border-left-color: #fff; } .step-content { padding: 15px; } .step-content .step-pane { display: none; } .step-content .step-pane.active { display: inherit; } /*! * Slider for Bootstrap */ .slider { display: inline-block; vertical-align: middle; position: relative; } .slider.slider-horizontal { width: 210px; height: 20px; } .slider.slider-horizontal .slider-track { height: 10px; width: 100%; margin-top: -5px; top: 50%; left: 0; } .slider.slider-horizontal .slider-selection { height: 100%; top: 0; bottom: 0; } .slider.slider-horizontal .slider-handle { margin-left: -10px; margin-top: -5px; } .slider.slider-horizontal .slider-handle.triangle { border-width: 0 10px 10px 10px; width: 0; height: 0; border-bottom-color: #0480be; margin-top: 0; } .slider.slider-vertical { height: 210px; width: 20px; } .slider.slider-vertical .slider-track { width: 10px; height: 100%; margin-left: -5px; left: 50%; top: 0; } .slider.slider-vertical .slider-selection { width: 100%; left: 0; top: 0; bottom: 0; } .slider.slider-vertical .slider-handle { margin-left: -5px; margin-top: -10px; } .slider.slider-vertical .slider-handle.triangle { border-width: 10px 0 10px 10px; width: 1px; height: 1px; border-left-color: #0480be; margin-left: 0; } .slider input { display: none; } .slider .tooltip-inner { white-space: nowrap; } .slider-track { position: absolute; cursor: pointer; background-color: #e0e4e8; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; } .slider-selection { position: absolute; background-color: #f3f4f5; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; } .slider-handle { position: absolute; width: 20px; height: 20px; background-color: #13c4a5; opacity: 0.8; border: 0px solid transparent; } .slider-handle.round { -webkit-border-radius: 20px; -moz-border-radius: 20px; border-radius: 20px; } .slider-handle.triangle { background: transparent none; } /*! * Datepicker for Bootstrap * * Copyright 2012 <NAME> * Licensed under the Apache License v2.0 * http://www.apache.org/licenses/LICENSE-2.0 * */ .datepicker { top: 0; left: 0; padding: 4px; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; z-index: 1010; /*.dow { border-top: 1px solid #ddd !important; }*/ } .datepicker:before { content: ''; display: inline-block; border-left: 7px solid transparent; border-right: 7px solid transparent; border-bottom: 7px solid #ccc; border-bottom-color: rgba(0, 0, 0, 0.2); position: absolute; top: -7px; left: 6px; } .datepicker:after { content: ''; display: inline-block; border-left: 6px solid transparent; border-right: 6px solid transparent; border-bottom: 6px solid #ffffff; position: absolute; top: -6px; left: 7px; } .datepicker > div { display: none; } .datepicker table { width: 100%; margin: 0; } .datepicker td, .datepicker th { text-align: center; width: 20px; height: 20px; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; } .datepicker td.day:hover { background: #eeeeee; cursor: pointer; } .datepicker td.day.disabled { color: #eeeeee; } .datepicker td.old, .datepicker td.new { color: #ccc; } .datepicker td.active, .datepicker td.active:hover { color: #ffffff; background-color: #13c4a5; color: #fff; } .datepicker td.active:hover, .datepicker td.active:hover:hover, .datepicker td.active:focus, .datepicker td.active:hover:focus, .datepicker td.active:active, .datepicker td.active:hover:active, .datepicker td.active.active, .datepicker td.active:hover.active, .datepicker td.active.disabled, .datepicker td.active:hover.disabled, .datepicker td.active[disabled], .datepicker td.active:hover[disabled] { color: #ffffff; background-color: #13c4a5; } .datepicker td span { display: block; width: 47px; height: 43px; line-height: 43px; float: left; margin: 2px; cursor: pointer; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; } .datepicker td span:hover { background: #eeeeee; } .datepicker td span.active { color: #ffffff; background-color: #13c4a5; } .datepicker td span.active:hover, .datepicker td span.active:focus, .datepicker td span.active:active, .datepicker td span.active.active, .datepicker td span.active.disabled, .datepicker td span.active[disabled] { color: #ffffff; background-color: #13c4a5; } .datepicker td span.old { color: #999999; } .datepicker th.switch { width: 145px; } .datepicker th.next, .datepicker th.prev { font-size: 21px; } .datepicker thead tr:first-child th { cursor: pointer; } .datepicker thead tr:first-child th:hover { background: #eeeeee; } .input-append.date .add-on i, .input-prepend.date .add-on i { display: block; cursor: pointer; width: 16px; height: 16px; } /*! * FullCalendar v1.6.1 Stylesheet * Docs & License: http://arshaw.com/fullcalendar/ * (c) 2013 <NAME> */ .fc { direction: ltr; text-align: left; } .fc table { border-collapse: collapse; border-spacing: 0; } html .fc, .fc table { font-size: 1em; } .fc td, .fc th { padding: 0; vertical-align: top; } /* Header ------------------------------------------------------------------------*/ .fc-header{background: #f7f8f9} .fc-header td { padding:12px 10px 0 10px; white-space: nowrap; } .fc-header-left { width: 25%; text-align: left; } .fc-header-center { text-align: center; } .fc-header-right { width: 25%; text-align: right; } .fc-header-title { display: inline-block; vertical-align: top; } .fc-header-title h2 { font-size: 16px; margin-top: 6px; margin-bottom: 0; white-space: nowrap; } .fc .fc-header-space { padding-left: 10px; } .fc-header .fc-button { margin-bottom: 1em; vertical-align: top; } /* buttons edges butting together */ .fc-header .fc-button { margin-right: -1px; } .fc-header .fc-corner-right, /* non-theme */ .fc-header .ui-corner-right { /* theme */ margin-right: 0; /* back to normal */ } /* button layering (for border precedence) */ .fc-header .fc-state-hover, .fc-header .ui-state-hover { z-index: 2; } .fc-header .fc-state-down { z-index: 3; } .fc-header .fc-state-active, .fc-header .ui-state-active { z-index: 4; } /* Content ------------------------------------------------------------------------*/ .fc-content { clear: both; } .fc-view { width: 100%; /* needed for view switching (when view is absolute) */ overflow: hidden; } /* Cell Styles ------------------------------------------------------------------------*/ .fc-widget-header, /* <th>, usually */ .fc-widget-content { /* <td>, usually */ border: 1px solid #ddd; } .fc-state-highlight { /* <td> today cell */ /* TODO: add .fc-today to <th> */ background: #fcf8e3; } .fc-cell-overlay { /* semi-transparent rectangle while dragging */ background: #bce8f1; opacity: .3; filter: alpha(opacity=30); /* for IE */ } /* Buttons ------------------------------------------------------------------------*/ .fc-button { position: relative; display: inline-block; padding: 0 .6em; overflow: hidden; height: 1.9em; line-height: 1.8em; white-space: nowrap; cursor: pointer; } .fc-state-default { /* non-theme */ border: 1px solid; } .fc-state-default.fc-corner-left { /* non-theme */ border-top-left-radius: 4px; border-bottom-left-radius: 4px; } .fc-state-default.fc-corner-right { /* non-theme */ border-top-right-radius: 4px; border-bottom-right-radius: 4px; } /* Our default prev/next buttons use HTML entities like &lsaquo; &rsaquo; &laquo; &raquo; and we'll try to make them look good cross-browser. */ .fc-text-arrow { margin: 0 .1em; font-size: 2em; line-height: 0.85; font-family: "Courier New", Courier, monospace; vertical-align: baseline; /* for IE7 */ } .fc-button-prev .fc-text-arrow, .fc-button-next .fc-text-arrow { /* for &lsaquo; &rsaquo; */ font-weight: bold; } /* icon (for jquery ui) */ .fc-button .fc-icon-wrap { position: relative; float: left; top: 50%; } .fc-button .ui-icon { position: relative; float: left; margin-top: -50%; *margin-top: 0; *top: -50%; } /* button states borrowed from twitter bootstrap (http://twitter.github.com/bootstrap/) */ .fc-state-default { background-color: #fff; border-color:#c3c6c9; color:#657483; box-shadow:inset 0 -2px 0 rgba(0,0,0,0.05); } .fc-state-hover, .fc-state-down, .fc-state-active, .fc-state-disabled { color: #333333; background-color: #f7f8f9; } .fc-state-hover { color: #333333; text-decoration: none; background-position: 0 -15px; -webkit-transition: background-position 0.1s linear; -moz-transition: background-position 0.1s linear; -o-transition: background-position 0.1s linear; transition: background-position 0.1s linear; } .fc-state-down, .fc-state-active { background-color: #f7f8f9; background-image: none; outline: 0; box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); } .fc-state-disabled { cursor: default; background-image: none; opacity: 0.65; filter: alpha(opacity=65); box-shadow: none; } /* Global Event Styles ------------------------------------------------------------------------*/ .fc-event { background-color: #5191d1; /* default BACKGROUND color */ color: #fff; /* default TEXT color */ font-size: .85em; cursor: default; padding: 4px 6px; -webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box; } a.fc-event { text-decoration: none; } a.fc-event, .fc-event-draggable { cursor: pointer; } .fc-rtl .fc-event { text-align: right; } .fc-event-inner { width: 100%; height: 100%; overflow: hidden; } .fc-event-time, .fc-event-title { padding: 0 1px; } .fc .ui-resizable-handle { display: block; position: absolute; z-index: 99999; overflow: hidden; /* hacky spaces (IE6/7) */ font-size: 300%; /* */ line-height: 50%; /* */ } /* Horizontal Events ------------------------------------------------------------------------*/ .fc-event-hori { border-width: 1px 0; margin-bottom: 1px; } .fc-ltr .fc-event-hori.fc-event-start, .fc-rtl .fc-event-hori.fc-event-end { border-left-width: 1px; border-top-left-radius: 3px; border-bottom-left-radius: 3px; } .fc-ltr .fc-event-hori.fc-event-end, .fc-rtl .fc-event-hori.fc-event-start { border-right-width: 1px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; } /* resizable */ .fc-event-hori .ui-resizable-e { top: 0 !important; /* importants override pre jquery ui 1.7 styles */ right: -3px !important; width: 7px !important; height: 100% !important; cursor: e-resize; } .fc-event-hori .ui-resizable-w { top: 0 !important; left: -3px !important; width: 7px !important; height: 100% !important; cursor: w-resize; } .fc-event-hori .ui-resizable-handle { _padding-bottom: 14px; /* IE6 had 0 height */ } /* Reusable Separate-border Table ------------------------------------------------------------*/ table.fc-border-separate { border-collapse: separate; } .fc-border-separate th, .fc-border-separate td { border-width: 1px 0 0 1px; } .fc-border-separate th.fc-last, .fc-border-separate td.fc-last { border-right-width: 1px; } .fc-border-separate tr.fc-last th, .fc-border-separate tr.fc-last td { border-bottom-width: 1px; } .fc-border-separate tbody tr.fc-first td, .fc-border-separate tbody tr.fc-first th { border-top-width: 0; } /* Month View, Basic Week View, Basic Day View ------------------------------------------------------------------------*/ .fc-grid th { text-align: center; } .fc .fc-week-number { width: 22px; text-align: center; } .fc .fc-week-number div { padding: 0 2px; } .fc-grid .fc-day-number { float: right; padding: 0 2px; } .fc-grid .fc-other-month .fc-day-number { opacity: 0.3; filter: alpha(opacity=30); /* for IE */ /* opacity with small font can sometimes look too faded might want to set the 'color' property instead making day-numbers bold also fixes the problem */ } .fc-grid .fc-day-content { clear: both; padding: 2px 2px 1px; /* distance between events and day edges */ } /* event styles */ .fc-grid .fc-event-time { font-weight: bold; } /* right-to-left */ .fc-rtl .fc-grid .fc-day-number { float: left; } .fc-rtl .fc-grid .fc-event-time { float: right; } /* Agenda Week View, Agenda Day View ------------------------------------------------------------------------*/ .fc-agenda table { border-collapse: separate; } .fc-agenda-days th { text-align: center; } .fc-agenda .fc-agenda-axis { width: 50px; padding: 0 4px; vertical-align: middle; text-align: right; white-space: nowrap; font-weight: normal; } .fc-agenda .fc-week-number { font-weight: bold; } .fc-agenda .fc-day-content { padding: 2px 2px 1px; } /* make axis border take precedence */ .fc-agenda-days .fc-agenda-axis { border-right-width: 1px; } .fc-agenda-days .fc-col0 { border-left-width: 0; } /* all-day area */ .fc-agenda-allday th { border-width: 0 1px; } .fc-agenda-allday .fc-day-content { min-height: 34px; /* TODO: doesnt work well in quirksmode */ _height: 34px; } /* divider (between all-day and slots) */ .fc-agenda-divider-inner { height: 2px; overflow: hidden; } .fc-widget-header .fc-agenda-divider-inner { background: #eee; } /* slot rows */ .fc-agenda-slots th { border-width: 1px 1px 0; } .fc-agenda-slots td { border-width: 1px 0 0; background: none; } .fc-agenda-slots td div { height: 20px; } .fc-agenda-slots tr.fc-slot0 th, .fc-agenda-slots tr.fc-slot0 td { border-top-width: 0; } .fc-agenda-slots tr.fc-minor th, .fc-agenda-slots tr.fc-minor td { border-top-style: dotted; } .fc-agenda-slots tr.fc-minor th.ui-widget-header { *border-top-style: solid; /* doesn't work with background in IE6/7 */ } /* Vertical Events ------------------------------------------------------------------------*/ .fc-event-vert { border-width: 0 1px; } .fc-event-vert.fc-event-start { border-top-width: 1px; border-top-left-radius: 3px; border-top-right-radius: 3px; } .fc-event-vert.fc-event-end { border-bottom-width: 1px; border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; } .fc-event-vert .fc-event-time { white-space: nowrap; font-size: 10px; } .fc-event-vert .fc-event-inner { position: relative; z-index: 2; } .fc-event-vert .fc-event-bg { /* makes the event lighter w/ a semi-transparent overlay */ position: absolute; z-index: 1; top: 0; left: 0; width: 100%; height: 100%; background: #fff; opacity: .25; filter: alpha(opacity=25); } .fc .ui-draggable-dragging .fc-event-bg, /* TODO: something nicer like .fc-opacity */ .fc-select-helper .fc-event-bg { display: none\9; /* for IE6/7/8. nested opacity filters while dragging don't work */ } /* resizable */ .fc-event-vert .ui-resizable-s { bottom: 0 !important; /* importants override pre jquery ui 1.7 styles */ width: 100% !important; height: 8px !important; overflow: hidden !important; line-height: 8px !important; font-size: 11px !important; font-family: monospace; text-align: center; cursor: s-resize; } .fc-agenda .ui-resizable-resizing { /* TODO: better selector */ _overflow: hidden; } /*parsely*/ .parsley-error-list{margin:0;padding: 0;list-style: none;margin-top: 6px;font-size: 12px} .parsley-error{border-color: #ff5f5f !important} /*datatable*/ .dataTables_wrapper{position: relative;} .dataTables_processing{ position: absolute; top: 50%; left: 50%; width: 250px; margin-left: -125px; margin-top: -15px; padding: 10px; border: 1px solid #ddd; text-align: center; color: #999; font-size: 14px; background-color: white; z-index: 1; } .dataTables_wrapper .table{ border: 1px solid #e0e4e8; border-width: 1px 0; } .dataTables_wrapper label{font-weight: normal;font-size: 12px;display: block;margin-bottom: 0} .dataTables_wrapper select, .dataTables_wrapper input{font-size:12px;height: 30px;padding: 5px 10px;border-radius: 3px;display: inline;border:1px solid #ccc;outline: 0} .dataTables_wrapper select{width: 75px;} .dataTables_wrapper input{width: 200px;} .dataTables_filter, .dataTables_paginate{float:right;} .dataTables_length, .dataTables_filter{padding: 15px;} .dataTables_info, .dataTables_paginate{padding: 15px;} .dataTables_paginate .paginate_button, .dataTables_paginate .paginate_active{cursor:pointer;outline:0;border:1px solid #dddddd;border-right-width:0;background: #fff;padding: 6px 10px} .dataTables_paginate.pagination-sm .paginate_button, .dataTables_paginate.pagination-sm .paginate_active{ padding: 3px 8px; } .dataTables_wrapper .paginate_active{background-color: #f5f5f5} .dataTables_wrapper .paginate_button_disabled{color: #ccc;background-color: #fafafa} .paginate_button.first{border-radius: 3px 0 0 3px;} .paginate_button.last{border-radius: 0 3px 3px 0;border-right-width:1px;} .dataTables_wrapper th{cursor: pointer;outline: 0} .dataTables_wrapper th:after{font-family: FontAwesome; color: #666;position: relative;float:right;font-weight: normal;} .dataTables_wrapper .sorting:after{content: "\f0dc";color: #ccc;} .dataTables_wrapper .sorting_asc:after{content: "\f0de";} .dataTables_wrapper .sorting_desc:after{content: "\f0dd";} /*Timeline*/ .timeline{ display: table; width: 100%; border-spacing: 0; table-layout: fixed; position: relative; border-collapse: collapse; } .timeline:before{ content: ""; width: 6px; margin-left: -4px; position: absolute; left: 50%; top: 0; bottom: 30px; background-color: #ddd; z-index: 0; } .timeline-item{display: table-row;} .timeline-caption{ display: table-cell; vertical-align: top; width: 50%; } .timeline-item:before, .timeline-item.alt:after{ content: ""; display: block; width: 50%; } .timeline-item.alt:before{display: none} .timeline-item .panel{padding: 15px} .timeline-date{position: absolute;width: 150px;left: -200px;top: 3px;text-align: right;} .timeline-icon{position: absolute;left: -41px;top: -2px;} .time-icon{width: 30px;height: 30px;display:inline-block !important;z-index: 10;border:2px solid #fff;line-height:26px;border-radius: 20px;text-align: center;background-color: #898989} .time-icon:before{font-size: 16px;color: #fff} .timeline-caption .panel{display: inline-block;position: relative;margin-left: 25px;position: relative;text-align: left;} .timeline-item.alt{text-align: right;} .timeline-item.alt .panel{margin-right: 25px;margin-left: 0} .timeline-item.alt .timeline-date{left: auto;right: -200px;text-align: left;} .timeline-item.alt .timeline-icon{left: auto;right: -41px;} .timeline-caption h5{margin:0} .timeline-caption h5 span{display: block;color: #999;margin-bottom: 4px;font-size: 12px} .active .timeline-caption h5 span{color: #fff} .timeline-item.active{display: table-caption;text-align: center;} .timeline-item.active:before{width: 1%} .active .timeline-caption{display: inline-block;width: auto;} .timeline-item.active .panel{margin-left: 0} .active .timeline-date, .active .timeline-icon{position: static;margin-bottom:10px;display: inline-block;width: auto;} .timeline-caption p{font-size: 12px;margin-bottom: 0;margin-top: 10px;} .timeline-footer{display: table-row;} .timeline-footer a{display: table-cell;text-align: right;} .timeline-footer .time-icon{margin-right: -15px;z-index: 5} .select2-container .select2-choice{height: 30px;line-height: 28px;border: 1px solid #ccc;border-radius: 2px} .select2-container .select2-choice div{background-color: transparent;background-image: none;border-left: none;} .select2-container .select2-choice div b{background:none;position: relative; } .select2-container .select2-choice div b:after{content: "\f0d7"; font-family: FontAwesome;color: #aaa;} .select2-dropdown-open .select2-choice div b:after{content: "\f0d8"} .select2-search input{background: #fff;} .select2-search{position: relative;} .select2-search:after{position:absolute;content: "\f002"; font-family: FontAwesome;color: #aaa;right: 5px;top:4px;width: 18px} .select2-drop.select2-drop-above .select2-search:after{top:8px;} .select2-container .select2-choice abbr{background: transparent;} .select2-container .select2-choice abbr:after{content: "\f00d"; font-family: FontAwesome;position: absolute;top: -7px;font-size: 11px;color: #aaa} .select2-results .select2-highlighted{background-color: #23d4b5} .select2-container-multi .select2-choices{border: 1px solid #ccc;border-radius: 3px;padding-top: 2px} .select2-container-multi .select2-choices .select2-search-choice{border: 1px solid #ccc} .select2-search-choice-close{background: transparent;} .select2-search-choice-close:after{content: "\f00d"; font-family: FontAwesome;font-size: 11px;color: #aaa;position: absolute;left: 2px;top: -1px} .gallery img{border-radius: 3px 3px 0 0;} .gallery .item{border-radius:3px;background-color: #fff;} .gallery .desc{padding: 20px;} .gallery .desc h4{margin-top: 0} .gallery .item-media{position: relative;display: block;overflow: hidden;} .gallery .item-media:before{ content: ""; background-color: rgba(19,196,125,0.8); position: absolute; left: -100%; width: 100%; bottom: 0; top: 0; vertical-align: middle; text-align: center; border-radius: 3px 3px 0 0; z-index: 2; } .gallery .item-media:after{ content: "\f067"; font-family: FontAwesome; font-size: 28px; color: #fff; position: absolute; right: -50%; top: 50%; margin-right: -14px; margin-top: -14px; z-index: 3; } .gallery .item-media:hover:before{ left: 0 } .gallery .item-media:hover:after{ right: 50%; } .gallery .item-media:before, .gallery .item-media:after{ -webkit-transition: all .2s ease-in-out; -moz-transition: all .2s ease-in-out; -ms-transition: all .2s ease-in-out; -o-transition: all .2s ease-in-out; transition: all .2s ease-in-out; } #flotTip { padding: 3px 5px; background-color: #000; z-index: 100; color: #fff; opacity: .7; filter: alpha(opacity=70); -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; }
public/css/plugin.css
.radio-custom, .checkbox-custom{margin-left: -20px} .radio-custom input[type=radio], .checkbox-custom input[type=checkbox]{position: absolute;left: -9999em;} .radio-custom > i:before, .checkbox-custom > i:before{font-size: 1.333em;vertical-align: -10%;margin-left:0;margin-right: 4px;color: #ddd} .radio-custom > i.checked:before, .checkbox-custom > i.checked:before{color: #13c4a5} .radio-custom > i.disabled:before, .checkbox-custom > i.disabled:before{color: #eee} .radio-custom > i.checked:before{content: '\f111';} .checkbox-custom > i.checked:before{content: '\f046';} .spinner .input-group-btn{display: table-cell;min-width: 25px} .spinner .input-group-btn .btn{width:25px;padding: 0;font-size: 12px;margin-left: -1px;line-height: 1;height: 19px;overflow: hidden;border-radius: 0 4px 0 0 !important;} .spinner .input-group-btn .btn+.btn{height: 20px;border-radius: 0 0 4px 0 !important;} .spinner .input-sm + .input-group-btn .btn{font-size: 10px;height: 15px;} .spinner .input-sm + .input-group-btn .btn+.btn{height: 16px;} .select{position: relative;display: inline-block;} .pillbox{border: 1px solid #e0e4e8;padding: 10px;border-radius: 4px} .pillbox ul{margin: 0;list-style: none;padding:0;} .pillbox li{display: inline-block;font-size:12px;color: #fff;;padding: 6px 8px;cursor: pointer;margin:2px;float: left;} .pillbox li:after{content: " x";font-size: 11px;font-weight: normal;opacity: 0.6;filter: alpha(opacity=60);} .pillbox li:hover:after{opacity: 0.9;filter: alpha(opacity=90);} .pillbox input{border:none;outline:0;min-height: 24px;width: auto;display: inline-block;box-shadow: none;background: transparent;} .datagrid tfoot th{font-weight: normal;} .datagrid tfoot .grid-pager .combobox{max-width: 80px;position: relative;top: 10px} .datagrid tfoot .grid-pager .combobox input{width: 40px} .datagrid tfoot .dropdown-menu{min-width: 60px;text-align: left;} .datagrid tbody{height: 256px;overflow:hidden;overflow-y:auto } #selectTextSize {position: absolute;top: 0;display: none;visibility: hidden;} .wizard { font-size: 14px; padding: 0; background-color: #f7f8f9; border-bottom: 1px solid #e0e4e8; } .wizard .badge{ margin-right: 4px; } .wizard .badge-info{ background-color: #5191d1; } .wizard .badge-success{ background-color: #3fcf7f; } .wizard ul li.complete, .wizard ul li.complete:hover{ cursor: pointer; background: #f1f5f9; } .wizard ul li.complete:after{ border-left-color:#f1f5f9; } .wizard ul { padding: 0; margin: 0; list-style: none outside none; } .wizard ul li { position: relative; float: left; padding: 0 15px 0 25px; margin: 0; color: #999999; cursor: default; height: 40px; line-height: 40px; } .wizard.wizard-vertical{float: left;border-bottom: none} .wizard.wizard-vertical + .step-content{zoom:1;overflow: hidden;padding-left: 40px} .wizard.wizard-vertical ul li { position: relative; float: none; border-bottom: 1px solid #e0e4e8; padding-left: 15px; } .wizard.wizard-vertical ul li:last-child{} .wizard ul li:first-child{ padding-left: 15px; border-radius: 4px 0 0 0; } .wizard .actions{ float: right; margin: 8px 10px 0 0; } .wizard ul li:before, .wizard ul li:after{ content: ""; position: absolute; top: -1px; bottom: -1px; right: -10px; border: 20px solid transparent; border-right: 0; border-left: 10px solid #e0e4e8; z-index: 1; } .wizard ul li:after{ right: -9px; border-left-color:#f7f8f9; z-index: 2; } .wizard ul li.active { color: #3a87ad; background: #fff; } .wizard ul li.active:after{ border-left-color: #fff; } .step-content { padding: 15px; } .step-content .step-pane { display: none; } .step-content .step-pane.active { display: inherit; } /*! * Slider for Bootstrap */ .slider { display: inline-block; vertical-align: middle; position: relative; } .slider.slider-horizontal { width: 210px; height: 20px; } .slider.slider-horizontal .slider-track { height: 10px; width: 100%; margin-top: -5px; top: 50%; left: 0; } .slider.slider-horizontal .slider-selection { height: 100%; top: 0; bottom: 0; } .slider.slider-horizontal .slider-handle { margin-left: -10px; margin-top: -5px; } .slider.slider-horizontal .slider-handle.triangle { border-width: 0 10px 10px 10px; width: 0; height: 0; border-bottom-color: #0480be; margin-top: 0; } .slider.slider-vertical { height: 210px; width: 20px; } .slider.slider-vertical .slider-track { width: 10px; height: 100%; margin-left: -5px; left: 50%; top: 0; } .slider.slider-vertical .slider-selection { width: 100%; left: 0; top: 0; bottom: 0; } .slider.slider-vertical .slider-handle { margin-left: -5px; margin-top: -10px; } .slider.slider-vertical .slider-handle.triangle { border-width: 10px 0 10px 10px; width: 1px; height: 1px; border-left-color: #0480be; margin-left: 0; } .slider input { display: none; } .slider .tooltip-inner { white-space: nowrap; } .slider-track { position: absolute; cursor: pointer; background-color: #e0e4e8; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; } .slider-selection { position: absolute; background-color: #f3f4f5; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; } .slider-handle { position: absolute; width: 20px; height: 20px; background-color: #13c4a5; opacity: 0.8; border: 0px solid transparent; } .slider-handle.round { -webkit-border-radius: 20px; -moz-border-radius: 20px; border-radius: 20px; } .slider-handle.triangle { background: transparent none; } /*! * Datepicker for Bootstrap * * Copyright 2012 <NAME> * Licensed under the Apache License v2.0 * http://www.apache.org/licenses/LICENSE-2.0 * */ .datepicker { top: 0; left: 0; padding: 4px; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; z-index: 1010; /*.dow { border-top: 1px solid #ddd !important; }*/ } .datepicker:before { content: ''; display: inline-block; border-left: 7px solid transparent; border-right: 7px solid transparent; border-bottom: 7px solid #ccc; border-bottom-color: rgba(0, 0, 0, 0.2); position: absolute; top: -7px; left: 6px; } .datepicker:after { content: ''; display: inline-block; border-left: 6px solid transparent; border-right: 6px solid transparent; border-bottom: 6px solid #ffffff; position: absolute; top: -6px; left: 7px; } .datepicker > div { display: none; } .datepicker table { width: 100%; margin: 0; } .datepicker td, .datepicker th { text-align: center; width: 20px; height: 20px; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; } .datepicker td.day:hover { background: #eeeeee; cursor: pointer; } .datepicker td.day.disabled { color: #eeeeee; } .datepicker td.old, .datepicker td.new { color: #ccc; } .datepicker td.active, .datepicker td.active:hover { color: #ffffff; background-color: #13c4a5; color: #fff; } .datepicker td.active:hover, .datepicker td.active:hover:hover, .datepicker td.active:focus, .datepicker td.active:hover:focus, .datepicker td.active:active, .datepicker td.active:hover:active, .datepicker td.active.active, .datepicker td.active:hover.active, .datepicker td.active.disabled, .datepicker td.active:hover.disabled, .datepicker td.active[disabled], .datepicker td.active:hover[disabled] { color: #ffffff; background-color: #13c4a5; } .datepicker td span { display: block; width: 47px; height: 43px; line-height: 43px; float: left; margin: 2px; cursor: pointer; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; } .datepicker td span:hover { background: #eeeeee; } .datepicker td span.active { color: #ffffff; background-color: #13c4a5; } .datepicker td span.active:hover, .datepicker td span.active:focus, .datepicker td span.active:active, .datepicker td span.active.active, .datepicker td span.active.disabled, .datepicker td span.active[disabled] { color: #ffffff; background-color: #13c4a5; } .datepicker td span.old { color: #999999; } .datepicker th.switch { width: 145px; } .datepicker th.next, .datepicker th.prev { font-size: 21px; } .datepicker thead tr:first-child th { cursor: pointer; } .datepicker thead tr:first-child th:hover { background: #eeeeee; } .input-append.date .add-on i, .input-prepend.date .add-on i { display: block; cursor: pointer; width: 16px; height: 16px; } /*! * FullCalendar v1.6.1 Stylesheet * Docs & License: http://arshaw.com/fullcalendar/ * (c) 2013 <NAME> */ .fc { direction: ltr; text-align: left; } .fc table { border-collapse: collapse; border-spacing: 0; } html .fc, .fc table { font-size: 1em; } .fc td, .fc th { padding: 0; vertical-align: top; } /* Header ------------------------------------------------------------------------*/ .fc-header{background: #f7f8f9} .fc-header td { padding:12px 10px 0 10px; white-space: nowrap; } .fc-header-left { width: 25%; text-align: left; } .fc-header-center { text-align: center; } .fc-header-right { width: 25%; text-align: right; } .fc-header-title { display: inline-block; vertical-align: top; } .fc-header-title h2 { font-size: 16px; margin-top: 6px; margin-bottom: 0; white-space: nowrap; } .fc .fc-header-space { padding-left: 10px; } .fc-header .fc-button { margin-bottom: 1em; vertical-align: top; } /* buttons edges butting together */ .fc-header .fc-button { margin-right: -1px; } .fc-header .fc-corner-right, /* non-theme */ .fc-header .ui-corner-right { /* theme */ margin-right: 0; /* back to normal */ } /* button layering (for border precedence) */ .fc-header .fc-state-hover, .fc-header .ui-state-hover { z-index: 2; } .fc-header .fc-state-down { z-index: 3; } .fc-header .fc-state-active, .fc-header .ui-state-active { z-index: 4; } /* Content ------------------------------------------------------------------------*/ .fc-content { clear: both; } .fc-view { width: 100%; /* needed for view switching (when view is absolute) */ overflow: hidden; } /* Cell Styles ------------------------------------------------------------------------*/ .fc-widget-header, /* <th>, usually */ .fc-widget-content { /* <td>, usually */ border: 1px solid #ddd; } .fc-state-highlight { /* <td> today cell */ /* TODO: add .fc-today to <th> */ background: #fcf8e3; } .fc-cell-overlay { /* semi-transparent rectangle while dragging */ background: #bce8f1; opacity: .3; filter: alpha(opacity=30); /* for IE */ } /* Buttons ------------------------------------------------------------------------*/ .fc-button { position: relative; display: inline-block; padding: 0 .6em; overflow: hidden; height: 1.9em; line-height: 1.8em; white-space: nowrap; cursor: pointer; } .fc-state-default { /* non-theme */ border: 1px solid; } .fc-state-default.fc-corner-left { /* non-theme */ border-top-left-radius: 4px; border-bottom-left-radius: 4px; } .fc-state-default.fc-corner-right { /* non-theme */ border-top-right-radius: 4px; border-bottom-right-radius: 4px; } /* Our default prev/next buttons use HTML entities like &lsaquo; &rsaquo; &laquo; &raquo; and we'll try to make them look good cross-browser. */ .fc-text-arrow { margin: 0 .1em; font-size: 2em; line-height: 0.85; font-family: "Courier New", Courier, monospace; vertical-align: baseline; /* for IE7 */ } .fc-button-prev .fc-text-arrow, .fc-button-next .fc-text-arrow { /* for &lsaquo; &rsaquo; */ font-weight: bold; } /* icon (for jquery ui) */ .fc-button .fc-icon-wrap { position: relative; float: left; top: 50%; } .fc-button .ui-icon { position: relative; float: left; margin-top: -50%; *margin-top: 0; *top: -50%; } /* button states borrowed from twitter bootstrap (http://twitter.github.com/bootstrap/) */ .fc-state-default { background-color: #fff; border-color:#c3c6c9; color:#657483; box-shadow:inset 0 -2px 0 rgba(0,0,0,0.05); } .fc-state-hover, .fc-state-down, .fc-state-active, .fc-state-disabled { color: #333333; background-color: #f7f8f9; } .fc-state-hover { color: #333333; text-decoration: none; background-position: 0 -15px; -webkit-transition: background-position 0.1s linear; -moz-transition: background-position 0.1s linear; -o-transition: background-position 0.1s linear; transition: background-position 0.1s linear; } .fc-state-down, .fc-state-active { background-color: #f7f8f9; background-image: none; outline: 0; box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); } .fc-state-disabled { cursor: default; background-image: none; opacity: 0.65; filter: alpha(opacity=65); box-shadow: none; } /* Global Event Styles ------------------------------------------------------------------------*/ .fc-event { background-color: #5191d1; /* default BACKGROUND color */ color: #fff; /* default TEXT color */ font-size: .85em; cursor: default; padding: 4px 6px; -webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box; } a.fc-event { text-decoration: none; } a.fc-event, .fc-event-draggable { cursor: pointer; } .fc-rtl .fc-event { text-align: right; } .fc-event-inner { width: 100%; height: 100%; overflow: hidden; } .fc-event-time, .fc-event-title { padding: 0 1px; } .fc .ui-resizable-handle { display: block; position: absolute; z-index: 99999; overflow: hidden; /* hacky spaces (IE6/7) */ font-size: 300%; /* */ line-height: 50%; /* */ } /* Horizontal Events ------------------------------------------------------------------------*/ .fc-event-hori { border-width: 1px 0; margin-bottom: 1px; } .fc-ltr .fc-event-hori.fc-event-start, .fc-rtl .fc-event-hori.fc-event-end { border-left-width: 1px; border-top-left-radius: 3px; border-bottom-left-radius: 3px; } .fc-ltr .fc-event-hori.fc-event-end, .fc-rtl .fc-event-hori.fc-event-start { border-right-width: 1px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; } /* resizable */ .fc-event-hori .ui-resizable-e { top: 0 !important; /* importants override pre jquery ui 1.7 styles */ right: -3px !important; width: 7px !important; height: 100% !important; cursor: e-resize; } .fc-event-hori .ui-resizable-w { top: 0 !important; left: -3px !important; width: 7px !important; height: 100% !important; cursor: w-resize; } .fc-event-hori .ui-resizable-handle { _padding-bottom: 14px; /* IE6 had 0 height */ } /* Reusable Separate-border Table ------------------------------------------------------------*/ table.fc-border-separate { border-collapse: separate; } .fc-border-separate th, .fc-border-separate td { border-width: 1px 0 0 1px; } .fc-border-separate th.fc-last, .fc-border-separate td.fc-last { border-right-width: 1px; } .fc-border-separate tr.fc-last th, .fc-border-separate tr.fc-last td { border-bottom-width: 1px; } .fc-border-separate tbody tr.fc-first td, .fc-border-separate tbody tr.fc-first th { border-top-width: 0; } /* Month View, Basic Week View, Basic Day View ------------------------------------------------------------------------*/ .fc-grid th { text-align: center; } .fc .fc-week-number { width: 22px; text-align: center; } .fc .fc-week-number div { padding: 0 2px; } .fc-grid .fc-day-number { float: right; padding: 0 2px; } .fc-grid .fc-other-month .fc-day-number { opacity: 0.3; filter: alpha(opacity=30); /* for IE */ /* opacity with small font can sometimes look too faded might want to set the 'color' property instead making day-numbers bold also fixes the problem */ } .fc-grid .fc-day-content { clear: both; padding: 2px 2px 1px; /* distance between events and day edges */ } /* event styles */ .fc-grid .fc-event-time { font-weight: bold; } /* right-to-left */ .fc-rtl .fc-grid .fc-day-number { float: left; } .fc-rtl .fc-grid .fc-event-time { float: right; } /* Agenda Week View, Agenda Day View ------------------------------------------------------------------------*/ .fc-agenda table { border-collapse: separate; } .fc-agenda-days th { text-align: center; } .fc-agenda .fc-agenda-axis { width: 50px; padding: 0 4px; vertical-align: middle; text-align: right; white-space: nowrap; font-weight: normal; } .fc-agenda .fc-week-number { font-weight: bold; } .fc-agenda .fc-day-content { padding: 2px 2px 1px; } /* make axis border take precedence */ .fc-agenda-days .fc-agenda-axis { border-right-width: 1px; } .fc-agenda-days .fc-col0 { border-left-width: 0; } /* all-day area */ .fc-agenda-allday th { border-width: 0 1px; } .fc-agenda-allday .fc-day-content { min-height: 34px; /* TODO: doesnt work well in quirksmode */ _height: 34px; } /* divider (between all-day and slots) */ .fc-agenda-divider-inner { height: 2px; overflow: hidden; } .fc-widget-header .fc-agenda-divider-inner { background: #eee; } /* slot rows */ .fc-agenda-slots th { border-width: 1px 1px 0; } .fc-agenda-slots td { border-width: 1px 0 0; background: none; } .fc-agenda-slots td div { height: 20px; } .fc-agenda-slots tr.fc-slot0 th, .fc-agenda-slots tr.fc-slot0 td { border-top-width: 0; } .fc-agenda-slots tr.fc-minor th, .fc-agenda-slots tr.fc-minor td { border-top-style: dotted; } .fc-agenda-slots tr.fc-minor th.ui-widget-header { *border-top-style: solid; /* doesn't work with background in IE6/7 */ } /* Vertical Events ------------------------------------------------------------------------*/ .fc-event-vert { border-width: 0 1px; } .fc-event-vert.fc-event-start { border-top-width: 1px; border-top-left-radius: 3px; border-top-right-radius: 3px; } .fc-event-vert.fc-event-end { border-bottom-width: 1px; border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; } .fc-event-vert .fc-event-time { white-space: nowrap; font-size: 10px; } .fc-event-vert .fc-event-inner { position: relative; z-index: 2; } .fc-event-vert .fc-event-bg { /* makes the event lighter w/ a semi-transparent overlay */ position: absolute; z-index: 1; top: 0; left: 0; width: 100%; height: 100%; background: #fff; opacity: .25; filter: alpha(opacity=25); } .fc .ui-draggable-dragging .fc-event-bg, /* TODO: something nicer like .fc-opacity */ .fc-select-helper .fc-event-bg { display: none\9; /* for IE6/7/8. nested opacity filters while dragging don't work */ } /* resizable */ .fc-event-vert .ui-resizable-s { bottom: 0 !important; /* importants override pre jquery ui 1.7 styles */ width: 100% !important; height: 8px !important; overflow: hidden !important; line-height: 8px !important; font-size: 11px !important; font-family: monospace; text-align: center; cursor: s-resize; } .fc-agenda .ui-resizable-resizing { /* TODO: better selector */ _overflow: hidden; } /*parsely*/ .parsley-error-list{margin:0;padding: 0;list-style: none;margin-top: 6px;font-size: 12px} .parsley-error{border-color: #ff5f5f !important} /*datatable*/ .dataTables_wrapper{position: relative;} .dataTables_processing{ position: absolute; top: 50%; left: 50%; width: 250px; margin-left: -125px; margin-top: -15px; padding: 10px; border: 1px solid #ddd; text-align: center; color: #999; font-size: 14px; background-color: white; z-index: 1; } .dataTables_wrapper .table{ border: 1px solid #e0e4e8; border-width: 1px 0; } .dataTables_wrapper label{font-weight: normal;font-size: 12px;display: block;margin-bottom: 0} .dataTables_wrapper select, .dataTables_wrapper input{font-size:12px;height: 30px;padding: 5px 10px;border-radius: 3px;display: inline;border:1px solid #ccc;outline: 0} .dataTables_wrapper select{width: 75px;} .dataTables_wrapper input{width: 200px;} .dataTables_filter, .dataTables_paginate{float:right;} .dataTables_length, .dataTables_filter{padding: 15px;} .dataTables_info, .dataTables_paginate{padding: 15px;} .dataTables_paginate .paginate_button, .dataTables_paginate .paginate_active{cursor:pointer;outline:0;border:1px solid #dddddd;border-right-width:0;background: #fff;padding: 6px 10px} .dataTables_paginate.pagination-sm .paginate_button, .dataTables_paginate.pagination-sm .paginate_active{ padding: 3px 8px; } .dataTables_wrapper .paginate_active{background-color: #f5f5f5} .dataTables_wrapper .paginate_button_disabled{color: #ccc;background-color: #fafafa} .paginate_button.first{border-radius: 3px 0 0 3px;} .paginate_button.last{border-radius: 0 3px 3px 0;border-right-width:1px;} .dataTables_wrapper th{cursor: pointer;outline: 0} .dataTables_wrapper th:after{font-family: FontAwesome; color: #666;position: relative;float:right;font-weight: normal;} .dataTables_wrapper .sorting:after{content: "\f0dc";color: #ccc;} .dataTables_wrapper .sorting_asc:after{content: "\f0de";} .dataTables_wrapper .sorting_desc:after{content: "\f0dd";} /*Timeline*/ .timeline{ display: table; width: 100%; border-spacing: 0; table-layout: fixed; position: relative; border-collapse: collapse; } .timeline:before{ content: ""; width: 6px; margin-left: -4px; position: absolute; left: 50%; top: 0; bottom: 30px; background-color: #ddd; z-index: 0; } .timeline-item{display: table-row;} .timeline-caption{ display: table-cell; vertical-align: top; width: 50%; } .timeline-item:before, .timeline-item.alt:after{ content: ""; display: block; width: 50%; } .timeline-item.alt:before{display: none} .timeline-item .panel{padding: 15px} .timeline-date{position: absolute;width: 150px;left: -200px;top: 3px;text-align: right;} .timeline-icon{position: absolute;left: -41px;top: -2px;} .time-icon{width: 30px;height: 30px;display:inline-block !important;z-index: 10;border:2px solid #fff;line-height:26px;border-radius: 20px;text-align: center;background-color: #898989} .time-icon:before{font-size: 16px;color: #fff} .timeline-caption .panel{display: inline-block;position: relative;margin-left: 25px;position: relative;text-align: left;} .timeline-item.alt{text-align: right;} .timeline-item.alt .panel{margin-right: 25px;margin-left: 0} .timeline-item.alt .timeline-date{left: auto;right: -200px;text-align: left;} .timeline-item.alt .timeline-icon{left: auto;right: -41px;} .timeline-caption h5{margin:0} .timeline-caption h5 span{display: block;color: #999;margin-bottom: 4px;font-size: 12px} .active .timeline-caption h5 span{color: #fff} .timeline-item.active{display: table-caption;text-align: center;} .timeline-item.active:before{width: 1%} .active .timeline-caption{display: inline-block;width: auto;} .timeline-item.active .panel{margin-left: 0} .active .timeline-date, .active .timeline-icon{position: static;margin-bottom:10px;display: inline-block;width: auto;} .timeline-caption p{font-size: 12px;margin-bottom: 0;margin-top: 10px;} .timeline-footer{display: table-row;} .timeline-footer a{display: table-cell;text-align: right;} .timeline-footer .time-icon{margin-right: -15px;z-index: 5} .select2-container .select2-choice{height: 30px;line-height: 28px;border: 1px solid #ccc;border-radius: 2px} .select2-container .select2-choice div{background-color: transparent;background-image: none;border-left: none;} .select2-container .select2-choice div b{background:none;position: relative; } .select2-container .select2-choice div b:after{content: "\f0d7"; font-family: FontAwesome;color: #aaa;} .select2-dropdown-open .select2-choice div b:after{content: "\f0d8"} .select2-search input{background: #fff;} .select2-search{position: relative;} .select2-search:after{position:absolute;content: "\f002"; font-family: FontAwesome;color: #aaa;right: 5px;top:4px;width: 18px} .select2-drop.select2-drop-above .select2-search:after{top:8px;} .select2-container .select2-choice abbr{background: transparent;} .select2-container .select2-choice abbr:after{content: "\f00d"; font-family: FontAwesome;position: absolute;top: -7px;font-size: 11px;color: #aaa} .select2-results .select2-highlighted{background-color: #23d4b5} .select2-container-multi .select2-choices{border: 1px solid #ccc;border-radius: 3px;padding-top: 2px} .select2-container-multi .select2-choices .select2-search-choice{border: 1px solid #ccc} .select2-search-choice-close{background: transparent;} .select2-search-choice-close:after{content: "\f00d"; font-family: FontAwesome;font-size: 11px;color: #aaa;position: absolute;left: 2px;top: -1px} .gallery img{border-radius: 3px 3px 0 0;} .gallery .item{border-radius:3px;background-color: #fff;} .gallery .desc{padding: 20px;} .gallery .desc h4{margin-top: 0} .gallery .item-media{position: relative;display: block;overflow: hidden;} .gallery .item-media:before{ content: ""; background-color: rgba(19,196,125,0.8); position: absolute; left: -100%; width: 100%; bottom: 0; top: 0; vertical-align: middle; text-align: center; border-radius: 3px 3px 0 0; z-index: 2; } .gallery .item-media:after{ content: "\f067"; font-family: FontAwesome; font-size: 28px; color: #fff; position: absolute; right: -50%; top: 50%; margin-right: -14px; margin-top: -14px; z-index: 3; } .gallery .item-media:hover:before{ left: 0 } .gallery .item-media:hover:after{ right: 50%; } .gallery .item-media:before, .gallery .item-media:after{ -webkit-transition: all .2s ease-in-out; -moz-transition: all .2s ease-in-out; -ms-transition: all .2s ease-in-out; -o-transition: all .2s ease-in-out; transition: all .2s ease-in-out; } #flotTip { padding: 3px 5px; background-color: #000; z-index: 100; color: #fff; opacity: .7; filter: alpha(opacity=70); -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; }
0.362179
0.062847
html, body, :host { width: 100%; height: 100%; margin: 0; padding: 0; display: block; box-sizing:border-box; } :host { background-size: cover; background-position: center; background-repeat: no-repeat; background: url(/resources/images/shining_force_bg.jpg); } html, body, #bubbles { height: 100% } body { overflow: hidden } /* #bubbles { padding: 100px 0 } */ .bubble { width: 60px; height: 60px; background: purple; border-radius: 200px; -moz-border-radius: 200px; -webkit-border-radius: 200px; position: absolute; left: 50%; /* transform: translate3d(-50%, 0px, 0px); */ bottom:0; } /* .bubble.glow { background:#222; animation:greenPulse 1s infinite; -webkit-animation:greenPulse 2s infinite; -moz-animation:greenPulse 2s infinite; -o-animation:greenPulse 2s infinite; } */ .x1 { left: 20%; -webkit-transform: scale(0.9); -moz-transform: scale(0.9); transform: scale(0.9); opacity: 0.6; animation: moveclouds 15s linear infinite, sideWays 3s ease-in-out infinite alternate; } .x2 { left: 40%; -webkit-transform: scale(0.6); -moz-transform: scale(0.6); transform: scale(0.6); opacity: 0.1; animation: moveclouds 15s linear infinite, sideWays 2s ease-in-out infinite alternate; } .x3 { left: 70%; -webkit-transform: scale(0.8); -moz-transform: scale(0.8); transform: scale(0.8); opacity: 0.3; animation: moveclouds 15s linear infinite, sideWays 1s ease-in-out infinite alternate; } .x4 { left: 10%; -webkit-transform: scale(0.75); -moz-transform: scale(0.75); transform: scale(0.75); opacity: 0.35; animation: moveclouds 10s linear infinite, sideWays 2s ease-in-out infinite alternate; } .x5 { left: 0%; -webkit-transform: scale(0.8); -moz-transform: scale(0.8); transform: scale(0.8); opacity: 0.3; animation: moveclouds 7s linear infinite, sideWays 1s ease-in-out infinite alternate; } @keyframes moveclouds { 0% { opacity:0; box-shadow:0 0 30px #4bbec8; top: 500px; } 30%{opacity:1;} 100% { box-shadow:0 0 30px #4bbec8; top: -500px; opacity:0; } } @keyframes sideWays { 0% { opacity:.10; box-shadow:0 0 30px #4bbec8; margin-left:0px; } 30%{opacity:.20;} 100% { margin-left:50px; opacity:0; box-shadow:0 0 30px #4bbec8; } }
src/ui/worlds/RpgGame/index.css
html, body, :host { width: 100%; height: 100%; margin: 0; padding: 0; display: block; box-sizing:border-box; } :host { background-size: cover; background-position: center; background-repeat: no-repeat; background: url(/resources/images/shining_force_bg.jpg); } html, body, #bubbles { height: 100% } body { overflow: hidden } /* #bubbles { padding: 100px 0 } */ .bubble { width: 60px; height: 60px; background: purple; border-radius: 200px; -moz-border-radius: 200px; -webkit-border-radius: 200px; position: absolute; left: 50%; /* transform: translate3d(-50%, 0px, 0px); */ bottom:0; } /* .bubble.glow { background:#222; animation:greenPulse 1s infinite; -webkit-animation:greenPulse 2s infinite; -moz-animation:greenPulse 2s infinite; -o-animation:greenPulse 2s infinite; } */ .x1 { left: 20%; -webkit-transform: scale(0.9); -moz-transform: scale(0.9); transform: scale(0.9); opacity: 0.6; animation: moveclouds 15s linear infinite, sideWays 3s ease-in-out infinite alternate; } .x2 { left: 40%; -webkit-transform: scale(0.6); -moz-transform: scale(0.6); transform: scale(0.6); opacity: 0.1; animation: moveclouds 15s linear infinite, sideWays 2s ease-in-out infinite alternate; } .x3 { left: 70%; -webkit-transform: scale(0.8); -moz-transform: scale(0.8); transform: scale(0.8); opacity: 0.3; animation: moveclouds 15s linear infinite, sideWays 1s ease-in-out infinite alternate; } .x4 { left: 10%; -webkit-transform: scale(0.75); -moz-transform: scale(0.75); transform: scale(0.75); opacity: 0.35; animation: moveclouds 10s linear infinite, sideWays 2s ease-in-out infinite alternate; } .x5 { left: 0%; -webkit-transform: scale(0.8); -moz-transform: scale(0.8); transform: scale(0.8); opacity: 0.3; animation: moveclouds 7s linear infinite, sideWays 1s ease-in-out infinite alternate; } @keyframes moveclouds { 0% { opacity:0; box-shadow:0 0 30px #4bbec8; top: 500px; } 30%{opacity:1;} 100% { box-shadow:0 0 30px #4bbec8; top: -500px; opacity:0; } } @keyframes sideWays { 0% { opacity:.10; box-shadow:0 0 30px #4bbec8; margin-left:0px; } 30%{opacity:.20;} 100% { margin-left:50px; opacity:0; box-shadow:0 0 30px #4bbec8; } }
0.520496
0.107625
@font-face { font-family: 'smart4ds'; src: url('../fonts/ar-fonts/smart4ds.eot'); src: url('../fonts/ar-fonts/smart4ds.eot?#iefix') format('embedded-opentype'), url('../fonts/ar-fonts/smart4ds.woff') format('woff'), url('../fonts/ar-fonts/smart4ds.ttf') format('truetype'); font-weight: normal; font-style: normal; } @font-face { font-family: 'smart4dsTitles'; src: url('../fonts/ar-fonts/smart4ds2.eot'); src: url('../fonts/ar-fonts/smart4ds2.eot?#iefix') format('embedded-opentype'), url('../fonts/ar-fonts/smart4ds2.woff') format('woff'), url('../fonts/ar-fonts/smart4ds2.ttf') format('truetype'); font-weight: normal; font-style: normal; } body { font-family: smart4ds, sans-serif; font-size: 13px; font-weight: 300; line-height: 1.9em; direction: rtl; } .navbar .nav > li > a, h1, h2, h3, h4, .box-bottom a, .site-top a, .btn, .contacts strong, #inner-headline ul.breadcrumb li { font-family: smart4dsTitles, sans-serif; } @media (min-width: 979px) { .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 { float: right; } .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 { float: right; } } .navbar-nav > li { float: right; } .navbar-header { float: right; } header .navbar-collapse ul.navbar-nav { float: left; } .navbar .nav > li > a { margin-right: 20px; margin-left: 0px; font-size: 15px; } .pull-right { float: left !important; } .pull-left { float: right !important; } .copyright { text-align: right; } #sub-footer ul.social-network { float: left; } #inner-headline ul.breadcrumb { float: right; } ul.meta-post { float: right; } ul.meta-post li { float: right; border-left: 1px dotted #d1d1d1; border-right: 0px; margin: 0 0 0 10px; padding: 0 0 0 10px; } ul.meta-post li:last-child { border-left: 0px; } .dropdown-menu { position: absolute; top: 100%; right: 0; left: auto; float: right; } .flex-caption { right: auto; left: 10%; } footer ul.link-list li a:before { margin-left: 5px; margin-right: 0px; } .profile { float: right; margin-left: 20px; margin-right: 0px; } .pullquote-left { border-right: 5px solid #3494c8; border-left: 0px; margin-right: 65px; margin-left: 0px; padding-right: 20px; padding-left: 0px; } .text-right { text-align: left; } .text-left { text-align: right; } header ul.nav li ul li a { font-family: smart4dsTitles, sans-serif; } .navbar .nav > li > a i { float: left; padding: 10px 10px 0 10px; } @media (max-width: 767px) { header .navbar-collapse ul.navbar-nav { float: none !important; } header .navbar-nav > li { width: 100% !important; } .navbar-header { float: none !important; width: 100% !important; } .navbar .nav li .dropdown-menu .l3 li a{ margin-right: 15px; margin-left: 0; } .navbar-brand { float: right; margin-right: 15px; margin-left: 0px; } } .navbar-toggle { float: left !important; margin-right: 0px; margin-left: 15px; } .close { float: left; } .input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group > .btn, .input-group-btn:last-child > .dropdown-toggle, .input-group-btn:first-child > .btn:not(:first-child), .input-group-btn:first-child > .btn-group:not(:first-child) > .btn { border-bottom-right-radius: 0; border-top-right-radius: 0; border-bottom-left-radius: 3px; border-top-left-radius: 3px; } .input-group .form-control:first-child, .input-group-addon:first-child, .input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group > .btn, .input-group-btn:first-child > .dropdown-toggle, .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), .input-group-btn:last-child > .btn-group:not(:last-child) > .btn { border-bottom-right-radius: 3px; border-top-right-radius: 3px; border-bottom-left-radius: 0; border-top-left-radius: 0; } .pagination > li { display: inline; float: right; } .pagination > li:last-child > a, .pagination > li:last-child > span { border-bottom-right-radius: 0px; border-bottom-left-radius: 4px; border-top-right-radius: 0px; border-top-left-radius: 4px; } .pagination > li:first-child > a, .pagination > li:first-child > span { border-bottom-right-radius: 4px; border-bottom-left-radius: 0px; border-top-right-radius: 4px; border-top-left-radius: 0px; } .field-row .col-lg-3 { font-family: smart4dsTitles, sans-serif; } .right-sidebar { border-right: 1px solid #f5f5f5; border-left: 0; padding: 0 30px 0 0; -webkit-box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .01); box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .01); } .widget img.pull-left { float: right; margin: 0 0 15px 15px; }
public/frontEnd/css/rtl.css
@font-face { font-family: 'smart4ds'; src: url('../fonts/ar-fonts/smart4ds.eot'); src: url('../fonts/ar-fonts/smart4ds.eot?#iefix') format('embedded-opentype'), url('../fonts/ar-fonts/smart4ds.woff') format('woff'), url('../fonts/ar-fonts/smart4ds.ttf') format('truetype'); font-weight: normal; font-style: normal; } @font-face { font-family: 'smart4dsTitles'; src: url('../fonts/ar-fonts/smart4ds2.eot'); src: url('../fonts/ar-fonts/smart4ds2.eot?#iefix') format('embedded-opentype'), url('../fonts/ar-fonts/smart4ds2.woff') format('woff'), url('../fonts/ar-fonts/smart4ds2.ttf') format('truetype'); font-weight: normal; font-style: normal; } body { font-family: smart4ds, sans-serif; font-size: 13px; font-weight: 300; line-height: 1.9em; direction: rtl; } .navbar .nav > li > a, h1, h2, h3, h4, .box-bottom a, .site-top a, .btn, .contacts strong, #inner-headline ul.breadcrumb li { font-family: smart4dsTitles, sans-serif; } @media (min-width: 979px) { .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 { float: right; } .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 { float: right; } } .navbar-nav > li { float: right; } .navbar-header { float: right; } header .navbar-collapse ul.navbar-nav { float: left; } .navbar .nav > li > a { margin-right: 20px; margin-left: 0px; font-size: 15px; } .pull-right { float: left !important; } .pull-left { float: right !important; } .copyright { text-align: right; } #sub-footer ul.social-network { float: left; } #inner-headline ul.breadcrumb { float: right; } ul.meta-post { float: right; } ul.meta-post li { float: right; border-left: 1px dotted #d1d1d1; border-right: 0px; margin: 0 0 0 10px; padding: 0 0 0 10px; } ul.meta-post li:last-child { border-left: 0px; } .dropdown-menu { position: absolute; top: 100%; right: 0; left: auto; float: right; } .flex-caption { right: auto; left: 10%; } footer ul.link-list li a:before { margin-left: 5px; margin-right: 0px; } .profile { float: right; margin-left: 20px; margin-right: 0px; } .pullquote-left { border-right: 5px solid #3494c8; border-left: 0px; margin-right: 65px; margin-left: 0px; padding-right: 20px; padding-left: 0px; } .text-right { text-align: left; } .text-left { text-align: right; } header ul.nav li ul li a { font-family: smart4dsTitles, sans-serif; } .navbar .nav > li > a i { float: left; padding: 10px 10px 0 10px; } @media (max-width: 767px) { header .navbar-collapse ul.navbar-nav { float: none !important; } header .navbar-nav > li { width: 100% !important; } .navbar-header { float: none !important; width: 100% !important; } .navbar .nav li .dropdown-menu .l3 li a{ margin-right: 15px; margin-left: 0; } .navbar-brand { float: right; margin-right: 15px; margin-left: 0px; } } .navbar-toggle { float: left !important; margin-right: 0px; margin-left: 15px; } .close { float: left; } .input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group > .btn, .input-group-btn:last-child > .dropdown-toggle, .input-group-btn:first-child > .btn:not(:first-child), .input-group-btn:first-child > .btn-group:not(:first-child) > .btn { border-bottom-right-radius: 0; border-top-right-radius: 0; border-bottom-left-radius: 3px; border-top-left-radius: 3px; } .input-group .form-control:first-child, .input-group-addon:first-child, .input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group > .btn, .input-group-btn:first-child > .dropdown-toggle, .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), .input-group-btn:last-child > .btn-group:not(:last-child) > .btn { border-bottom-right-radius: 3px; border-top-right-radius: 3px; border-bottom-left-radius: 0; border-top-left-radius: 0; } .pagination > li { display: inline; float: right; } .pagination > li:last-child > a, .pagination > li:last-child > span { border-bottom-right-radius: 0px; border-bottom-left-radius: 4px; border-top-right-radius: 0px; border-top-left-radius: 4px; } .pagination > li:first-child > a, .pagination > li:first-child > span { border-bottom-right-radius: 4px; border-bottom-left-radius: 0px; border-top-right-radius: 4px; border-top-left-radius: 0px; } .field-row .col-lg-3 { font-family: smart4dsTitles, sans-serif; } .right-sidebar { border-right: 1px solid #f5f5f5; border-left: 0; padding: 0 30px 0 0; -webkit-box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .01); box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .01); } .widget img.pull-left { float: right; margin: 0 0 15px 15px; }
0.396419
0.050705
@font-face { font-family: Darker Grotesque; src: url('../font/DarkerGrotesque-ExtraBold.ttf'); font-weight: 800; } @font-face { font-family: Darker Grotesque; src: url('../font/DarkerGrotesque-Bold.ttf'); font-weight: 700; } @font-face { font-family: Darker Grotesque; src: url('../font/DarkerGrotesque-SemiBold.ttf'); font-weight: 600; } body { background-color: #202020; } a { color: #FFFFFF; } footer { background-color: #202020; color: #FFFFFF; padding: 20px; text-align: center; position: relative; vertical-align: top; z-index: 1; } section { margin-bottom: 150px; } @media screen and (max-width: 768px) { section { margin-bottom: 50px; } } /* Showcase Logo */ #register-now { font-family: Darker Grotesque; font-weight: 600; font-size: 30px; line-height: 30px; border: 3px solid #FFFFFF; border-radius: 10px; padding: 5px 45px 10px 45px; position: relative; top: -200px; } #register-now:hover { border: 3px solid #787878; } @media screen and (max-width: 768px) { #register-now { margin-top: 50px; position: initial; } } /* Showcase Introduction */ #showcase-introduction { font-family: Darker Grotesque; font-weight: 700; font-size: 24px; color: #FFFFFF; max-width: 60%; margin-left: auto; margin-right: auto; text-align: center; } #showcase-introduction span { font-size: 36px; } @media screen and (max-width: 768px) { #showcase-introduction { font-size: 12px; } #showcase-introduction span { font-size: 18px; } } /* Showcase Projects */ #showcase-projects { max-width: 66%; } .showcase-project { font-family: Darker Grotesque; font-size: 96px; border-bottom: 3px solid #FFFFFF; line-height: 120px; } #aila-health { color: transparent; -webkit-text-stroke-width: 1px; -webkit-text-stroke-color: #FFFFFF; font-weight: 800; } #alemany-farm { color: #FFFFFF; font-weight: 600; } #desi-discourse { text-align: right; color: transparent; -webkit-text-stroke-width: 1px; -webkit-text-stroke-color: #FFFFFF; font-weight: 800; } #philz { color: #FFFFFF; font-weight: 800; } #resilient-mind { color: #FFFFFF; font-weight: 600; } #syglass { color: transparent; -webkit-text-stroke-width: 1px; -webkit-text-stroke-color: #FFFFFF; font-weight: 600; } #the-patient-story { color: #FFFFFF; font-weight: 800; text-align: center; } @media screen and (max-width: 768px) { .showcase-project { font-size: 32px; line-height: 40px; } } /* Showcase Schedule */ #showcase-schedule { max-width: 50%; border: 3px solid #FFFFFF; border-radius: 10px; } .showcase-schedule-header { font-family: Darker Grotesque; font-weight: 800; font-size: 24px; color: #A93B31; border-bottom: 3px solid #FFFFFF; } .showcase-schedule-time { font-family: Darker Grotesque; font-weight: 800; font-size: 48px; color: #A93B31; } .showcase-schedule-event { font-family: Darker Grotesque; font-weight: 800; font-size: 48px; color: #FFFFFF; } @media screen and (max-width: 768px) { #showcase-schedule { max-width: 66%; } .showcase-schedule-header { font-size: 8px; padding-left: 5px; } .showcase-schedule-time { font-size: 16px; padding-left: 5px; padding-right: 5px; } .showcase-schedule-event { font-size: 16px; padding-left: 5px; padding-right: 5px; } } /* Showcase Art Introduction */ #showcase-art-introduction { font-family: Darker Grotesque; font-weight: 700; font-size: 24px; color: #FFFFFF; max-width: 66%; margin-left: auto; margin-right: auto; padding-top: 50px; padding-left: 50px; padding-right: 50px; border-top: 3px solid #FFFFFF; } @media screen and (max-width: 768px) { #showcase-art-introduction { padding-top: 17px; padding-left: 17px; padding-right: 17px; font-size: 12px; } }
assets/css/showcase-fall-2020.css
@font-face { font-family: Darker Grotesque; src: url('../font/DarkerGrotesque-ExtraBold.ttf'); font-weight: 800; } @font-face { font-family: Darker Grotesque; src: url('../font/DarkerGrotesque-Bold.ttf'); font-weight: 700; } @font-face { font-family: Darker Grotesque; src: url('../font/DarkerGrotesque-SemiBold.ttf'); font-weight: 600; } body { background-color: #202020; } a { color: #FFFFFF; } footer { background-color: #202020; color: #FFFFFF; padding: 20px; text-align: center; position: relative; vertical-align: top; z-index: 1; } section { margin-bottom: 150px; } @media screen and (max-width: 768px) { section { margin-bottom: 50px; } } /* Showcase Logo */ #register-now { font-family: Darker Grotesque; font-weight: 600; font-size: 30px; line-height: 30px; border: 3px solid #FFFFFF; border-radius: 10px; padding: 5px 45px 10px 45px; position: relative; top: -200px; } #register-now:hover { border: 3px solid #787878; } @media screen and (max-width: 768px) { #register-now { margin-top: 50px; position: initial; } } /* Showcase Introduction */ #showcase-introduction { font-family: Darker Grotesque; font-weight: 700; font-size: 24px; color: #FFFFFF; max-width: 60%; margin-left: auto; margin-right: auto; text-align: center; } #showcase-introduction span { font-size: 36px; } @media screen and (max-width: 768px) { #showcase-introduction { font-size: 12px; } #showcase-introduction span { font-size: 18px; } } /* Showcase Projects */ #showcase-projects { max-width: 66%; } .showcase-project { font-family: Darker Grotesque; font-size: 96px; border-bottom: 3px solid #FFFFFF; line-height: 120px; } #aila-health { color: transparent; -webkit-text-stroke-width: 1px; -webkit-text-stroke-color: #FFFFFF; font-weight: 800; } #alemany-farm { color: #FFFFFF; font-weight: 600; } #desi-discourse { text-align: right; color: transparent; -webkit-text-stroke-width: 1px; -webkit-text-stroke-color: #FFFFFF; font-weight: 800; } #philz { color: #FFFFFF; font-weight: 800; } #resilient-mind { color: #FFFFFF; font-weight: 600; } #syglass { color: transparent; -webkit-text-stroke-width: 1px; -webkit-text-stroke-color: #FFFFFF; font-weight: 600; } #the-patient-story { color: #FFFFFF; font-weight: 800; text-align: center; } @media screen and (max-width: 768px) { .showcase-project { font-size: 32px; line-height: 40px; } } /* Showcase Schedule */ #showcase-schedule { max-width: 50%; border: 3px solid #FFFFFF; border-radius: 10px; } .showcase-schedule-header { font-family: Darker Grotesque; font-weight: 800; font-size: 24px; color: #A93B31; border-bottom: 3px solid #FFFFFF; } .showcase-schedule-time { font-family: Darker Grotesque; font-weight: 800; font-size: 48px; color: #A93B31; } .showcase-schedule-event { font-family: Darker Grotesque; font-weight: 800; font-size: 48px; color: #FFFFFF; } @media screen and (max-width: 768px) { #showcase-schedule { max-width: 66%; } .showcase-schedule-header { font-size: 8px; padding-left: 5px; } .showcase-schedule-time { font-size: 16px; padding-left: 5px; padding-right: 5px; } .showcase-schedule-event { font-size: 16px; padding-left: 5px; padding-right: 5px; } } /* Showcase Art Introduction */ #showcase-art-introduction { font-family: Darker Grotesque; font-weight: 700; font-size: 24px; color: #FFFFFF; max-width: 66%; margin-left: auto; margin-right: auto; padding-top: 50px; padding-left: 50px; padding-right: 50px; border-top: 3px solid #FFFFFF; } @media screen and (max-width: 768px) { #showcase-art-introduction { padding-top: 17px; padding-left: 17px; padding-right: 17px; font-size: 12px; } }
0.253214
0.081119
text-align: left; } #menu { background: #3598dc; } #menu > ul > li:hover > a { color: #fff; background: #f8941d; } .box-product .sales_price { display: block; margin: 5px 0 0 0; padding: 0 8px; color: #555555; font-style: italic; font-size: 11px; } .product-info .price-old, .product-grid .price-old { color: #555555; } #column-left .box-product .sales_price, #column-right .box-product .sales_price { float: left; padding: 0 10px 0 0; margin: 0px 0 2px 0; font-size: 12px; } .box-product .name a:hover, .product-grid .name a:hover { color: #3598dc; text-decoration: none; } h1, select, input[type='text'], input[type='password'], textarea { font-family: Roboto, sans-serif; } .price { font-family: Arial, sans-serif; } .product-grid > div.alert-empty:hover { border: none; padding: 11px; } #column-left .box-product .name, #column-right .box-product .name { overflow: hidden; } .buttons { border-top: none; overflow: auto; padding: 0px 16px 0px 0px; margin-bottom: 20px; } .center { text-align: center; } .links .pagination.pagination li.prev.disabled, .links .pagination.pagination li.next.disabled, .links .pagination.pagination li.active { vertical-align: middle; display: inline-block; border: 1px solid #3598dc; padding: 4px 10px; font-weight: normal; text-decoration: none; color: #fff; background: #3598dc; } .links .pagination.pagination li { vertical-align: middle; display: inline-block; border: 1px solid #EEEEEE; text-decoration: none; color: #777; } .links .pagination.pagination li a { display: block; padding: 4px 10px; } #column-left .box-product .image { max-width: 25%; } #menu > ul > li > a { padding: 0px 17px 0px 16px; } #footer .powered_text { width: auto; } #footer .contact { width: 32%; } #footer .care { width: 25%; margin-right: 45px; } #footer .content-footer { margin-right: 45px; width: 30%; } #footer .contact ul { width: auto; } .welcome_text { font-size: 125%; font-family: monospace; font-weight: normal; } p.justify { text-align: justify; } #footer .content-footer p.justify { text-align: justify; } #footer, #footer a { color: #ccc; } #footer .ct_info.contact_icon ul li { background-size: 6%; } #footer .ct_info.contact ul li { min-height: auto; } #footer .contact ul li.address { background-position: 0px 8px; line-height: inherit; padding-top: 2%; } #footer .contact ul li.mobile { background-position: 0px -39px; line-height: inherit; } #footer .contact ul li.fax { background-position: 0px -117px; line-height: inherit; } #footer .contact ul li.email { background-position: 0px -78px; line-height: inherit; } #footer h3 { font-weight: 500; } .product-tab .tabs { border-bottom: 1px solid rgba(248, 148, 29, 0.73); } .product-tab .tabs li a { font-weight: 500; } .product-tab .tabs li.active a { border-top: 1px solid rgba(248, 148, 29, 0.73); border-left: 1px solid rgba(248, 148, 29, 0.73); border-right: 1px solid rgba(248, 148, 29, 0.73); } .box .box-heading { border-bottom: 1px solid rgba(237, 138, 0, 0.8); font-weight: 500; } @media screen and (max-width: 1056px) { #footer .content-footer { margin-right: 40px; } #footer .care { margin-right: 40px; } } @media screen and (max-width: 923px) { #footer .content-footer { margin-right: 30px; } #footer .care { margin-right: 30px; } } @media screen and (max-width: 800px) { #footer .care ul { display: block; } #footer .contact { width: auto; } #footer .contact ul { display: block; text-align: center; } #footer .contact_icon ul li { background: none; } #footer .powered_text { text-align: center; } #footer .care:hover ul { display: block; } #footer .contact ul li { padding: 0; } #footer h3 { padding: 10px 0 0 0; } #footer .care ul, #footer .contact ul { padding: 0 0 10px; } #footer .contact ul li { min-height: 0; } #footer .contact ul li.phone, #footer .contact ul li.email { line-height: normal; } }
public/frontend/css/custom.css
text-align: left; } #menu { background: #3598dc; } #menu > ul > li:hover > a { color: #fff; background: #f8941d; } .box-product .sales_price { display: block; margin: 5px 0 0 0; padding: 0 8px; color: #555555; font-style: italic; font-size: 11px; } .product-info .price-old, .product-grid .price-old { color: #555555; } #column-left .box-product .sales_price, #column-right .box-product .sales_price { float: left; padding: 0 10px 0 0; margin: 0px 0 2px 0; font-size: 12px; } .box-product .name a:hover, .product-grid .name a:hover { color: #3598dc; text-decoration: none; } h1, select, input[type='text'], input[type='password'], textarea { font-family: Roboto, sans-serif; } .price { font-family: Arial, sans-serif; } .product-grid > div.alert-empty:hover { border: none; padding: 11px; } #column-left .box-product .name, #column-right .box-product .name { overflow: hidden; } .buttons { border-top: none; overflow: auto; padding: 0px 16px 0px 0px; margin-bottom: 20px; } .center { text-align: center; } .links .pagination.pagination li.prev.disabled, .links .pagination.pagination li.next.disabled, .links .pagination.pagination li.active { vertical-align: middle; display: inline-block; border: 1px solid #3598dc; padding: 4px 10px; font-weight: normal; text-decoration: none; color: #fff; background: #3598dc; } .links .pagination.pagination li { vertical-align: middle; display: inline-block; border: 1px solid #EEEEEE; text-decoration: none; color: #777; } .links .pagination.pagination li a { display: block; padding: 4px 10px; } #column-left .box-product .image { max-width: 25%; } #menu > ul > li > a { padding: 0px 17px 0px 16px; } #footer .powered_text { width: auto; } #footer .contact { width: 32%; } #footer .care { width: 25%; margin-right: 45px; } #footer .content-footer { margin-right: 45px; width: 30%; } #footer .contact ul { width: auto; } .welcome_text { font-size: 125%; font-family: monospace; font-weight: normal; } p.justify { text-align: justify; } #footer .content-footer p.justify { text-align: justify; } #footer, #footer a { color: #ccc; } #footer .ct_info.contact_icon ul li { background-size: 6%; } #footer .ct_info.contact ul li { min-height: auto; } #footer .contact ul li.address { background-position: 0px 8px; line-height: inherit; padding-top: 2%; } #footer .contact ul li.mobile { background-position: 0px -39px; line-height: inherit; } #footer .contact ul li.fax { background-position: 0px -117px; line-height: inherit; } #footer .contact ul li.email { background-position: 0px -78px; line-height: inherit; } #footer h3 { font-weight: 500; } .product-tab .tabs { border-bottom: 1px solid rgba(248, 148, 29, 0.73); } .product-tab .tabs li a { font-weight: 500; } .product-tab .tabs li.active a { border-top: 1px solid rgba(248, 148, 29, 0.73); border-left: 1px solid rgba(248, 148, 29, 0.73); border-right: 1px solid rgba(248, 148, 29, 0.73); } .box .box-heading { border-bottom: 1px solid rgba(237, 138, 0, 0.8); font-weight: 500; } @media screen and (max-width: 1056px) { #footer .content-footer { margin-right: 40px; } #footer .care { margin-right: 40px; } } @media screen and (max-width: 923px) { #footer .content-footer { margin-right: 30px; } #footer .care { margin-right: 30px; } } @media screen and (max-width: 800px) { #footer .care ul { display: block; } #footer .contact { width: auto; } #footer .contact ul { display: block; text-align: center; } #footer .contact_icon ul li { background: none; } #footer .powered_text { text-align: center; } #footer .care:hover ul { display: block; } #footer .contact ul li { padding: 0; } #footer h3 { padding: 10px 0 0 0; } #footer .care ul, #footer .contact ul { padding: 0 0 10px; } #footer .contact ul li { min-height: 0; } #footer .contact ul li.phone, #footer .contact ul li.email { line-height: normal; } }
0.233706
0.05279
.comparison { display: grid; grid-template-columns: repeat(2, 1fr); background-color: #2e2e2e; min-height: 60vh; } .comparisonSection { display: flex; flex-direction: column; align-items: center; justify-content: center; } .comparisonSection h2 { color: #fff; font-weight: 700; font-size: 3rem; margin-bottom: 1.5rem; } .comparisonSection:nth-child(even) h2:nth-child(odd) { color: #2e2e2e; } .black { color: #2e2e2e; } .comparisonSection h2 span { color: #ff7518; } .comparisonSection:nth-child(even) h2 span { color: #00aaf0; } .comparisonSection ul { list-style: none; margin: 0; padding: 0; } .comparisonSection ul li { color: #fff; font-size: 1.5rem; } .comparisonSection:nth-child(odd) ul li i { margin-right: 20px; color: #ff7518; } .comparisonSection:nth-child(even) ul li i { margin-right: 20px; color: #00aaf0; } .comparisonSection:first-child { background-color: #2e2e2e2e; background-image: url('/static/chapters_texture_dark.png'); background-repeat: no-repeat; background-size: cover; background-position: center; } .comparisonSection:last-child { background-color: #fff; background-image: url('/static/chapters_texture_light.png'); background-repeat: no-repeat; background-size: cover; background-position: center; } .comparisonSection:last-child ul li { color: #2e2e2e; } @media screen and (max-width: 992px) { .comparison { grid-template-columns: 1fr; min-height: auto; } .comparisonSection { display: block; margin: 0 auto; width: 100%; padding: 75px 20px; } .comparisonSection h2 { color: #fff; font-weight: 700; color: #00aaf0; font-size: 3rem; } .comparisonSection ul { list-style: none; margin: 0; padding: 0; } .comparisonSection ul li { color: #fff; font-size: 1.5rem; } .comparisonSection ul li i { margin-right: 20px; color: #00aaf0; } .comparisonSection:first-child { background-color: #2e2e2e2e; background-image: url('/static/chapters_texture_dark.png'); background-repeat: no-repeat; background-size: cover; background-position: center; } .comparisonSection:last-child { background-color: #fff; background-image: url('/static/chapters_texture_light.png'); background-repeat: no-repeat; background-size: cover; background-position: center; } .comparisonSection:last-child ul li { color: #2e2e2e; } }
styles/SuccessNotFailure.module.css
.comparison { display: grid; grid-template-columns: repeat(2, 1fr); background-color: #2e2e2e; min-height: 60vh; } .comparisonSection { display: flex; flex-direction: column; align-items: center; justify-content: center; } .comparisonSection h2 { color: #fff; font-weight: 700; font-size: 3rem; margin-bottom: 1.5rem; } .comparisonSection:nth-child(even) h2:nth-child(odd) { color: #2e2e2e; } .black { color: #2e2e2e; } .comparisonSection h2 span { color: #ff7518; } .comparisonSection:nth-child(even) h2 span { color: #00aaf0; } .comparisonSection ul { list-style: none; margin: 0; padding: 0; } .comparisonSection ul li { color: #fff; font-size: 1.5rem; } .comparisonSection:nth-child(odd) ul li i { margin-right: 20px; color: #ff7518; } .comparisonSection:nth-child(even) ul li i { margin-right: 20px; color: #00aaf0; } .comparisonSection:first-child { background-color: #2e2e2e2e; background-image: url('/static/chapters_texture_dark.png'); background-repeat: no-repeat; background-size: cover; background-position: center; } .comparisonSection:last-child { background-color: #fff; background-image: url('/static/chapters_texture_light.png'); background-repeat: no-repeat; background-size: cover; background-position: center; } .comparisonSection:last-child ul li { color: #2e2e2e; } @media screen and (max-width: 992px) { .comparison { grid-template-columns: 1fr; min-height: auto; } .comparisonSection { display: block; margin: 0 auto; width: 100%; padding: 75px 20px; } .comparisonSection h2 { color: #fff; font-weight: 700; color: #00aaf0; font-size: 3rem; } .comparisonSection ul { list-style: none; margin: 0; padding: 0; } .comparisonSection ul li { color: #fff; font-size: 1.5rem; } .comparisonSection ul li i { margin-right: 20px; color: #00aaf0; } .comparisonSection:first-child { background-color: #2e2e2e2e; background-image: url('/static/chapters_texture_dark.png'); background-repeat: no-repeat; background-size: cover; background-position: center; } .comparisonSection:last-child { background-color: #fff; background-image: url('/static/chapters_texture_light.png'); background-repeat: no-repeat; background-size: cover; background-position: center; } .comparisonSection:last-child ul li { color: #2e2e2e; } }
0.497559
0.226837
@import '../../../assets/styles/includes/variables.css'; @import '../../../assets/styles/includes/breakpoints.css'; @import '../../../assets/styles/includes/grid.css'; @import '../../../assets/styles/includes/typography.css'; .wrapper { background-color: var(--color-background-green-gray); display: flex; flex-direction: column; justify-content: center; } .content { @mixin grid-container; flex-wrap: wrap; padding-bottom: 24px; padding-top: 32.5px; @media (--bp-sm-only) { flex-wrap: wrap; } @media (--bp-sm-upper-only) { flex-wrap: wrap; } @media (--bp-md) { padding-bottom: 40px; padding-top: 64px; } @media (--bp-lg) { padding-bottom: 57px; } } .menuBlock { display: flex; flex-direction: column; height: auto; @media (--bp-sm-only) { @mixin full-width-column-sm; border-bottom: 1px solid var(--color-light-border); flex-direction: row; flex-wrap: wrap; margin-bottom: 27px; } @media (--bp-md) { @mixin span 2, var(--grid-columns-md), md; margin-bottom: 40px; } @media (--bp-lg) { @mixin span 2, var(--grid-columns-lg), lg; } } .menuBlockInMultiple { display: flex; flex-direction: column; height: auto; width: 100%; @media (--bp-sm-only) { flex-direction: row; flex-wrap: wrap; } } .menuBlockItemWrapper { margin-bottom: 30px; width: 100%; @media (--bp-md) { width: 70%; } } .menuBlockItemWrapper_noSub { @media (--bp-md) { padding-bottom: 30px; &:not(:last-child) { border-bottom: 1px solid var(--color-dark-border); } } } .menuBlockItem { @mixin type-nav; font-size: 14px; line-height: 18px; } .menuBlockSubItemWrapper { margin-bottom: 20px; width: 70%; @media (--bp-sm-only) { width: calc(50% - 5px); &:nth-child(odd) { margin-left: 10px; } } } .menuBlockSubItem { @mixin type-nav; @mixin font-family font-sans-serif-light; font-size: 14px; line-height: 18px; } .menuBlockItem, .menuBlockSubItem { width: auto; @media (--bp-md) { display: block; max-width: 100px; } } .copyright { @mixin full-width-column-sm; @mixin type-caption; opacity: 0.9; @media (--bp-sm-and-md-only) { order: 1000; } @media (--bp-md-only) { margin-top: 40px; div { display: inline-block; &:last-child { padding-left: 4px; } } } @media (--bp-lg) { @mixin span 6, var(--grid-columns-lg), lg; } } .copyrightYear { @mixin font-family font-sans-serif-light, false; }
src/components/structural/footer/footer.module.css
@import '../../../assets/styles/includes/variables.css'; @import '../../../assets/styles/includes/breakpoints.css'; @import '../../../assets/styles/includes/grid.css'; @import '../../../assets/styles/includes/typography.css'; .wrapper { background-color: var(--color-background-green-gray); display: flex; flex-direction: column; justify-content: center; } .content { @mixin grid-container; flex-wrap: wrap; padding-bottom: 24px; padding-top: 32.5px; @media (--bp-sm-only) { flex-wrap: wrap; } @media (--bp-sm-upper-only) { flex-wrap: wrap; } @media (--bp-md) { padding-bottom: 40px; padding-top: 64px; } @media (--bp-lg) { padding-bottom: 57px; } } .menuBlock { display: flex; flex-direction: column; height: auto; @media (--bp-sm-only) { @mixin full-width-column-sm; border-bottom: 1px solid var(--color-light-border); flex-direction: row; flex-wrap: wrap; margin-bottom: 27px; } @media (--bp-md) { @mixin span 2, var(--grid-columns-md), md; margin-bottom: 40px; } @media (--bp-lg) { @mixin span 2, var(--grid-columns-lg), lg; } } .menuBlockInMultiple { display: flex; flex-direction: column; height: auto; width: 100%; @media (--bp-sm-only) { flex-direction: row; flex-wrap: wrap; } } .menuBlockItemWrapper { margin-bottom: 30px; width: 100%; @media (--bp-md) { width: 70%; } } .menuBlockItemWrapper_noSub { @media (--bp-md) { padding-bottom: 30px; &:not(:last-child) { border-bottom: 1px solid var(--color-dark-border); } } } .menuBlockItem { @mixin type-nav; font-size: 14px; line-height: 18px; } .menuBlockSubItemWrapper { margin-bottom: 20px; width: 70%; @media (--bp-sm-only) { width: calc(50% - 5px); &:nth-child(odd) { margin-left: 10px; } } } .menuBlockSubItem { @mixin type-nav; @mixin font-family font-sans-serif-light; font-size: 14px; line-height: 18px; } .menuBlockItem, .menuBlockSubItem { width: auto; @media (--bp-md) { display: block; max-width: 100px; } } .copyright { @mixin full-width-column-sm; @mixin type-caption; opacity: 0.9; @media (--bp-sm-and-md-only) { order: 1000; } @media (--bp-md-only) { margin-top: 40px; div { display: inline-block; &:last-child { padding-left: 4px; } } } @media (--bp-lg) { @mixin span 6, var(--grid-columns-lg), lg; } } .copyrightYear { @mixin font-family font-sans-serif-light, false; }
0.477311
0.064329
.world-screen .active-contract-panel-module { top: 0; right: 0; width: 100%; position: absolute; pointer-events: auto; /*background-color: rgba(0, 0, 0, 0.8);*/ /* border-radius: 10px 0 0 10px;*/ /*box-shadow: 0px 0px 2px 2px rgba(10, 10, 10, 0.8); border: 1px rgba(130, 130, 130, 0.8) solid;*/ background-image: url("coui://gfx/ui/skin/panel_quest4.png"); background-size: 36.4rem 59.8rem; background-position: bottom; } .world-screen .active-contract-panel-module .header-container { width: 37.0rem; height: 5.9rem; position: relative; float: left; clear: left; /*margin-left: 1.0rem;*/ left: -1.0rem; top: -0.3rem; background-image: url("coui://gfx/ui/skin/panel_quest_header2.png"); background-size: 37.0rem 5.9rem; background-position: top left; } .world-screen .active-contract-panel-module .header-container .l-hide-button { top: -0.1rem; left: 2.3rem; bottom: 0; width: 4.5rem; height: 4.1rem; position: absolute; margin: auto 0; z-index: 5; } .world-screen .active-contract-panel-module .header-container .title-container { top: 0; left: 5.0rem; right: 0; bottom: 0; height: 5.0rem; position: absolute; margin: auto 0; overflow: hidden; } .world-screen .active-contract-panel-module .header-container .title { /* vertical center */ top: 50%; width: 100%; position: relative; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); text-align: center; text-overflow: ellipsis; line-height: 2.2rem; } .world-screen .active-contract-panel-module .content-container { /*height: 60.0rem;*/ width: 100%; max-height: 60.0rem; position: relative; float: left; clear: left; overflow: hidden; margin-left: 1.0rem; margin-right: 1.0rem; margin-bottom: 9.0rem; } .world-screen .active-contract-panel-module .content-container .divider { width: 100%; margin-top: 0.2rem; margin-bottom: 0.5rem; position: relative; float: left; clear: left; /*border-bottom: 1px rgba(130, 130, 130, 1) solid;*/ } .world-screen .active-contract-panel-module .content-container .l-list-container { padding-left: 0.5rem; padding-right: 2.0rem; padding-bottom: 0.5rem; position: relative; float: left; clear: left; } /* .world-screen .active-contract-panel-module .content-container .l-list-container .scroll-container { padding-left: 1.0rem; padding-right: 1.0rem; } */ /* rows */ .active-contract-panel-module .content-container .row { /*background-color: #B58B15;*/ margin-bottom: 1.0rem; float: left; clear: left; } .active-contract-panel-module .content-container .row.list { padding-left: 1.0rem; } .active-contract-panel-module .content-container .row:last-child { margin-bottom: 0; } /* description */ .active-contract-panel-module .content-container .row img { width: 16.0rem; float: left; clear: left; } /* description */ .active-contract-panel-module .content-container .row .description { float: left; clear: left; text-align: left; } /* list */ .active-contract-panel-module .content-container .row .title { margin-bottom: 0.4rem; float: left; clear: left; text-align: left; } .active-contract-panel-module .content-container .row.list img { width: 3.0rem; margin-right: 1.0rem; float: left; } .active-contract-panel-module .content-container .row.list .text { float: none; line-height: 2.6rem; text-align: left; overflow: hidden; }
game_files/en/v1-5-0-10/scripts/ui/screens/world/modules/world_screen_active_contract_panel/world_screen_active_contract_panel_module.css
.world-screen .active-contract-panel-module { top: 0; right: 0; width: 100%; position: absolute; pointer-events: auto; /*background-color: rgba(0, 0, 0, 0.8);*/ /* border-radius: 10px 0 0 10px;*/ /*box-shadow: 0px 0px 2px 2px rgba(10, 10, 10, 0.8); border: 1px rgba(130, 130, 130, 0.8) solid;*/ background-image: url("coui://gfx/ui/skin/panel_quest4.png"); background-size: 36.4rem 59.8rem; background-position: bottom; } .world-screen .active-contract-panel-module .header-container { width: 37.0rem; height: 5.9rem; position: relative; float: left; clear: left; /*margin-left: 1.0rem;*/ left: -1.0rem; top: -0.3rem; background-image: url("coui://gfx/ui/skin/panel_quest_header2.png"); background-size: 37.0rem 5.9rem; background-position: top left; } .world-screen .active-contract-panel-module .header-container .l-hide-button { top: -0.1rem; left: 2.3rem; bottom: 0; width: 4.5rem; height: 4.1rem; position: absolute; margin: auto 0; z-index: 5; } .world-screen .active-contract-panel-module .header-container .title-container { top: 0; left: 5.0rem; right: 0; bottom: 0; height: 5.0rem; position: absolute; margin: auto 0; overflow: hidden; } .world-screen .active-contract-panel-module .header-container .title { /* vertical center */ top: 50%; width: 100%; position: relative; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); text-align: center; text-overflow: ellipsis; line-height: 2.2rem; } .world-screen .active-contract-panel-module .content-container { /*height: 60.0rem;*/ width: 100%; max-height: 60.0rem; position: relative; float: left; clear: left; overflow: hidden; margin-left: 1.0rem; margin-right: 1.0rem; margin-bottom: 9.0rem; } .world-screen .active-contract-panel-module .content-container .divider { width: 100%; margin-top: 0.2rem; margin-bottom: 0.5rem; position: relative; float: left; clear: left; /*border-bottom: 1px rgba(130, 130, 130, 1) solid;*/ } .world-screen .active-contract-panel-module .content-container .l-list-container { padding-left: 0.5rem; padding-right: 2.0rem; padding-bottom: 0.5rem; position: relative; float: left; clear: left; } /* .world-screen .active-contract-panel-module .content-container .l-list-container .scroll-container { padding-left: 1.0rem; padding-right: 1.0rem; } */ /* rows */ .active-contract-panel-module .content-container .row { /*background-color: #B58B15;*/ margin-bottom: 1.0rem; float: left; clear: left; } .active-contract-panel-module .content-container .row.list { padding-left: 1.0rem; } .active-contract-panel-module .content-container .row:last-child { margin-bottom: 0; } /* description */ .active-contract-panel-module .content-container .row img { width: 16.0rem; float: left; clear: left; } /* description */ .active-contract-panel-module .content-container .row .description { float: left; clear: left; text-align: left; } /* list */ .active-contract-panel-module .content-container .row .title { margin-bottom: 0.4rem; float: left; clear: left; text-align: left; } .active-contract-panel-module .content-container .row.list img { width: 3.0rem; margin-right: 1.0rem; float: left; } .active-contract-panel-module .content-container .row.list .text { float: none; line-height: 2.6rem; text-align: left; overflow: hidden; }
0.511717
0.083516
.btn-cinza { color: #fff; background-color: #8B8682; border-color: #8B8682; } .btn-cinza:focus, .btn-cinza.focus { color: #fff; background-color: #CDC5BF; border-color: #CDC5BF; } .btn-cinza:hover { color: #fff; background-color: #CDC5BF; border-color: #CDC5BF; } .btn-cinza:active, .btn-cinza.active, .open > .dropdown-toggle.btn-cinza { color: #fff; background-color: #CDC5BF; border-color: #CDC5BF; } .btn-cinza:active:hover, .btn-cinza.active:hover, .open > .dropdown-toggle.btn-cinza:hover, .btn-cinza:active:focus, .btn-cinza.active:focus, .open > .dropdown-toggle.btn-cinza:focus, .btn-cinza:active.focus, .btn-cinza.active.focus, .open > .dropdown-toggle.btn-cinza.focus { color: #fff; background-color: #CDC5BF; border-color: #CDC5BF; } .btn-cinza:active, .btn-cinza.active, .open > .dropdown-toggle.btn-cinza { background-image: none; } .btn-cinza.disabled:hover, .btn-cinza[disabled]:hover, fieldset[disabled] .btn-cinza:hover, .btn-cinza.disabled:focus, .btn-cinza[disabled]:focus, fieldset[disabled] .btn-cinza:focus, .btn-cinza.disabled.focus, .btn-cinza[disabled].focus, fieldset[disabled] .btn-cinza.focus { background-color: #8B8682; border-color: #8B8682; } .btn-cinza .badge { color: #8B8682; background-color: #fff; } .btn-red { color: #fff; background-color: #A52A2A; border-color: #A52A2A; } .btn-red:focus, .btn-red.focus { color: #fff; background-color: #CDC5BF; border-color: #CDC5BF; } .btn-red:hover { color: #fff; background-color: #CDC5BF; border-color: #CDC5BF; } .btn-red:active, .btn-red.active, .open > .dropdown-toggle.btn-red { color: #fff; background-color: #CDC5BF; border-color: #CDC5BF; } .btn-red:active:hover, .btn-red.active:hover, .open > .dropdown-toggle.btn-red:hover, .btn-red:active:focus, .btn-red.active:focus, .open > .dropdown-toggle.btn-red:focus, .btn-red:active.focus, .btn-red.active.focus, .open > .dropdown-toggle.btn-red.focus { color: #fff; background-color: #CDC5BF; border-color: #CDC5BF; } .btn-red:active, .btn-red.active, .open > .dropdown-toggle.btn-red { background-image: none; } .btn-red.disabled:hover, .btn-red[disabled]:hover, fieldset[disabled] .btn-red:hover, .btn-red.disabled:focus, .btn-red[disabled]:focus, fieldset[disabled] .btn-red:focus, .btn-red.disabled.focus, .btn-red[disabled].focus, fieldset[disabled] .btn-red.focus { background-color: #A52A2A; border-color: #A52A2A; } .btn-red .badge { color: #A52A2A; background-color: #fff; } .btn-chocolate { color: #fff; background-color: #D2691E; border-color: #D2691E; } .btn-chocolate:focus, .btn-chocolate.focus { color: #fff; background-color: #CDC5BF; border-color: #CDC5BF; } .btn-chocolate:hover { color: #fff; background-color: #CDC5BF; border-color: #CDC5BF; } .btn-chocolate:active, .btn-chocolate.active, .open > .dropdown-toggle.btn-chocolate { color: #fff; background-color: #CDC5BF; border-color: #CDC5BF; } .btn-chocolate:active:hover, .btn-chocolate.active:hover, .open > .dropdown-toggle.btn-chocolate:hover, .btn-chocolate:active:focus, .btn-chocolate.active:focus, .open > .dropdown-toggle.btn-chocolate:focus, .btn-chocolate:active.focus, .btn-chocolate.active.focus, .open > .dropdown-toggle.btn-chocolate.focus { color: #fff; background-color: #CDC5BF; border-color: #CDC5BF; } .btn-chocolate:active, .btn-chocolate.active, .open > .dropdown-toggle.btn-chocolate { background-image: none; } .btn-chocolate.disabled:hover, .btn-chocolate[disabled]:hover, fieldset[disabled] .btn-chocolate:hover, .btn-chocolate.disabled:focus, .btn-chocolate[disabled]:focus, fieldset[disabled] .btn-chocolate:focus, .btn-chocolate.disabled.focus, .btn-chocolate[disabled].focus, fieldset[disabled] .btn-chocolate.focus { background-color: #D2691E; border-color: #D2691E; } .btn-chocolate .badge { color: #D2691E; background-color: #fff; } .btn-dark { color: #fff; background-color: #2F4F4F; border-color: #2F4F4F; } .btn-dark:focus, .btn-dark.focus { color: #fff; background-color: #CDC5BF; border-color: #CDC5BF; } .btn-dark:hover { color: #fff; background-color: #CDC5BF; border-color: #CDC5BF; } .btn-dark:active, .btn-dark.active, .open > .dropdown-toggle.btn-dark { color: #fff; background-color: #CDC5BF; border-color: #CDC5BF; } .btn-dark:active:hover, .btn-dark.active:hover, .open > .dropdown-toggle.btn-dark:hover, .btn-dark:active:focus, .btn-dark.active:focus, .open > .dropdown-toggle.btn-dark:focus, .btn-dark:active.focus, .btn-dark.active.focus, .open > .dropdown-toggle.btn-dark.focus { color: #fff; background-color: #CDC5BF; border-color: #CDC5BF; } .btn-dark:active, .btn-dark.active, .open > .dropdown-toggle.btn-dark { background-image: none; } .btn-dark.disabled:hover, .btn-dark[disabled]:hover, fieldset[disabled] .btn-dark:hover, .btn-dark.disabled:focus, .btn-dark[disabled]:focus, fieldset[disabled] .btn-dark:focus, .btn-dark.disabled.focus, .btn-dark[disabled].focus, fieldset[disabled] .btn-dark.focus { background-color: #2F4F4F; border-color: #2F4F4F; } .btn-dark .badge { color: #2F4F4F; background-color: #fff; } .btn-green { color: #fff; background-color: #006400; border-color: #006400; } .btn-green:focus, .btn-green.focus { color: #fff; background-color: #CDC5BF; border-color: #CDC5BF; } .btn-green:hover { color: #fff; background-color: #CDC5BF; border-color: #CDC5BF; } .btn-green:active, .btn-green.active, .open > .dropdown-toggle.btn-green { color: #fff; background-color: #CDC5BF; border-color: #CDC5BF; } .btn-green:active:hover, .btn-green.active:hover, .open > .dropdown-toggle.btn-green:hover, .btn-green:active:focus, .btn-green.active:focus, .open > .dropdown-toggle.btn-green:focus, .btn-green:active.focus, .btn-green.active.focus, .open > .dropdown-toggle.btn-green.focus { color: #fff; background-color: #CDC5BF; border-color: #CDC5BF; } .btn-green:active, .btn-green.active, .open > .dropdown-toggle.btn-green { background-image: none; } .btn-green.disabled:hover, .btn-green[disabled]:hover, fieldset[disabled] .btn-green:hover, .btn-green.disabled:focus, .btn-green[disabled]:focus, fieldset[disabled] .btn-green:focus, .btn-green.disabled.focus, .btn-green[disabled].focus, fieldset[disabled] .btn-green.focus { background-color: #006400; border-color: #006400; } .btn-green .badge { color: #006400; background-color: #fff; }
public/css/personalizado.css
.btn-cinza { color: #fff; background-color: #8B8682; border-color: #8B8682; } .btn-cinza:focus, .btn-cinza.focus { color: #fff; background-color: #CDC5BF; border-color: #CDC5BF; } .btn-cinza:hover { color: #fff; background-color: #CDC5BF; border-color: #CDC5BF; } .btn-cinza:active, .btn-cinza.active, .open > .dropdown-toggle.btn-cinza { color: #fff; background-color: #CDC5BF; border-color: #CDC5BF; } .btn-cinza:active:hover, .btn-cinza.active:hover, .open > .dropdown-toggle.btn-cinza:hover, .btn-cinza:active:focus, .btn-cinza.active:focus, .open > .dropdown-toggle.btn-cinza:focus, .btn-cinza:active.focus, .btn-cinza.active.focus, .open > .dropdown-toggle.btn-cinza.focus { color: #fff; background-color: #CDC5BF; border-color: #CDC5BF; } .btn-cinza:active, .btn-cinza.active, .open > .dropdown-toggle.btn-cinza { background-image: none; } .btn-cinza.disabled:hover, .btn-cinza[disabled]:hover, fieldset[disabled] .btn-cinza:hover, .btn-cinza.disabled:focus, .btn-cinza[disabled]:focus, fieldset[disabled] .btn-cinza:focus, .btn-cinza.disabled.focus, .btn-cinza[disabled].focus, fieldset[disabled] .btn-cinza.focus { background-color: #8B8682; border-color: #8B8682; } .btn-cinza .badge { color: #8B8682; background-color: #fff; } .btn-red { color: #fff; background-color: #A52A2A; border-color: #A52A2A; } .btn-red:focus, .btn-red.focus { color: #fff; background-color: #CDC5BF; border-color: #CDC5BF; } .btn-red:hover { color: #fff; background-color: #CDC5BF; border-color: #CDC5BF; } .btn-red:active, .btn-red.active, .open > .dropdown-toggle.btn-red { color: #fff; background-color: #CDC5BF; border-color: #CDC5BF; } .btn-red:active:hover, .btn-red.active:hover, .open > .dropdown-toggle.btn-red:hover, .btn-red:active:focus, .btn-red.active:focus, .open > .dropdown-toggle.btn-red:focus, .btn-red:active.focus, .btn-red.active.focus, .open > .dropdown-toggle.btn-red.focus { color: #fff; background-color: #CDC5BF; border-color: #CDC5BF; } .btn-red:active, .btn-red.active, .open > .dropdown-toggle.btn-red { background-image: none; } .btn-red.disabled:hover, .btn-red[disabled]:hover, fieldset[disabled] .btn-red:hover, .btn-red.disabled:focus, .btn-red[disabled]:focus, fieldset[disabled] .btn-red:focus, .btn-red.disabled.focus, .btn-red[disabled].focus, fieldset[disabled] .btn-red.focus { background-color: #A52A2A; border-color: #A52A2A; } .btn-red .badge { color: #A52A2A; background-color: #fff; } .btn-chocolate { color: #fff; background-color: #D2691E; border-color: #D2691E; } .btn-chocolate:focus, .btn-chocolate.focus { color: #fff; background-color: #CDC5BF; border-color: #CDC5BF; } .btn-chocolate:hover { color: #fff; background-color: #CDC5BF; border-color: #CDC5BF; } .btn-chocolate:active, .btn-chocolate.active, .open > .dropdown-toggle.btn-chocolate { color: #fff; background-color: #CDC5BF; border-color: #CDC5BF; } .btn-chocolate:active:hover, .btn-chocolate.active:hover, .open > .dropdown-toggle.btn-chocolate:hover, .btn-chocolate:active:focus, .btn-chocolate.active:focus, .open > .dropdown-toggle.btn-chocolate:focus, .btn-chocolate:active.focus, .btn-chocolate.active.focus, .open > .dropdown-toggle.btn-chocolate.focus { color: #fff; background-color: #CDC5BF; border-color: #CDC5BF; } .btn-chocolate:active, .btn-chocolate.active, .open > .dropdown-toggle.btn-chocolate { background-image: none; } .btn-chocolate.disabled:hover, .btn-chocolate[disabled]:hover, fieldset[disabled] .btn-chocolate:hover, .btn-chocolate.disabled:focus, .btn-chocolate[disabled]:focus, fieldset[disabled] .btn-chocolate:focus, .btn-chocolate.disabled.focus, .btn-chocolate[disabled].focus, fieldset[disabled] .btn-chocolate.focus { background-color: #D2691E; border-color: #D2691E; } .btn-chocolate .badge { color: #D2691E; background-color: #fff; } .btn-dark { color: #fff; background-color: #2F4F4F; border-color: #2F4F4F; } .btn-dark:focus, .btn-dark.focus { color: #fff; background-color: #CDC5BF; border-color: #CDC5BF; } .btn-dark:hover { color: #fff; background-color: #CDC5BF; border-color: #CDC5BF; } .btn-dark:active, .btn-dark.active, .open > .dropdown-toggle.btn-dark { color: #fff; background-color: #CDC5BF; border-color: #CDC5BF; } .btn-dark:active:hover, .btn-dark.active:hover, .open > .dropdown-toggle.btn-dark:hover, .btn-dark:active:focus, .btn-dark.active:focus, .open > .dropdown-toggle.btn-dark:focus, .btn-dark:active.focus, .btn-dark.active.focus, .open > .dropdown-toggle.btn-dark.focus { color: #fff; background-color: #CDC5BF; border-color: #CDC5BF; } .btn-dark:active, .btn-dark.active, .open > .dropdown-toggle.btn-dark { background-image: none; } .btn-dark.disabled:hover, .btn-dark[disabled]:hover, fieldset[disabled] .btn-dark:hover, .btn-dark.disabled:focus, .btn-dark[disabled]:focus, fieldset[disabled] .btn-dark:focus, .btn-dark.disabled.focus, .btn-dark[disabled].focus, fieldset[disabled] .btn-dark.focus { background-color: #2F4F4F; border-color: #2F4F4F; } .btn-dark .badge { color: #2F4F4F; background-color: #fff; } .btn-green { color: #fff; background-color: #006400; border-color: #006400; } .btn-green:focus, .btn-green.focus { color: #fff; background-color: #CDC5BF; border-color: #CDC5BF; } .btn-green:hover { color: #fff; background-color: #CDC5BF; border-color: #CDC5BF; } .btn-green:active, .btn-green.active, .open > .dropdown-toggle.btn-green { color: #fff; background-color: #CDC5BF; border-color: #CDC5BF; } .btn-green:active:hover, .btn-green.active:hover, .open > .dropdown-toggle.btn-green:hover, .btn-green:active:focus, .btn-green.active:focus, .open > .dropdown-toggle.btn-green:focus, .btn-green:active.focus, .btn-green.active.focus, .open > .dropdown-toggle.btn-green.focus { color: #fff; background-color: #CDC5BF; border-color: #CDC5BF; } .btn-green:active, .btn-green.active, .open > .dropdown-toggle.btn-green { background-image: none; } .btn-green.disabled:hover, .btn-green[disabled]:hover, fieldset[disabled] .btn-green:hover, .btn-green.disabled:focus, .btn-green[disabled]:focus, fieldset[disabled] .btn-green:focus, .btn-green.disabled.focus, .btn-green[disabled].focus, fieldset[disabled] .btn-green.focus { background-color: #006400; border-color: #006400; } .btn-green .badge { color: #006400; background-color: #fff; }
0.272025
0.051344
@font-face { font-family: "Pacifico"; src: url(../fonts/Pacifico-Regular.ttf); } @font-face { font-family: "Montserrat"; src: url(../fonts/Montserrat-Regular.ttf); } @font-face { font-family: "Montserrat"; font-weight: bold; src: url(../fonts/Montserrat-Bold.ttf); } .info { width: 950px; margin-left:270px; } img { border-radius: 100px; height: 150px; width: 150px; } .tipo { font-size: 50px; font:bold 15px; font-family: "Pacifico", cursive; } .tipo2 { font-size: 2em; font-weight: bold; } .tipo3 { font-size: 1.5em; color: #FF4500; } .wrap { width: 90%; max-width: 800px; margin-left: 470px; } .formulario { font-size: 16px; color: #FF4500; margin-bottom: 20px; } .formulario > div{ padding: 20px 0; } .formulario input[type="radio"] { display: none; } .formulario .radio label { color: #FF4500; padding: 5px 15px 5px 51px; display: inline-block; position: relative; font-size: 1.5em; border-radius: 3px; cursor: pointer; -webkit-transition:all 0.3s ease; -o-transition:all 0.3s ease; transition: all 0.3s ease; } .formulario .radio label:hover { background: rgb(255,69,0,0.3); } .formulario .radio label:before { content: ""; width: 17px; height: 17px; display: inline-block; background: none; border: 3px solid #FF4500; border-radius: 50%; position: absolute; left: 17px; top: 4px; } .formulario input[type="radio"]:checked + label { padding: 5px 15px; background: #FF4500; color: white; border-radius: 2px; } .formulario input[type="radio"]:checked + label:before { display: none; } .nombre { border-color: #FF4500; border-radius: 10px; width: 450px; height: 30px; font-size: 1.2em; font-family: "Montserrat"; outline: none; } .seleccion { width: 300px; height: 30px; font-size: 1.2em; border-color: #FF4500; border-radius: 10px; font-family: "Montserrat"; outline: none; } .realizar { font-family: "Montserrat"; font-size: 1.3em; font:bold 10px; background: #FF4500; color: white; border: none; padding: 10px; width: 120px; border-radius: 50px; transition: background .3s, color .3s; cursor: pointer; margin:center; } .realizar:hover { background: coral; color: white; }
public/css/Pedido.css
@font-face { font-family: "Pacifico"; src: url(../fonts/Pacifico-Regular.ttf); } @font-face { font-family: "Montserrat"; src: url(../fonts/Montserrat-Regular.ttf); } @font-face { font-family: "Montserrat"; font-weight: bold; src: url(../fonts/Montserrat-Bold.ttf); } .info { width: 950px; margin-left:270px; } img { border-radius: 100px; height: 150px; width: 150px; } .tipo { font-size: 50px; font:bold 15px; font-family: "Pacifico", cursive; } .tipo2 { font-size: 2em; font-weight: bold; } .tipo3 { font-size: 1.5em; color: #FF4500; } .wrap { width: 90%; max-width: 800px; margin-left: 470px; } .formulario { font-size: 16px; color: #FF4500; margin-bottom: 20px; } .formulario > div{ padding: 20px 0; } .formulario input[type="radio"] { display: none; } .formulario .radio label { color: #FF4500; padding: 5px 15px 5px 51px; display: inline-block; position: relative; font-size: 1.5em; border-radius: 3px; cursor: pointer; -webkit-transition:all 0.3s ease; -o-transition:all 0.3s ease; transition: all 0.3s ease; } .formulario .radio label:hover { background: rgb(255,69,0,0.3); } .formulario .radio label:before { content: ""; width: 17px; height: 17px; display: inline-block; background: none; border: 3px solid #FF4500; border-radius: 50%; position: absolute; left: 17px; top: 4px; } .formulario input[type="radio"]:checked + label { padding: 5px 15px; background: #FF4500; color: white; border-radius: 2px; } .formulario input[type="radio"]:checked + label:before { display: none; } .nombre { border-color: #FF4500; border-radius: 10px; width: 450px; height: 30px; font-size: 1.2em; font-family: "Montserrat"; outline: none; } .seleccion { width: 300px; height: 30px; font-size: 1.2em; border-color: #FF4500; border-radius: 10px; font-family: "Montserrat"; outline: none; } .realizar { font-family: "Montserrat"; font-size: 1.3em; font:bold 10px; background: #FF4500; color: white; border: none; padding: 10px; width: 120px; border-radius: 50px; transition: background .3s, color .3s; cursor: pointer; margin:center; } .realizar:hover { background: coral; color: white; }
0.308815
0.081374
body.rtl { direction: rtl; text-align: right; /* ---------------------------------------------------------------- */ /* TYPOGRAPHY /* ---------------------------------------------------------------- */ /* ---------------------------------------------------------------- */ /* HELPER CLASS /* ---------------------------------------------------------------- */ /* ---------------------------------------------------------------- */ /* FORMS /* ---------------------------------------------------------------- */ /* ---------------------------------------------------------------- */ /* BUTTONS /* ---------------------------------------------------------------- */ /* ---------------------------------------------------------------- */ /* HEADER /* ---------------------------------------------------------------- */ /* ---------------------------------------------------------------- */ /* Responsive Media Query * Medium devices (tablets, less than 992px) /* ---------------------------------------------------------------- */ /* ---------------------------------------------------------------- */ /* ABOUT /* ---------------------------------------------------------------- */ /* ------------------------------------------------------------------- */ /* SKILLS /* ------------------------------------------------------------------- */ /* ---------------------------------------------------------------- */ /* SERVICES /* ---------------------------------------------------------------- */ /* ---------------------------------------------------------------- */ /* PORTFOLIO /* ---------------------------------------------------------------- */ /* ---------------------------------------------------------------- */ /* BANNER /* ---------------------------------------------------------------- */ /* ---------------------------------------------------------------- */ /* Responsive Media Query /* Medium devices (tablets, less than 992px) /* ---------------------------------------------------------------- */ /* ---------------------------------------------------------------- */ /* Responsive Media Query * Extra small devices (portrait phones, less than 576px) /* ---------------------------------------------------------------- */ /* ---------------------------------------------------------------- */ /* LATEST BLOG /* ---------------------------------------------------------------- */ /* ---------------------------------------------------------------- */ /* FOOTER /* ---------------------------------------------------------------- */ /* ---------------------------------------------------------------- */ /* Portfolio Details /* ---------------------------------------------------------------- */ /* ---------------------------------------------------------------- */ /* SERVICES PAGE /* ---------------------------------------------------------------- */ /* ---------------------------------------------------------------- */ /* BLOG SIDEBAR /* ---------------------------------------------------------------- */ /* ---------------------------------------------------------------- */ /* 26.Blog Single /* ---------------------------------------------------------------- */ } body.rtl h1, body.rtl h2, body.rtl h3, body.rtl h4, body.rtl h5, body.rtl h6 { font-family: 'Tajawal', sans-serif; } body.rtl .inner-header-title:after, body.rtl .inner-header-title:before { right: 0; } body.rtl #addRowModal { direction: rtl; text-align: right; } body.rtl #addRowModal .modal-header .close { margin: 0; padding: 0; } body.rtl #addRowModal .modal-footer { -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; } body.rtl #addRowModal .modal-body .form-group { text-align: right !important; } body.rtl .comments-wrap .comments-item img { margin-right: 0 !important; margin-left: 1.5rem !important; } body.rtl .comments-wrap .comments-item .comments-reply-btn span { margin-right: 0 !important; margin-left: .5rem !important; } body.rtl .scroll-top-btn { right: initial; left: 10px; } body.rtl .header .nav-link { font-size: 16px; } body.rtl .header .navbar-toggler { padding: 0 0 0 10px; } @media only screen and (max-width: 991.98px) { body.rtl .header .navbar-brand { padding: 10px 15px 10px 0; } } body.rtl .about-inner .about-list > li > span { margin-left: 10px; text-align: right; -webkit-box-flex: 0; -ms-flex: 0 0 70%; flex: 0 0 70%; } body.rtl .about-inner .about-list > li > span::before { content: ":"; padding-left: 15px; } body.rtl .about-inner .about-video-btn { margin-left: 0 !important; margin-right: 1rem !important; } body.rtl .about-inner .about-video-btn i { -webkit-transform: rotate(180deg); transform: rotate(180deg); } body.rtl .skills-progress-wrap .skills-item .skills-progress-bar .skills-progress-value { -webkit-animation-name: slideInRight; animation-name: slideInRight; } body.rtl .skills-progress-wrap .skills-item .skills-item-text h6 .skill-percent { float: left; } body.rtl .services-box .services-box-body .services-more-link i { margin-left: 0 !important; margin-right: 0.5rem !important; -webkit-transform: rotate(180deg); transform: rotate(180deg); } body.rtl .portfolio-filter-wrap .portfolio-filter a { margin-left: 15px; margin-right: 0 !important; } body.rtl .portfolio-filter-wrap .portfolio-filter a:last-child { margin-left: 0; } body.rtl .glry-item .portfolio-back .portfolio-buttons a { margin-right: 0; margin-left: 10px; } body.rtl .glry-item .portfolio-back .portfolio-buttons a:last-child { margin-left: 0; } body.rtl .glry-item .portfolio-back .portfolio-buttons a:last-child i { -webkit-transform: rotate(180deg); transform: rotate(180deg); } body.rtl .banner-wrap .banner-right { text-align: left !important; } @media only screen and (max-width: 991.98px) { body.rtl .banner-wrap { text-align: center; } body.rtl .banner-wrap .banner-inner { text-align: center; } body.rtl .banner-wrap .banner-inner .banner-title { margin-bottom: 30px; } body.rtl .banner-wrap .banner-right { text-align: center !important; } } @media only screen and (max-width: 575.98px) { body.rtl .portfolio-filter-wrap .portfolio-filter a { margin-left: 0; } } body.rtl .blog-item .blog-inner > .blog-meta span { margin-right: 0 !important; } body.rtl .blog-item .blog-inner > .blog-meta span i { margin-left: 10px; } body.rtl .blog-item .blog-inner .blog-more-link i { margin-left: 0 !important; margin-right: .5rem !important; -webkit-transform: rotate(180deg); transform: rotate(180deg); } body.rtl .footer .footer-top .footer-social li { margin-right: 0; margin-left: 10px; } body.rtl .footer .footer-top .footer-social li:last-child { margin-left: 0; } body.rtl .portolio-single-inner .project-details .project-info > li > span { text-align: right; } body.rtl .portolio-single-inner .project-details .project-info > li > span::before { padding-right: 0; padding-left: 15px; } body.rtl .portolio-single-inner .project-details .project-meta .project-meta-box { text-align: left; -webkit-box-flex: 0; -ms-flex: 0 0 50%; flex: 0 0 50%; } body.rtl .why-choose-me-inner .why-choose-me-box .why-choose-me-item .why-choose-me-icon i { float: right; margin-left: 20px; margin-right: 0; } body.rtl .blog-sidebar-item .blog-sidebar-item-body { padding: 30px; border-radius: 5px; -webkit-transition: all 0.25s linear; transition: all 0.25s linear; -webkit-box-shadow: 0 10px 20px 0 rgba(61, 82, 96, 0.15); box-shadow: 0 10px 20px 0 rgba(61, 82, 96, 0.15); } body.rtl .blog-sidebar-item .blog-sidebar-item-body:hover { -webkit-box-shadow: 0 15px 30px 0 rgba(61, 82, 96, 0.2); box-shadow: 0 15px 30px 0 rgba(61, 82, 96, 0.2); } body.rtl .blog-sidebar-item .blog-sidebar-item-body .blog-single-title a { color: #000; } body.rtl .blog-sidebar-item .blog-sidebar-item-body .blog-single-title a:hover { color: #ff5500; } body.rtl .blog-sidebar-item .blog-sidebar-item-body .blog-inner-text { margin-bottom: 20px !important; } body.rtl .blog-sidebar .blog-widgets .blog-search-btn { right: initial; left: 0 !important; border-radius: 5px 0 0 5px; } body.rtl .blog-sidebar .recent-post-item .recent-post-img { margin-right: 0 !important; margin-left: 1rem !important; } body.rtl .blog-sidebar .recent-post-item .recent-post-date i { margin-right: 0; margin-left: 8px; } body.rtl .blog-sidebar .blog-category-list li a .category-count { float: left; } body.rtl .blog-sidebar .blog-tags li { float: right; } body.rtl .blog-single-inner .blog-links { margin-bottom: 20px; } body.rtl .blog-single-inner .blog-links a { margin-right: 0; margin-right: 10px; color: #000; font-weight: 500; } body.rtl .blog-single-inner .blog-links a:first-child { margin-right: 0; } body.rtl .blog-single-inner .blog-links a:first-child i { margin-right: 0; } body.rtl .blog-single-inner .blog-links a i { color: #ff5500; margin-left: 10px; } body.rtl .blog-single-inner .blog-inner-text { margin-bottom: 10px; } body.rtl .blog-single-inner .blog-inner-text:last-of-type { margin-bottom: 0; } body.rtl .blog-single-inner .blog-post-quote blockquote { padding: 30px; margin: 30px 0; border-radius: 5px; border-left: 5px solid #ff5500; -webkit-box-shadow: 0 10px 20px 0 rgba(61, 82, 96, 0.15); box-shadow: 0 10px 20px 0 rgba(61, 82, 96, 0.15); } body.rtl .blog-single-inner .blog-post-quote blockquote p { position: relative; font-size: 1.2rem; font-style: italic; color: #000; } body.rtl .blog-single-inner .blog-post-quote blockquote p:after { content: "\f10d"; top: 0; left: 0; color: #ff5500; font-family: "Font Awesome 5 Free"; font-weight: 600; font-size: 3rem; position: absolute; opacity: 0.1; z-index: -16; } body.rtl .blog-single-inner .blog-post-quote blockquote p strong { margin-top: 10px; display: block; color: #000; } /* Header */ body.rtl .header .nav-link { font-size: 16px; text-align: right; } body.rtl .header .dropdown-item { text-align: right; } body.rtl .header .navbar-toggler { padding: 0 0 0 10px; } body.rtl .header .dropdown-toggle { padding-left: 25px !important; } body.rtl .header .dropdown-toggle:before { right: initial !important; left: 0; } body.rtl .header .nav-btn-item { padding-left: 0; padding-right: 10px; } /* ---------------------------------------------------------------- */ /* Responsive Media Query * Medium devices (tablets, less than 992px) /* ---------------------------------------------------------------- */ @media only screen and (max-width: 991.98px) { body.rtl .header { text-align: right; } body.rtl .header .navbar { direction: rtl; } body.rtl .header .navbar-brand { padding: 10px 15px 10px 0; } body.rtl .header .dropdown-toggle:before { right: initial !important; left: 20px; } } /*# sourceMappingURL=rtl.css.map */
public/fibonacci/frontend/assets/css/rtl.css
body.rtl { direction: rtl; text-align: right; /* ---------------------------------------------------------------- */ /* TYPOGRAPHY /* ---------------------------------------------------------------- */ /* ---------------------------------------------------------------- */ /* HELPER CLASS /* ---------------------------------------------------------------- */ /* ---------------------------------------------------------------- */ /* FORMS /* ---------------------------------------------------------------- */ /* ---------------------------------------------------------------- */ /* BUTTONS /* ---------------------------------------------------------------- */ /* ---------------------------------------------------------------- */ /* HEADER /* ---------------------------------------------------------------- */ /* ---------------------------------------------------------------- */ /* Responsive Media Query * Medium devices (tablets, less than 992px) /* ---------------------------------------------------------------- */ /* ---------------------------------------------------------------- */ /* ABOUT /* ---------------------------------------------------------------- */ /* ------------------------------------------------------------------- */ /* SKILLS /* ------------------------------------------------------------------- */ /* ---------------------------------------------------------------- */ /* SERVICES /* ---------------------------------------------------------------- */ /* ---------------------------------------------------------------- */ /* PORTFOLIO /* ---------------------------------------------------------------- */ /* ---------------------------------------------------------------- */ /* BANNER /* ---------------------------------------------------------------- */ /* ---------------------------------------------------------------- */ /* Responsive Media Query /* Medium devices (tablets, less than 992px) /* ---------------------------------------------------------------- */ /* ---------------------------------------------------------------- */ /* Responsive Media Query * Extra small devices (portrait phones, less than 576px) /* ---------------------------------------------------------------- */ /* ---------------------------------------------------------------- */ /* LATEST BLOG /* ---------------------------------------------------------------- */ /* ---------------------------------------------------------------- */ /* FOOTER /* ---------------------------------------------------------------- */ /* ---------------------------------------------------------------- */ /* Portfolio Details /* ---------------------------------------------------------------- */ /* ---------------------------------------------------------------- */ /* SERVICES PAGE /* ---------------------------------------------------------------- */ /* ---------------------------------------------------------------- */ /* BLOG SIDEBAR /* ---------------------------------------------------------------- */ /* ---------------------------------------------------------------- */ /* 26.Blog Single /* ---------------------------------------------------------------- */ } body.rtl h1, body.rtl h2, body.rtl h3, body.rtl h4, body.rtl h5, body.rtl h6 { font-family: 'Tajawal', sans-serif; } body.rtl .inner-header-title:after, body.rtl .inner-header-title:before { right: 0; } body.rtl #addRowModal { direction: rtl; text-align: right; } body.rtl #addRowModal .modal-header .close { margin: 0; padding: 0; } body.rtl #addRowModal .modal-footer { -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; } body.rtl #addRowModal .modal-body .form-group { text-align: right !important; } body.rtl .comments-wrap .comments-item img { margin-right: 0 !important; margin-left: 1.5rem !important; } body.rtl .comments-wrap .comments-item .comments-reply-btn span { margin-right: 0 !important; margin-left: .5rem !important; } body.rtl .scroll-top-btn { right: initial; left: 10px; } body.rtl .header .nav-link { font-size: 16px; } body.rtl .header .navbar-toggler { padding: 0 0 0 10px; } @media only screen and (max-width: 991.98px) { body.rtl .header .navbar-brand { padding: 10px 15px 10px 0; } } body.rtl .about-inner .about-list > li > span { margin-left: 10px; text-align: right; -webkit-box-flex: 0; -ms-flex: 0 0 70%; flex: 0 0 70%; } body.rtl .about-inner .about-list > li > span::before { content: ":"; padding-left: 15px; } body.rtl .about-inner .about-video-btn { margin-left: 0 !important; margin-right: 1rem !important; } body.rtl .about-inner .about-video-btn i { -webkit-transform: rotate(180deg); transform: rotate(180deg); } body.rtl .skills-progress-wrap .skills-item .skills-progress-bar .skills-progress-value { -webkit-animation-name: slideInRight; animation-name: slideInRight; } body.rtl .skills-progress-wrap .skills-item .skills-item-text h6 .skill-percent { float: left; } body.rtl .services-box .services-box-body .services-more-link i { margin-left: 0 !important; margin-right: 0.5rem !important; -webkit-transform: rotate(180deg); transform: rotate(180deg); } body.rtl .portfolio-filter-wrap .portfolio-filter a { margin-left: 15px; margin-right: 0 !important; } body.rtl .portfolio-filter-wrap .portfolio-filter a:last-child { margin-left: 0; } body.rtl .glry-item .portfolio-back .portfolio-buttons a { margin-right: 0; margin-left: 10px; } body.rtl .glry-item .portfolio-back .portfolio-buttons a:last-child { margin-left: 0; } body.rtl .glry-item .portfolio-back .portfolio-buttons a:last-child i { -webkit-transform: rotate(180deg); transform: rotate(180deg); } body.rtl .banner-wrap .banner-right { text-align: left !important; } @media only screen and (max-width: 991.98px) { body.rtl .banner-wrap { text-align: center; } body.rtl .banner-wrap .banner-inner { text-align: center; } body.rtl .banner-wrap .banner-inner .banner-title { margin-bottom: 30px; } body.rtl .banner-wrap .banner-right { text-align: center !important; } } @media only screen and (max-width: 575.98px) { body.rtl .portfolio-filter-wrap .portfolio-filter a { margin-left: 0; } } body.rtl .blog-item .blog-inner > .blog-meta span { margin-right: 0 !important; } body.rtl .blog-item .blog-inner > .blog-meta span i { margin-left: 10px; } body.rtl .blog-item .blog-inner .blog-more-link i { margin-left: 0 !important; margin-right: .5rem !important; -webkit-transform: rotate(180deg); transform: rotate(180deg); } body.rtl .footer .footer-top .footer-social li { margin-right: 0; margin-left: 10px; } body.rtl .footer .footer-top .footer-social li:last-child { margin-left: 0; } body.rtl .portolio-single-inner .project-details .project-info > li > span { text-align: right; } body.rtl .portolio-single-inner .project-details .project-info > li > span::before { padding-right: 0; padding-left: 15px; } body.rtl .portolio-single-inner .project-details .project-meta .project-meta-box { text-align: left; -webkit-box-flex: 0; -ms-flex: 0 0 50%; flex: 0 0 50%; } body.rtl .why-choose-me-inner .why-choose-me-box .why-choose-me-item .why-choose-me-icon i { float: right; margin-left: 20px; margin-right: 0; } body.rtl .blog-sidebar-item .blog-sidebar-item-body { padding: 30px; border-radius: 5px; -webkit-transition: all 0.25s linear; transition: all 0.25s linear; -webkit-box-shadow: 0 10px 20px 0 rgba(61, 82, 96, 0.15); box-shadow: 0 10px 20px 0 rgba(61, 82, 96, 0.15); } body.rtl .blog-sidebar-item .blog-sidebar-item-body:hover { -webkit-box-shadow: 0 15px 30px 0 rgba(61, 82, 96, 0.2); box-shadow: 0 15px 30px 0 rgba(61, 82, 96, 0.2); } body.rtl .blog-sidebar-item .blog-sidebar-item-body .blog-single-title a { color: #000; } body.rtl .blog-sidebar-item .blog-sidebar-item-body .blog-single-title a:hover { color: #ff5500; } body.rtl .blog-sidebar-item .blog-sidebar-item-body .blog-inner-text { margin-bottom: 20px !important; } body.rtl .blog-sidebar .blog-widgets .blog-search-btn { right: initial; left: 0 !important; border-radius: 5px 0 0 5px; } body.rtl .blog-sidebar .recent-post-item .recent-post-img { margin-right: 0 !important; margin-left: 1rem !important; } body.rtl .blog-sidebar .recent-post-item .recent-post-date i { margin-right: 0; margin-left: 8px; } body.rtl .blog-sidebar .blog-category-list li a .category-count { float: left; } body.rtl .blog-sidebar .blog-tags li { float: right; } body.rtl .blog-single-inner .blog-links { margin-bottom: 20px; } body.rtl .blog-single-inner .blog-links a { margin-right: 0; margin-right: 10px; color: #000; font-weight: 500; } body.rtl .blog-single-inner .blog-links a:first-child { margin-right: 0; } body.rtl .blog-single-inner .blog-links a:first-child i { margin-right: 0; } body.rtl .blog-single-inner .blog-links a i { color: #ff5500; margin-left: 10px; } body.rtl .blog-single-inner .blog-inner-text { margin-bottom: 10px; } body.rtl .blog-single-inner .blog-inner-text:last-of-type { margin-bottom: 0; } body.rtl .blog-single-inner .blog-post-quote blockquote { padding: 30px; margin: 30px 0; border-radius: 5px; border-left: 5px solid #ff5500; -webkit-box-shadow: 0 10px 20px 0 rgba(61, 82, 96, 0.15); box-shadow: 0 10px 20px 0 rgba(61, 82, 96, 0.15); } body.rtl .blog-single-inner .blog-post-quote blockquote p { position: relative; font-size: 1.2rem; font-style: italic; color: #000; } body.rtl .blog-single-inner .blog-post-quote blockquote p:after { content: "\f10d"; top: 0; left: 0; color: #ff5500; font-family: "Font Awesome 5 Free"; font-weight: 600; font-size: 3rem; position: absolute; opacity: 0.1; z-index: -16; } body.rtl .blog-single-inner .blog-post-quote blockquote p strong { margin-top: 10px; display: block; color: #000; } /* Header */ body.rtl .header .nav-link { font-size: 16px; text-align: right; } body.rtl .header .dropdown-item { text-align: right; } body.rtl .header .navbar-toggler { padding: 0 0 0 10px; } body.rtl .header .dropdown-toggle { padding-left: 25px !important; } body.rtl .header .dropdown-toggle:before { right: initial !important; left: 0; } body.rtl .header .nav-btn-item { padding-left: 0; padding-right: 10px; } /* ---------------------------------------------------------------- */ /* Responsive Media Query * Medium devices (tablets, less than 992px) /* ---------------------------------------------------------------- */ @media only screen and (max-width: 991.98px) { body.rtl .header { text-align: right; } body.rtl .header .navbar { direction: rtl; } body.rtl .header .navbar-brand { padding: 10px 15px 10px 0; } body.rtl .header .dropdown-toggle:before { right: initial !important; left: 20px; } } /*# sourceMappingURL=rtl.css.map */
0.30013
0.025933
@media (min-width: 1500px) { .prev.slider-btn, .main-slider.owl-theme .owl-controls .owl-buttons .owl-prev { left: 7%; } .next.slider-btn, .main-slider.owl-theme .owl-controls .owl-buttons .owl-next { right: 7%; } } @media (max-width:1200px) { .theme-container{ padding-left: 15px; padding-right: 15px; } } @media (min-width:1200px) { .main-slider .carousel-inner > img{ max-width: none; } .title-wrap p, .testimonials-content > p{ margin-left: auto; margin-right: auto; width: 46%; } .about-wrap > p ,.video-wrap > p, .blog-wrap p{ margin-left: auto; margin-right: auto; width: 64%; } /* .caption-text.style-2 > p, .caption-text.style-3 > p{ width: 43%; }*/ .caption-text > p { width: 65%; } .caption-text.style-2 .extra-bold-font,.caption-text.style-5 .extra-bold-font { width: 68%; } .blog-wrap .title-1{ width: 58%; } } @media (max-width:1199px){ .slide-img{ display: none; } .caption-text.style-2 .extra-bold-font,.caption-text.style-5 .extra-bold-font { margin: auto auto 15px; } } @media (min-width:992px)and (max-width:1199px) { .style-5 .slider-form{ margin-left: -8%; } .caption-text.style-5,.caption-text.style-3 { margin-top: 0; } .caption-text.style-2 > p{ margin: auto auto 25px; } .caption-text .video-icon.fa{ margin: 0 auto 20px; font-size: 70px; height: 120px; line-height: 120px; width: 120px; } /*header*/ .navbar-brand{ width: 20%; padding-right: 0; } .navigation nav { float: left; width: 80%; } .header-wrap .navigation{ padding-right: 0; } .logo-title{ font-size: 16px; } .primary-navbar > li { padding-left: 13px; padding-right: 13px; } .primary-navbar > li > a{ font-size: 12px; } .login-register li a{ min-width: 110px; } /*home*/ .news-form .submit-btn { min-width: 145px; } .caption-text .extra-bold-font{ font-size: 50px; } .video-frame{ width: auto; margin: 20px; padding: 10px; } .main-slider .contact-slider{ margin-top: 0px; } .contact-slider .caption-text > p{ margin: auto auto 0; } /*404-page*/ .error-page .caption-text > p { margin: auto auto 30px; } /*blog*/ .social-tag li{ margin: 10px 5px 10px 0; } } @media (min-width:768px) { .sticky-header .navbar-brand,.sticky-header .primary-navbar, .sticky-header .login-register{ padding-top: 15px; padding-bottom: 15px; transition: all 0.2s ease-in-out 0s; -webkit-transition: all 0.2s ease-in-out 0s; } } @media (max-width:991px){ .header-variation-3 .primary-navbar > li.dropdown > a.dropdown-toggle::before{ content: "\f0d7"; } .header-variation-3 .primary-navbar > li > a { padding: 10px 0; } } @media (min-width:992px){ /***mega menu***/ .navigation .primary-navbar li .mega-dropdown-menu { width: 100%; z-index: 999; max-width: 100%; top: 70%; left: 15px; } .primary-navbar > li.mega-dropdown { position: inherit !important; } /***mega menu***/ } @media (min-width:768px)and (max-width:991px){ /*toggle display start*/ .navbar-toggle { display: block !important; margin: 6px 0 0; } #primary-navigation.navbar-collapse { display: none !important; } #primary-navigation.navbar-collapse.in { display: block !important; } .primary-navbar > li{ width: 100%; } .navigation .primary-navbar{ max-height: 250px; overflow: auto; background: #000000 none repeat scroll 0 0; } .navigation .primary-navbar li .dropdown-menu{ width: 100%; max-width: 100%; padding: 5px 0; position: static; } .navigation .dropdown-menu li ul { display: block; right: 0; } .navigation .logo-title{ float: left; } .header-variation-2 .primary-navbar{ background: #ffffff none repeat scroll 0 0; border-left: medium none; padding: 0; } /*toggle display end*/ /*home*/ .video-bg{ min-height: auto; } .theme-intro .no-padding { padding: 0 30px 30px; } .section-title { font-size: 40px; } .main-slider .contact-slider{ margin-top: 40px; } /*slider*/ .main-slider .theme-container{ margin: 135px auto auto; } .caption-text .form-wrap{ display: none; } .caption-text .video-icon.fa, .caption-text.style-3 , .caption-text.style-5{ margin-top: 0; } .caption-text .extra-bold-font { font-size: 40px; } .caption-text > p{ margin: auto auto 45px; } .caption-text.style-4 > p{ margin: 15px 0 30px; } .caption-text.style-2 p{ display: none; } .caption-text .video-icon.fa { font-size: 54px; height: 100px; line-height: 90px; margin-bottom: 15px; padding-left: 5px; width: 100px; } .caption-text.style-3 > p{ display: none; } /*blog*/ .blog-page { padding-top: 0; } .blog-text.style-4 > p{ margin: 0 0 15px; } .caption-text.blog-text .video-icon.fa{ margin-bottom: 0; } /*404-page*/ .main-slider #brand{ padding-top: 0; padding-bottom: 25px; } .error-page .caption-text > p { margin: auto auto 15px; } .error-page .error-icon { } .error-page .error-icon .fa { font-size: 40px; } /*coming-soon*/ .coming-soon .caption-text.style-5{ margin-top: 80px; } .countdown-section{ height: 120px; width: 120px; padding-top: 20px; } .countdown-amount{font-size: 40px;} /*comment*/ .comment-metadata{ padding-left: 90px; display: block; } .comment-content{ margin: 15px 0 0 0; width: 100%; } .comment-form-author, .comment-form-email, .comment-form-url{ float: none; width: 100%; margin-left: 0; margin-right: 0; } .video-frame{ width: auto; margin: 20px; padding: 10px; } .video-frame iframe{ height: 400px; } } @media (max-width:767px) { .video-bg{ min-height: auto; } .navbar-brand{ border-right: none; padding-bottom: 0; padding-top: 10px; } .header-variation-2 .primary-navbar{ border-left: none; } .login-register{ padding-top: 0; padding-bottom: 15px; } .logo .logo-title { float: left; } .primary-navbar { float: left !important; margin: 0; padding: 10px 0; width: 100%; } .primary-navbar .open .dropdown-menu { background-color: rgba(0, 0, 0, 0.5); position: relative; padding: 10px 0; } .navbar-brand{ float: none; } .navbar-collapse{ max-height: 250px; overflow: auto; } .navigation .primary-navbar li .dropdown-menu{ max-width: 100%; padding: 5px 0; } .navigation .dropdown-menu li ul { display: block; right: 0; } .header-wrap{ background-color: rgba(0, 0, 0, 1); } .newsletter{ width: 100%; } /*home*/ .main-slider { margin-top: 116px; } .header-variation-3 .main-slider{ margin-top: 0; } .caption-text .video-icon.fa, .caption-text.style-3 , .caption-text.style-5{ margin-top: 0; } .main-slider.owl-theme .owl-controls .owl-buttons .owl-prev, .main-slider.owl-theme .owl-controls .owl-buttons .owl-next{ height: 50px; width: 50px; line-height: 36px; font-size: 22px; } /*slider*/ .caption-text.style-3 > p , .main-slider #brand.contact-brand{ display: none; } .main-slider .theme-container,.header-variation-3 .main-slider .theme-container{ margin: 40px auto auto; } .caption-text .form-wrap{ display: none; } .caption-text.style-5 .extra-bold-font{ margin: 35px auto 15px; } .theme-intro .no-padding { padding: 0 30px 30px; } .theme-intro .item { padding: 0 20px; } .space-80,.space-100{ padding-bottom: 50px; padding-top: 50px; } .title-wrap.space-bottom-50{ padding-bottom: 30px; } .video-icon.fa{ display: block; margin: auto; height: 100px; width: 100px; line-height: 100px; font-size: 60px; } .contact-form .name { border-right: none; border-bottom: 1px solid #eaeaea; } .contact-form-wrap .submit-btn { font-size: 12px; min-height: 50px; min-width: 150px; } .video-frame{ width: auto; margin: 20px; padding: 10px; } .video-frame iframe{ height: 300px; } /*blog*/ .blog-page { padding-top: 0; } .launch-startup .btn{ font-size: 12px; height: 50px; line-height: 16px; } .launch-startup .title-3{ display: block; } .launch-startup .btn .fa{ font-size: 18px; } .caption-text.blog-text > p{ display: none; } .post-wrap > p{ font-size: 18px; } /*404-page*/ .main-slider #brand{ padding-bottom: 20px; padding-top: 0; } .error-page p { display: none; } /*coming-soon*/ .coming-soon .slider-form{ display: block; } #map{ height: 350px; } /*comment*/ .comment-author .avatar{ top: 0; } .comment-metadata{ padding-left: 90px; display: block; } .comment-content{ margin: 15px 0 0 0; width: 100%; } .comment-form-author, .comment-form-email, .comment-form-url{ float: none; width: 100%; margin-left: 0; margin-right: 0; } /*footer*/ .footer-bg .logo-title, .copy-rights, .footer .social-icons{ text-align: center; } } @media (min-width:480px) and (max-width:767px){ .caption-text > p { font-size: 16px; margin: auto auto 15px; } .caption-text.style-4 > p{ margin: 0 0 15px; } .section-title{ font-size: 24px; } .caption-text .extra-bold-font{ font-size: 30px; } .caption-text.style-3 .extra-bold-font{ font-size: 20px; } .coming-soon .caption-text.style-5 .extra-bold-font{ font-size: 42px; } .title-wrap p, .font-18{ font-size: 16px; } .caption-text .theme-btn, .caption-text .theme-btn-1{ height: 50px; font-size: 12px; line-height: 15px; margin-bottom: 10px; } .caption-text .video-icon.fa { font-size: 54px; height: 80px; line-height: 74px; margin-bottom: 0; padding-left: 5px; width: 80px; } /*blog*/ .blog-wrap .title-1, .post-wrap .title-1, .post-quote .title-1{ font-size: 24px; } /*404-page*/ .error-page .error-icon { display: block; } .error-page .error-icon .fa { font-size: 40px; } /*coming-soon*/ .countdown-section{ margin: 10px 60px 20px; } .mt-105 { margin-top: 50px; } } @media (max-width:480px){ .theme-slider.owl-theme .owl-controls .owl-buttons .owl-prev, .theme-slider.owl-theme .owl-controls .owl-buttons .owl-next{ display: none; } .caption-text > p{ display: none; } .title-wrap p, .font-18{ font-size: 14px; } .video-icon.fa{ height: 100px; line-height: 100px; width: 100px; font-size: 60px; } .theme-tabs ul{ border-radius: 0; width: 100%; } .theme-tabs ul li{ display: block; margin-right: 0; } .theme-tabs ul li a{ min-width: 100%; border: none; } .countdown-section{ margin: 10px 35px 20px; } /*blog*/ .caption-text.style-5 .extra-bold-font{ margin: 20px auto 15px; } .caption-text.blog-text .extra-bold-font{ margin-bottom: 15px; font-size: 26px; } .caption-text.blog-text .video-icon{ display: none; } .comment-content > p{ font-size: 14px; } } @media (max-width:479px){ .mt-105{ margin-top: 105px; } .section-title, .caption-text .extra-bold-font{ font-size: 16px; margin-bottom: 10px; } .caption-text.style-3 .extra-bold-font{ font-size: 16px; } .caption-text .theme-btn, .caption-text .theme-btn-1 { font-size: 10px; height: auto; padding: 10px; line-height: 15px; margin-bottom: 10px; } .coming-soon .caption-text .submit-btn{ font-size: 14px; height: 50px; } .main-slider .theme-container, .caption-text .video-icon.fa, .header-variation-3 .main-slider .theme-container, .header-variation-3 .caption-text .video-icon.fa{ margin: 20px auto auto; } .caption-text .video-icon.fa { font-size: 34px; height: 60px; line-height: 55px; width: 60px; padding-left: 5px; } .caption-text .slider-btns .fa { font-size: 18px; margin-right: 5px; } .newsletter .submit-btn{ min-width: 93px; } /*blog*/ .blog-wrap .title-1, .launch-startup .title-1, .post-wrap .title-1, .post-quote .title-1{ font-size: 20px; } .caption-text.blog-text .extra-bold-font{ font-size: 16px; } .caption-text.blog-text.style-5 .extra-bold-font { margin: 15px auto; } .post-btn .btn{ margin-bottom: 20px; } .blog-text .slider-title-1{ margin: 0; } /*coming-soon*/ .countdown-section{ height: 120px; width: 120px; padding-top: 20px; margin: 10px 12px 20px; } .countdown-amount{ font-size: 40px; } .coming-soon .caption-text.style-5 .extra-bold-font{ font-size: 38px; } } @media (max-width:360px){ .main-slider .theme-container, .caption-text .video-icon.fa, .header-variation-3 .main-slider .theme-container, .header-variation-3 .caption-text .video-icon.fa{ margin: 5px auto auto; } }
public/assets/css/media.css
@media (min-width: 1500px) { .prev.slider-btn, .main-slider.owl-theme .owl-controls .owl-buttons .owl-prev { left: 7%; } .next.slider-btn, .main-slider.owl-theme .owl-controls .owl-buttons .owl-next { right: 7%; } } @media (max-width:1200px) { .theme-container{ padding-left: 15px; padding-right: 15px; } } @media (min-width:1200px) { .main-slider .carousel-inner > img{ max-width: none; } .title-wrap p, .testimonials-content > p{ margin-left: auto; margin-right: auto; width: 46%; } .about-wrap > p ,.video-wrap > p, .blog-wrap p{ margin-left: auto; margin-right: auto; width: 64%; } /* .caption-text.style-2 > p, .caption-text.style-3 > p{ width: 43%; }*/ .caption-text > p { width: 65%; } .caption-text.style-2 .extra-bold-font,.caption-text.style-5 .extra-bold-font { width: 68%; } .blog-wrap .title-1{ width: 58%; } } @media (max-width:1199px){ .slide-img{ display: none; } .caption-text.style-2 .extra-bold-font,.caption-text.style-5 .extra-bold-font { margin: auto auto 15px; } } @media (min-width:992px)and (max-width:1199px) { .style-5 .slider-form{ margin-left: -8%; } .caption-text.style-5,.caption-text.style-3 { margin-top: 0; } .caption-text.style-2 > p{ margin: auto auto 25px; } .caption-text .video-icon.fa{ margin: 0 auto 20px; font-size: 70px; height: 120px; line-height: 120px; width: 120px; } /*header*/ .navbar-brand{ width: 20%; padding-right: 0; } .navigation nav { float: left; width: 80%; } .header-wrap .navigation{ padding-right: 0; } .logo-title{ font-size: 16px; } .primary-navbar > li { padding-left: 13px; padding-right: 13px; } .primary-navbar > li > a{ font-size: 12px; } .login-register li a{ min-width: 110px; } /*home*/ .news-form .submit-btn { min-width: 145px; } .caption-text .extra-bold-font{ font-size: 50px; } .video-frame{ width: auto; margin: 20px; padding: 10px; } .main-slider .contact-slider{ margin-top: 0px; } .contact-slider .caption-text > p{ margin: auto auto 0; } /*404-page*/ .error-page .caption-text > p { margin: auto auto 30px; } /*blog*/ .social-tag li{ margin: 10px 5px 10px 0; } } @media (min-width:768px) { .sticky-header .navbar-brand,.sticky-header .primary-navbar, .sticky-header .login-register{ padding-top: 15px; padding-bottom: 15px; transition: all 0.2s ease-in-out 0s; -webkit-transition: all 0.2s ease-in-out 0s; } } @media (max-width:991px){ .header-variation-3 .primary-navbar > li.dropdown > a.dropdown-toggle::before{ content: "\f0d7"; } .header-variation-3 .primary-navbar > li > a { padding: 10px 0; } } @media (min-width:992px){ /***mega menu***/ .navigation .primary-navbar li .mega-dropdown-menu { width: 100%; z-index: 999; max-width: 100%; top: 70%; left: 15px; } .primary-navbar > li.mega-dropdown { position: inherit !important; } /***mega menu***/ } @media (min-width:768px)and (max-width:991px){ /*toggle display start*/ .navbar-toggle { display: block !important; margin: 6px 0 0; } #primary-navigation.navbar-collapse { display: none !important; } #primary-navigation.navbar-collapse.in { display: block !important; } .primary-navbar > li{ width: 100%; } .navigation .primary-navbar{ max-height: 250px; overflow: auto; background: #000000 none repeat scroll 0 0; } .navigation .primary-navbar li .dropdown-menu{ width: 100%; max-width: 100%; padding: 5px 0; position: static; } .navigation .dropdown-menu li ul { display: block; right: 0; } .navigation .logo-title{ float: left; } .header-variation-2 .primary-navbar{ background: #ffffff none repeat scroll 0 0; border-left: medium none; padding: 0; } /*toggle display end*/ /*home*/ .video-bg{ min-height: auto; } .theme-intro .no-padding { padding: 0 30px 30px; } .section-title { font-size: 40px; } .main-slider .contact-slider{ margin-top: 40px; } /*slider*/ .main-slider .theme-container{ margin: 135px auto auto; } .caption-text .form-wrap{ display: none; } .caption-text .video-icon.fa, .caption-text.style-3 , .caption-text.style-5{ margin-top: 0; } .caption-text .extra-bold-font { font-size: 40px; } .caption-text > p{ margin: auto auto 45px; } .caption-text.style-4 > p{ margin: 15px 0 30px; } .caption-text.style-2 p{ display: none; } .caption-text .video-icon.fa { font-size: 54px; height: 100px; line-height: 90px; margin-bottom: 15px; padding-left: 5px; width: 100px; } .caption-text.style-3 > p{ display: none; } /*blog*/ .blog-page { padding-top: 0; } .blog-text.style-4 > p{ margin: 0 0 15px; } .caption-text.blog-text .video-icon.fa{ margin-bottom: 0; } /*404-page*/ .main-slider #brand{ padding-top: 0; padding-bottom: 25px; } .error-page .caption-text > p { margin: auto auto 15px; } .error-page .error-icon { } .error-page .error-icon .fa { font-size: 40px; } /*coming-soon*/ .coming-soon .caption-text.style-5{ margin-top: 80px; } .countdown-section{ height: 120px; width: 120px; padding-top: 20px; } .countdown-amount{font-size: 40px;} /*comment*/ .comment-metadata{ padding-left: 90px; display: block; } .comment-content{ margin: 15px 0 0 0; width: 100%; } .comment-form-author, .comment-form-email, .comment-form-url{ float: none; width: 100%; margin-left: 0; margin-right: 0; } .video-frame{ width: auto; margin: 20px; padding: 10px; } .video-frame iframe{ height: 400px; } } @media (max-width:767px) { .video-bg{ min-height: auto; } .navbar-brand{ border-right: none; padding-bottom: 0; padding-top: 10px; } .header-variation-2 .primary-navbar{ border-left: none; } .login-register{ padding-top: 0; padding-bottom: 15px; } .logo .logo-title { float: left; } .primary-navbar { float: left !important; margin: 0; padding: 10px 0; width: 100%; } .primary-navbar .open .dropdown-menu { background-color: rgba(0, 0, 0, 0.5); position: relative; padding: 10px 0; } .navbar-brand{ float: none; } .navbar-collapse{ max-height: 250px; overflow: auto; } .navigation .primary-navbar li .dropdown-menu{ max-width: 100%; padding: 5px 0; } .navigation .dropdown-menu li ul { display: block; right: 0; } .header-wrap{ background-color: rgba(0, 0, 0, 1); } .newsletter{ width: 100%; } /*home*/ .main-slider { margin-top: 116px; } .header-variation-3 .main-slider{ margin-top: 0; } .caption-text .video-icon.fa, .caption-text.style-3 , .caption-text.style-5{ margin-top: 0; } .main-slider.owl-theme .owl-controls .owl-buttons .owl-prev, .main-slider.owl-theme .owl-controls .owl-buttons .owl-next{ height: 50px; width: 50px; line-height: 36px; font-size: 22px; } /*slider*/ .caption-text.style-3 > p , .main-slider #brand.contact-brand{ display: none; } .main-slider .theme-container,.header-variation-3 .main-slider .theme-container{ margin: 40px auto auto; } .caption-text .form-wrap{ display: none; } .caption-text.style-5 .extra-bold-font{ margin: 35px auto 15px; } .theme-intro .no-padding { padding: 0 30px 30px; } .theme-intro .item { padding: 0 20px; } .space-80,.space-100{ padding-bottom: 50px; padding-top: 50px; } .title-wrap.space-bottom-50{ padding-bottom: 30px; } .video-icon.fa{ display: block; margin: auto; height: 100px; width: 100px; line-height: 100px; font-size: 60px; } .contact-form .name { border-right: none; border-bottom: 1px solid #eaeaea; } .contact-form-wrap .submit-btn { font-size: 12px; min-height: 50px; min-width: 150px; } .video-frame{ width: auto; margin: 20px; padding: 10px; } .video-frame iframe{ height: 300px; } /*blog*/ .blog-page { padding-top: 0; } .launch-startup .btn{ font-size: 12px; height: 50px; line-height: 16px; } .launch-startup .title-3{ display: block; } .launch-startup .btn .fa{ font-size: 18px; } .caption-text.blog-text > p{ display: none; } .post-wrap > p{ font-size: 18px; } /*404-page*/ .main-slider #brand{ padding-bottom: 20px; padding-top: 0; } .error-page p { display: none; } /*coming-soon*/ .coming-soon .slider-form{ display: block; } #map{ height: 350px; } /*comment*/ .comment-author .avatar{ top: 0; } .comment-metadata{ padding-left: 90px; display: block; } .comment-content{ margin: 15px 0 0 0; width: 100%; } .comment-form-author, .comment-form-email, .comment-form-url{ float: none; width: 100%; margin-left: 0; margin-right: 0; } /*footer*/ .footer-bg .logo-title, .copy-rights, .footer .social-icons{ text-align: center; } } @media (min-width:480px) and (max-width:767px){ .caption-text > p { font-size: 16px; margin: auto auto 15px; } .caption-text.style-4 > p{ margin: 0 0 15px; } .section-title{ font-size: 24px; } .caption-text .extra-bold-font{ font-size: 30px; } .caption-text.style-3 .extra-bold-font{ font-size: 20px; } .coming-soon .caption-text.style-5 .extra-bold-font{ font-size: 42px; } .title-wrap p, .font-18{ font-size: 16px; } .caption-text .theme-btn, .caption-text .theme-btn-1{ height: 50px; font-size: 12px; line-height: 15px; margin-bottom: 10px; } .caption-text .video-icon.fa { font-size: 54px; height: 80px; line-height: 74px; margin-bottom: 0; padding-left: 5px; width: 80px; } /*blog*/ .blog-wrap .title-1, .post-wrap .title-1, .post-quote .title-1{ font-size: 24px; } /*404-page*/ .error-page .error-icon { display: block; } .error-page .error-icon .fa { font-size: 40px; } /*coming-soon*/ .countdown-section{ margin: 10px 60px 20px; } .mt-105 { margin-top: 50px; } } @media (max-width:480px){ .theme-slider.owl-theme .owl-controls .owl-buttons .owl-prev, .theme-slider.owl-theme .owl-controls .owl-buttons .owl-next{ display: none; } .caption-text > p{ display: none; } .title-wrap p, .font-18{ font-size: 14px; } .video-icon.fa{ height: 100px; line-height: 100px; width: 100px; font-size: 60px; } .theme-tabs ul{ border-radius: 0; width: 100%; } .theme-tabs ul li{ display: block; margin-right: 0; } .theme-tabs ul li a{ min-width: 100%; border: none; } .countdown-section{ margin: 10px 35px 20px; } /*blog*/ .caption-text.style-5 .extra-bold-font{ margin: 20px auto 15px; } .caption-text.blog-text .extra-bold-font{ margin-bottom: 15px; font-size: 26px; } .caption-text.blog-text .video-icon{ display: none; } .comment-content > p{ font-size: 14px; } } @media (max-width:479px){ .mt-105{ margin-top: 105px; } .section-title, .caption-text .extra-bold-font{ font-size: 16px; margin-bottom: 10px; } .caption-text.style-3 .extra-bold-font{ font-size: 16px; } .caption-text .theme-btn, .caption-text .theme-btn-1 { font-size: 10px; height: auto; padding: 10px; line-height: 15px; margin-bottom: 10px; } .coming-soon .caption-text .submit-btn{ font-size: 14px; height: 50px; } .main-slider .theme-container, .caption-text .video-icon.fa, .header-variation-3 .main-slider .theme-container, .header-variation-3 .caption-text .video-icon.fa{ margin: 20px auto auto; } .caption-text .video-icon.fa { font-size: 34px; height: 60px; line-height: 55px; width: 60px; padding-left: 5px; } .caption-text .slider-btns .fa { font-size: 18px; margin-right: 5px; } .newsletter .submit-btn{ min-width: 93px; } /*blog*/ .blog-wrap .title-1, .launch-startup .title-1, .post-wrap .title-1, .post-quote .title-1{ font-size: 20px; } .caption-text.blog-text .extra-bold-font{ font-size: 16px; } .caption-text.blog-text.style-5 .extra-bold-font { margin: 15px auto; } .post-btn .btn{ margin-bottom: 20px; } .blog-text .slider-title-1{ margin: 0; } /*coming-soon*/ .countdown-section{ height: 120px; width: 120px; padding-top: 20px; margin: 10px 12px 20px; } .countdown-amount{ font-size: 40px; } .coming-soon .caption-text.style-5 .extra-bold-font{ font-size: 38px; } } @media (max-width:360px){ .main-slider .theme-container, .caption-text .video-icon.fa, .header-variation-3 .main-slider .theme-container, .header-variation-3 .caption-text .video-icon.fa{ margin: 5px auto auto; } }
0.30054
0.058078
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;600&display=swap"); * { margin: 0; padding: 0; box-sizing: border-box; } .vertical { width: 125px; height: 100%; position: absolute; left: 0; display: flex; justify-content: space-between; align-items: center; flex-direction: column; } .vertical img { width: 100px; margin-top: 50px; } .vertical ul { width: 100%; height: 50%; display: flex; justify-content: flex-end; align-items: center; flex-direction: column; } .vertical ul li { width: 100%; height: 60%; display: flex; justify-content: center; align-items: center; } .vertical ul li a { width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; color: #00a4b6; transition: all 150ms ease-in-out; text-decoration: none; } .vertical ul li a .fas { font-size: 20px; text-decoration: none; } .horizontal { flex-direction: row; width: 100%; height: 100px; position: absolute; display: flex; justify-content: space-around; align-items: center; top: 0; } .horizontal img { width: 100px; } .horizontal ul { width: 50%; height: auto; display: flex; justify-content: space-evenly; align-items: center; flex-direction: row; list-style: none; } .horizontal ul li a { padding: 5px 15px 5px 15px; border: 1.5px solid #00a4b6; border-radius: 5px; text-decoration: none; font-size: 18px; font-family: "Poppins", sans-serif; font-weight: 300; text-shadow: 1px 1px 3px #000000bd; white-space: nowrap; } .horizontal ul li a .fas { font-size: 14px; margin-left: 7.5px; } .horizontal ul li:last-child a { border: 1.5px solid #ff9736; } .horizontal ul li:last-child a:hover { border-color: #faa75a; } nav { background-color: #202a2b; box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.604); transition: all 100ms ease; } nav ul { list-style: none; } nav ul li a { color: #00a4b6; transition: all 150ms ease-in-out; } nav ul li a:hover { background-color: rgba(255, 255, 255, 0.022); color: #01c1d6; border-color: #00c9df; } nav ul li:last-child a { color: #ff9736; } nav ul li:last-child a:hover { background-color: #ffffff06; color: #faa75a; }
assets/css/navbar.css
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;600&display=swap"); * { margin: 0; padding: 0; box-sizing: border-box; } .vertical { width: 125px; height: 100%; position: absolute; left: 0; display: flex; justify-content: space-between; align-items: center; flex-direction: column; } .vertical img { width: 100px; margin-top: 50px; } .vertical ul { width: 100%; height: 50%; display: flex; justify-content: flex-end; align-items: center; flex-direction: column; } .vertical ul li { width: 100%; height: 60%; display: flex; justify-content: center; align-items: center; } .vertical ul li a { width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; color: #00a4b6; transition: all 150ms ease-in-out; text-decoration: none; } .vertical ul li a .fas { font-size: 20px; text-decoration: none; } .horizontal { flex-direction: row; width: 100%; height: 100px; position: absolute; display: flex; justify-content: space-around; align-items: center; top: 0; } .horizontal img { width: 100px; } .horizontal ul { width: 50%; height: auto; display: flex; justify-content: space-evenly; align-items: center; flex-direction: row; list-style: none; } .horizontal ul li a { padding: 5px 15px 5px 15px; border: 1.5px solid #00a4b6; border-radius: 5px; text-decoration: none; font-size: 18px; font-family: "Poppins", sans-serif; font-weight: 300; text-shadow: 1px 1px 3px #000000bd; white-space: nowrap; } .horizontal ul li a .fas { font-size: 14px; margin-left: 7.5px; } .horizontal ul li:last-child a { border: 1.5px solid #ff9736; } .horizontal ul li:last-child a:hover { border-color: #faa75a; } nav { background-color: #202a2b; box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.604); transition: all 100ms ease; } nav ul { list-style: none; } nav ul li a { color: #00a4b6; transition: all 150ms ease-in-out; } nav ul li a:hover { background-color: rgba(255, 255, 255, 0.022); color: #01c1d6; border-color: #00c9df; } nav ul li:last-child a { color: #ff9736; } nav ul li:last-child a:hover { background-color: #ffffff06; color: #faa75a; }
0.385375
0.0729
body { margin-top: 100px; background-color:white; } @media(min-width:768px) { body { margin-top: 50px; } } #wrapper { padding-left: 0; } #page-wrapper { width: 100%; padding: 0; background-color: #fff; } .huge { font-size: 50px; line-height: normal; } @media(min-width:768px) { #wrapper { padding-left: 225px; } #page-wrapper { padding: 10px; } } /* Top Navigation */ .top-nav { padding: 0 15px; } .top-nav>li { display: inline-block; float: left; } .top-nav>li>a { padding-top: 15px; padding-bottom: 15px; line-height: 20px; color: #999; } .top-nav>li>a:hover, .top-nav>li>a:focus, .top-nav>.open>a, .top-nav>.open>a:hover, .top-nav>.open>a:focus { color: #fff; background-color: #000; } .top-nav>.open>.dropdown-menu { float: left; position: absolute; margin-top: 0; border: 1px solid rgba(0,0,0,.15); border-top-left-radius: 0; border-top-right-radius: 0; background-color: #fff; -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175); box-shadow: 0 6px 12px rgba(0,0,0,.175); } .top-nav>.open>.dropdown-menu>li>a { white-space: normal; } ul.message-dropdown { padding: 0; max-height: 250px; overflow-x: hidden; overflow-y: auto; } li.message-preview { width: 275px; border-bottom: 1px solid rgba(0,0,0,.15); } li.message-preview>a { padding-top: 15px; padding-bottom: 15px; } li.message-footer { margin: 5px 0; } ul.alert-dropdown { width: 200px; } /* Side Navigation */ @media(min-width:768px) { .side-nav { position: fixed; top: 0px; left: 225px; width: 225px; margin-left: -225px; border: none; border-radius: 0; overflow-y: auto; background-color: #222; bottom: 0; overflow-x: hidden; padding-bottom: 40px; } .side-nav>li>a { width: 225px; } .side-nav li a:hover, .side-nav li a:focus { outline: none; background-color: #000 !important; } } .side-nav>li>ul { padding: 0; } .side-nav>li>ul>li>a { display: block; padding: 10px 15px 10px 38px; text-decoration: none; color: #999; } .side-nav>li>ul>li>a:hover { color: #fff; } /* Flot Chart Containers */ .flot-chart { display: block; height: 400px; } .flot-chart-content { width: 100%; height: 100%; } /* Custom Colored Panels */ .huge { font-size: 40px; } .panel-green { border-color: #5cb85c; } .panel-green > .panel-heading { border-color: #5cb85c; color: #fff; background-color: #5cb85c; } .panel-green > a { color: #5cb85c; } .panel-green > a:hover { color: #3d8b3d; } .panel-red { border-color: #d9534f; } .panel-red > .panel-heading { border-color: #d9534f; color: #fff; background-color: #d9534f; } .panel-red > a { color: #d9534f; } .panel-red > a:hover { color: #b52b27; } .panel-yellow { border-color: #f0ad4e; } .panel-yellow > .panel-heading { border-color: #f0ad4e; color: #fff; background-color: #f0ad4e; } .panel-yellow > a { color: #f0ad4e; } .panel-yellow > a:hover { color: #df8a13; } *{ color:#ef6960; } .navbar{ background: white; color:#ef6960!important; } .navbar-nav>li>a, .navbar-nav>li>a>i, .breadcrumb>.active, .breadcrumb>li>i, .treeElement, .treeElement>i, .treeElement>a, .treeElement>p, .treeElement>ul, .treeElement>li, .side-nav>li>ul>li>a { color:white; } .treeElement{ padding-left:0px; } .navbar-inverse{ border-color:white; } .navbar-nav{ color:white; background: #ef6960; /* For browsers that do not support gradients */ background: -webkit-linear-gradient(#f5a163, #ef6960); /* For Safari 5.1 to 6.0 */ background: -o-linear-gradient(#f5a163, #ef6960); /* For Opera 11.1 to 12.0 */ background: -moz-linear-gradient(#f5a163, #ef6960); /* For Firefox 3.6 to 15 */ background: linear-gradient(#f5a163, #ef6960); /* Standard syntax */ } .breadcrumb, .breadcrumb>ol>li { color:white; background-color:#f5a163; } body{ margin-top:0px!important; } .dropdown, .dropdown-toggle:focus, .dropdown-toggle:hover, .dropdown-toggle:active, .dropdown-toggle:visited, .top-nav>li>a:hover, .top-nav>li>a:focus, .top-nav>.open>a, .top-nav>.open>a:hover, .top-nav>.open>a:focus{ background-color: transparent!important; } .fr-toolbar{ border-top-width: 0px!important; } .app-title-li{ margin-top: 15px; } file-tree-element { display: block; line-height: 20px; box-sizing: border-box; color:white; list-style-position: outside; padding: 0px 0px 5px 15px; position:relative; text-align: left; width:100%; text-decoration: none; list-style-type: none; } .tree-element:focus, .tree-element:hover, .tree-element:visited, .tree-element:active, .side-nav li a:hover, .side-nav li a:focus{ background-color:transparent!important; color:white!important; } a.tree-element, a.tree-element>i{ color:white; text-decoration: none; } .tree-icon{ float:right; } .no-bullet{ list-style-type: none; } .side-nav>li{ width:100%; } .side-nav{ padding-right: 5px!important; } .fr-floating-btn{ color:#ef6960!important; } .settings-button{ /*bottom: 15px; position: absolute!important;*/ position:absolute; bottom:15px; width:100%; } .menu-top{ /*float: none; left: 0px; top: -400%;*/ } .dropdown-menu { left: 50%; right: auto; text-align: left; transform: translate(-50%, 0); } .dropup>ul>li>a:hover{ color:#ef6960!important; } .logo{ height:39px; } .repository-tree-li{ /*min-height: 420px; max-height: 420px;*/ overflow-x: auto; overflow-y: auto; } .active-file{ background-color:black; }
css/sb-admin.css
body { margin-top: 100px; background-color:white; } @media(min-width:768px) { body { margin-top: 50px; } } #wrapper { padding-left: 0; } #page-wrapper { width: 100%; padding: 0; background-color: #fff; } .huge { font-size: 50px; line-height: normal; } @media(min-width:768px) { #wrapper { padding-left: 225px; } #page-wrapper { padding: 10px; } } /* Top Navigation */ .top-nav { padding: 0 15px; } .top-nav>li { display: inline-block; float: left; } .top-nav>li>a { padding-top: 15px; padding-bottom: 15px; line-height: 20px; color: #999; } .top-nav>li>a:hover, .top-nav>li>a:focus, .top-nav>.open>a, .top-nav>.open>a:hover, .top-nav>.open>a:focus { color: #fff; background-color: #000; } .top-nav>.open>.dropdown-menu { float: left; position: absolute; margin-top: 0; border: 1px solid rgba(0,0,0,.15); border-top-left-radius: 0; border-top-right-radius: 0; background-color: #fff; -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175); box-shadow: 0 6px 12px rgba(0,0,0,.175); } .top-nav>.open>.dropdown-menu>li>a { white-space: normal; } ul.message-dropdown { padding: 0; max-height: 250px; overflow-x: hidden; overflow-y: auto; } li.message-preview { width: 275px; border-bottom: 1px solid rgba(0,0,0,.15); } li.message-preview>a { padding-top: 15px; padding-bottom: 15px; } li.message-footer { margin: 5px 0; } ul.alert-dropdown { width: 200px; } /* Side Navigation */ @media(min-width:768px) { .side-nav { position: fixed; top: 0px; left: 225px; width: 225px; margin-left: -225px; border: none; border-radius: 0; overflow-y: auto; background-color: #222; bottom: 0; overflow-x: hidden; padding-bottom: 40px; } .side-nav>li>a { width: 225px; } .side-nav li a:hover, .side-nav li a:focus { outline: none; background-color: #000 !important; } } .side-nav>li>ul { padding: 0; } .side-nav>li>ul>li>a { display: block; padding: 10px 15px 10px 38px; text-decoration: none; color: #999; } .side-nav>li>ul>li>a:hover { color: #fff; } /* Flot Chart Containers */ .flot-chart { display: block; height: 400px; } .flot-chart-content { width: 100%; height: 100%; } /* Custom Colored Panels */ .huge { font-size: 40px; } .panel-green { border-color: #5cb85c; } .panel-green > .panel-heading { border-color: #5cb85c; color: #fff; background-color: #5cb85c; } .panel-green > a { color: #5cb85c; } .panel-green > a:hover { color: #3d8b3d; } .panel-red { border-color: #d9534f; } .panel-red > .panel-heading { border-color: #d9534f; color: #fff; background-color: #d9534f; } .panel-red > a { color: #d9534f; } .panel-red > a:hover { color: #b52b27; } .panel-yellow { border-color: #f0ad4e; } .panel-yellow > .panel-heading { border-color: #f0ad4e; color: #fff; background-color: #f0ad4e; } .panel-yellow > a { color: #f0ad4e; } .panel-yellow > a:hover { color: #df8a13; } *{ color:#ef6960; } .navbar{ background: white; color:#ef6960!important; } .navbar-nav>li>a, .navbar-nav>li>a>i, .breadcrumb>.active, .breadcrumb>li>i, .treeElement, .treeElement>i, .treeElement>a, .treeElement>p, .treeElement>ul, .treeElement>li, .side-nav>li>ul>li>a { color:white; } .treeElement{ padding-left:0px; } .navbar-inverse{ border-color:white; } .navbar-nav{ color:white; background: #ef6960; /* For browsers that do not support gradients */ background: -webkit-linear-gradient(#f5a163, #ef6960); /* For Safari 5.1 to 6.0 */ background: -o-linear-gradient(#f5a163, #ef6960); /* For Opera 11.1 to 12.0 */ background: -moz-linear-gradient(#f5a163, #ef6960); /* For Firefox 3.6 to 15 */ background: linear-gradient(#f5a163, #ef6960); /* Standard syntax */ } .breadcrumb, .breadcrumb>ol>li { color:white; background-color:#f5a163; } body{ margin-top:0px!important; } .dropdown, .dropdown-toggle:focus, .dropdown-toggle:hover, .dropdown-toggle:active, .dropdown-toggle:visited, .top-nav>li>a:hover, .top-nav>li>a:focus, .top-nav>.open>a, .top-nav>.open>a:hover, .top-nav>.open>a:focus{ background-color: transparent!important; } .fr-toolbar{ border-top-width: 0px!important; } .app-title-li{ margin-top: 15px; } file-tree-element { display: block; line-height: 20px; box-sizing: border-box; color:white; list-style-position: outside; padding: 0px 0px 5px 15px; position:relative; text-align: left; width:100%; text-decoration: none; list-style-type: none; } .tree-element:focus, .tree-element:hover, .tree-element:visited, .tree-element:active, .side-nav li a:hover, .side-nav li a:focus{ background-color:transparent!important; color:white!important; } a.tree-element, a.tree-element>i{ color:white; text-decoration: none; } .tree-icon{ float:right; } .no-bullet{ list-style-type: none; } .side-nav>li{ width:100%; } .side-nav{ padding-right: 5px!important; } .fr-floating-btn{ color:#ef6960!important; } .settings-button{ /*bottom: 15px; position: absolute!important;*/ position:absolute; bottom:15px; width:100%; } .menu-top{ /*float: none; left: 0px; top: -400%;*/ } .dropdown-menu { left: 50%; right: auto; text-align: left; transform: translate(-50%, 0); } .dropup>ul>li>a:hover{ color:#ef6960!important; } .logo{ height:39px; } .repository-tree-li{ /*min-height: 420px; max-height: 420px;*/ overflow-x: auto; overflow-y: auto; } .active-file{ background-color:black; }
0.486088
0.075176
body { background-color: #a39bd2; min-height: 70vh; padding: 1rem; box-sizing: border-box; display: flex; justify-content: center; align-items: center; color: hsl(198, 1%, 29%); font-family: 'Nanum Pen Script', cursive; text-align: center; font-size: 1.4rem; } @media only screen and (min-width: 500px) { body { min-height: 100vh; } } .container { width: 100%; height: auto; min-height: 500px; max-width: 500px; min-width: 250px; background: #fff; background-image: radial-gradient(#bfc0c1 7%, transparent 0); background-size: 25px 25px; border-radius: 20px; box-shadow: 4px 3px 7px 2px #333; padding: 1rem; box-sizing: border-box; } .heading { display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; } .heading_title { transform: rotate(2deg); padding: 0.2rem 1.2rem; border-radius: 20% 5% 20% 5%/5% 20% 25% 20%; background-color: hsla(300, 100%, 50%, 0.7); } @media only screen and (min-width: 500px) { .heading_title { font-size: 2rem; } } .heading_img { width: 24%; } .form_label { display: block; margin-bottom: 0.5rem; font-size: 1.4rem; } .form_input { box-sizing: border-box; background-color: transparent; padding: 0.7rem; border-bottom-right-radius: 15px 3px; border-bottom-left-radius: 3px 15px; border: solid 3px transparent; border-bottom: dashed 3px #ea95e0; font-family: inherit; font-size: 1.2rem; width: 70%; margin-bottom: 20px; } .form_input:focus { outline: none; border: solid 3px #ea95e0; } @media only screen and (min-width: 500px) { .form_input { width: 60%; } } .button { padding: 0; border: none; transform: rotate(4deg); font-family: inherit; text-decoration: none; padding-bottom: 3px; border-radius: 5px; box-shadow: 0 2px 0 hsl(198, 1%, 29%); transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); background-color: hsla(300, 100%, 50%, 0.7); } .button span { font-size: 1.2rem; background: #f1f5f8; display: block; padding: 0.5rem 1rem; border-radius: 5px; border: 2px solid hsl(198, 1%, 29%); } .button:active, .button:focus { transform: translateY(4px); padding-bottom: 0px; outline: 0; } .toDoList { text-align: left; } .toDoList li { position: relative; padding: 0.5rem; text-decoration: none; transition: ease-in color; } .toDoList li:hover { color: hsl(240, 1%, 13%); } .toDoList description:focus { font-weight: 600; } .btn { font-family: inherit; border: none; background: none; padding-left: 20px; cursor: pointer; transform: rotate(6deg); transition: transform 2s; } .btn:hover { color: #333; font-weight: 700; transform: rotate(30deg); }
todo.css
body { background-color: #a39bd2; min-height: 70vh; padding: 1rem; box-sizing: border-box; display: flex; justify-content: center; align-items: center; color: hsl(198, 1%, 29%); font-family: 'Nanum Pen Script', cursive; text-align: center; font-size: 1.4rem; } @media only screen and (min-width: 500px) { body { min-height: 100vh; } } .container { width: 100%; height: auto; min-height: 500px; max-width: 500px; min-width: 250px; background: #fff; background-image: radial-gradient(#bfc0c1 7%, transparent 0); background-size: 25px 25px; border-radius: 20px; box-shadow: 4px 3px 7px 2px #333; padding: 1rem; box-sizing: border-box; } .heading { display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; } .heading_title { transform: rotate(2deg); padding: 0.2rem 1.2rem; border-radius: 20% 5% 20% 5%/5% 20% 25% 20%; background-color: hsla(300, 100%, 50%, 0.7); } @media only screen and (min-width: 500px) { .heading_title { font-size: 2rem; } } .heading_img { width: 24%; } .form_label { display: block; margin-bottom: 0.5rem; font-size: 1.4rem; } .form_input { box-sizing: border-box; background-color: transparent; padding: 0.7rem; border-bottom-right-radius: 15px 3px; border-bottom-left-radius: 3px 15px; border: solid 3px transparent; border-bottom: dashed 3px #ea95e0; font-family: inherit; font-size: 1.2rem; width: 70%; margin-bottom: 20px; } .form_input:focus { outline: none; border: solid 3px #ea95e0; } @media only screen and (min-width: 500px) { .form_input { width: 60%; } } .button { padding: 0; border: none; transform: rotate(4deg); font-family: inherit; text-decoration: none; padding-bottom: 3px; border-radius: 5px; box-shadow: 0 2px 0 hsl(198, 1%, 29%); transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); background-color: hsla(300, 100%, 50%, 0.7); } .button span { font-size: 1.2rem; background: #f1f5f8; display: block; padding: 0.5rem 1rem; border-radius: 5px; border: 2px solid hsl(198, 1%, 29%); } .button:active, .button:focus { transform: translateY(4px); padding-bottom: 0px; outline: 0; } .toDoList { text-align: left; } .toDoList li { position: relative; padding: 0.5rem; text-decoration: none; transition: ease-in color; } .toDoList li:hover { color: hsl(240, 1%, 13%); } .toDoList description:focus { font-weight: 600; } .btn { font-family: inherit; border: none; background: none; padding-left: 20px; cursor: pointer; transform: rotate(6deg); transition: transform 2s; } .btn:hover { color: #333; font-weight: 700; transform: rotate(30deg); }
0.670177
0.120129
/* RESET */ *{ margin: 0; padding: 0; font-size: 100%; border: none; outline: none; font-weight: normal; font-family: 'lato', sans-serif; } body{ background: #333; } a{ text-decoration: none; } ul{ list-style: none; } img{ max-width: 100%; display: block; } /* CABEÇALHO GERAL */ .cabecalho{ width: 100%; } /* Estruturas para um cabeçalho mobile */ .cabecalho-mobile{ width: 100%; display: flex; flex-direction: row; justify-content: space-between; align-items: center; padding: 3% 0; /* Cima-baixo esquerda-direita */ } .logo-mobile{ width: 56px; height: 56px; background: url(../img/logo-mobile.png) center center/56px no-repeat; margin-left: 8%; transform: scale(1); transition: all 2s; } .logo-mobile:hover{ transform: scale(1.9); width: 100px; background: url(../img/logo.png) center center/100px no-repeat; } .btn-menu{ width: 56px; height: 56px; text-align: center; color: #fff; cursor: pointer; border-radius: 50%; background: #333; margin-right: 5%; } .nav-mobile{ position: fixed; top: 0; right: 0; width: 100%; height: 100%; display: none; background: rgba(255,255,255, 1); z-index: 1; } .menu-mobile{ width: 100%; } .btn-back{ background: #f5f5f5; text-align: center; padding: 5% 0; } .btn-back button{ transform: scale(1); transition: all 1s; } .btn-back button:hover{ transform: scale(1.2); color: orangered; cursor: pointer; } .menu-mobile-item > a{ display: block; text-align: center; padding: 5% 0; color: #fff; border: 1px solid #fff; background-color: rgb(90, 83, 83); } .menu-mobile-item a:hover{ color: orangered; } /* Estruturas para um cabeçalho para dispositivos maiores */ .cabecalho-desk{ width: 100%; display: flex; flex-direction: row; justify-content: space-between; align-items: center; padding: 3% 0; /* Cima-baixo esquerda-direita */ display: none; } @keyframes shake { 0% { transform: translate(1px, 1px) rotate(0deg); } 10% { transform: translate(-1px, -2px) rotate(-1deg); } 20% { transform: translate(-3px, 0px) rotate(1deg); } 30% { transform: translate(3px, 2px) rotate(0deg); } 40% { transform: translate(1px, -1px) rotate(1deg); } 50% { transform: translate(-1px, 2px) rotate(-1deg); } 60% { transform: translate(-3px, 1px) rotate(0deg); } 70% { transform: translate(3px, 1px) rotate(-1deg); } 80% { transform: translate(-1px, -1px) rotate(1deg); } 90% { transform: translate(1px, 2px) rotate(0deg); } 100% { transform: translate(1px, -2px) rotate(-1deg); } } .logo-desk{ width: 250px; height: 56px; margin-left: 8%; } .logo-desk:hover{ animation: shake 0.5s; animation-iteration-count: infinite; } .nav-desk{ width: 30%; margin-right: 8%; } .menu-desk{ display: flex; justify-content: center; align-items: center; } .menu-desk-item a{ display: block; padding: 20px; color: #fff; } .menu-desk-item a:hover{ border-left: 1px solid #fff; } .cabecalho-desk{ display: none; } /* BANNER */ .banner{ width: 100%; min-height: 400px; background: url(../img/bg.jpg) center center no-repeat; background-size: cover; background-attachment: fixed; display: flex; flex-direction: row; justify-content: center; align-items: center; } .container-banner{ width: 90%; height: 350px; /* background: red; */ display: grid; grid-template-rows: 1fr 1fr; grid-gap: 2%; justify-items: center; } .banner-titulo{ display: grid; grid-template-rows: 0.3fr 1fr; grid-gap: 2%; justify-items: center; } .banner-titulo h2{ font-size: 2.5em; color: #fff; font-family: 'Staatliches', cursive; } .banner-titulo h3{ color: #fff; } .banner-buttons{ display: grid; grid-template-rows: 1fr 1fr; grid-gap: 5%; justify-items: center; align-items: start; width: 100%; } .btn-cadastrar, .btn-sobre{ padding: 20px; width: 300px; border-radius: 15px 15px 15px 15px; transform: scale(1); transition: all 1.5s; cursor: pointer; } .btn-cadastrar{ background: orangered; } .btn-cadastrar:hover, .btn-sobre:hover{ transform: scale(1.1); } .btn-cadastrar:hover .fa-user-check{ color: green; } /* SERVICOS (MAIN) */ .servicos{ width: 100%; display: grid; grid-template-rows: 1fr 1fr 1fr; grid-gap: 10px; margin-top: 2%; margin-bottom: 3%; } .servico{ background: whitesmoke; width: 80%; margin: auto; box-shadow: 0px 0px 15px -2px rgba(0,0,0,0.75); } .servico img{ width: 100%; } .texto-interno{ padding: 1%; } .texto-interno h4{ font-weight: bolder; } /* SECTION CADASTRO */ .section-cadastro{ width: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; background: #130400; padding: 2% 0; } .cadastro-texto{ width: 80%; text-align: center; color: #fff; margin-bottom: 2%; } .cadastro-texto h2{ font-family: 'Staatliches', cursive; font-size: 2em; } .cadastro-texto h3{ font-size: 1.3em; } .form-cadastro{ width: 80%; padding: 1%; display: flex; flex-direction: column; background:; } .form-cadastro input{ padding: 20px; background: transparent; border: 1px solid #fff; border-radius: 13px 13px 13px 13px; } .form-cadastro button{ margin-top: 2%; border-radius: 13px 13px 13px 13px; padding: 15px 0; } /* FOOTER */ footer{ width: 100%; display: flex; height: 100px; flex-direction: column; justify-content: space-around; align-items: center; background: linear-gradient(90deg, rgba(204,123,16,1) 0%, rgba(255,138,21,1) 13%, rgba(212,78,25,1) 52%, rgba(255,138,21,1) 84%, rgba(238,43,0,1) 99%); color: #fff; } .redes-sociais{ width: 30%; text-align: center; } .redes-sociais i{ padding: 0 3%; font-size: 2em; cursor: pointer; opacity: 0.8; } .redes-sociais i:hover{ opacity: 1; }
2_FrontEnd/Testing/3_Nodeprop/css/style.css
/* RESET */ *{ margin: 0; padding: 0; font-size: 100%; border: none; outline: none; font-weight: normal; font-family: 'lato', sans-serif; } body{ background: #333; } a{ text-decoration: none; } ul{ list-style: none; } img{ max-width: 100%; display: block; } /* CABEÇALHO GERAL */ .cabecalho{ width: 100%; } /* Estruturas para um cabeçalho mobile */ .cabecalho-mobile{ width: 100%; display: flex; flex-direction: row; justify-content: space-between; align-items: center; padding: 3% 0; /* Cima-baixo esquerda-direita */ } .logo-mobile{ width: 56px; height: 56px; background: url(../img/logo-mobile.png) center center/56px no-repeat; margin-left: 8%; transform: scale(1); transition: all 2s; } .logo-mobile:hover{ transform: scale(1.9); width: 100px; background: url(../img/logo.png) center center/100px no-repeat; } .btn-menu{ width: 56px; height: 56px; text-align: center; color: #fff; cursor: pointer; border-radius: 50%; background: #333; margin-right: 5%; } .nav-mobile{ position: fixed; top: 0; right: 0; width: 100%; height: 100%; display: none; background: rgba(255,255,255, 1); z-index: 1; } .menu-mobile{ width: 100%; } .btn-back{ background: #f5f5f5; text-align: center; padding: 5% 0; } .btn-back button{ transform: scale(1); transition: all 1s; } .btn-back button:hover{ transform: scale(1.2); color: orangered; cursor: pointer; } .menu-mobile-item > a{ display: block; text-align: center; padding: 5% 0; color: #fff; border: 1px solid #fff; background-color: rgb(90, 83, 83); } .menu-mobile-item a:hover{ color: orangered; } /* Estruturas para um cabeçalho para dispositivos maiores */ .cabecalho-desk{ width: 100%; display: flex; flex-direction: row; justify-content: space-between; align-items: center; padding: 3% 0; /* Cima-baixo esquerda-direita */ display: none; } @keyframes shake { 0% { transform: translate(1px, 1px) rotate(0deg); } 10% { transform: translate(-1px, -2px) rotate(-1deg); } 20% { transform: translate(-3px, 0px) rotate(1deg); } 30% { transform: translate(3px, 2px) rotate(0deg); } 40% { transform: translate(1px, -1px) rotate(1deg); } 50% { transform: translate(-1px, 2px) rotate(-1deg); } 60% { transform: translate(-3px, 1px) rotate(0deg); } 70% { transform: translate(3px, 1px) rotate(-1deg); } 80% { transform: translate(-1px, -1px) rotate(1deg); } 90% { transform: translate(1px, 2px) rotate(0deg); } 100% { transform: translate(1px, -2px) rotate(-1deg); } } .logo-desk{ width: 250px; height: 56px; margin-left: 8%; } .logo-desk:hover{ animation: shake 0.5s; animation-iteration-count: infinite; } .nav-desk{ width: 30%; margin-right: 8%; } .menu-desk{ display: flex; justify-content: center; align-items: center; } .menu-desk-item a{ display: block; padding: 20px; color: #fff; } .menu-desk-item a:hover{ border-left: 1px solid #fff; } .cabecalho-desk{ display: none; } /* BANNER */ .banner{ width: 100%; min-height: 400px; background: url(../img/bg.jpg) center center no-repeat; background-size: cover; background-attachment: fixed; display: flex; flex-direction: row; justify-content: center; align-items: center; } .container-banner{ width: 90%; height: 350px; /* background: red; */ display: grid; grid-template-rows: 1fr 1fr; grid-gap: 2%; justify-items: center; } .banner-titulo{ display: grid; grid-template-rows: 0.3fr 1fr; grid-gap: 2%; justify-items: center; } .banner-titulo h2{ font-size: 2.5em; color: #fff; font-family: 'Staatliches', cursive; } .banner-titulo h3{ color: #fff; } .banner-buttons{ display: grid; grid-template-rows: 1fr 1fr; grid-gap: 5%; justify-items: center; align-items: start; width: 100%; } .btn-cadastrar, .btn-sobre{ padding: 20px; width: 300px; border-radius: 15px 15px 15px 15px; transform: scale(1); transition: all 1.5s; cursor: pointer; } .btn-cadastrar{ background: orangered; } .btn-cadastrar:hover, .btn-sobre:hover{ transform: scale(1.1); } .btn-cadastrar:hover .fa-user-check{ color: green; } /* SERVICOS (MAIN) */ .servicos{ width: 100%; display: grid; grid-template-rows: 1fr 1fr 1fr; grid-gap: 10px; margin-top: 2%; margin-bottom: 3%; } .servico{ background: whitesmoke; width: 80%; margin: auto; box-shadow: 0px 0px 15px -2px rgba(0,0,0,0.75); } .servico img{ width: 100%; } .texto-interno{ padding: 1%; } .texto-interno h4{ font-weight: bolder; } /* SECTION CADASTRO */ .section-cadastro{ width: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; background: #130400; padding: 2% 0; } .cadastro-texto{ width: 80%; text-align: center; color: #fff; margin-bottom: 2%; } .cadastro-texto h2{ font-family: 'Staatliches', cursive; font-size: 2em; } .cadastro-texto h3{ font-size: 1.3em; } .form-cadastro{ width: 80%; padding: 1%; display: flex; flex-direction: column; background:; } .form-cadastro input{ padding: 20px; background: transparent; border: 1px solid #fff; border-radius: 13px 13px 13px 13px; } .form-cadastro button{ margin-top: 2%; border-radius: 13px 13px 13px 13px; padding: 15px 0; } /* FOOTER */ footer{ width: 100%; display: flex; height: 100px; flex-direction: column; justify-content: space-around; align-items: center; background: linear-gradient(90deg, rgba(204,123,16,1) 0%, rgba(255,138,21,1) 13%, rgba(212,78,25,1) 52%, rgba(255,138,21,1) 84%, rgba(238,43,0,1) 99%); color: #fff; } .redes-sociais{ width: 30%; text-align: center; } .redes-sociais i{ padding: 0 3%; font-size: 2em; cursor: pointer; opacity: 0.8; } .redes-sociais i:hover{ opacity: 1; }
0.348423
0.102036
position:fixed; top:0px; right:4px; z-index:10000; } #feedback .header{ background:url("img/feedback.png") no-repeat; background-position:4px; background-color:#F3F5F7; filter:alpha(opacity=60); -moz-opacity: 0.6; opacity: 0.6; width:310px; height:30px; padding:0px 4px 0px; border-left:1px solid #8ecbe7; border-right:1px solid #8ecbe7; border-bottom:2px solid #8ecbe7; text-indent:-99999px; cursor:pointer; } @media print { #feedback { display: none; } } #feedback .arrow{ background:url('img/arrows.png') no-repeat; float:right; width:19px; height:14px; position:relative; top:10px; } #feedback .arrow.down{ background-position:left bottom;} #feedback .header:hover .down{ background-position:left top;} #feedback .arrow.up{ background-position:right bottom;} #feedback .header:hover .up{ background-position:right top;} #feedback .section{ background-color:#F3F5F7; margin-top:-310px; width:310px; height:260px; padding:4px 8px 4px; border-left:1px solid #8ecbe7; border-right:1px solid #8ecbe7; border-bottom:2px solid #8ecbe7; font:13px "Lucida Sans Unicode",Arial,Helvetica,sans-serif; } #feedback .message{ color:#4C6780; text-shadow:1px 1px 0 #AAAAAA; margin-top:0px; margin-bottom:8px; } #feedback textarea{ background-color:#fff; border:none; color:#666666; width:300px; height:168px; padding:4px; resize:none; outline:none; overflow:auto; -moz-box-shadow:2px 2px 0 #C3C5C7; -webkit-box-shadow:2px 2px 0 #C3C5C7; box-shadow:2px 2px 0 #C3C5C7; } #feedback a.submit{ background:url("img/submit.png") no-repeat; border:none; display:block; width:91px; height:34px; margin:8px auto 0; text-decoration:none; text-indent:-99999px; } #feedback a.submit:hover{ background-position:left bottom; } #feedback a.submit.working{ background-position:top right !important; cursor:default; } #feedback .response{ font-size:21px; margin-top:70px; width:310px; text-align:center; color:#4C6780; text-shadow:1px 1px 0 #AAAAAA; display:block; }
docs/SDLKeyNames_files/styles.css
position:fixed; top:0px; right:4px; z-index:10000; } #feedback .header{ background:url("img/feedback.png") no-repeat; background-position:4px; background-color:#F3F5F7; filter:alpha(opacity=60); -moz-opacity: 0.6; opacity: 0.6; width:310px; height:30px; padding:0px 4px 0px; border-left:1px solid #8ecbe7; border-right:1px solid #8ecbe7; border-bottom:2px solid #8ecbe7; text-indent:-99999px; cursor:pointer; } @media print { #feedback { display: none; } } #feedback .arrow{ background:url('img/arrows.png') no-repeat; float:right; width:19px; height:14px; position:relative; top:10px; } #feedback .arrow.down{ background-position:left bottom;} #feedback .header:hover .down{ background-position:left top;} #feedback .arrow.up{ background-position:right bottom;} #feedback .header:hover .up{ background-position:right top;} #feedback .section{ background-color:#F3F5F7; margin-top:-310px; width:310px; height:260px; padding:4px 8px 4px; border-left:1px solid #8ecbe7; border-right:1px solid #8ecbe7; border-bottom:2px solid #8ecbe7; font:13px "Lucida Sans Unicode",Arial,Helvetica,sans-serif; } #feedback .message{ color:#4C6780; text-shadow:1px 1px 0 #AAAAAA; margin-top:0px; margin-bottom:8px; } #feedback textarea{ background-color:#fff; border:none; color:#666666; width:300px; height:168px; padding:4px; resize:none; outline:none; overflow:auto; -moz-box-shadow:2px 2px 0 #C3C5C7; -webkit-box-shadow:2px 2px 0 #C3C5C7; box-shadow:2px 2px 0 #C3C5C7; } #feedback a.submit{ background:url("img/submit.png") no-repeat; border:none; display:block; width:91px; height:34px; margin:8px auto 0; text-decoration:none; text-indent:-99999px; } #feedback a.submit:hover{ background-position:left bottom; } #feedback a.submit.working{ background-position:top right !important; cursor:default; } #feedback .response{ font-size:21px; margin-top:70px; width:310px; text-align:center; color:#4C6780; text-shadow:1px 1px 0 #AAAAAA; display:block; }
0.159872
0.04548
*{margin:0;padding:0;border:0;font-size:1em;} html{font-size:62.5%;} body{background:#e8e8e8 url(body.png) repeat-x;font-family:Arial,Helvetica,"Sans Serif" !important;} /*#wrapper1{background:#fff;border:1px solid #909090;border-top:0;margin:0 auto 1em auto;max-width:1600px;max-width:81.8em;}*/ #wrapper2{} #wrapper3{width:100%;float:left;margin-right:-16.6em;} #wrapper4{margin-right:16.6em;} #header{background:#fff url(header.png) repeat-x;color:#4e4e4e;height:11.3em;} #left{width:20em;float:left;} #center{margin-left:20em;background:red;} #right{width:16.6em;float:right;background:red;} #footer{clear:both;} .clr{height:0;line-height:0;font-size:0;clear:both;} /* *{font-size:1em;} html{font-size:62.5%;} body{background:#e8e8e8 url(images/background_gradient.jpg) repeat-x;font-family:Arial,Helvetica,"Sans Serif" !important;margin:0;} .clr{clear:both;} fieldset{border:0;margin:0;padding:0;} hr{border:0;border-top:solid 1px #919090;border-bottom:solid 1px #fff;margin:1.5em 0;} img{border:0;} .skiplink a{position:absolute;top:-10em;left:0;padding:0 0.5em;background:#e8e8e8;font-size:1.3em;z-index:100;} .skiplink a:focus{top:0px;} h1,h2,h3,h4{color:#871d33;margin-top:0.3em;margin-bottom:0.5em;line-height:110%;} h2,h3,h4{margin-top:1.8em;font-size:1.2em;} h3{color:#000;} h4{color:#404040;font-size:1.1em;} h1 a,h2 a{color:#871d33;text-decoration:none;} h1 a:hover,h2 a:hover{text-decoration:underline;} #main_content h1{font-size:1.75em;} #main_content h2{font-size:1.2em;} h2.newsheadline{margin-top:0.3em;} h2.newsheadline_large{margin-top:0.5em;margin-bottom:0.3em;} .content h1 a,.content h1 a:visited,.content h2 a,.content h2 a:visited{color:#871d33;text-decoration:none;} .content h1 a:hover,.content h2 a:hover{color:#871d33;text-decoration:underline;} .img_panorama{width:61.7em;} .img_logo{width:22.9em;} .img_highlight{width:16.6em;} .img_theme{width:13.9em;} .img_theme_large{width:42.5em;} .img_left_intext{float:left;margin-right:1.2em;} .img_right_intext{float:right;margin-left:1.2em;margin-top:1em;} .img_secondlogo{width:20em;} #main{width:81.8em;margin-left:auto;margin-right:auto;margin-bottom:0.5em;border-left:solid #919090 1px;border-right:solid #919090 1px;border-bottom:solid #919090 1px;background-color:#e3e3e3;background-color:#fff;} #main{width:100%;max-width:1280px;} #head{background-image:url(images/background_head.gif);background-repeat:repeat-x;background-color:#fff;height:11.3em;color:#4e4e4e;} #head a{color:#4e4e4e;} #head_menu{padding:0.4em 0 0 1em;} #head_search{float:left;padding-top:5em;padding-left:1em;} #head_search form{margin:0;padding:0;height:1.5em;width:16.5em;} #head_search_input{color:#4e4e4e;width:13em;margin-bottom:0.3em;float:left;} .head_search_button{float:right;margin-top:0.1em;width:1.8em;} #advancedsearch{margin-top:0.9em;} .ie6 #advancedsearch{margin-top:0.2em;} .ie7 #advancedsearch{margin-top:0.9em;} #head_logo{margin-top:0.7em;margin-right:4.2em;text-align:right;} #left_red{height:0.6em;background-color:#871d33;margin:0;width:20.1em;} #right_grey{height:0.6em;background-color:#8e8e8e;margin:0;padding:0;} #left{height:100%;float:left;width:20em;background-color:#e3e3e3;} #right{height:100%;width:61.72em;z-index:auto;float:right;} #help h2{margin:0;padding:0.6em 0 0.6em 0.99em;line-height:1.2em;font-size:1.11em;letter-spacing:0.1em;text-transform:uppercase;background-image:url(images/menue_active_back.gif);background-repeat:repeat-x;color:#fff;} #nav{width:20.1em;height:100%;} #nav a:hover{text-decoration:underline;} #nav ul{padding:0;margin:0;width:100%;} #nav ul li{list-style:none;background-image:url(images/menue_inactive_back.gif);background-repeat:repeat-x;margin:0;margin-bottom:0.0em;padding:0.6em 0 0.6em 0.99em;line-height:1.2em;font-size:1.11em;font-weight:bold;letter-spacing:0.1em;text-transform:uppercase;} #nav ul li a{color:#000;text-decoration:none;} #nav ul li.CUR{background-image:url(images/menue_active_back.gif);background-repeat:repeat-x;} #nav ul li.CUR a{color:#fff;} #nav ul ul{border-right:solid #ccc 1px;margin:0.5em 0 -0.6em;0;} #nav ul ul li{list-style:none;background-image:none;background-color:#ddd;padding:0.5em 0 0.5em 2em;font-weight:bold;letter-spacing:0.1em;border-bottom:solid 1px #999;margin:0 0 0 -1.1em;line-height:1.2em;font-weight:bold;font-size:0.9em;text-transform:none;} #nav ul ul li a{color:#000;text-decoration:none;} #nav ul ul li.CUR{background-image:none;background-color:#ebebeb;} #nav ul ul li.CUR a{color:#871d33;} #nav ul ul ul{border-right:none;margin:0.5em 0 -0.5em 0;} #nav ul ul ul li{list-style:none;background-color:#ebebeb;padding:0.5em 0 0.5em 3em;font-size:1em;font-weight:bold;letter-spacing:0.1em;border-top:solid 1px #d7d7d7;border-bottom:none;margin:0 0 0 -1.9em;line-height:1.2em;} #nav ul ul ul li a{color:#000;text-decoration:none;} #nav ul ul ul li.CUR{background-image:none;background-color:#fff;} #nav ul ul ul li.CUR a{color:#871d33;} #nav ul ul ul ul li{list-style-image:url(images/menue_arrow.gif);background-color:#ffffff;padding:0.3em 0 0.3em 0;font-weight:bold;letter-spacing:0.1em;margin:0 0 0 -2.5em;line-height:1.2em;border:none;} #nav ul ul ul ul li a{color:#000;text-decoration:none;} #nav ul ul ul ul li.CUR a{color:#871d33;} #nav ul ul ul ul ul li{list-style-image:none;padding:0.3em 0 0.3em 0;font-weight:bold;letter-spacing:0.1em;margin:0 0 0 -3.0em;line-height:1.2em;border:none;} #nav ul ul ul ul ul li a{color:#000;text-decoration:none;} #nav ul ul ul ul ul li.CUR{background-image:none;background-color:#fff;} #nav ul ul ul ul ul li.CUR a{color:#871d33;} #meta{background-color:#fff;background-image:url(images/menue_bottom.gif);background-repeat:repeat-x;width:100%;margin:0;padding:0 0 3.0em 0;font-size:1em;height:20em;} #meta ul{list-style-type:none;margin:0;padding-top:1.5em;padding-left:1em;font-size:0.8em;} #meta a{color:#374248;text-decoration:none;font-size:1.25em;line-height:160%;} #center{background:red;float:left;} #main_picture{margin-bottom:-0.3em;margin-left:0.1em;} .ie6 #main_picture{margin-bottom:0em;margin-left:0em;} .ie7 #main_picture{margin-bottom:0em;margin-left:0em;} #main_content{float:left;height:100%;padding:1em;color:#404040;line-height:130%;background-color:#fff;padding-bottom:3em;margin:0 0 0 0.1em;} .content a,li a{color:#000;text-decoration:underline;} .content a:visited{color:#404040;text-decoration:underline;} .content a:hover{color:#871d33;text-decoration:none;} .main_highlights{width:42.5em;} #breadcrumb{color:#919090;margin-bottom:2em;} #breadcrumb a{color:#919090;text-decoration:none;} #right{width:42.5em;float:right;width:200px;} #highlights{margin-left:45.02em;background-color:#d9d9d9;width:16.6em;border-left:solid #919090 1px;border-bottom:solid #919090 1px;} .news-latest-item p.news-latest-date{margin-bottom:0;font-size:95% !important;} .news-latest-item h3{margin-top:0;padding:0 1em 0.1em 1em;} .news-latest-item h3 a{color:#871d33;text-decoration:none;} .news-latest-item h3 a:hover{text-decoration:underline;} /*
resources/customconfigs/de-rp/data/portal/fileadmin/design/__/geoportal.rlp.css
*{margin:0;padding:0;border:0;font-size:1em;} html{font-size:62.5%;} body{background:#e8e8e8 url(body.png) repeat-x;font-family:Arial,Helvetica,"Sans Serif" !important;} /*#wrapper1{background:#fff;border:1px solid #909090;border-top:0;margin:0 auto 1em auto;max-width:1600px;max-width:81.8em;}*/ #wrapper2{} #wrapper3{width:100%;float:left;margin-right:-16.6em;} #wrapper4{margin-right:16.6em;} #header{background:#fff url(header.png) repeat-x;color:#4e4e4e;height:11.3em;} #left{width:20em;float:left;} #center{margin-left:20em;background:red;} #right{width:16.6em;float:right;background:red;} #footer{clear:both;} .clr{height:0;line-height:0;font-size:0;clear:both;} /* *{font-size:1em;} html{font-size:62.5%;} body{background:#e8e8e8 url(images/background_gradient.jpg) repeat-x;font-family:Arial,Helvetica,"Sans Serif" !important;margin:0;} .clr{clear:both;} fieldset{border:0;margin:0;padding:0;} hr{border:0;border-top:solid 1px #919090;border-bottom:solid 1px #fff;margin:1.5em 0;} img{border:0;} .skiplink a{position:absolute;top:-10em;left:0;padding:0 0.5em;background:#e8e8e8;font-size:1.3em;z-index:100;} .skiplink a:focus{top:0px;} h1,h2,h3,h4{color:#871d33;margin-top:0.3em;margin-bottom:0.5em;line-height:110%;} h2,h3,h4{margin-top:1.8em;font-size:1.2em;} h3{color:#000;} h4{color:#404040;font-size:1.1em;} h1 a,h2 a{color:#871d33;text-decoration:none;} h1 a:hover,h2 a:hover{text-decoration:underline;} #main_content h1{font-size:1.75em;} #main_content h2{font-size:1.2em;} h2.newsheadline{margin-top:0.3em;} h2.newsheadline_large{margin-top:0.5em;margin-bottom:0.3em;} .content h1 a,.content h1 a:visited,.content h2 a,.content h2 a:visited{color:#871d33;text-decoration:none;} .content h1 a:hover,.content h2 a:hover{color:#871d33;text-decoration:underline;} .img_panorama{width:61.7em;} .img_logo{width:22.9em;} .img_highlight{width:16.6em;} .img_theme{width:13.9em;} .img_theme_large{width:42.5em;} .img_left_intext{float:left;margin-right:1.2em;} .img_right_intext{float:right;margin-left:1.2em;margin-top:1em;} .img_secondlogo{width:20em;} #main{width:81.8em;margin-left:auto;margin-right:auto;margin-bottom:0.5em;border-left:solid #919090 1px;border-right:solid #919090 1px;border-bottom:solid #919090 1px;background-color:#e3e3e3;background-color:#fff;} #main{width:100%;max-width:1280px;} #head{background-image:url(images/background_head.gif);background-repeat:repeat-x;background-color:#fff;height:11.3em;color:#4e4e4e;} #head a{color:#4e4e4e;} #head_menu{padding:0.4em 0 0 1em;} #head_search{float:left;padding-top:5em;padding-left:1em;} #head_search form{margin:0;padding:0;height:1.5em;width:16.5em;} #head_search_input{color:#4e4e4e;width:13em;margin-bottom:0.3em;float:left;} .head_search_button{float:right;margin-top:0.1em;width:1.8em;} #advancedsearch{margin-top:0.9em;} .ie6 #advancedsearch{margin-top:0.2em;} .ie7 #advancedsearch{margin-top:0.9em;} #head_logo{margin-top:0.7em;margin-right:4.2em;text-align:right;} #left_red{height:0.6em;background-color:#871d33;margin:0;width:20.1em;} #right_grey{height:0.6em;background-color:#8e8e8e;margin:0;padding:0;} #left{height:100%;float:left;width:20em;background-color:#e3e3e3;} #right{height:100%;width:61.72em;z-index:auto;float:right;} #help h2{margin:0;padding:0.6em 0 0.6em 0.99em;line-height:1.2em;font-size:1.11em;letter-spacing:0.1em;text-transform:uppercase;background-image:url(images/menue_active_back.gif);background-repeat:repeat-x;color:#fff;} #nav{width:20.1em;height:100%;} #nav a:hover{text-decoration:underline;} #nav ul{padding:0;margin:0;width:100%;} #nav ul li{list-style:none;background-image:url(images/menue_inactive_back.gif);background-repeat:repeat-x;margin:0;margin-bottom:0.0em;padding:0.6em 0 0.6em 0.99em;line-height:1.2em;font-size:1.11em;font-weight:bold;letter-spacing:0.1em;text-transform:uppercase;} #nav ul li a{color:#000;text-decoration:none;} #nav ul li.CUR{background-image:url(images/menue_active_back.gif);background-repeat:repeat-x;} #nav ul li.CUR a{color:#fff;} #nav ul ul{border-right:solid #ccc 1px;margin:0.5em 0 -0.6em;0;} #nav ul ul li{list-style:none;background-image:none;background-color:#ddd;padding:0.5em 0 0.5em 2em;font-weight:bold;letter-spacing:0.1em;border-bottom:solid 1px #999;margin:0 0 0 -1.1em;line-height:1.2em;font-weight:bold;font-size:0.9em;text-transform:none;} #nav ul ul li a{color:#000;text-decoration:none;} #nav ul ul li.CUR{background-image:none;background-color:#ebebeb;} #nav ul ul li.CUR a{color:#871d33;} #nav ul ul ul{border-right:none;margin:0.5em 0 -0.5em 0;} #nav ul ul ul li{list-style:none;background-color:#ebebeb;padding:0.5em 0 0.5em 3em;font-size:1em;font-weight:bold;letter-spacing:0.1em;border-top:solid 1px #d7d7d7;border-bottom:none;margin:0 0 0 -1.9em;line-height:1.2em;} #nav ul ul ul li a{color:#000;text-decoration:none;} #nav ul ul ul li.CUR{background-image:none;background-color:#fff;} #nav ul ul ul li.CUR a{color:#871d33;} #nav ul ul ul ul li{list-style-image:url(images/menue_arrow.gif);background-color:#ffffff;padding:0.3em 0 0.3em 0;font-weight:bold;letter-spacing:0.1em;margin:0 0 0 -2.5em;line-height:1.2em;border:none;} #nav ul ul ul ul li a{color:#000;text-decoration:none;} #nav ul ul ul ul li.CUR a{color:#871d33;} #nav ul ul ul ul ul li{list-style-image:none;padding:0.3em 0 0.3em 0;font-weight:bold;letter-spacing:0.1em;margin:0 0 0 -3.0em;line-height:1.2em;border:none;} #nav ul ul ul ul ul li a{color:#000;text-decoration:none;} #nav ul ul ul ul ul li.CUR{background-image:none;background-color:#fff;} #nav ul ul ul ul ul li.CUR a{color:#871d33;} #meta{background-color:#fff;background-image:url(images/menue_bottom.gif);background-repeat:repeat-x;width:100%;margin:0;padding:0 0 3.0em 0;font-size:1em;height:20em;} #meta ul{list-style-type:none;margin:0;padding-top:1.5em;padding-left:1em;font-size:0.8em;} #meta a{color:#374248;text-decoration:none;font-size:1.25em;line-height:160%;} #center{background:red;float:left;} #main_picture{margin-bottom:-0.3em;margin-left:0.1em;} .ie6 #main_picture{margin-bottom:0em;margin-left:0em;} .ie7 #main_picture{margin-bottom:0em;margin-left:0em;} #main_content{float:left;height:100%;padding:1em;color:#404040;line-height:130%;background-color:#fff;padding-bottom:3em;margin:0 0 0 0.1em;} .content a,li a{color:#000;text-decoration:underline;} .content a:visited{color:#404040;text-decoration:underline;} .content a:hover{color:#871d33;text-decoration:none;} .main_highlights{width:42.5em;} #breadcrumb{color:#919090;margin-bottom:2em;} #breadcrumb a{color:#919090;text-decoration:none;} #right{width:42.5em;float:right;width:200px;} #highlights{margin-left:45.02em;background-color:#d9d9d9;width:16.6em;border-left:solid #919090 1px;border-bottom:solid #919090 1px;} .news-latest-item p.news-latest-date{margin-bottom:0;font-size:95% !important;} .news-latest-item h3{margin-top:0;padding:0 1em 0.1em 1em;} .news-latest-item h3 a{color:#871d33;text-decoration:none;} .news-latest-item h3 a:hover{text-decoration:underline;} /*
0.225843
0.084229
@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700"; .center { text-align: center; } .btn-primary { background-color: teal !important; border-color: teal !important; } .breadcrumb { background-color: teal !important; color: white !important; margin-left: 50px !important; width: 1260px !important; } .breadcrumb-item { color: white !important; } #judulJenis { margin-left: 100px; } .kartu input { opacity: 0; } .breadcrumb-item + .breadcrumb-item::before { margin-right: 0.5rem !important; color: white !important; } .mr-5 { color: black !important; } .card-body { background-color: white !important; } .breadcrumb-item.active { color: white !important; font-weight: bold; } .card-body-icon i { color: black !important; } .navbar { border-bottom: 1px solid grey; } #navbarTop #siteName { margin-left: 35px; font-weight: bold; } #navbarTop i { color: white !important; } .navbar-fixed { position: fixed !important; left: 0; top: 0; width: 100%; } .wrapper { display: flex; align-items: stretch; } #sidebar:hover { width: 250px; } /* #sidebar ul.list-unstyled { position: relative; overflow-x: hidden; overflow-y: scroll !important; } */ #sidebar li { position: relative; display: block; width: 250px; } #sidebar li:hover > a, #sidebar li:focus > a, #sidebar li:active > a { background-color: teal !important; } a[data-toggle="collapse"] { position: relative; } .dropdown-toggle::after { display: block; position: absolute; top: 50%; right: 20px; transform: translateY(-50%); } @media (max-width: 768px) { #sidebar { margin-left: -250px; } #sidebar.active { margin-left: 0; } } body { font-family: 'Poppins', sans-serif; background: #fafafa; } p { font-family: 'Poppins', sans-serif; font-size: 1.1em; font-weight: 300; line-height: 1.7em; color: #999; } li a, li a:hover, li a:focus { color: inherit; text-decoration: none; transition: all 0.3s; display: block; } #sidebar { /* don't forget to add all the previously mentioned styles here too */ background: #555; color: #ccc; transition: all 0.4s; width: 40px; overflow: hidden; min-height: 100vh; position: absolute; z-index: 1; } div .sidebar-header { padding: 20px; overflow: scroll !important; background: #555; } #sidebar ul li a { padding: 10px; font-size: 1.1em; display: block; } #sidebar ul li a:hover { color: #fff; } #sidebar ul li.active > a, a[aria-expanded="true"] { color: #fff; } #sidebar ul ul li.active > a, a[aria-expanded="true"] { color: #fff; } a.dropdown-toggle.active, a[aria-expanded="true"] { color: #fff; } ul ul a { font-size: 0.9em !important; padding-left: 30px !important; } /* subsub menu */ ul ul ul a { font-size: 0.9em !important; padding-left: 45px !important; } ul li span { margin-left: 20px; } /* kontener semua */ .container-fluid { max-width: 90%; /* border: 2px solid #000; */ -webkit-transform: translate(30px, 15%); -ms-transform: translate(30px, 15%); -o-transform: translate(30px, 15%); -moz-transform: translate(30px, 15%); } .margin-kartu { margin: 20px 0; } /* card */ .kartu { position: relative; left: 0; bottom: 0; height: 500px; width: 240px; background: #555; overflow: hidden; border-radius: 0.25rem; } input, .togle { position: absolute; width: 50px; height: 50px; bottom: 20px; right: 20px; outline: none; z-index: 10; } .togle { pointer-events: none; border-radius: 50%; background: #fff; transition: 0.5s; line-height: 50px; font-size: 36px; box-shadow: 0 0 0 0px #555; padding: 3px; } .checkbox .togle span { position: absolute; transform: translate(5px, -7px) !important; } input:checked ~ .togle { box-shadow: 0 0 0 500px #555; transform: rotate(225deg); } .imgBox, .kartu-submenu { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } .kartu-submenu { padding: 0px; box-sizing: border-box; z-index: 11; pointer-events: none; transition: 0.5s; opacity: 0; } input:checked ~ .kartu-submenu { opacity: 1; transition-delay: 0.3s; } .list-group { width: 260px !important; } button.list-group-item { height: 60px; font-size: 1.25em !important; } .list-group button { z-index: 12; pointer-events: visible; cursor: pointer; background-color: inherit; border: none; font-size: 0.9em !important; color: #fff; } .list-group-item-action:hover, .list-group-item-action:focus { background-color: #df2323 !important; color: #fff !important; border: none !important; } .list-group a { text-decoration: none !important; font-size: 1em !important; color: #fff !important; height: 100% !important; width: 100% !important; } .card-body { background-color: #eee; } .kol-3 { /* max-width: 200px !important; */ border: 2px solid #000; padding: 0px !important; } .row { margin-right: -50px !important; margin-left: -50px !important; } /* ukuran card */ /* 5 items: max-width=230px*/ .kol5 { max-width: 230px; } .kol3 { max-width: 280px !important; } /* Card udahan */ /*Tambahan - '+' solved - Bayuw*/ .togle span { position: absolute; transform: translate(9.5px, -14%) !important; opacity: 1; }
dist/css/style/style.css
@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700"; .center { text-align: center; } .btn-primary { background-color: teal !important; border-color: teal !important; } .breadcrumb { background-color: teal !important; color: white !important; margin-left: 50px !important; width: 1260px !important; } .breadcrumb-item { color: white !important; } #judulJenis { margin-left: 100px; } .kartu input { opacity: 0; } .breadcrumb-item + .breadcrumb-item::before { margin-right: 0.5rem !important; color: white !important; } .mr-5 { color: black !important; } .card-body { background-color: white !important; } .breadcrumb-item.active { color: white !important; font-weight: bold; } .card-body-icon i { color: black !important; } .navbar { border-bottom: 1px solid grey; } #navbarTop #siteName { margin-left: 35px; font-weight: bold; } #navbarTop i { color: white !important; } .navbar-fixed { position: fixed !important; left: 0; top: 0; width: 100%; } .wrapper { display: flex; align-items: stretch; } #sidebar:hover { width: 250px; } /* #sidebar ul.list-unstyled { position: relative; overflow-x: hidden; overflow-y: scroll !important; } */ #sidebar li { position: relative; display: block; width: 250px; } #sidebar li:hover > a, #sidebar li:focus > a, #sidebar li:active > a { background-color: teal !important; } a[data-toggle="collapse"] { position: relative; } .dropdown-toggle::after { display: block; position: absolute; top: 50%; right: 20px; transform: translateY(-50%); } @media (max-width: 768px) { #sidebar { margin-left: -250px; } #sidebar.active { margin-left: 0; } } body { font-family: 'Poppins', sans-serif; background: #fafafa; } p { font-family: 'Poppins', sans-serif; font-size: 1.1em; font-weight: 300; line-height: 1.7em; color: #999; } li a, li a:hover, li a:focus { color: inherit; text-decoration: none; transition: all 0.3s; display: block; } #sidebar { /* don't forget to add all the previously mentioned styles here too */ background: #555; color: #ccc; transition: all 0.4s; width: 40px; overflow: hidden; min-height: 100vh; position: absolute; z-index: 1; } div .sidebar-header { padding: 20px; overflow: scroll !important; background: #555; } #sidebar ul li a { padding: 10px; font-size: 1.1em; display: block; } #sidebar ul li a:hover { color: #fff; } #sidebar ul li.active > a, a[aria-expanded="true"] { color: #fff; } #sidebar ul ul li.active > a, a[aria-expanded="true"] { color: #fff; } a.dropdown-toggle.active, a[aria-expanded="true"] { color: #fff; } ul ul a { font-size: 0.9em !important; padding-left: 30px !important; } /* subsub menu */ ul ul ul a { font-size: 0.9em !important; padding-left: 45px !important; } ul li span { margin-left: 20px; } /* kontener semua */ .container-fluid { max-width: 90%; /* border: 2px solid #000; */ -webkit-transform: translate(30px, 15%); -ms-transform: translate(30px, 15%); -o-transform: translate(30px, 15%); -moz-transform: translate(30px, 15%); } .margin-kartu { margin: 20px 0; } /* card */ .kartu { position: relative; left: 0; bottom: 0; height: 500px; width: 240px; background: #555; overflow: hidden; border-radius: 0.25rem; } input, .togle { position: absolute; width: 50px; height: 50px; bottom: 20px; right: 20px; outline: none; z-index: 10; } .togle { pointer-events: none; border-radius: 50%; background: #fff; transition: 0.5s; line-height: 50px; font-size: 36px; box-shadow: 0 0 0 0px #555; padding: 3px; } .checkbox .togle span { position: absolute; transform: translate(5px, -7px) !important; } input:checked ~ .togle { box-shadow: 0 0 0 500px #555; transform: rotate(225deg); } .imgBox, .kartu-submenu { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } .kartu-submenu { padding: 0px; box-sizing: border-box; z-index: 11; pointer-events: none; transition: 0.5s; opacity: 0; } input:checked ~ .kartu-submenu { opacity: 1; transition-delay: 0.3s; } .list-group { width: 260px !important; } button.list-group-item { height: 60px; font-size: 1.25em !important; } .list-group button { z-index: 12; pointer-events: visible; cursor: pointer; background-color: inherit; border: none; font-size: 0.9em !important; color: #fff; } .list-group-item-action:hover, .list-group-item-action:focus { background-color: #df2323 !important; color: #fff !important; border: none !important; } .list-group a { text-decoration: none !important; font-size: 1em !important; color: #fff !important; height: 100% !important; width: 100% !important; } .card-body { background-color: #eee; } .kol-3 { /* max-width: 200px !important; */ border: 2px solid #000; padding: 0px !important; } .row { margin-right: -50px !important; margin-left: -50px !important; } /* ukuran card */ /* 5 items: max-width=230px*/ .kol5 { max-width: 230px; } .kol3 { max-width: 280px !important; } /* Card udahan */ /*Tambahan - '+' solved - Bayuw*/ .togle span { position: absolute; transform: translate(9.5px, -14%) !important; opacity: 1; }
0.320715
0.082512
* { margin: 0; padding: 0; box-sizing: border-box; } .red { color: rgb(175, 7, 7); text-align: center; margin-top: 50px; font-size: 50px; font-family: 'Amatic SC', cursive; } .angelsAndMonstersForms { display: flex; justify-content: space-around; margin-top: 50px; height: 50vh; align-items: center; } .monsterFormDiv label { font-family: 'Amatic SC', cursive; } .monsterFormDiv div { display: flex; justify-content: space-between; } .monsterFormDiv input { width: 50%; height: 10px; } .monsterFormDiv .select { background-color: rgb(255, 246, 214); width: 50%; } .select { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif } .select option { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif } .angelSelect { background-color: rgb(255, 246, 214); width: 50%; margin: 5px; } .angelSelect option { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; } .monsterForm { margin: auto; width: 95%; } .monsterForm>div { width: 100%; } .angelFormDiv label { font-family: 'Amatic SC', cursive; } .monsterFormDiv, .angelFormDiv { width: 20rem; height: 20rem; box-shadow: 0 0 1rem 0 rgba(156, 124, 124, 0.8); background-color: rgba(255, 255, 255, 0.15); display: flex; flex-direction: column; border-radius: 20px; } .formSuccess { margin-top: 5px; color: green; font-family: Arial, Helvetica, sans-serif; min-height: 20px; text-align: center; } .formError { text-align: center; color: rgb(128, 15, 0); font-family: Arial, Helvetica, sans-serif; min-height: 20px; } .angelFormDiv { box-shadow: 0 0 1rem 0 rgba(162, 214, 238, 0.8); } .boxTitle { font-family: 'Amatic SC', cursive; color: rgb(255, 246, 214); margin-top: 1rem; font-size: 25px; text-align: center; } .actionBtnSave, .actionBtnSend { margin: 5px; font-family: 'Amatic SC', cursive; font-size: 15px; padding: 3px 17px 3px 17px; border-radius: 3px 3px 3px 20px; border: none; background-color: darkolivegreen; color: cornsilk } .actionBtnSend { border-radius: 3px 3px 15px 3px; } .actionBtnSend:active, .actionBtnSave:active { transform: translate(2px, 2px); } @media screen and (max-width: 900px) { .monsterFormDiv, .angelFormDiv { width: 15rem; height: 22rem; } .arena { width: 35rem; height: 20rem; } } @media screen and (max-width: 600px) { .monsterFormDiv, .angelFormDiv { width: 10rem; height: 20rem; } .arena { width: 25rem; height: 15rem; } } @media screen and (max-width: 450px) { .angelsAndMonstersForms { display: flex; flex-direction: column; justify-content: center; align-items: center; } .monsterFormDiv, .angelFormDiv { margin-top: 20px; margin-bottom: 20px; } .arena { width: 15rem; height: 15rem; margin-top: 2rem; } }
src/pages/Profile.module.css
* { margin: 0; padding: 0; box-sizing: border-box; } .red { color: rgb(175, 7, 7); text-align: center; margin-top: 50px; font-size: 50px; font-family: 'Amatic SC', cursive; } .angelsAndMonstersForms { display: flex; justify-content: space-around; margin-top: 50px; height: 50vh; align-items: center; } .monsterFormDiv label { font-family: 'Amatic SC', cursive; } .monsterFormDiv div { display: flex; justify-content: space-between; } .monsterFormDiv input { width: 50%; height: 10px; } .monsterFormDiv .select { background-color: rgb(255, 246, 214); width: 50%; } .select { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif } .select option { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif } .angelSelect { background-color: rgb(255, 246, 214); width: 50%; margin: 5px; } .angelSelect option { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; } .monsterForm { margin: auto; width: 95%; } .monsterForm>div { width: 100%; } .angelFormDiv label { font-family: 'Amatic SC', cursive; } .monsterFormDiv, .angelFormDiv { width: 20rem; height: 20rem; box-shadow: 0 0 1rem 0 rgba(156, 124, 124, 0.8); background-color: rgba(255, 255, 255, 0.15); display: flex; flex-direction: column; border-radius: 20px; } .formSuccess { margin-top: 5px; color: green; font-family: Arial, Helvetica, sans-serif; min-height: 20px; text-align: center; } .formError { text-align: center; color: rgb(128, 15, 0); font-family: Arial, Helvetica, sans-serif; min-height: 20px; } .angelFormDiv { box-shadow: 0 0 1rem 0 rgba(162, 214, 238, 0.8); } .boxTitle { font-family: 'Amatic SC', cursive; color: rgb(255, 246, 214); margin-top: 1rem; font-size: 25px; text-align: center; } .actionBtnSave, .actionBtnSend { margin: 5px; font-family: 'Amatic SC', cursive; font-size: 15px; padding: 3px 17px 3px 17px; border-radius: 3px 3px 3px 20px; border: none; background-color: darkolivegreen; color: cornsilk } .actionBtnSend { border-radius: 3px 3px 15px 3px; } .actionBtnSend:active, .actionBtnSave:active { transform: translate(2px, 2px); } @media screen and (max-width: 900px) { .monsterFormDiv, .angelFormDiv { width: 15rem; height: 22rem; } .arena { width: 35rem; height: 20rem; } } @media screen and (max-width: 600px) { .monsterFormDiv, .angelFormDiv { width: 10rem; height: 20rem; } .arena { width: 25rem; height: 15rem; } } @media screen and (max-width: 450px) { .angelsAndMonstersForms { display: flex; flex-direction: column; justify-content: center; align-items: center; } .monsterFormDiv, .angelFormDiv { margin-top: 20px; margin-bottom: 20px; } .arena { width: 15rem; height: 15rem; margin-top: 2rem; } }
0.467089
0.128252
.textDisplay { width : 600px; height : 100px; font-size : 66%; } .funcButton { width : 180px; height : 30px; font-size : 110% } #parseTokenSet { /*border:1px solid #ffad41; -webkit-border-radius: 3px; -moz-border-radius: 3px;border-radius: 3px;font-size:12px;font-family:arial, helvetica, sans-serif; padding: 0px 0px 0px 0px; text-decoration:none; display:inline-block;text-shadow: -1px -1px 0 rgba(0,0,0,0.3);font-weight:bold; color: #FFFFFF;*/ background-color: #fb9d23; background-image: -webkit-gradient(linear, left top, left bottom, from(#fb9d23), to(#fb9d23)); background-image: -webkit-linear-gradient(top, #fb9d23, #fb9d23); background-image: -moz-linear-gradient(top, #fb9d23, #fb9d23); background-image: -ms-linear-gradient(top, #fb9d23, #fb9d23); background-image: -o-linear-gradient(top, #fb9d23, #fb9d23); background-image: linear-gradient(to bottom, #fb9d23, #fb9d23);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#ffc579, endColorstr=#fb9d23); } .SetTokenBtn { width : 60px; height : 30px; font-size : 110% } .TokenCandBtn { width : 80px; height : 30px; font-size : 100% } .CommandButton { min-width : 50px; width : 100px; min-height : 20px; height : 30px; margin-left : 3px; margin-right : 3px; } .CanvasNavigationButton { width : 40px; height : 40px; font-weight : bold; font-size : 110%; } .EngineOutput { width : 640px; height : 24px; font-size : 115%; font-family : "Courier New", Courier, Serif } .CopyEngineOutputButton { height : 30px; } .CopySuccessAlert { background-color: #23ff24; border: 1px solid black; color: black; padding-left: 20px; padding-right: 20px; padding-top: 5px; padding-bottom: 5px; } .ContentNameLabel { width: 135px; height: 28px; color: black; padding-left: 5px; padding-right: 5px; padding-top: 5px; padding-bottom: 5px; } .DataTableRow:hover { background-color : #feeaad; } #ajaxLoading { background-color: #44ffd1; border: 1px solid black; color: black; padding-left: 20px; padding-right: 20px; padding-top: 5px; padding-bottom: 5px; box-shadow: 0 2px 2px #d1d1d1; z-index: 1000; position: fixed; top: 50%; left: 50%; }
src/main/webapp/css/plato.css
.textDisplay { width : 600px; height : 100px; font-size : 66%; } .funcButton { width : 180px; height : 30px; font-size : 110% } #parseTokenSet { /*border:1px solid #ffad41; -webkit-border-radius: 3px; -moz-border-radius: 3px;border-radius: 3px;font-size:12px;font-family:arial, helvetica, sans-serif; padding: 0px 0px 0px 0px; text-decoration:none; display:inline-block;text-shadow: -1px -1px 0 rgba(0,0,0,0.3);font-weight:bold; color: #FFFFFF;*/ background-color: #fb9d23; background-image: -webkit-gradient(linear, left top, left bottom, from(#fb9d23), to(#fb9d23)); background-image: -webkit-linear-gradient(top, #fb9d23, #fb9d23); background-image: -moz-linear-gradient(top, #fb9d23, #fb9d23); background-image: -ms-linear-gradient(top, #fb9d23, #fb9d23); background-image: -o-linear-gradient(top, #fb9d23, #fb9d23); background-image: linear-gradient(to bottom, #fb9d23, #fb9d23);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#ffc579, endColorstr=#fb9d23); } .SetTokenBtn { width : 60px; height : 30px; font-size : 110% } .TokenCandBtn { width : 80px; height : 30px; font-size : 100% } .CommandButton { min-width : 50px; width : 100px; min-height : 20px; height : 30px; margin-left : 3px; margin-right : 3px; } .CanvasNavigationButton { width : 40px; height : 40px; font-weight : bold; font-size : 110%; } .EngineOutput { width : 640px; height : 24px; font-size : 115%; font-family : "Courier New", Courier, Serif } .CopyEngineOutputButton { height : 30px; } .CopySuccessAlert { background-color: #23ff24; border: 1px solid black; color: black; padding-left: 20px; padding-right: 20px; padding-top: 5px; padding-bottom: 5px; } .ContentNameLabel { width: 135px; height: 28px; color: black; padding-left: 5px; padding-right: 5px; padding-top: 5px; padding-bottom: 5px; } .DataTableRow:hover { background-color : #feeaad; } #ajaxLoading { background-color: #44ffd1; border: 1px solid black; color: black; padding-left: 20px; padding-right: 20px; padding-top: 5px; padding-bottom: 5px; box-shadow: 0 2px 2px #d1d1d1; z-index: 1000; position: fixed; top: 50%; left: 50%; }
0.473414
0.156943
.noselect { -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } [ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak { display: none !important; } .ng-invalid { border: 1px solid red !important; } td.gb-alarm-btn-xs { text-align: center; min-height: 22px; min-width: 27px; } th.gb-alarm-btn-xs { text-align: center; min-width: 27px; } .table-topless thead>tr:first-child>th, .table-topless tbody>tr:first-child>th, .table-topless thead>tr:first-child>td, .table-topless tbody>tr:first-child>td { border-top: 0; } .table tbody>tr>td.event-severity { background-color: #f0f0f0; font-weight: bold; } td.event-agent { background-color: #f0f0f0; } .icon-spin { -animation: icon-spin1 1.6s infinite linear; -webkit-animation: icon-spin2 1.6s infinite linear; } @-webkit-keyframes icon-spin2 { from { -webkit-transform: rotate(0deg);} to { -webkit-transform: rotate(360deg);} } @keyframes icon-spin1 { from { transform: scale(1) rotate(0deg);} to { transform: scale(1) rotate(360deg);} } .gb-icon-error {color: #d50000} .gb-icon-warn {color: #ff6d00} .gb-icon-ok {} .validity-good {color: #9de09d; font-size:1.4em;} .validity-invalid {color: #b22222; font-size:1.4em;} .validity-questionable {color: #f57900; font-size:1.4em;} .validity-notloaded {font-size:1.4em;} .gb-alarm-unack {color: red} .gb-alarm-ack {color: darkgray} .gb-alarm-remove {} .gb-comms-enabled-up {color: green} .gb-comms-enabled-down {color: #b22222} .gb-comms-enabled-error {color: #b22222} .gb-comms-enabled-unknown {color: orangered} .gb-comms-disabled-up {color: darkgray} .gb-comms-disabled-down {color: darkgray} .gb-comms-disabled-error {color: darkslategray} .gb-comms-disabled-unknown {color: darkslategray} .gb-toolbar button i { color: #444; } /*.T-Jo {*/ .gb-checkbox-container { display: inline-block; vertical-align: middle; width: 11px; } /* Fix Font Awsome spinners ascillations */ .fa-cog.fa-spin {transform-origin: 50.14% 48.95%;} .fa-spinner.fa-spin {transform-origin: 50.14% 48.95%;} .fa-spinner.fa-pulse {transform-origin: 50.14% 48.95%;} .gb-loading-container { position: relative; /* gb-loading-glass overlays ancestors till 'realitve' ancestor found.*/ } .gb-loading-glass { position: absolute; top: 0; left: 0; height:100%; width:100%; cursor: not-allowed; filter: alpha(opacity=90); opacity: 0.9; background-color: #FFF; } .gb-loading-spinner { position: absolute; top:150px; width:100%; text-align: center; font-size: 6em; color:lightgray; } .gb-chart { visibility: visible; float: right; /*height: 200px;*/ width: 400px; margin-left: 12px; background-color: white; } .gb-win { height: 100%; border: 1px solid #babdb6; -webkit-box-shadow: -3 -2px 10px rgba(0,0,0,0.2); box-shadow: -3px -2px 10px rgba(0,0,0,0.2); } .gb-win-container { height: 144px; position: relative; } .gb-win-overlay, .gb-win-content { width: 100%; height: 100%; } .gb-win-content.over { background-color: black; color: white; opacity: .80; } .over:before { font-size: 140%; position: absolute; bottom: 20px; left: 20px; content: "Drop point here"; } .gb-win-overlay.over { background-color: black; opacity: .65; color: white; } .gb-win-overlay.over:after { font-size: 300%; position: absolute; bottom: 40px; left: 20px; content: "Drop point here"; } .gb-win-titlebar { color: white; background-color: #404040; padding: 6px 8px 4px 8px; } .gb-win-titlebar a { color: white; } .gb-win-title { float: left; margin-bottom: 0; } .gb-win-actions { float: right; opacity: .5; } .gb-win-actions a { padding: 0 4px; } .gb-icon { margin-right: 4px; } .gb-icon-text { white-space: nowrap; } .drag { background-color: white; border: 1px dashed #555753; } .draggable { cursor: move; } .gb-legend { padding: 1px 4px; border: 1px solid white; } .gb-legend:hover { color: black; background-color: #eeeeec; border: 1px solid #babdb6; } .gb-legend .gb-remove { color: white; } .gb-legend:hover .gb-remove { color: #999999; } .gb-remove { cursor: hand; } .gb-legend:hover .gb-remove:hover { color: #404040; } .gb-legend-text { border-bottom-width: 3px; border-bottom-style: solid; } .gb-notification-container { left: 0; top: 0; margin: 0; font-family: arial, sans-serif; font-weight: bold; visibility: hidden; z-index: 2000; position: fixed; text-align: center; width: 100%; height: 100%; } .gb-notification-message { position: relative; display: inline-block; visibility: visible; font-size: 80%; padding: 6px 10px; background-color: #f9edbe; border: 1px solid #f0c36d; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); margin: 0 1em 0.4em; } .progress-standby .bar, .progress .bar-standby{ background-color: #fafafa; background-image: -moz-linear-gradient(top, #ffffff, #f2f2f2); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f2f2f2)); background-image: -webkit-linear-gradient(top, #ffffff, #f2f2f2); background-image: -o-linear-gradient(top, #ffffff, #f2f2f2); background-image: linear-gradient(to bottom, #ffffff, #f2f2f2); background-repeat: repeat-x; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0); } .battery-state-icon { margin-right: 0.5em; font-size: 130%; color: #888; min-width: 1em; text-align: center; vertical-align: middle; } .battery-wrapper { display: block; width:50px; height: 30px; /*padding-left: 4px;*/ /*padding-right: 20px;*/ padding: 0 overflow: visible; } .battery-soc { display: block; float: left; margin-top: 2px; height: 26px; } .battery-soc.charged { background-color: #32c832; -webkit-box-shadow: 0px 3px 3px rgba(66, 255, 66, .3); -moz-box-shadow: 0px 3px 3px rgba(66, 255, 66, .3); box-shadow: 0px 3px 3px rgba(66, 255, 66, .3); } .battery-soc.charged.standby { background-color: darkgreen; -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0); -moz-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0); box-shadow: 0px 0px 0px rgba(0, 0, 0, 0); } .battery-soc.uncharged { background-color: black; -webkit-box-shadow: 0px 3px 3px rgba(0, 0, 0, .3); -moz-box-shadow: 0px 3px 3px rgba(0, 0, 0, .3); box-shadow: 0px 3px 3px rgba(0, 0, 0, .3); } .battery-soc.uncharged.standby { background-color: black; -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0); -moz-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0); box-shadow: 0px 0px 0px rgba(0, 0, 0, 0); } .battery-soc.uncharged.storage-unavailable { background-color: #CCC; -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0); -moz-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0); box-shadow: 0px 0px 0px rgba(0, 0, 0, 0); } .battery-soc.alarmed{ -webkit-box-shadow: 0px 0px 8px rgba(255, 0, 0, 1); -moz-box-shadow: 0px 0px 8px rgba(255, 0, 0, 1); box-shadow: 0px 0px 8px rgba(255, 0, 0, 1); } .battery-soc.charged.alarmed{ background-color: #d00000; } .battery-soc.unknown{ background-color: darkgray; } .battery-overlay-icon{ position: relative; left: -4px; width: 60px; height: 100%; display: block; top: -24px; color: #8b0000; } .battery-overlay { position: relative; left: -4px; width: 60px; height: 100%; background-image: url('/images/ess60x30.png'); } /*.battery-discharging {*/ /*position: relative;*/ /*top: -27px;*/ /*left: -28px;*/ /*width: 14px;*/ /*height: 24px;*/ /*}*/ /*.battery-charging {*/ /*position: relative;*/ /*top: -27px;*/ /*left: -28px;*/ /*width: 14px;*/ /*height: 24px;*/ /*}*/ /*.battery-standby {*/ /*position: relative;*/ /*top: -33px;*/ /*left: 15px;*/ /*width: 24px;*/ /*height: 36px;*/ /*background-image: url('../images/standby24x36.png');*/ /*}*/ .gb-table-2header > thead > tr > th { border-bottom: 2px solid #ddd; border-top: none; padding-top: 0; } .gb-table-2header > thead > tr:first-child > th { border-bottom: none; padding-bottom: 0; padding-top: 5px; } .gb-table-2header > thead > tr:first-child > th.gb-cell-highlight-top { border-top: 2px solid #ddd; text-align: center; /*background-color: #eee;*/ } .gb-cell-highlight-top { border-radius: 15px 15px 0 0; border-top: 2px solid #ddd; border-right: 2px solid #ddd; border-left: 2px solid #ddd; } .gb-cell-highlight { background-color: #eff; } .gb-cell-highlight-left { border-left: 2px solid #ddd; } .gb-cell-highlight-right { border-right: 2px solid #ddd; } .light-backgrounds { background-color: aliceblue; background-color: goldenrod; /* background-color: gainsboro; */ /* background-color: lemonchiffon; */ /* background-color: lightblue; */ /* background-color: lightyellow; */ /* background-color: moccasin; */ /* background-color: oldlace; */ background-color: papayawhip; /* background-color: peachpuff; */ /* background-color: powderblue; */ /* background-color: tan; */ background-color: wheat; /* background-color: whitesmoke; */ /* background-color: cornsilk; */ /* background-color: blanchedalmond; */ /* background-color: azure; */ /* background-color: honeydew; */ /* background-color: lightcyan; */ } table.gb-row-radius { border-collapse: separate; } .table > tbody > tr.gb-row-selectable > td { cursor: pointer; } .table > tbody > tr.gb-row-selected > td { background-color: #E0FFFF; /* #ADD8E6;*/ /*powderblue*/ /*#FAFAFA*/ border-top: 1px solid #ddd; /*#C0DFDF;*/ /*border-bottom: 1px solid #ddd;*/ cursor: pointer; } .table > tbody > tr.gb-row-selected > td:first-child { border-left: 1px solid #ddd; border-top-left-radius: 8px; /*border-bottom-left-radius: 8px;*/ } .table > tbody > tr.gb-row-selected > td:last-child { border-right: 1px solid #ddd; border-top-right-radius: 8px; /*border-bottom-right-radius: 8px;*/ } .table > tbody > tr.gb-row-selected-detail > td { background-color: #F0FFFF; /*lightcyan*/ /*border-top: 1px solid #F8FFFF;*/ border-bottom: 1px solid #ddd; } .table > tbody > tr.gb-row-selected-detail > td:first-child { border-left: 1px solid #ddd; } .table > tbody > tr.gb-row-selected-detail > td:last-child { border-right: 1px solid #ddd; } .gb-value { text-align: right; white-space: nowrap; } .gb-value .gb-edit { padding-left: .5em; color: #999999; } .gb-value .gb-commands { margin-top: 10px; margin-bottom: 10px; } i.gb-command-error { font-size: 2.5em; vertical-align: middle; padding: 0px 12px; color: #b22222; } .gb-command{ position:relative; padding-right: 34px; background-color: #eee; border-top-right-radius: 0 !important; border-bottom-right-radius: 0 !important; min-width: 10em; } .gb-command > .gb-command-execute { position:absolute; width: 200px; left: 100%; top: -1px; white-space: nowrap } .gb-command > .gb-command-execute > input { float: left; margin-left: 1em; width: 40%; /*border-radius: 0 !important;*/ } .gb-command > .gb-command-execute > div { margin-left: 1em; float: left; /*border-left: none;*/ /*border-radius: 0 4px 4px 0 !important;*/ } .gb-commands > button > i { color: #428bca; top: 28%; position: absolute; right: 1em; } .gb-btn-replacenis-remove { font-size: 200%; vertical-align: middle; cursor: pointer; margin-left: .2em; } .gb-btn-replacenis-remove i { vertical-align: text-top; } .gb-alert-inline { display: inline-block; margin-bottom: 0; padding: 6px 12px; } .gb-alert-md { margin-bottom: 0; padding: 6px 12px; } .animate { /*line-height:40px;*/ /*list-style:none;*/ /*box-sizing:border-box;*/ /*display: block;*/ } .animate-enter, .animate-leave { -webkit-transition: 400ms cubic-bezier(0.250, 0.250, 0.750, 0.750) all; -moz-transition: 400ms cubic-bezier(0.250, 0.250, 0.750, 0.750) all; -ms-transition: 400ms cubic-bezier(0.250, 0.250, 0.750, 0.750) all; -o-transition: 400ms cubic-bezier(0.250, 0.250, 0.750, 0.750) all; transition: 400ms cubic-bezier(0.250, 0.250, 0.750, 0.750) all; position: relative; display: block; } .animate-enter.animate-enter-active, .animate-leave { opacity: 1; top: 0; height: 30px; } .animate-leave.animate-leave-active, .animate-enter { opacity: 0; top: -50px; height: 0px; } .animate-repeat { /*line-height:40px;*/ /*list-style:none;*/ /*box-sizing:border-box;*/ /*display: block;*/ } .animate-repeat.ng-move, .animate-repeat.ng-enter, .animate-repeat.ng-leave { -webkit-transition:all linear 0.5s; transition:all linear 0.5s; } .animate-repeat.ng-leave.ng-leave-active, .animate-repeat.ng-move, .animate-repeat.ng-enter { opacity:0; max-height:0; } .animate-repeat.ng-leave, .animate-repeat.ng-move.ng-move-active, .animate-repeat.ng-enter.ng-enter-active { opacity:1; max-height:40px; }
public/lib/greenbus-views/greenbus-views-0.1.0-SNAPSHOT.css
.noselect { -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } [ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak { display: none !important; } .ng-invalid { border: 1px solid red !important; } td.gb-alarm-btn-xs { text-align: center; min-height: 22px; min-width: 27px; } th.gb-alarm-btn-xs { text-align: center; min-width: 27px; } .table-topless thead>tr:first-child>th, .table-topless tbody>tr:first-child>th, .table-topless thead>tr:first-child>td, .table-topless tbody>tr:first-child>td { border-top: 0; } .table tbody>tr>td.event-severity { background-color: #f0f0f0; font-weight: bold; } td.event-agent { background-color: #f0f0f0; } .icon-spin { -animation: icon-spin1 1.6s infinite linear; -webkit-animation: icon-spin2 1.6s infinite linear; } @-webkit-keyframes icon-spin2 { from { -webkit-transform: rotate(0deg);} to { -webkit-transform: rotate(360deg);} } @keyframes icon-spin1 { from { transform: scale(1) rotate(0deg);} to { transform: scale(1) rotate(360deg);} } .gb-icon-error {color: #d50000} .gb-icon-warn {color: #ff6d00} .gb-icon-ok {} .validity-good {color: #9de09d; font-size:1.4em;} .validity-invalid {color: #b22222; font-size:1.4em;} .validity-questionable {color: #f57900; font-size:1.4em;} .validity-notloaded {font-size:1.4em;} .gb-alarm-unack {color: red} .gb-alarm-ack {color: darkgray} .gb-alarm-remove {} .gb-comms-enabled-up {color: green} .gb-comms-enabled-down {color: #b22222} .gb-comms-enabled-error {color: #b22222} .gb-comms-enabled-unknown {color: orangered} .gb-comms-disabled-up {color: darkgray} .gb-comms-disabled-down {color: darkgray} .gb-comms-disabled-error {color: darkslategray} .gb-comms-disabled-unknown {color: darkslategray} .gb-toolbar button i { color: #444; } /*.T-Jo {*/ .gb-checkbox-container { display: inline-block; vertical-align: middle; width: 11px; } /* Fix Font Awsome spinners ascillations */ .fa-cog.fa-spin {transform-origin: 50.14% 48.95%;} .fa-spinner.fa-spin {transform-origin: 50.14% 48.95%;} .fa-spinner.fa-pulse {transform-origin: 50.14% 48.95%;} .gb-loading-container { position: relative; /* gb-loading-glass overlays ancestors till 'realitve' ancestor found.*/ } .gb-loading-glass { position: absolute; top: 0; left: 0; height:100%; width:100%; cursor: not-allowed; filter: alpha(opacity=90); opacity: 0.9; background-color: #FFF; } .gb-loading-spinner { position: absolute; top:150px; width:100%; text-align: center; font-size: 6em; color:lightgray; } .gb-chart { visibility: visible; float: right; /*height: 200px;*/ width: 400px; margin-left: 12px; background-color: white; } .gb-win { height: 100%; border: 1px solid #babdb6; -webkit-box-shadow: -3 -2px 10px rgba(0,0,0,0.2); box-shadow: -3px -2px 10px rgba(0,0,0,0.2); } .gb-win-container { height: 144px; position: relative; } .gb-win-overlay, .gb-win-content { width: 100%; height: 100%; } .gb-win-content.over { background-color: black; color: white; opacity: .80; } .over:before { font-size: 140%; position: absolute; bottom: 20px; left: 20px; content: "Drop point here"; } .gb-win-overlay.over { background-color: black; opacity: .65; color: white; } .gb-win-overlay.over:after { font-size: 300%; position: absolute; bottom: 40px; left: 20px; content: "Drop point here"; } .gb-win-titlebar { color: white; background-color: #404040; padding: 6px 8px 4px 8px; } .gb-win-titlebar a { color: white; } .gb-win-title { float: left; margin-bottom: 0; } .gb-win-actions { float: right; opacity: .5; } .gb-win-actions a { padding: 0 4px; } .gb-icon { margin-right: 4px; } .gb-icon-text { white-space: nowrap; } .drag { background-color: white; border: 1px dashed #555753; } .draggable { cursor: move; } .gb-legend { padding: 1px 4px; border: 1px solid white; } .gb-legend:hover { color: black; background-color: #eeeeec; border: 1px solid #babdb6; } .gb-legend .gb-remove { color: white; } .gb-legend:hover .gb-remove { color: #999999; } .gb-remove { cursor: hand; } .gb-legend:hover .gb-remove:hover { color: #404040; } .gb-legend-text { border-bottom-width: 3px; border-bottom-style: solid; } .gb-notification-container { left: 0; top: 0; margin: 0; font-family: arial, sans-serif; font-weight: bold; visibility: hidden; z-index: 2000; position: fixed; text-align: center; width: 100%; height: 100%; } .gb-notification-message { position: relative; display: inline-block; visibility: visible; font-size: 80%; padding: 6px 10px; background-color: #f9edbe; border: 1px solid #f0c36d; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); margin: 0 1em 0.4em; } .progress-standby .bar, .progress .bar-standby{ background-color: #fafafa; background-image: -moz-linear-gradient(top, #ffffff, #f2f2f2); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f2f2f2)); background-image: -webkit-linear-gradient(top, #ffffff, #f2f2f2); background-image: -o-linear-gradient(top, #ffffff, #f2f2f2); background-image: linear-gradient(to bottom, #ffffff, #f2f2f2); background-repeat: repeat-x; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0); } .battery-state-icon { margin-right: 0.5em; font-size: 130%; color: #888; min-width: 1em; text-align: center; vertical-align: middle; } .battery-wrapper { display: block; width:50px; height: 30px; /*padding-left: 4px;*/ /*padding-right: 20px;*/ padding: 0 overflow: visible; } .battery-soc { display: block; float: left; margin-top: 2px; height: 26px; } .battery-soc.charged { background-color: #32c832; -webkit-box-shadow: 0px 3px 3px rgba(66, 255, 66, .3); -moz-box-shadow: 0px 3px 3px rgba(66, 255, 66, .3); box-shadow: 0px 3px 3px rgba(66, 255, 66, .3); } .battery-soc.charged.standby { background-color: darkgreen; -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0); -moz-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0); box-shadow: 0px 0px 0px rgba(0, 0, 0, 0); } .battery-soc.uncharged { background-color: black; -webkit-box-shadow: 0px 3px 3px rgba(0, 0, 0, .3); -moz-box-shadow: 0px 3px 3px rgba(0, 0, 0, .3); box-shadow: 0px 3px 3px rgba(0, 0, 0, .3); } .battery-soc.uncharged.standby { background-color: black; -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0); -moz-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0); box-shadow: 0px 0px 0px rgba(0, 0, 0, 0); } .battery-soc.uncharged.storage-unavailable { background-color: #CCC; -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0); -moz-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0); box-shadow: 0px 0px 0px rgba(0, 0, 0, 0); } .battery-soc.alarmed{ -webkit-box-shadow: 0px 0px 8px rgba(255, 0, 0, 1); -moz-box-shadow: 0px 0px 8px rgba(255, 0, 0, 1); box-shadow: 0px 0px 8px rgba(255, 0, 0, 1); } .battery-soc.charged.alarmed{ background-color: #d00000; } .battery-soc.unknown{ background-color: darkgray; } .battery-overlay-icon{ position: relative; left: -4px; width: 60px; height: 100%; display: block; top: -24px; color: #8b0000; } .battery-overlay { position: relative; left: -4px; width: 60px; height: 100%; background-image: url('/images/ess60x30.png'); } /*.battery-discharging {*/ /*position: relative;*/ /*top: -27px;*/ /*left: -28px;*/ /*width: 14px;*/ /*height: 24px;*/ /*}*/ /*.battery-charging {*/ /*position: relative;*/ /*top: -27px;*/ /*left: -28px;*/ /*width: 14px;*/ /*height: 24px;*/ /*}*/ /*.battery-standby {*/ /*position: relative;*/ /*top: -33px;*/ /*left: 15px;*/ /*width: 24px;*/ /*height: 36px;*/ /*background-image: url('../images/standby24x36.png');*/ /*}*/ .gb-table-2header > thead > tr > th { border-bottom: 2px solid #ddd; border-top: none; padding-top: 0; } .gb-table-2header > thead > tr:first-child > th { border-bottom: none; padding-bottom: 0; padding-top: 5px; } .gb-table-2header > thead > tr:first-child > th.gb-cell-highlight-top { border-top: 2px solid #ddd; text-align: center; /*background-color: #eee;*/ } .gb-cell-highlight-top { border-radius: 15px 15px 0 0; border-top: 2px solid #ddd; border-right: 2px solid #ddd; border-left: 2px solid #ddd; } .gb-cell-highlight { background-color: #eff; } .gb-cell-highlight-left { border-left: 2px solid #ddd; } .gb-cell-highlight-right { border-right: 2px solid #ddd; } .light-backgrounds { background-color: aliceblue; background-color: goldenrod; /* background-color: gainsboro; */ /* background-color: lemonchiffon; */ /* background-color: lightblue; */ /* background-color: lightyellow; */ /* background-color: moccasin; */ /* background-color: oldlace; */ background-color: papayawhip; /* background-color: peachpuff; */ /* background-color: powderblue; */ /* background-color: tan; */ background-color: wheat; /* background-color: whitesmoke; */ /* background-color: cornsilk; */ /* background-color: blanchedalmond; */ /* background-color: azure; */ /* background-color: honeydew; */ /* background-color: lightcyan; */ } table.gb-row-radius { border-collapse: separate; } .table > tbody > tr.gb-row-selectable > td { cursor: pointer; } .table > tbody > tr.gb-row-selected > td { background-color: #E0FFFF; /* #ADD8E6;*/ /*powderblue*/ /*#FAFAFA*/ border-top: 1px solid #ddd; /*#C0DFDF;*/ /*border-bottom: 1px solid #ddd;*/ cursor: pointer; } .table > tbody > tr.gb-row-selected > td:first-child { border-left: 1px solid #ddd; border-top-left-radius: 8px; /*border-bottom-left-radius: 8px;*/ } .table > tbody > tr.gb-row-selected > td:last-child { border-right: 1px solid #ddd; border-top-right-radius: 8px; /*border-bottom-right-radius: 8px;*/ } .table > tbody > tr.gb-row-selected-detail > td { background-color: #F0FFFF; /*lightcyan*/ /*border-top: 1px solid #F8FFFF;*/ border-bottom: 1px solid #ddd; } .table > tbody > tr.gb-row-selected-detail > td:first-child { border-left: 1px solid #ddd; } .table > tbody > tr.gb-row-selected-detail > td:last-child { border-right: 1px solid #ddd; } .gb-value { text-align: right; white-space: nowrap; } .gb-value .gb-edit { padding-left: .5em; color: #999999; } .gb-value .gb-commands { margin-top: 10px; margin-bottom: 10px; } i.gb-command-error { font-size: 2.5em; vertical-align: middle; padding: 0px 12px; color: #b22222; } .gb-command{ position:relative; padding-right: 34px; background-color: #eee; border-top-right-radius: 0 !important; border-bottom-right-radius: 0 !important; min-width: 10em; } .gb-command > .gb-command-execute { position:absolute; width: 200px; left: 100%; top: -1px; white-space: nowrap } .gb-command > .gb-command-execute > input { float: left; margin-left: 1em; width: 40%; /*border-radius: 0 !important;*/ } .gb-command > .gb-command-execute > div { margin-left: 1em; float: left; /*border-left: none;*/ /*border-radius: 0 4px 4px 0 !important;*/ } .gb-commands > button > i { color: #428bca; top: 28%; position: absolute; right: 1em; } .gb-btn-replacenis-remove { font-size: 200%; vertical-align: middle; cursor: pointer; margin-left: .2em; } .gb-btn-replacenis-remove i { vertical-align: text-top; } .gb-alert-inline { display: inline-block; margin-bottom: 0; padding: 6px 12px; } .gb-alert-md { margin-bottom: 0; padding: 6px 12px; } .animate { /*line-height:40px;*/ /*list-style:none;*/ /*box-sizing:border-box;*/ /*display: block;*/ } .animate-enter, .animate-leave { -webkit-transition: 400ms cubic-bezier(0.250, 0.250, 0.750, 0.750) all; -moz-transition: 400ms cubic-bezier(0.250, 0.250, 0.750, 0.750) all; -ms-transition: 400ms cubic-bezier(0.250, 0.250, 0.750, 0.750) all; -o-transition: 400ms cubic-bezier(0.250, 0.250, 0.750, 0.750) all; transition: 400ms cubic-bezier(0.250, 0.250, 0.750, 0.750) all; position: relative; display: block; } .animate-enter.animate-enter-active, .animate-leave { opacity: 1; top: 0; height: 30px; } .animate-leave.animate-leave-active, .animate-enter { opacity: 0; top: -50px; height: 0px; } .animate-repeat { /*line-height:40px;*/ /*list-style:none;*/ /*box-sizing:border-box;*/ /*display: block;*/ } .animate-repeat.ng-move, .animate-repeat.ng-enter, .animate-repeat.ng-leave { -webkit-transition:all linear 0.5s; transition:all linear 0.5s; } .animate-repeat.ng-leave.ng-leave-active, .animate-repeat.ng-move, .animate-repeat.ng-enter { opacity:0; max-height:0; } .animate-repeat.ng-leave, .animate-repeat.ng-move.ng-move-active, .animate-repeat.ng-enter.ng-enter-active { opacity:1; max-height:40px; }
0.466359
0.083441
body :not(input):not(textarea) { touch-callout: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } html { scroll-behavior: smooth; box-sizing: border-box; font-size: 12px; overflow-x: hidden; } @media (min-width: 1400px) { html { font-size: 14px; } } * { box-sizing: inherit; margin: 0; padding: 0; border: 0; vertical-align: baseline; } a { text-decoration: none; color: inherit; } a:hover { opacity: 50%; } a:focus { opacity: 50%; } html, body { width: 100%; min-height: 100vh; } img { width: 100%; height: 100%; display: block; margin: 0; } h1 { width: 100%; line-height: 1.1; font-weight: normal; } h1 { font-size: 12.25vw; font-family: "DM Sans", sans-serif; } h2 { font-size: 1rem; } .h2 { font-size: 1em; text-align: right; } @media (min-width: 600px) { .h2 { font-size: 2em; } } p { margin-bottom: 2rem; } .h0 { margin: 9vh 0; font-size: 9vh; line-height: 1; pointer-events: none; } .in { opacity: 0.5; } .page { width: 100vw; padding: 1.5rem 1.5rem 0 1.5rem; background: #ffffff; /* fallback for old browsers */ /* Chrome 10-25, Safari 5.1-6 */ background: linear-gradient(to bottom, #ffffff, #c4c4c4); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */ color: #100001; margin: auto; text-transform: uppercase; font-feature-settings: "case"on, "cpsp"on; transition-property: background, color; transition-duration: 300ms; transition-timing-function: ease; } @media (min-width: 1200px) { .page { padding: 3rem 3rem 0 3rem; } } [data-theme=dark] { background: #100001; /* fallback for old browsers */ /* Chrome 10-25, Safari 5.1-6 */ background: linear-gradient(to bottom, #252525, #100001); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */ color: darkgray; } [data-theme=dark] .theme-dot { background: darkgray; } [data-theme=dark] .awards li:after { background-color: #fff; } .fx, .hint, header { display: inline-block; } header { justify-content: space-between; } .circle { width: 10em; height: 10em; border: 1px solid #100001; color: #fafafa; background: #100001; border-radius: 50%; text-align: center; display: flex; align-items: center; justify-content: center; margin: 4em auto; } .circle .inner { line-height: 1; } .foot .fx, .foot .hint, .foot header { justify-content: space-between; } .foot .b, .foot .a { width: 100%; } .p-body { width: 100%; max-width: 80rem; margin: auto; font-size: 1.25rem; text-indent: 30vw; } @media (min-width: 50em) { .p-body { font-size: 2rem; } } .theme-switch { width: 72px; cursor: pointer; margin-left: auto; display: flex; justify-content: space-between; } .theme-switch:hover .theme-dot { transform: scale(2); } .theme-switch .theme-text { display: inline-block; pointer-events: none; } .theme-dot { transform: scale(1); transition: transform 500ms ease-in-out; width: 1em; height: 1em; border-radius: 50%; background-color: #100001; cursor: pointer; } .b { padding: 4rem 0; } .a { padding: 2rem 0; } .relative { position: relative; } @media (max-width: 50em) { .b { padding: 2rem 0; } .a { padding: 1rem 0; } } .list { width: 100%; margin: auto; } .list span { display: inline-block; width: 80%; } .list span:first-child { width: 20%; text-align: right; padding-right: 10%; } .awards { width: 100%; margin: auto; font-family: "DM Sans", sans-serif; font-weight: normal; line-height: 1; } .awards li { margin-bottom: 1em; padding-bottom: 1em; position: relative; display: flex; } .awards li span { display: inline-block; } .awards li:after { position: absolute; bottom: 0; left: 0; content: ""; height: 1px; width: 100%; background: #100001; opacity: 0.1; } .awards .award-l { width: 10%; text-align: left; } .awards .award-r { text-align: right; width: 90%; } @media (max-width: 50em) { .awards li { display: block; } .awards .award-l { width: 100%; padding-bottom: 0.5rem; opacity: 0.5; } .awards .award-r { width: 100%; text-align: left; display: block; } } .foot-copy { justify-content: space-between; } @media (max-width: 50em) { .fx-md { display: flex; } } @media (min-width: 50em) { .fx, .hint, header { display: flex; } } .works { width: 100%; max-width: 80rem; margin: auto; flex-direction: column; flex-wrap: nowrap; gap: 4vw; } .works .info { margin-top: 1rem; margin-bottom: 1rem; } .works .info h2 { font-size: 9vh; } .works .info p { margin: 0; } .works li { -webkit-backface-visibility: hidden; backface-visibility: hidden; padding: 3vh; } @media (min-width: 50em) { .works li { padding: 6vw; } } .works li .img { min-width: 200px; max-width: 400px; -o-object-fit: contain; object-fit: contain; overflow: hidden; margin: auto; } .works li .img img { mix-blend-mode: luminosity; -webkit-backface-visibility: hidden; backface-visibility: hidden; transform: translatez(0); } .works li:nth-child(even) h2 { text-align: right; } .works li:nth-child(odd) h2 { text-align: left; } .works li:nth-child(odd) p { text-align: right; } @media (min-width: 50em) { .head .c { width: calc(100% / 3); } .brand { text-align: center; } } .main-title { width: 100%; text-align: center; letter-spacing: 0.02em; } .hint { justify-content: space-between; } .hint .c { width: calc(100% / 2); } .last { text-align: right; margin-left: auto; } @media (hover: none) and (pointer: coarse) { #cursor-wrapper { display: none; visibility: hidden; } } @media (max-aspect-ratio: 4/3) { #cursor-wrapper { display: none; visibility: hidden; } } #cursor-wrapper { position: fixed; pointer-events: none; mix-blend-mode: exclusion; transform: translate3d(0%, 0%, 0); top: 0; left: 0; right: 0; z-index: 222; } #cursor-wrapper .cursor { width: 64px; height: 64px; border-radius: 50%; background-color: #fff; color: #100001; text-transform: uppercase; font-size: 0.75rem; margin-left: -32px; margin-top: -32px; } [data-scroll=true] { position: absolute; top: 0; left: 0; z-index: 15; transform: translateZ(0); will-change: transform; } .disable-hover, .disable-hover * { pointer-events: none !important; } #loader { visibility: visible; opacity: 1; position: fixed; pointer-events: none; top: 0; right: 0; left: 0; bottom: 0; width: 100%; height: 100vh; background: #100001; color: white; z-index: 1000; will-change: transform; display: flex; align-items: center; text-align: center; } #loader .loader-wrapper { width: 80%; margin: auto; } #loader .loader-sub { margin: 2em 0; text-align: center; } #loader .loader-sub .mask { display: inline-block; } #sentinel { height: 1px; width: 100%; position: fixed; top: 0; left: 0; right: 0; pointer-events: none; } .masthead { margin: 5vh auto; } @media (max-width: 50em) { .masthead { margin: 25vh auto; } } #progress { width: 50px; } .mask { visibility: visible; overflow: hidden; line-height: 1; margin: 1vh 0; } .mask div { will-change: transform; transform: translatey(100%); opacity: 0; }
docs/style.css
body :not(input):not(textarea) { touch-callout: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } html { scroll-behavior: smooth; box-sizing: border-box; font-size: 12px; overflow-x: hidden; } @media (min-width: 1400px) { html { font-size: 14px; } } * { box-sizing: inherit; margin: 0; padding: 0; border: 0; vertical-align: baseline; } a { text-decoration: none; color: inherit; } a:hover { opacity: 50%; } a:focus { opacity: 50%; } html, body { width: 100%; min-height: 100vh; } img { width: 100%; height: 100%; display: block; margin: 0; } h1 { width: 100%; line-height: 1.1; font-weight: normal; } h1 { font-size: 12.25vw; font-family: "DM Sans", sans-serif; } h2 { font-size: 1rem; } .h2 { font-size: 1em; text-align: right; } @media (min-width: 600px) { .h2 { font-size: 2em; } } p { margin-bottom: 2rem; } .h0 { margin: 9vh 0; font-size: 9vh; line-height: 1; pointer-events: none; } .in { opacity: 0.5; } .page { width: 100vw; padding: 1.5rem 1.5rem 0 1.5rem; background: #ffffff; /* fallback for old browsers */ /* Chrome 10-25, Safari 5.1-6 */ background: linear-gradient(to bottom, #ffffff, #c4c4c4); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */ color: #100001; margin: auto; text-transform: uppercase; font-feature-settings: "case"on, "cpsp"on; transition-property: background, color; transition-duration: 300ms; transition-timing-function: ease; } @media (min-width: 1200px) { .page { padding: 3rem 3rem 0 3rem; } } [data-theme=dark] { background: #100001; /* fallback for old browsers */ /* Chrome 10-25, Safari 5.1-6 */ background: linear-gradient(to bottom, #252525, #100001); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */ color: darkgray; } [data-theme=dark] .theme-dot { background: darkgray; } [data-theme=dark] .awards li:after { background-color: #fff; } .fx, .hint, header { display: inline-block; } header { justify-content: space-between; } .circle { width: 10em; height: 10em; border: 1px solid #100001; color: #fafafa; background: #100001; border-radius: 50%; text-align: center; display: flex; align-items: center; justify-content: center; margin: 4em auto; } .circle .inner { line-height: 1; } .foot .fx, .foot .hint, .foot header { justify-content: space-between; } .foot .b, .foot .a { width: 100%; } .p-body { width: 100%; max-width: 80rem; margin: auto; font-size: 1.25rem; text-indent: 30vw; } @media (min-width: 50em) { .p-body { font-size: 2rem; } } .theme-switch { width: 72px; cursor: pointer; margin-left: auto; display: flex; justify-content: space-between; } .theme-switch:hover .theme-dot { transform: scale(2); } .theme-switch .theme-text { display: inline-block; pointer-events: none; } .theme-dot { transform: scale(1); transition: transform 500ms ease-in-out; width: 1em; height: 1em; border-radius: 50%; background-color: #100001; cursor: pointer; } .b { padding: 4rem 0; } .a { padding: 2rem 0; } .relative { position: relative; } @media (max-width: 50em) { .b { padding: 2rem 0; } .a { padding: 1rem 0; } } .list { width: 100%; margin: auto; } .list span { display: inline-block; width: 80%; } .list span:first-child { width: 20%; text-align: right; padding-right: 10%; } .awards { width: 100%; margin: auto; font-family: "DM Sans", sans-serif; font-weight: normal; line-height: 1; } .awards li { margin-bottom: 1em; padding-bottom: 1em; position: relative; display: flex; } .awards li span { display: inline-block; } .awards li:after { position: absolute; bottom: 0; left: 0; content: ""; height: 1px; width: 100%; background: #100001; opacity: 0.1; } .awards .award-l { width: 10%; text-align: left; } .awards .award-r { text-align: right; width: 90%; } @media (max-width: 50em) { .awards li { display: block; } .awards .award-l { width: 100%; padding-bottom: 0.5rem; opacity: 0.5; } .awards .award-r { width: 100%; text-align: left; display: block; } } .foot-copy { justify-content: space-between; } @media (max-width: 50em) { .fx-md { display: flex; } } @media (min-width: 50em) { .fx, .hint, header { display: flex; } } .works { width: 100%; max-width: 80rem; margin: auto; flex-direction: column; flex-wrap: nowrap; gap: 4vw; } .works .info { margin-top: 1rem; margin-bottom: 1rem; } .works .info h2 { font-size: 9vh; } .works .info p { margin: 0; } .works li { -webkit-backface-visibility: hidden; backface-visibility: hidden; padding: 3vh; } @media (min-width: 50em) { .works li { padding: 6vw; } } .works li .img { min-width: 200px; max-width: 400px; -o-object-fit: contain; object-fit: contain; overflow: hidden; margin: auto; } .works li .img img { mix-blend-mode: luminosity; -webkit-backface-visibility: hidden; backface-visibility: hidden; transform: translatez(0); } .works li:nth-child(even) h2 { text-align: right; } .works li:nth-child(odd) h2 { text-align: left; } .works li:nth-child(odd) p { text-align: right; } @media (min-width: 50em) { .head .c { width: calc(100% / 3); } .brand { text-align: center; } } .main-title { width: 100%; text-align: center; letter-spacing: 0.02em; } .hint { justify-content: space-between; } .hint .c { width: calc(100% / 2); } .last { text-align: right; margin-left: auto; } @media (hover: none) and (pointer: coarse) { #cursor-wrapper { display: none; visibility: hidden; } } @media (max-aspect-ratio: 4/3) { #cursor-wrapper { display: none; visibility: hidden; } } #cursor-wrapper { position: fixed; pointer-events: none; mix-blend-mode: exclusion; transform: translate3d(0%, 0%, 0); top: 0; left: 0; right: 0; z-index: 222; } #cursor-wrapper .cursor { width: 64px; height: 64px; border-radius: 50%; background-color: #fff; color: #100001; text-transform: uppercase; font-size: 0.75rem; margin-left: -32px; margin-top: -32px; } [data-scroll=true] { position: absolute; top: 0; left: 0; z-index: 15; transform: translateZ(0); will-change: transform; } .disable-hover, .disable-hover * { pointer-events: none !important; } #loader { visibility: visible; opacity: 1; position: fixed; pointer-events: none; top: 0; right: 0; left: 0; bottom: 0; width: 100%; height: 100vh; background: #100001; color: white; z-index: 1000; will-change: transform; display: flex; align-items: center; text-align: center; } #loader .loader-wrapper { width: 80%; margin: auto; } #loader .loader-sub { margin: 2em 0; text-align: center; } #loader .loader-sub .mask { display: inline-block; } #sentinel { height: 1px; width: 100%; position: fixed; top: 0; left: 0; right: 0; pointer-events: none; } .masthead { margin: 5vh auto; } @media (max-width: 50em) { .masthead { margin: 25vh auto; } } #progress { width: 50px; } .mask { visibility: visible; overflow: hidden; line-height: 1; margin: 1vh 0; } .mask div { will-change: transform; transform: translatey(100%); opacity: 0; }
0.478285
0.07373
@import url('https://fonts.googleapis.com/css?family=Montserrat'); /* Reset */ 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, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline; } /* HTML5 display-role reset for older browsers */ article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; } body { line-height: 1; } ol, ul { list-style: none; } blockquote, q { quotes: none; } blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; } table { border-collapse: collapse; border-spacing: 0; } /* Style */ body { /*background: #3498db;*/ /*background: #008B8B;*/ background: #CB4E07; font-size: 16px; color: #fff; text-shadow: #fff 0px 0px 10px; position: absolute; top: 0; bottom: 0; right: 0; left: 0; margin: 0; background-size: cover; background-repeat: no-repeat; background-position: center center; background-attachment: fixed; font-family: 'Montserrat', sans-serif; } .container { height: 100vh; width: 100vw; display: flex; justify-content: center; align-items: center; } .name { display: block; text-align: center; font-size: 3rem; line-height: 3rem; margin-bottom: 1rem; text-shadow: #fff 0px 0px 10px; } .description { display: block; text-align: center; font-size: 1.5rem; line-height: 1.5rem; margin-bottom: 1rem; text-shadow: #fff 0px 0px 10px; } .buttons { display: flex; justify-content: center; flex-wrap: wrap; max-width: 75vw; } .button, .button:before, .button .fab { transition: all 0.35s; transition-timing-function: cubic-bezier(0.31, -0.105, 0.43, 1.59); } .button:before { top: 90%; left: -110%; } .button .fab { transform: scale(0.8); } /* Brand */ .button.facebook:before { background-color: #3b5998; } .button.facebook .fab { color: #3b5998; } .button.twitter:before { background-color: #3cf; } .button.twitter .fab { color: #3cf; } .button.google:before { background-color: #dc4a38; } .button.google .fab { color: #dc4a38; } .button.dribbble:before { background-color: #f26798; } .button.dribbble .fab { color: #f26798; } .button.github:before { background-color: #008B8B; } .button.github .fab { color: #008B8B; } .button.instagram:before { background-color: #125688; } .button.instagram .fab { color: #125688; } .button:focus:before, .button:hover:before { top: -10%; left: -10%; } .button:focus .fab, .button:hover .fab { color: #fff; transform: scale(1); } .button { display: inline-block; background-color: #fff; width: 5rem; height: 5rem; line-height: 5rem; margin: 1rem; text-align: center; position: relative; overflow: hidden; border-radius: 28%; border: none; box-shadow: 0 0 10px 1px white; } .button:before { content: ''; width: 120%; height: 120%; position: absolute; transform: rotate(45deg); } .button .fab { font-size: 38px; vertical-align: middle; }
assets/style.css
@import url('https://fonts.googleapis.com/css?family=Montserrat'); /* Reset */ 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, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline; } /* HTML5 display-role reset for older browsers */ article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; } body { line-height: 1; } ol, ul { list-style: none; } blockquote, q { quotes: none; } blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; } table { border-collapse: collapse; border-spacing: 0; } /* Style */ body { /*background: #3498db;*/ /*background: #008B8B;*/ background: #CB4E07; font-size: 16px; color: #fff; text-shadow: #fff 0px 0px 10px; position: absolute; top: 0; bottom: 0; right: 0; left: 0; margin: 0; background-size: cover; background-repeat: no-repeat; background-position: center center; background-attachment: fixed; font-family: 'Montserrat', sans-serif; } .container { height: 100vh; width: 100vw; display: flex; justify-content: center; align-items: center; } .name { display: block; text-align: center; font-size: 3rem; line-height: 3rem; margin-bottom: 1rem; text-shadow: #fff 0px 0px 10px; } .description { display: block; text-align: center; font-size: 1.5rem; line-height: 1.5rem; margin-bottom: 1rem; text-shadow: #fff 0px 0px 10px; } .buttons { display: flex; justify-content: center; flex-wrap: wrap; max-width: 75vw; } .button, .button:before, .button .fab { transition: all 0.35s; transition-timing-function: cubic-bezier(0.31, -0.105, 0.43, 1.59); } .button:before { top: 90%; left: -110%; } .button .fab { transform: scale(0.8); } /* Brand */ .button.facebook:before { background-color: #3b5998; } .button.facebook .fab { color: #3b5998; } .button.twitter:before { background-color: #3cf; } .button.twitter .fab { color: #3cf; } .button.google:before { background-color: #dc4a38; } .button.google .fab { color: #dc4a38; } .button.dribbble:before { background-color: #f26798; } .button.dribbble .fab { color: #f26798; } .button.github:before { background-color: #008B8B; } .button.github .fab { color: #008B8B; } .button.instagram:before { background-color: #125688; } .button.instagram .fab { color: #125688; } .button:focus:before, .button:hover:before { top: -10%; left: -10%; } .button:focus .fab, .button:hover .fab { color: #fff; transform: scale(1); } .button { display: inline-block; background-color: #fff; width: 5rem; height: 5rem; line-height: 5rem; margin: 1rem; text-align: center; position: relative; overflow: hidden; border-radius: 28%; border: none; box-shadow: 0 0 10px 1px white; } .button:before { content: ''; width: 120%; height: 120%; position: absolute; transform: rotate(45deg); } .button .fab { font-size: 38px; vertical-align: middle; }
0.409457
0.090977
.axis path, .axis line { fill: none; stroke: #000; shape-rendering: crispEdges; } .outline, .outlineHover { fill: none; stroke: gray !important; } .line, .lineHover { fill: none; } path.line { stroke-width: 2.0px; } path.outline { stroke-width: 3.0px; } line.line { stroke-width: 1.0px; } line.outline { stroke-width: 2.0px; } .subgroup:hover text { font-weight: bold; } path.lineHover { stroke-width: 3.0px; } path.outlineHover { stroke-width: 5.0px; } line.lineHover { stroke-width: 2.0px; } line.outlineHover { stroke-width: 3.0px; } .legend { border-radius: 4px; } .legend li { vertical-align: middle; cursor: default; } .legend li:hover { font-weight: bold; } .graph { float: left; } .definitions { float: right; font-size: small; margin-top: -10px; } button.mainDialogClose { background-color: #ffffff; } .mainDialogClose:hover { background-color: #d3d3d3; } .mainDialogClose, .warningDialogClose { position: absolute; top: 20px; right: 30px; line-height: 40px; height: 40px; width: 40px; padding: 8px; box-sizing: border-box; } .mainDialogClose > i, .warningDialogClose > i { color: #b6b6b6; } div.mainDialog { width: 850px; max-height: inherit; padding-top: 10px; margin-top: 30px; margin-left: calc((100% - 850px) / 2); } div.warningDialog { width: 600px; overflow: auto; padding-top: 10px; margin-left: calc((100% - 600px) / 2); margin-top: 200px; } i.buttonIcon { margin-right: 10px; margin-top: 10px; box-sizing: border-box; font-size: 18px; color: #757575; } .buttonText { display: inline-block; margin-top: -10px; color: #757575; } .PDFButton { margin: 0px 0 15px 50px; } .helpButton { margin-left: 20px; } .pWarningIcon { color: #8d0000; float: left; font-size: 18px; } .showPWarningButton { margin-left: 10px; margin-top: 20px; min-width: 0; } .splits { display: flex; flex-wrap: wrap; margin: 8px 0; } .splitLabel { align-items: center; display: flex; flex-wrap: nowrap; margin-left: 16px; padding: 4px 0; } .splitHint { margin-left: 8px; } .listItem, .activeListItem { position: relative; display: block; padding: 10px 15px; margin-bottom: -1px; background-color: #fff; border: 1px solid #ddd; } .listItem:first-child, .activeListItem:first-child { border-top-left-radius: 4px; border-top-right-radius: 4px; } .listItem:last-child, .activeListItem:last-child { margin-bottom: 0; border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; } .listItem:hover, .listItem:focus, .activeListItem:hover, .activeListItem:focus { color: #555; text-decoration: none; background-color: #f5f5f5; } .activeListItem { background-color: #E1E1E1; font-weight: bold; } .mainDialog > nav { padding: 0; } .PValueArea { height: 60px; box-sizing: border-box; position: relative; display: block; } .PValueP { width: 200px; line-height: 60px; height: 60px; position: absolute; left: 0; top: 0; } .warningContainer { position: absolute; left: 140px; top: -10px; } .survTypeContainer { display: flex; align-items: center; } .survType { width: 90%; } .infoIcon { color: #757575; } .survType input { background-color: #f5f5f5; } div.dialogWrapper { display: block; position: absolute; height: calc(100% - 179px); width: 100%; top: 64px; } div.dialogOverlay { position: absolute; width: 100%; height: 100%; top: 0; }
js/km.module.css
.axis path, .axis line { fill: none; stroke: #000; shape-rendering: crispEdges; } .outline, .outlineHover { fill: none; stroke: gray !important; } .line, .lineHover { fill: none; } path.line { stroke-width: 2.0px; } path.outline { stroke-width: 3.0px; } line.line { stroke-width: 1.0px; } line.outline { stroke-width: 2.0px; } .subgroup:hover text { font-weight: bold; } path.lineHover { stroke-width: 3.0px; } path.outlineHover { stroke-width: 5.0px; } line.lineHover { stroke-width: 2.0px; } line.outlineHover { stroke-width: 3.0px; } .legend { border-radius: 4px; } .legend li { vertical-align: middle; cursor: default; } .legend li:hover { font-weight: bold; } .graph { float: left; } .definitions { float: right; font-size: small; margin-top: -10px; } button.mainDialogClose { background-color: #ffffff; } .mainDialogClose:hover { background-color: #d3d3d3; } .mainDialogClose, .warningDialogClose { position: absolute; top: 20px; right: 30px; line-height: 40px; height: 40px; width: 40px; padding: 8px; box-sizing: border-box; } .mainDialogClose > i, .warningDialogClose > i { color: #b6b6b6; } div.mainDialog { width: 850px; max-height: inherit; padding-top: 10px; margin-top: 30px; margin-left: calc((100% - 850px) / 2); } div.warningDialog { width: 600px; overflow: auto; padding-top: 10px; margin-left: calc((100% - 600px) / 2); margin-top: 200px; } i.buttonIcon { margin-right: 10px; margin-top: 10px; box-sizing: border-box; font-size: 18px; color: #757575; } .buttonText { display: inline-block; margin-top: -10px; color: #757575; } .PDFButton { margin: 0px 0 15px 50px; } .helpButton { margin-left: 20px; } .pWarningIcon { color: #8d0000; float: left; font-size: 18px; } .showPWarningButton { margin-left: 10px; margin-top: 20px; min-width: 0; } .splits { display: flex; flex-wrap: wrap; margin: 8px 0; } .splitLabel { align-items: center; display: flex; flex-wrap: nowrap; margin-left: 16px; padding: 4px 0; } .splitHint { margin-left: 8px; } .listItem, .activeListItem { position: relative; display: block; padding: 10px 15px; margin-bottom: -1px; background-color: #fff; border: 1px solid #ddd; } .listItem:first-child, .activeListItem:first-child { border-top-left-radius: 4px; border-top-right-radius: 4px; } .listItem:last-child, .activeListItem:last-child { margin-bottom: 0; border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; } .listItem:hover, .listItem:focus, .activeListItem:hover, .activeListItem:focus { color: #555; text-decoration: none; background-color: #f5f5f5; } .activeListItem { background-color: #E1E1E1; font-weight: bold; } .mainDialog > nav { padding: 0; } .PValueArea { height: 60px; box-sizing: border-box; position: relative; display: block; } .PValueP { width: 200px; line-height: 60px; height: 60px; position: absolute; left: 0; top: 0; } .warningContainer { position: absolute; left: 140px; top: -10px; } .survTypeContainer { display: flex; align-items: center; } .survType { width: 90%; } .infoIcon { color: #757575; } .survType input { background-color: #f5f5f5; } div.dialogWrapper { display: block; position: absolute; height: calc(100% - 179px); width: 100%; top: 64px; } div.dialogOverlay { position: absolute; width: 100%; height: 100%; top: 0; }
0.494385
0.093306
.heading2Xl { font-size: 2.5rem; line-height: 1.2; font-weight: 800; letter-spacing: -0.05rem; margin: 1rem 0; } .headingXl { font-size: 2rem; line-height: 1.3; font-weight: 800; letter-spacing: -0.05rem; margin: 1rem 0; } .headingLg { font-size: 1.5rem; line-height: 1.4; margin: 1rem 0; } .headingMd { text-align: center; font-size: 1.2rem; line-height: 1.5; } .borderCircle { border-radius: 9999px; } .colorInherit { color: inherit; } .padding1px { padding-top: 1px; } .list { list-style: none; padding: 0; margin: 0; } .listItem { margin: 0 0 1.25rem; } .lightText { color: #666; } .Redirects { min-width: 320px; margin-top: 15px; border: 1px solid #ddd; color: #99a3ba; border-radius: 6px; font-size: 15px; overflow: hidden; } .Redirects > * { text-overflow: ellipsis; white-space: nowrap; overflow: hidden; } .Redirects > * { justify-content: center; align-items: center; flex-wrap: wrap; display: flex; } .Redirects span { background-color: white !important; padding: 5px; flex: 1; } .Redirects a { text-overflow: ellipsis; white-space: nowrap; overflow: hidden; padding: 5px; flex: 5; } .Redirects > * span:first-child { max-width: 45px; } .form { display: block; width: 100%; line-height: 25px; font-size: 14px; font-weight: 500; font-family: inherit; border-radius: 6px; -webkit-appearance: none; color: #99a3ba; border: 1px solid #ddd; background: #fff; -webkit-transition: border 0.3s ease; transition: border 0.3s ease; } .form input::-webkit-input-placeholder { color: #cbd1dc; } .form input::-moz-placeholder { color: #cbd1dc; } .form input:-ms-input-placeholder { color: #cbd1dc; } .form input::-ms-input-placeholder { color: #cbd1dc; } .form input::placeholder { color: #cbd1dc; } .form input:focus { outline: none; border-color: #275efe; } .form { position: relative; font-size: 18px; display: -webkit-box; display: flex; width: 100%; } .form > span, .form input { border: none; white-space: nowrap; display: block; } .form > span:not(:first-child):not(:last-child), .form input:not(:first-child):not(:last-child) { border-radius: 0; } .form > span:first-child, .form input:first-child { border-radius: 6px 0 0 6px; } .form > span:last-child, .form input:last-child { border-radius: 0 6px 6px 0; } .form > span:not(:first-child), .form input:not(:first-child) { margin-left: -1px; } .form input { font-size: 15px; padding: 5px; position: relative; z-index: 1; -webkit-box-flex: 1; flex: 1 1 auto; width: 1%; margin-top: 0; margin-bottom: 0; } .form > span, .Redirects span { text-align: center; padding: 8px 12px; font-size: 14px; line-height: 25px; color: #222; background: rgb(248, 248, 248); border: #cdd9ed; -webkit-transition: background 0.3s ease, border 0.3s ease, color 0.3s ease; transition: background 0.3s ease, border 0.3s ease, color 0.3s ease; cursor: default; } .form > span:last-child { cursor: pointer; } .form:focus > span { color: #275efe; background: #678efe; border-color: #275efe; } .form span[type="submit"]:hover{ background: #ddd; } .Error { background: #ddd; margin-top: 10px; } .Error > * { padding: 5px; }
styles/utils.module.css
.heading2Xl { font-size: 2.5rem; line-height: 1.2; font-weight: 800; letter-spacing: -0.05rem; margin: 1rem 0; } .headingXl { font-size: 2rem; line-height: 1.3; font-weight: 800; letter-spacing: -0.05rem; margin: 1rem 0; } .headingLg { font-size: 1.5rem; line-height: 1.4; margin: 1rem 0; } .headingMd { text-align: center; font-size: 1.2rem; line-height: 1.5; } .borderCircle { border-radius: 9999px; } .colorInherit { color: inherit; } .padding1px { padding-top: 1px; } .list { list-style: none; padding: 0; margin: 0; } .listItem { margin: 0 0 1.25rem; } .lightText { color: #666; } .Redirects { min-width: 320px; margin-top: 15px; border: 1px solid #ddd; color: #99a3ba; border-radius: 6px; font-size: 15px; overflow: hidden; } .Redirects > * { text-overflow: ellipsis; white-space: nowrap; overflow: hidden; } .Redirects > * { justify-content: center; align-items: center; flex-wrap: wrap; display: flex; } .Redirects span { background-color: white !important; padding: 5px; flex: 1; } .Redirects a { text-overflow: ellipsis; white-space: nowrap; overflow: hidden; padding: 5px; flex: 5; } .Redirects > * span:first-child { max-width: 45px; } .form { display: block; width: 100%; line-height: 25px; font-size: 14px; font-weight: 500; font-family: inherit; border-radius: 6px; -webkit-appearance: none; color: #99a3ba; border: 1px solid #ddd; background: #fff; -webkit-transition: border 0.3s ease; transition: border 0.3s ease; } .form input::-webkit-input-placeholder { color: #cbd1dc; } .form input::-moz-placeholder { color: #cbd1dc; } .form input:-ms-input-placeholder { color: #cbd1dc; } .form input::-ms-input-placeholder { color: #cbd1dc; } .form input::placeholder { color: #cbd1dc; } .form input:focus { outline: none; border-color: #275efe; } .form { position: relative; font-size: 18px; display: -webkit-box; display: flex; width: 100%; } .form > span, .form input { border: none; white-space: nowrap; display: block; } .form > span:not(:first-child):not(:last-child), .form input:not(:first-child):not(:last-child) { border-radius: 0; } .form > span:first-child, .form input:first-child { border-radius: 6px 0 0 6px; } .form > span:last-child, .form input:last-child { border-radius: 0 6px 6px 0; } .form > span:not(:first-child), .form input:not(:first-child) { margin-left: -1px; } .form input { font-size: 15px; padding: 5px; position: relative; z-index: 1; -webkit-box-flex: 1; flex: 1 1 auto; width: 1%; margin-top: 0; margin-bottom: 0; } .form > span, .Redirects span { text-align: center; padding: 8px 12px; font-size: 14px; line-height: 25px; color: #222; background: rgb(248, 248, 248); border: #cdd9ed; -webkit-transition: background 0.3s ease, border 0.3s ease, color 0.3s ease; transition: background 0.3s ease, border 0.3s ease, color 0.3s ease; cursor: default; } .form > span:last-child { cursor: pointer; } .form:focus > span { color: #275efe; background: #678efe; border-color: #275efe; } .form span[type="submit"]:hover{ background: #ddd; } .Error { background: #ddd; margin-top: 10px; } .Error > * { padding: 5px; }
0.466116
0.132374
@font-face { font-family: "Roboto"; src: url("./fonts/Roboto-Regular.ttf") } * { box-sizing: border-box; } body { padding: 0; margin: 0; overflow-x: hidden; } .main-wrapper { display: flex; justify-content: center; align-items: center; height: 100vh; width: 100vw; background-image: url("./steve-ody-hzs94KNHqng-unsplash.jpg"); background-size: cover; } .form-wrapper { position: relative; width: 80%; max-width: 350px; height: 300px; background-color: rgba(20, 21, 25, .8); display: flex; flex-direction: column; align-items: center; font-family: Roboto; border-radius: 17px; transition: 0.5s ease-in-out; } .form-wrapper:hover { box-shadow: 3px 3px 3px 0 rgba(20, 21, 23, .5), 5px 5px 5px 0 rgba(20, 21, 23, .3); } form { width: 90%; display: flex; flex-direction: column; } .form-header { color: cyan; height: 20%; display: flex; align-items: center; width: 90%; } input[type="text"], input[type="password"] { height: 30px; border-radius: 1em; border: 0; outline: none; margin-bottom: 1em; padding-left: 10px; background-image: linear-gradient(white, grey); } ::placeholder { color: #555; opacity: 1; } .actions-wrapper { display: flex; justify-content: space-between; } .remember-wrapper { display: flex; align-items: center; } input[type="checkbox"] { width: 21px; height: 21px; -webkit-appearance: none; -moz-appearance: none; -o-appearance: none; appearance:none; box-shadow: none; outline: none; background-color: white; position: relative; border-radius: 3px; } input[type="checkbox"]:before { content: ""; width: 60%; height: 60%; border: 1px solid #ccc; background-color: #ddd; position: absolute; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); -moz-transform: translate(-50%, -50%); -o-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%); } input[type="checkbox"]:checked:before { background-color: #97c122; } label { color: white; font-size: .8em; } input[type="submit"] { cursor: pointer; border-radius: 2em; border: 0; outline: none; height: 2.1em; width: 4.8em; background-image: linear-gradient(#97c122 0%, #97c122 100%); box-shadow: inset 1.5px 1.5px 1.5px 0 rgba(255, 255, 255, .5); } input[type="submit"]:hover { box-shadow: inset 1.5px 1.5px 1.5px 0 rgba(255, 255, 255, .9); } .three-dots { display: flex; height: 30%; align-items: flex-end; padding-bottom: 5%; width: 60px; justify-content: space-between; } div[class$="dot"] { width: 13px; height: 13px; border-radius: 50%; } .red-dot { background-color: red; } .green-dot { background-color: #97c122; } .cyan-dot { background-color: cyan; }
index.css
@font-face { font-family: "Roboto"; src: url("./fonts/Roboto-Regular.ttf") } * { box-sizing: border-box; } body { padding: 0; margin: 0; overflow-x: hidden; } .main-wrapper { display: flex; justify-content: center; align-items: center; height: 100vh; width: 100vw; background-image: url("./steve-ody-hzs94KNHqng-unsplash.jpg"); background-size: cover; } .form-wrapper { position: relative; width: 80%; max-width: 350px; height: 300px; background-color: rgba(20, 21, 25, .8); display: flex; flex-direction: column; align-items: center; font-family: Roboto; border-radius: 17px; transition: 0.5s ease-in-out; } .form-wrapper:hover { box-shadow: 3px 3px 3px 0 rgba(20, 21, 23, .5), 5px 5px 5px 0 rgba(20, 21, 23, .3); } form { width: 90%; display: flex; flex-direction: column; } .form-header { color: cyan; height: 20%; display: flex; align-items: center; width: 90%; } input[type="text"], input[type="password"] { height: 30px; border-radius: 1em; border: 0; outline: none; margin-bottom: 1em; padding-left: 10px; background-image: linear-gradient(white, grey); } ::placeholder { color: #555; opacity: 1; } .actions-wrapper { display: flex; justify-content: space-between; } .remember-wrapper { display: flex; align-items: center; } input[type="checkbox"] { width: 21px; height: 21px; -webkit-appearance: none; -moz-appearance: none; -o-appearance: none; appearance:none; box-shadow: none; outline: none; background-color: white; position: relative; border-radius: 3px; } input[type="checkbox"]:before { content: ""; width: 60%; height: 60%; border: 1px solid #ccc; background-color: #ddd; position: absolute; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); -moz-transform: translate(-50%, -50%); -o-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%); } input[type="checkbox"]:checked:before { background-color: #97c122; } label { color: white; font-size: .8em; } input[type="submit"] { cursor: pointer; border-radius: 2em; border: 0; outline: none; height: 2.1em; width: 4.8em; background-image: linear-gradient(#97c122 0%, #97c122 100%); box-shadow: inset 1.5px 1.5px 1.5px 0 rgba(255, 255, 255, .5); } input[type="submit"]:hover { box-shadow: inset 1.5px 1.5px 1.5px 0 rgba(255, 255, 255, .9); } .three-dots { display: flex; height: 30%; align-items: flex-end; padding-bottom: 5%; width: 60px; justify-content: space-between; } div[class$="dot"] { width: 13px; height: 13px; border-radius: 50%; } .red-dot { background-color: red; } .green-dot { background-color: #97c122; } .cyan-dot { background-color: cyan; }
0.452052
0.09628
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap'); * { /* box-sizing: border-box; */ padding: 0; margin: 0; font-family: 'Roboto', sans-serif; } body { font-size: 1.6rem; min-height: 100vh; } .container { } .search-bar { display: flex; flex-direction: column; align-items: center; padding: 2rem; color: black; flex-wrap: wrap; background-image: url("./images/pattern-bg.png"); min-height: 30vh; } .search-form { display: flex; justify-content: center; padding: 2.4rem; width:35rem; } #header { color: white; } input[type="text"]{ width: 100%; height: 2.4rem; border:2px solid white; vertical-align: middle; font-size: 1.2rem; padding: 0 14px; } input.search { border-bottom-left-radius:12px; border-top-left-radius: 12px; } .search-form img { cursor: pointer; padding: 12px; width: 16px; height: 1.2rem; margin: 0; background: black; border-bottom-right-radius:12px; border-top-right-radius: 12px; } input:focus{ outline: none; } .search-info { display: flex; justify-content: center; position: absolute; left:10%; font-weight: bold; flex-wrap: wrap; width: 80%; z-index: 2; border-radius: 10px; margin: auto; background-color: #ffffff; position: absolute; top:210px; } .card { padding:1.7rem; align-content: center; } .card .header { text-transform: uppercase; font-size: 0.8rem; color: rgb(158,158,158); padding: 1rem 0; } @media only screen and (max-width: 700px) { .card { padding: 0.3rem; width:100%; align-items: center; text-align: center; } .search-form { width: 14rem; } .card .header { padding: 0.2rem 0; } #mapid { height: 920px; } } #mapid { height: 480px; z-index: 1; } footer{ font-size: 1.2rem; text-align: center; }
style.css
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap'); * { /* box-sizing: border-box; */ padding: 0; margin: 0; font-family: 'Roboto', sans-serif; } body { font-size: 1.6rem; min-height: 100vh; } .container { } .search-bar { display: flex; flex-direction: column; align-items: center; padding: 2rem; color: black; flex-wrap: wrap; background-image: url("./images/pattern-bg.png"); min-height: 30vh; } .search-form { display: flex; justify-content: center; padding: 2.4rem; width:35rem; } #header { color: white; } input[type="text"]{ width: 100%; height: 2.4rem; border:2px solid white; vertical-align: middle; font-size: 1.2rem; padding: 0 14px; } input.search { border-bottom-left-radius:12px; border-top-left-radius: 12px; } .search-form img { cursor: pointer; padding: 12px; width: 16px; height: 1.2rem; margin: 0; background: black; border-bottom-right-radius:12px; border-top-right-radius: 12px; } input:focus{ outline: none; } .search-info { display: flex; justify-content: center; position: absolute; left:10%; font-weight: bold; flex-wrap: wrap; width: 80%; z-index: 2; border-radius: 10px; margin: auto; background-color: #ffffff; position: absolute; top:210px; } .card { padding:1.7rem; align-content: center; } .card .header { text-transform: uppercase; font-size: 0.8rem; color: rgb(158,158,158); padding: 1rem 0; } @media only screen and (max-width: 700px) { .card { padding: 0.3rem; width:100%; align-items: center; text-align: center; } .search-form { width: 14rem; } .card .header { padding: 0.2rem 0; } #mapid { height: 920px; } } #mapid { height: 480px; z-index: 1; } footer{ font-size: 1.2rem; text-align: center; }
0.478773
0.086246
.DBG_ZIPKIN { color: #1376D3; font-size: 110%; } .zipkin-empty { font-size: 20px; padding: 20px; text-align: center; } #zipkin-data { border-collapse: collapse; border-spacing: 0; margin: 0 auto 25px; width: 100%; } #zipkin-data thead { font-size: 110%; font-weight: bold; } /* Zebra striping */ #zipkin-data .even td, #zipkin-data .even + .zipkin-panel-viz td { background-color: #F3F3F3; } #zipkin-data th, #zipkin-data td { border: 1px solid #CCCCCC; max-width: 384px; padding: 2px 4px; } #zipkin-data th { background-color: #CFCFCF; border-bottom-width: 2px; padding: 4px; } .zipkin-no-data { opacity: 0.6; text-align: center; } .zipkin-no-data:hover { opacity: 1; } .zipkin-loading { background: url('loader.gif') transparent no-repeat right top; } /** Visualizations **/ .zipkin-panel-viz-wrapper { position: relative; width: 100%; } .zipkin-panel-viz-span-wrapper { margin: 0 10px; } .zipkin-panel-viz-span-wrapper:first-child { margin-top: 5px; } .zipkin-panel-viz-span-wrapper:last-child { margin-bottom: 5px; } .zipkin-panel-viz-span { border: 1px solid #333333; border-radius: 4px; height: 6px; margin: 1px; opacity: 0.35; position: relative; } .zipkin-panel-viz-span-wrapper:hover .zipkin-panel-viz-span { opacity: 1; } .zipkin-panel-viz-span-wrapper:hover .zipkin-panel-viz-span:before { border-left: 4px solid transparent; border-right: 4px solid transparent; border-bottom: 4px solid #333333; content: ""; height: 0; left: 50%; margin: 0 0 0 -2px; opacity: 0.95; position: absolute; top: 7px; width: 0; z-index: 2; } .zipkin-panel-viz-span-wrapper:hover .zipkin-panel-viz-span:after { background-color: #FAFAFA; border: 1px solid #333333; border-radius: 4px; box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.7), 0 0 4px 2px rgba(160, 200, 220, 0.5); content: attr(data-span); font-family: Arial, sans-serif; font-size: 11px; left: 50%; margin: 11px 0 0 -75px; opacity: 0.95; padding: 3px; position: absolute; text-align: center; text-shadow: -1px 1px 1px rgba(0, 0, 0, 0.12), 0 0 2px rgba(160, 200, 220, 0.7); width: 150px; z-index: 1; } .zipkin-panel-viz-span-wrapper:nth-of-type(5n+1) .zipkin-panel-viz-span { background-color: #66BBDD; } .zipkin-panel-viz-span-wrapper:nth-of-type(5n+2) .zipkin-panel-viz-span { background-color: #66CC66; } .zipkin-panel-viz-span-wrapper:nth-of-type(5n+3) .zipkin-panel-viz-span { background-color: #DDBB66; } .zipkin-panel-viz-span-wrapper:nth-of-type(5n+4) .zipkin-panel-viz-span { background-color: #DD7666; } .zipkin-panel-viz-span-wrapper:nth-of-type(5n+5) .zipkin-panel-viz-span { background-color: #BB66DD; } .zipkin-panel-duration { background-color: #FAFAFA; border: 1px solid #333333; box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.7), 0 0 4px 2px rgba(160, 200, 220, 0.5); font-family: Arial, sans-serif; font-size: 10px; opacity: 0.35; padding: 0 2px; position: absolute; right: 10px; text-align: right; top: 0; } .zipkin-panel-viz:hover .zipkin-panel-duration { opacity: 0.9; }
zipkin-browser-extension/firefox/chrome/skin/classic/zipkin.css
.DBG_ZIPKIN { color: #1376D3; font-size: 110%; } .zipkin-empty { font-size: 20px; padding: 20px; text-align: center; } #zipkin-data { border-collapse: collapse; border-spacing: 0; margin: 0 auto 25px; width: 100%; } #zipkin-data thead { font-size: 110%; font-weight: bold; } /* Zebra striping */ #zipkin-data .even td, #zipkin-data .even + .zipkin-panel-viz td { background-color: #F3F3F3; } #zipkin-data th, #zipkin-data td { border: 1px solid #CCCCCC; max-width: 384px; padding: 2px 4px; } #zipkin-data th { background-color: #CFCFCF; border-bottom-width: 2px; padding: 4px; } .zipkin-no-data { opacity: 0.6; text-align: center; } .zipkin-no-data:hover { opacity: 1; } .zipkin-loading { background: url('loader.gif') transparent no-repeat right top; } /** Visualizations **/ .zipkin-panel-viz-wrapper { position: relative; width: 100%; } .zipkin-panel-viz-span-wrapper { margin: 0 10px; } .zipkin-panel-viz-span-wrapper:first-child { margin-top: 5px; } .zipkin-panel-viz-span-wrapper:last-child { margin-bottom: 5px; } .zipkin-panel-viz-span { border: 1px solid #333333; border-radius: 4px; height: 6px; margin: 1px; opacity: 0.35; position: relative; } .zipkin-panel-viz-span-wrapper:hover .zipkin-panel-viz-span { opacity: 1; } .zipkin-panel-viz-span-wrapper:hover .zipkin-panel-viz-span:before { border-left: 4px solid transparent; border-right: 4px solid transparent; border-bottom: 4px solid #333333; content: ""; height: 0; left: 50%; margin: 0 0 0 -2px; opacity: 0.95; position: absolute; top: 7px; width: 0; z-index: 2; } .zipkin-panel-viz-span-wrapper:hover .zipkin-panel-viz-span:after { background-color: #FAFAFA; border: 1px solid #333333; border-radius: 4px; box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.7), 0 0 4px 2px rgba(160, 200, 220, 0.5); content: attr(data-span); font-family: Arial, sans-serif; font-size: 11px; left: 50%; margin: 11px 0 0 -75px; opacity: 0.95; padding: 3px; position: absolute; text-align: center; text-shadow: -1px 1px 1px rgba(0, 0, 0, 0.12), 0 0 2px rgba(160, 200, 220, 0.7); width: 150px; z-index: 1; } .zipkin-panel-viz-span-wrapper:nth-of-type(5n+1) .zipkin-panel-viz-span { background-color: #66BBDD; } .zipkin-panel-viz-span-wrapper:nth-of-type(5n+2) .zipkin-panel-viz-span { background-color: #66CC66; } .zipkin-panel-viz-span-wrapper:nth-of-type(5n+3) .zipkin-panel-viz-span { background-color: #DDBB66; } .zipkin-panel-viz-span-wrapper:nth-of-type(5n+4) .zipkin-panel-viz-span { background-color: #DD7666; } .zipkin-panel-viz-span-wrapper:nth-of-type(5n+5) .zipkin-panel-viz-span { background-color: #BB66DD; } .zipkin-panel-duration { background-color: #FAFAFA; border: 1px solid #333333; box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.7), 0 0 4px 2px rgba(160, 200, 220, 0.5); font-family: Arial, sans-serif; font-size: 10px; opacity: 0.35; padding: 0 2px; position: absolute; right: 10px; text-align: right; top: 0; } .zipkin-panel-viz:hover .zipkin-panel-duration { opacity: 0.9; }
0.41478
0.117319
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap'); * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; } /* ----------------------sidebar---------------------------- */ .sidebar { position: fixed; height: 100%; width: 18%; background: #0A2558; transition: all 0.5s ease; } .sidebar .logo { width: 100%; text-align: center; color: white; font-size: 1.3rem; margin-top: 15px; margin-bottom: 21px; } .sidebar .navCustom-links li a { display: flex; align-items: center; text-decoration: none; transition: all 0.4s ease 0s; color: white; padding: 15px 5px; } .sidebar .navCustom-links li { list-style-type: none; margin-left: -2rem; } .sidebar .navCustom-links li i { margin-left: 1rem; margin-right: 1rem; } .sidebar .navCustom-links li:hover { background-color: #091f46; } .navCustom-links .logout { position: absolute; bottom: 0; width: 100%; } /* ----------dropdown css----------------- */ .dropDown { position: relative; display: inline-block; } .dropdown-content { padding: 4px 5px; display: none; position: absolute; background-color: #f7f7f7; min-width: 224px; min-height: auto; overflow: auto; right: 80px; box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 20%); z-index: 1; top: 36px; } .dropdown-content a { color: black; padding: 12px 16px; text-decoration: none; display: block; right: 0; } .show { display: block; } .user-profile { display: flex; flex-direction: row; margin-bottom: 10px; } .user-profile img { border-radius: 50%; width: 50px; height: 50px; margin-right: 5px; } .user-detail { margin-top: 10px; } .user-detail .user-name { font-size: 12px; color: black; font-weight: bold; } .user-detail .email { color: grey; font-size: 12px; } .dropdown-content .edit-profile { color: #0A2558; padding: 0; width: 100%; text-align: center; border: none; } .dropdown-content .edit-profile:hover { text-decoration: underline; } /* ----------------------------main container------------------------ */ .main-container { margin-left: 18%; } .navbarCustom { display: flex; flex-direction: row; align-items: center; justify-content: space-between; width: 100%; padding-left: 25px; border: 1px solid rgb(218, 209, 209); } .navbarCustom p { font-size: 1.4rem; color: rgb(56, 55, 55); font-weight: 400; padding-top: 1rem; } .navbarCustom a { text-decoration: none; color: black; border: 1px solid black; margin-right: 100px; padding: 5px 10px; background-color: rgb(250, 250, 250); border: 1px solid rgb(224, 220, 220); } .navCustom-links li a.active { background-color: #071e47; } /* --------------addfood container css------------------ */ .main-container .add_food, .faq-container, .userEnquiry{ width: 100%; padding: 25px 15px; } .add_food .foodbtn, .faq-container .foodbtn { text-decoration: none; color: white; background-color: #0A2558; border: 1px solid #0A2558; } .foodbtn:hover { background-color: #091c41; } .add_food h3 { margin-top: 2rem; font-size: 1.5rem; font-weight: 400; color: #0A2558; } .add_food .items { display: flex; flex-direction: row; margin-left: 20px; width: 80%; margin: auto; border: 1px solid rgb(224, 221, 221); padding: 5px; } .add_food .food-title { font-size: 1rem; margin-bottom: 20px; margin-top: 20px; margin-left: 20px; font-weight: bold; text-align: center; } .items img { width: 95px; height: auto; margin-right: 15px; } .items .food-info { width: 60%; margin-right: 20px; } .food-info .food-name { font-weight: bold; margin-bottom: 5px; } .food-info .food-description { color: rgb(63, 59, 59); } .food-info .food-price { float: right; font-style: italic; font-weight: bold; } .items .actions { display: flex; flex-direction: row; align-items: center; } .actions a { font-size: 1rem; color: blue; text-decoration: none; } .actions a:hover { text-decoration: underline; } /* -------------------order_list css--------------------- */ .order_list { width: 100%; padding: 25px 15px; } .order_list h3 { font-size: 1.5rem; font-weight: 400; color: #0A2558; text-decoration: underline; } .order_list table { width: 100%; font-size: 1rem; text-align: justify; margin-top: 2rem; } .order_list table td { padding: 10px 0px; text-align: left; padding-left: 5px; } .order_list table th { padding: 10px 0px; } .order_list table tr:nth-child(even) { background-color: #f1e7e7; } .order_list table td .direction { color: rgb(58, 56, 56); } .order_list table td .approve { color: rgb(4, 117, 4); padding: 3px 10px; background-color: rgb(229, 253, 229); border: 1px solid rgb(4, 117, 4); border-radius: 3px; text-decoration: none; transition: 200ms; } .order_list table td .approve:hover { background-color: rgb(4, 117, 4); color: white; } /* --------------------------------faq-container css ------------------ */ .faq-content { width: 60%; } .ccollapse { cursor: pointer; padding: 18px; width: 100%; border: none; text-align: left; outline: none; font-size: 15px; margin-top: 1rem; /* font-weight: bold; */ font-size: 1.2rem; color: #0A2558; display: flex; flex-direction: row; justify-content: space-between; } .ccollapse a { font-size: 1.4rem; color: rgb(209, 51, 51); text-decoration: none; } .ccollapse a:hover { color: rgb(209, 51, 51); text-decoration: underline; } .collapse-content { padding: 0 18px; max-height: 0; overflow: hidden; transition: max-height 0.2s ease-out; background-color: #f1f1f1; width: 100%; } /* ----------------------Enquiry---------------------------*/ .userEnquiry p { color: #0A2558; } .userEnquiry table { width: 100%; font-size: 1rem; text-align: justify; margin-top: 2rem; } .userEnquiry table td{ padding: 10px 0px; text-align: left; padding-left: 20px; } .userEnquiry table th { padding: 10px 0px; } .userEnquiry table tr:nth-child(even) { background-color: #f1e7e7; } .userEnquiry td a { text-decoration: none; } .userEnquiry td a:hover { text-decoration: underline; } .userEnquiry tr .enquiryData{ width: 50%; }
public/css/admin-style.css
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap'); * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; } /* ----------------------sidebar---------------------------- */ .sidebar { position: fixed; height: 100%; width: 18%; background: #0A2558; transition: all 0.5s ease; } .sidebar .logo { width: 100%; text-align: center; color: white; font-size: 1.3rem; margin-top: 15px; margin-bottom: 21px; } .sidebar .navCustom-links li a { display: flex; align-items: center; text-decoration: none; transition: all 0.4s ease 0s; color: white; padding: 15px 5px; } .sidebar .navCustom-links li { list-style-type: none; margin-left: -2rem; } .sidebar .navCustom-links li i { margin-left: 1rem; margin-right: 1rem; } .sidebar .navCustom-links li:hover { background-color: #091f46; } .navCustom-links .logout { position: absolute; bottom: 0; width: 100%; } /* ----------dropdown css----------------- */ .dropDown { position: relative; display: inline-block; } .dropdown-content { padding: 4px 5px; display: none; position: absolute; background-color: #f7f7f7; min-width: 224px; min-height: auto; overflow: auto; right: 80px; box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 20%); z-index: 1; top: 36px; } .dropdown-content a { color: black; padding: 12px 16px; text-decoration: none; display: block; right: 0; } .show { display: block; } .user-profile { display: flex; flex-direction: row; margin-bottom: 10px; } .user-profile img { border-radius: 50%; width: 50px; height: 50px; margin-right: 5px; } .user-detail { margin-top: 10px; } .user-detail .user-name { font-size: 12px; color: black; font-weight: bold; } .user-detail .email { color: grey; font-size: 12px; } .dropdown-content .edit-profile { color: #0A2558; padding: 0; width: 100%; text-align: center; border: none; } .dropdown-content .edit-profile:hover { text-decoration: underline; } /* ----------------------------main container------------------------ */ .main-container { margin-left: 18%; } .navbarCustom { display: flex; flex-direction: row; align-items: center; justify-content: space-between; width: 100%; padding-left: 25px; border: 1px solid rgb(218, 209, 209); } .navbarCustom p { font-size: 1.4rem; color: rgb(56, 55, 55); font-weight: 400; padding-top: 1rem; } .navbarCustom a { text-decoration: none; color: black; border: 1px solid black; margin-right: 100px; padding: 5px 10px; background-color: rgb(250, 250, 250); border: 1px solid rgb(224, 220, 220); } .navCustom-links li a.active { background-color: #071e47; } /* --------------addfood container css------------------ */ .main-container .add_food, .faq-container, .userEnquiry{ width: 100%; padding: 25px 15px; } .add_food .foodbtn, .faq-container .foodbtn { text-decoration: none; color: white; background-color: #0A2558; border: 1px solid #0A2558; } .foodbtn:hover { background-color: #091c41; } .add_food h3 { margin-top: 2rem; font-size: 1.5rem; font-weight: 400; color: #0A2558; } .add_food .items { display: flex; flex-direction: row; margin-left: 20px; width: 80%; margin: auto; border: 1px solid rgb(224, 221, 221); padding: 5px; } .add_food .food-title { font-size: 1rem; margin-bottom: 20px; margin-top: 20px; margin-left: 20px; font-weight: bold; text-align: center; } .items img { width: 95px; height: auto; margin-right: 15px; } .items .food-info { width: 60%; margin-right: 20px; } .food-info .food-name { font-weight: bold; margin-bottom: 5px; } .food-info .food-description { color: rgb(63, 59, 59); } .food-info .food-price { float: right; font-style: italic; font-weight: bold; } .items .actions { display: flex; flex-direction: row; align-items: center; } .actions a { font-size: 1rem; color: blue; text-decoration: none; } .actions a:hover { text-decoration: underline; } /* -------------------order_list css--------------------- */ .order_list { width: 100%; padding: 25px 15px; } .order_list h3 { font-size: 1.5rem; font-weight: 400; color: #0A2558; text-decoration: underline; } .order_list table { width: 100%; font-size: 1rem; text-align: justify; margin-top: 2rem; } .order_list table td { padding: 10px 0px; text-align: left; padding-left: 5px; } .order_list table th { padding: 10px 0px; } .order_list table tr:nth-child(even) { background-color: #f1e7e7; } .order_list table td .direction { color: rgb(58, 56, 56); } .order_list table td .approve { color: rgb(4, 117, 4); padding: 3px 10px; background-color: rgb(229, 253, 229); border: 1px solid rgb(4, 117, 4); border-radius: 3px; text-decoration: none; transition: 200ms; } .order_list table td .approve:hover { background-color: rgb(4, 117, 4); color: white; } /* --------------------------------faq-container css ------------------ */ .faq-content { width: 60%; } .ccollapse { cursor: pointer; padding: 18px; width: 100%; border: none; text-align: left; outline: none; font-size: 15px; margin-top: 1rem; /* font-weight: bold; */ font-size: 1.2rem; color: #0A2558; display: flex; flex-direction: row; justify-content: space-between; } .ccollapse a { font-size: 1.4rem; color: rgb(209, 51, 51); text-decoration: none; } .ccollapse a:hover { color: rgb(209, 51, 51); text-decoration: underline; } .collapse-content { padding: 0 18px; max-height: 0; overflow: hidden; transition: max-height 0.2s ease-out; background-color: #f1f1f1; width: 100%; } /* ----------------------Enquiry---------------------------*/ .userEnquiry p { color: #0A2558; } .userEnquiry table { width: 100%; font-size: 1rem; text-align: justify; margin-top: 2rem; } .userEnquiry table td{ padding: 10px 0px; text-align: left; padding-left: 20px; } .userEnquiry table th { padding: 10px 0px; } .userEnquiry table tr:nth-child(even) { background-color: #f1e7e7; } .userEnquiry td a { text-decoration: none; } .userEnquiry td a:hover { text-decoration: underline; } .userEnquiry tr .enquiryData{ width: 50%; }
0.415373
0.067332
* Set all your THEME styles in this file. * * Adding a Theme to a design is very straightforward as every component works * like an extensible class. This allows you to add theme specific classes * and/or override existing classes. * * NOTE: Any new classes created should follow the established coding * standards for the framework. Theme specific classes should be prefixed by * `.t-`. * * Why do it this way? * By decoupling the theme styling from the default framework, you get the * following benefits: * Keep the framework core library up-to-date * Updates to the core styles of the framework do not get overwritten when * extending the component. * * End-user entry points remain untouched * End-users do not need to use any custom name that belongs only to the * theme. */ @import url('https://fonts.googleapis.com/css?family=Poppins'); html, .u-font-primary { font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; } /** * Shadows Specific Font Pack */ @font-face { font-family: 'ReadyTheme Icons'; font-style: normal; font-weight: normal; src: url('ShadowsFontPack.woff') format('woff'); } /** * Shadows Color Overrides */ .u-bg-red::before, .u-bg-red { background-color: #f02; } .u-bg-yellow::before, .u-bg-yellow { background-color: #deded4; } .u-bg-blue::before, .u-bg-blue { background-color: #003b6f; } .u-bg-green::before, .u-bg-green { background-color: #13c4a3; } .u-bg-black::before, .u-bg-black { background-color: #000; } .u-border-red { border-color: #f02; } .u-border-yellow { border-color: #deded4; } .u-border-blue { border-color: #003b6f; } .u-border-green { border-color: #13c4a3; } .u-border-black { border-color: #000; } .u-color-red { color: #f02; } .u-color-yellow { color: #deded4; } .u-color-blue { color: #003b6f; } .u-color-green { color: #13c4a3; } .u-color-black { color: #000; } .x-site-header, .x-site-footer { padding-top: 1rem; } .x-site-header { border-bottom: 1px solid #eaeaea; } .x-site-navigation { padding-top: 3rem; } .x-site-content { padding-bottom: 2rem; } .x-site-navigation__container { max-height: 0; opacity: 0; overflow: hidden; } .x-site-navigation__toggle:checked ~ .x-site-navigation__container { height: auto; max-height: 1000vh; padding-bottom: 2rem; opacity: 1; transition: 0.2s ease-in; } .x-site-navigation__toggle:checked ~ .x-site-navigation__toggle-buttons .x-site-navigation__toggle--shown { display: block; } .x-site-navigation__toggle:checked ~ .x-site-navigation__toggle-buttons .x-site-navigation__toggle--hidden { display: none; } .x-site-navigation .o-list-bare {} .x-site-navigation__title:not(:only-child) { margin-bottom: 0; } @media screen and (min-width: 40em) { .x-site-navigation { padding-bottom: 2rem; } .x-site-navigation__container { max-height: none; opacity: 1; } .x-site-navigation__toggle-buttons { display: none; } .x-site-content { padding-top: 3rem; } } .x-inline-code { display: inline-block; padding: 0 0.5em; overflow-wrap: break-word; word-break: break-all; word-wrap: break-word; background-color: #eee; } .x-border-example {} .sg-color-swatch { display: block; width: 100%; height: 3rem; margin-bottom: 0.5rem; } /** * PRISM STYLES */ .glyph { font-size: 16px; width: 15em; padding-bottom: 1em; margin-right: 4em; margin-bottom: 1em; float: left; overflow: hidden; } .liga { width: calc(100% - 2.5em); } .talign-right { text-align: right; } .talign-center { text-align: center; } .bgc1 { background: #f1f1f1; } .fgc1 { color: #999; } .fgc0 { color: #000; } .mvm { margin-top: .75em; margin-bottom: .75em; } .mtn { margin-top: 0; } .mtl, .mal { margin-top: 1.5em; } .mbl, .mal { margin-bottom: 1.5em; } .mal, .mhl { margin-left: 1.5em; margin-right: 1.5em; } .mhmm { margin-left: 1em; margin-right: 1em; } .mls { margin-left: .25em; } .ptl { padding-top: 1.5em; } .pbs, .pvs { padding-bottom: .25em; } .pvs, .pts { padding-top: .25em; } .unit { float: left; } .unitRight { float: right; } .size1of2 { width: 50%; } .size1of1 { width: 100%; } .clearfix:before, .clearfix:after { content: " "; display: table; } .clearfix:after { clear: both; } .hidden-true { display: none; } .textbox0 { width: 3em; background: #f1f1f1; padding: .25em .5em; line-height: 1.5; height: 1.5em; } #testDrive { display: block; padding-top: 24px; line-height: 1.5; } .fs0 { font-size: 16px; } .fs1 { font-size: 32px; } /* PrismJS 1.12.0 http://prismjs.com/download.html#themes=prism-okaidia&languages=markup+css+clike+javascript+markdown&plugins=toolbar+unescaped-markup+normalize-whitespace */ /** * okaidia theme for JavaScript, CSS and HTML * Loosely based on Monokai textmate theme by http://www.monokai.nl/ * @author ocodia */ code[class*="language-"], pre[class*="language-"] { color: #f8f8f2; background: none; text-shadow: 0 1px rgba(0, 0, 0, 0.3); font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; text-align: left; white-space: pre; word-spacing: normal; word-break: normal; word-wrap: normal; line-height: 1.5; -moz-tab-size: 4; -o-tab-size: 4; tab-size: 4; -webkit-hyphens: none; -moz-hyphens: none; -ms-hyphens: none; hyphens: none; } /* Code blocks */ pre[class*="language-"] { padding: 1em; margin: .5em 0 1em; overflow: auto; border-radius: 0.3em; } :not(pre) > code[class*="language-"], pre[class*="language-"] { background: #272822; } /* Inline code */ :not(pre) > code[class*="language-"] { padding: .1em; border-radius: .3em; white-space: normal; } .token.comment, .token.prolog, .token.doctype, .token.cdata { color: slategray; } .token.punctuation { color: #f8f8f2; } .namespace { opacity: .7; } .token.property, .token.tag, .token.constant, .token.symbol, .token.deleted { color: #f92672; } .token.boolean, .token.number { color: #ae81ff; } .token.selector, .token.attr-name, .token.string, .token.char, .token.builtin, .token.inserted { color: #a6e22e; } .token.operator, .token.entity, .token.url, .language-css .token.string, .style .token.string, .token.variable { color: #f8f8f2; } .token.atrule, .token.attr-value, .token.function { color: #e6db74; } .token.keyword { color: #66d9ef; } .token.regex, .token.important { color: #fd971f; } .token.important, .token.bold { font-weight: bold; } .token.italic { font-style: italic; } .token.entity { cursor: help; } div.code-toolbar { position: relative; } div.code-toolbar > .toolbar { position: absolute; top: .3em; right: .2em; transition: opacity 0.3s ease-in-out; opacity: 0; } div.code-toolbar:hover > .toolbar { opacity: 1; } div.code-toolbar > .toolbar .toolbar-item { display: inline-block; } div.code-toolbar > .toolbar a { cursor: pointer; } div.code-toolbar > .toolbar button { background: none; border: 0; color: inherit; font: inherit; line-height: normal; overflow: visible; padding: 0; -webkit-user-select: none; /* for button */ -moz-user-select: none; -ms-user-select: none; } div.code-toolbar > .toolbar a, div.code-toolbar > .toolbar button, div.code-toolbar > .toolbar span { color: #bbb; font-size: .8em; padding: 0 .5em; background: #f5f2f0; background: rgba(224, 224, 224, 0.2); box-shadow: 0 2px 0 0 rgba(0,0,0,0.2); border-radius: .5em; } div.code-toolbar > .toolbar a:hover, div.code-toolbar > .toolbar a:focus, div.code-toolbar > .toolbar button:hover, div.code-toolbar > .toolbar button:focus, div.code-toolbar > .toolbar span:hover, div.code-toolbar > .toolbar span:focus { color: inherit; text-decoration: none; } /* Fallback, in case JS does not run, to ensure the code is at least visible */ [class*='lang-'] script[type='text/plain'], [class*='language-'] script[type='text/plain'], script[type='text/plain'][class*='lang-'], script[type='text/plain'][class*='language-'] { display: block; font: 100% Consolas, Monaco, monospace; white-space: pre; overflow: auto; }
docs/themes/documentation/ui/css/theme-styles.css
* Set all your THEME styles in this file. * * Adding a Theme to a design is very straightforward as every component works * like an extensible class. This allows you to add theme specific classes * and/or override existing classes. * * NOTE: Any new classes created should follow the established coding * standards for the framework. Theme specific classes should be prefixed by * `.t-`. * * Why do it this way? * By decoupling the theme styling from the default framework, you get the * following benefits: * Keep the framework core library up-to-date * Updates to the core styles of the framework do not get overwritten when * extending the component. * * End-user entry points remain untouched * End-users do not need to use any custom name that belongs only to the * theme. */ @import url('https://fonts.googleapis.com/css?family=Poppins'); html, .u-font-primary { font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; } /** * Shadows Specific Font Pack */ @font-face { font-family: 'ReadyTheme Icons'; font-style: normal; font-weight: normal; src: url('ShadowsFontPack.woff') format('woff'); } /** * Shadows Color Overrides */ .u-bg-red::before, .u-bg-red { background-color: #f02; } .u-bg-yellow::before, .u-bg-yellow { background-color: #deded4; } .u-bg-blue::before, .u-bg-blue { background-color: #003b6f; } .u-bg-green::before, .u-bg-green { background-color: #13c4a3; } .u-bg-black::before, .u-bg-black { background-color: #000; } .u-border-red { border-color: #f02; } .u-border-yellow { border-color: #deded4; } .u-border-blue { border-color: #003b6f; } .u-border-green { border-color: #13c4a3; } .u-border-black { border-color: #000; } .u-color-red { color: #f02; } .u-color-yellow { color: #deded4; } .u-color-blue { color: #003b6f; } .u-color-green { color: #13c4a3; } .u-color-black { color: #000; } .x-site-header, .x-site-footer { padding-top: 1rem; } .x-site-header { border-bottom: 1px solid #eaeaea; } .x-site-navigation { padding-top: 3rem; } .x-site-content { padding-bottom: 2rem; } .x-site-navigation__container { max-height: 0; opacity: 0; overflow: hidden; } .x-site-navigation__toggle:checked ~ .x-site-navigation__container { height: auto; max-height: 1000vh; padding-bottom: 2rem; opacity: 1; transition: 0.2s ease-in; } .x-site-navigation__toggle:checked ~ .x-site-navigation__toggle-buttons .x-site-navigation__toggle--shown { display: block; } .x-site-navigation__toggle:checked ~ .x-site-navigation__toggle-buttons .x-site-navigation__toggle--hidden { display: none; } .x-site-navigation .o-list-bare {} .x-site-navigation__title:not(:only-child) { margin-bottom: 0; } @media screen and (min-width: 40em) { .x-site-navigation { padding-bottom: 2rem; } .x-site-navigation__container { max-height: none; opacity: 1; } .x-site-navigation__toggle-buttons { display: none; } .x-site-content { padding-top: 3rem; } } .x-inline-code { display: inline-block; padding: 0 0.5em; overflow-wrap: break-word; word-break: break-all; word-wrap: break-word; background-color: #eee; } .x-border-example {} .sg-color-swatch { display: block; width: 100%; height: 3rem; margin-bottom: 0.5rem; } /** * PRISM STYLES */ .glyph { font-size: 16px; width: 15em; padding-bottom: 1em; margin-right: 4em; margin-bottom: 1em; float: left; overflow: hidden; } .liga { width: calc(100% - 2.5em); } .talign-right { text-align: right; } .talign-center { text-align: center; } .bgc1 { background: #f1f1f1; } .fgc1 { color: #999; } .fgc0 { color: #000; } .mvm { margin-top: .75em; margin-bottom: .75em; } .mtn { margin-top: 0; } .mtl, .mal { margin-top: 1.5em; } .mbl, .mal { margin-bottom: 1.5em; } .mal, .mhl { margin-left: 1.5em; margin-right: 1.5em; } .mhmm { margin-left: 1em; margin-right: 1em; } .mls { margin-left: .25em; } .ptl { padding-top: 1.5em; } .pbs, .pvs { padding-bottom: .25em; } .pvs, .pts { padding-top: .25em; } .unit { float: left; } .unitRight { float: right; } .size1of2 { width: 50%; } .size1of1 { width: 100%; } .clearfix:before, .clearfix:after { content: " "; display: table; } .clearfix:after { clear: both; } .hidden-true { display: none; } .textbox0 { width: 3em; background: #f1f1f1; padding: .25em .5em; line-height: 1.5; height: 1.5em; } #testDrive { display: block; padding-top: 24px; line-height: 1.5; } .fs0 { font-size: 16px; } .fs1 { font-size: 32px; } /* PrismJS 1.12.0 http://prismjs.com/download.html#themes=prism-okaidia&languages=markup+css+clike+javascript+markdown&plugins=toolbar+unescaped-markup+normalize-whitespace */ /** * okaidia theme for JavaScript, CSS and HTML * Loosely based on Monokai textmate theme by http://www.monokai.nl/ * @author ocodia */ code[class*="language-"], pre[class*="language-"] { color: #f8f8f2; background: none; text-shadow: 0 1px rgba(0, 0, 0, 0.3); font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; text-align: left; white-space: pre; word-spacing: normal; word-break: normal; word-wrap: normal; line-height: 1.5; -moz-tab-size: 4; -o-tab-size: 4; tab-size: 4; -webkit-hyphens: none; -moz-hyphens: none; -ms-hyphens: none; hyphens: none; } /* Code blocks */ pre[class*="language-"] { padding: 1em; margin: .5em 0 1em; overflow: auto; border-radius: 0.3em; } :not(pre) > code[class*="language-"], pre[class*="language-"] { background: #272822; } /* Inline code */ :not(pre) > code[class*="language-"] { padding: .1em; border-radius: .3em; white-space: normal; } .token.comment, .token.prolog, .token.doctype, .token.cdata { color: slategray; } .token.punctuation { color: #f8f8f2; } .namespace { opacity: .7; } .token.property, .token.tag, .token.constant, .token.symbol, .token.deleted { color: #f92672; } .token.boolean, .token.number { color: #ae81ff; } .token.selector, .token.attr-name, .token.string, .token.char, .token.builtin, .token.inserted { color: #a6e22e; } .token.operator, .token.entity, .token.url, .language-css .token.string, .style .token.string, .token.variable { color: #f8f8f2; } .token.atrule, .token.attr-value, .token.function { color: #e6db74; } .token.keyword { color: #66d9ef; } .token.regex, .token.important { color: #fd971f; } .token.important, .token.bold { font-weight: bold; } .token.italic { font-style: italic; } .token.entity { cursor: help; } div.code-toolbar { position: relative; } div.code-toolbar > .toolbar { position: absolute; top: .3em; right: .2em; transition: opacity 0.3s ease-in-out; opacity: 0; } div.code-toolbar:hover > .toolbar { opacity: 1; } div.code-toolbar > .toolbar .toolbar-item { display: inline-block; } div.code-toolbar > .toolbar a { cursor: pointer; } div.code-toolbar > .toolbar button { background: none; border: 0; color: inherit; font: inherit; line-height: normal; overflow: visible; padding: 0; -webkit-user-select: none; /* for button */ -moz-user-select: none; -ms-user-select: none; } div.code-toolbar > .toolbar a, div.code-toolbar > .toolbar button, div.code-toolbar > .toolbar span { color: #bbb; font-size: .8em; padding: 0 .5em; background: #f5f2f0; background: rgba(224, 224, 224, 0.2); box-shadow: 0 2px 0 0 rgba(0,0,0,0.2); border-radius: .5em; } div.code-toolbar > .toolbar a:hover, div.code-toolbar > .toolbar a:focus, div.code-toolbar > .toolbar button:hover, div.code-toolbar > .toolbar button:focus, div.code-toolbar > .toolbar span:hover, div.code-toolbar > .toolbar span:focus { color: inherit; text-decoration: none; } /* Fallback, in case JS does not run, to ensure the code is at least visible */ [class*='lang-'] script[type='text/plain'], [class*='language-'] script[type='text/plain'], script[type='text/plain'][class*='lang-'], script[type='text/plain'][class*='language-'] { display: block; font: 100% Consolas, Monaco, monospace; white-space: pre; overflow: auto; }
0.695752
0.135861
section { position: relative; } button:focus { outline: 0px; } /* 导航栏 */ .header .navbar-main { position: relative; height: auto; border-bottom: 1px solid #ededed; box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.1); z-index: 200; transition: all 0.5s ease-in; } .header .navbar-main .navbar-container { padding-right: 0px; padding-left: 0px; } .header .navbar-main .navbar-container .navbar { position: static; } .header .navbar-main .main-logo { background: url(/static/img/logo.png) no-repeat 0px 0px; background-size: cover; min-width: 124px; min-height: 70px; padding: 0px; } .header .navbar-main .navbar-nav .nav-item { z-index: 200; } .header .navbar-main .navbar-nav .nav-item.dropdown-son { } .header .navbar-main .navbar-nav .nav-item .nav-link { position: relative; display: block; padding: 1.907rem 2rem; } .header .navbar-main .navbar-nav .nav-item:hover .nav-link { color: red; } .header .navbar-main .navbar-nav .nav-item .nav-link::before { content: ""; position: absolute; width: 0%; height: 3px; background: red; bottom: 0px; left: 0px; transition: width .8s; } .header .navbar-main .navbar-nav .nav-item:hover .nav-link::before { width: 100%; } .header .navbar-main .navbar-nav .dropdown-son .dropdown-menu-wrapper { position: absolute; left: 0; border-bottom: 0.5px solid #e5e5e5; transform: rotate3d(1, 0, 0, -90deg); z-index: 100; max-height: 0px; box-shadow: inset 0px 2px 5px rgba(0, 0, 0, 0.07); transform-origin: 50% 0%; transition: 300ms ease-in-out; overflow: hidden; background-color: #fff; width: 100%; } .header .navbar-main .navbar-nav .dropdown-son:hover .dropdown-menu-wrapper { transform: rotate3d(0, 0, 0, 0deg); transform-origin: 50% 0%; max-height: 1000px; } .header .navbar-main .navbar-nav .dropdown-son .dropdown-menu-wrapper .dropdown-menu-list { margin: 30px auto; width: 100%; zoom: 1; } .header .navbar-main .navbar.navbar-expand-lg { padding: 0px; } .header .navbar-main .logo { padding: .2822rem; } .header .navbar-main .navbar-nav .nav-link { color: rgba(0, 0, 0, .9); } .navbar-light .navbar-nav .active > .nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show > .nav-link { color: red; } /* 页脚 */ .footer { background-color: #373D44; color: #FFFFFF; padding: 5rem 0 0; } .footer .footer-copyright { font-size: 12px; margin: 50px auto 0; text-align: center; border-top: 1px solid rgba(229, 229, 229, 0.2); padding: 32px 0; color: #b6b6b6; } .footer .footer-widget { list-style: none; padding-left: 0; } .footer .footer-widget a, .footer .footer-copyright a { color: #fff; transition: all .8s; } .footer .footer-widget a:hover, .footer .footer-copyright a:hover { text-decoration: none; color: red; } .footer .footer-copyright p { color: #fff; } .footer .qrcode a { color: #fff; } .footer .qrcode a:hover { color: red; } /* 其他 */ .owl-nav { position: absolute; top: 40%; width: 100%; } .owl-theme .owl-nav [class*=owl-] { width: 60px; height: 60px; background: rgba(0, 0, 0, 0.5) !important; border-radius: 0px; } .owl-theme .owl-nav [class*=owl-]:hover { border: 2px solid red; } .owl-theme .owl-nav [class*=owl-] .fa { color: #fff; } .owl-theme .owl-nav [class*=owl-]:hover .fa { color: red; } .owl-theme .owl-nav .owl-prev { float: left; margin-left: 20px; } .owl-theme .owl-nav .owl-next { float: right; margin-right: 20px; } .owl-theme .owl-dots { position: absolute; bottom: 30px; width: 100%; }
static/css/style.css
section { position: relative; } button:focus { outline: 0px; } /* 导航栏 */ .header .navbar-main { position: relative; height: auto; border-bottom: 1px solid #ededed; box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.1); z-index: 200; transition: all 0.5s ease-in; } .header .navbar-main .navbar-container { padding-right: 0px; padding-left: 0px; } .header .navbar-main .navbar-container .navbar { position: static; } .header .navbar-main .main-logo { background: url(/static/img/logo.png) no-repeat 0px 0px; background-size: cover; min-width: 124px; min-height: 70px; padding: 0px; } .header .navbar-main .navbar-nav .nav-item { z-index: 200; } .header .navbar-main .navbar-nav .nav-item.dropdown-son { } .header .navbar-main .navbar-nav .nav-item .nav-link { position: relative; display: block; padding: 1.907rem 2rem; } .header .navbar-main .navbar-nav .nav-item:hover .nav-link { color: red; } .header .navbar-main .navbar-nav .nav-item .nav-link::before { content: ""; position: absolute; width: 0%; height: 3px; background: red; bottom: 0px; left: 0px; transition: width .8s; } .header .navbar-main .navbar-nav .nav-item:hover .nav-link::before { width: 100%; } .header .navbar-main .navbar-nav .dropdown-son .dropdown-menu-wrapper { position: absolute; left: 0; border-bottom: 0.5px solid #e5e5e5; transform: rotate3d(1, 0, 0, -90deg); z-index: 100; max-height: 0px; box-shadow: inset 0px 2px 5px rgba(0, 0, 0, 0.07); transform-origin: 50% 0%; transition: 300ms ease-in-out; overflow: hidden; background-color: #fff; width: 100%; } .header .navbar-main .navbar-nav .dropdown-son:hover .dropdown-menu-wrapper { transform: rotate3d(0, 0, 0, 0deg); transform-origin: 50% 0%; max-height: 1000px; } .header .navbar-main .navbar-nav .dropdown-son .dropdown-menu-wrapper .dropdown-menu-list { margin: 30px auto; width: 100%; zoom: 1; } .header .navbar-main .navbar.navbar-expand-lg { padding: 0px; } .header .navbar-main .logo { padding: .2822rem; } .header .navbar-main .navbar-nav .nav-link { color: rgba(0, 0, 0, .9); } .navbar-light .navbar-nav .active > .nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show > .nav-link { color: red; } /* 页脚 */ .footer { background-color: #373D44; color: #FFFFFF; padding: 5rem 0 0; } .footer .footer-copyright { font-size: 12px; margin: 50px auto 0; text-align: center; border-top: 1px solid rgba(229, 229, 229, 0.2); padding: 32px 0; color: #b6b6b6; } .footer .footer-widget { list-style: none; padding-left: 0; } .footer .footer-widget a, .footer .footer-copyright a { color: #fff; transition: all .8s; } .footer .footer-widget a:hover, .footer .footer-copyright a:hover { text-decoration: none; color: red; } .footer .footer-copyright p { color: #fff; } .footer .qrcode a { color: #fff; } .footer .qrcode a:hover { color: red; } /* 其他 */ .owl-nav { position: absolute; top: 40%; width: 100%; } .owl-theme .owl-nav [class*=owl-] { width: 60px; height: 60px; background: rgba(0, 0, 0, 0.5) !important; border-radius: 0px; } .owl-theme .owl-nav [class*=owl-]:hover { border: 2px solid red; } .owl-theme .owl-nav [class*=owl-] .fa { color: #fff; } .owl-theme .owl-nav [class*=owl-]:hover .fa { color: red; } .owl-theme .owl-nav .owl-prev { float: left; margin-left: 20px; } .owl-theme .owl-nav .owl-next { float: right; margin-right: 20px; } .owl-theme .owl-dots { position: absolute; bottom: 30px; width: 100%; }
0.491456
0.068102
.book.font-family-serif { font-family: Georgia, serif; } .book.font-family-sans { font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; } .book.font-size-0 .book-body .page-inner section { font-size: 1.2rem; } .book.font-size-1 .book-body .page-inner section { font-size: 1.4rem; } .book.font-size-2 .book-body .page-inner section { font-size: 1.6rem; } .book.font-size-3 .book-body .page-inner section { font-size: 2.2rem; } .book.font-size-4 .book-body .page-inner section { font-size: 4rem; } /* Dark mode theme */ .dark-mode .dropdown-menu { background-color: #2d3143; border-color: #272a3a; } .dark-mode .dropdown-menu .dropdown-caret .caret-inner { border-bottom: 9px solid #2d3143; } .dark-mode .dropdown-menu .buttons { border-color: #272a3a; } .dark-mode .dropdown-menu .button { color: #62677f; } .dark-mode .dropdown-menu .button:hover { color: #f4f4f5; } .book.dark-mode .book-body { color: #bdcadb; background: #1c1f2b; } .book.dark-mode .book-body .page-wrapper .page-inner section { background: #1c1f2b; } .book.dark-mode .book-body .page-wrapper .page-inner section.normal { color: #bdcadb; } .book.dark-mode .book-body .page-wrapper .page-inner section.normal a { color: #3eb1d0; } .book.dark-mode .book-body .page-wrapper .page-inner section.normal h1, .book.dark-mode .book-body .page-wrapper .page-inner section.normal h2, .book.dark-mode .book-body .page-wrapper .page-inner section.normal h3, .book.dark-mode .book-body .page-wrapper .page-inner section.normal h4, .book.dark-mode .book-body .page-wrapper .page-inner section.normal h5, .book.dark-mode .book-body .page-wrapper .page-inner section.normal h6 { color: #fffffa; } .book.dark-mode .book-body .page-wrapper .page-inner section.normal h1, .book.dark-mode .book-body .page-wrapper .page-inner section.normal h2 { border-color: #373b4e; } .book.dark-mode .book-body .page-wrapper .page-inner section.normal h6 { color: #373b4e; } .book.dark-mode .book-body .page-wrapper .page-inner section.normal hr { background-color: #373b4e; } .book.dark-mode .book-body .page-wrapper .page-inner section.normal blockquote { border-color: #373b4e; } .book.dark-mode .book-body .page-wrapper .page-inner section.normal pre, .book.dark-mode .book-body .page-wrapper .page-inner section.normal code { color: #9dbed8; background: #2d3143; border-color: #2d3143; } .book.dark-mode .book-body .page-wrapper .page-inner section.normal .highlight { background-color: #282a39; } .book.dark-mode .book-body .page-wrapper .page-inner section.normal table th, .book.dark-mode .book-body .page-wrapper .page-inner section.normal table td { border-color: #3b3f54; } .book.dark-mode .book-body .page-wrapper .page-inner section.normal table tr { color: #b6c2d2; background-color: #2d3143; border-color: #3b3f54; } .book.dark-mode .book-body .page-wrapper .page-inner section.normal table tr:nth-child(2n) { background-color: #35394b; } .book.dark-mode .book-header { color: #7e888b; background: transparent; } .book.dark-mode .book-header .btn { color: #3b3f54; } .book.dark-mode .book-header .btn:hover { color: #fffff5; background: none; } .book.dark-mode .book-header h1 { color: #bdcadb; } .book.dark-mode .book-body .navigation { color: #383f52; } .book.dark-mode .book-body .navigation:hover { color: #fffff5; } .book.dark-mode .book-summary { color: #bcc1d2; background: #2d3143; border-right: none; } .book.dark-mode .book-summary .book-search { background: transparent; } .book.dark-mode .book-summary .book-search input, .book.dark-mode .book-summary .book-search input:focus { border: 1px solid transparent; } .book.dark-mode .book-summary ul.summary li.divider { background: #272a3a; box-shadow: none; } .book.dark-mode .book-summary ul.summary li i.fa-check { color: #33cc33; } .book.dark-mode .book-summary ul.summary li.done > a { color: #62687f; } .book.dark-mode .book-summary ul.summary li a, .book.dark-mode .book-summary ul.summary li span { color: #c1c6d7; background: transparent; font-weight: 600; } .book.dark-mode .book-summary ul.summary li.active > a, .book.dark-mode .book-summary ul.summary li a:hover { color: #f4f4f5; background: #252737; font-weight: 600; } .book.dark-mode .body-header .btn svg { height: 14px; fill: #666666; } .book.dark-mode .body-header .btn svg:hover { fill: #dddddd; }
assets/css/main-theme.css
.book.font-family-serif { font-family: Georgia, serif; } .book.font-family-sans { font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; } .book.font-size-0 .book-body .page-inner section { font-size: 1.2rem; } .book.font-size-1 .book-body .page-inner section { font-size: 1.4rem; } .book.font-size-2 .book-body .page-inner section { font-size: 1.6rem; } .book.font-size-3 .book-body .page-inner section { font-size: 2.2rem; } .book.font-size-4 .book-body .page-inner section { font-size: 4rem; } /* Dark mode theme */ .dark-mode .dropdown-menu { background-color: #2d3143; border-color: #272a3a; } .dark-mode .dropdown-menu .dropdown-caret .caret-inner { border-bottom: 9px solid #2d3143; } .dark-mode .dropdown-menu .buttons { border-color: #272a3a; } .dark-mode .dropdown-menu .button { color: #62677f; } .dark-mode .dropdown-menu .button:hover { color: #f4f4f5; } .book.dark-mode .book-body { color: #bdcadb; background: #1c1f2b; } .book.dark-mode .book-body .page-wrapper .page-inner section { background: #1c1f2b; } .book.dark-mode .book-body .page-wrapper .page-inner section.normal { color: #bdcadb; } .book.dark-mode .book-body .page-wrapper .page-inner section.normal a { color: #3eb1d0; } .book.dark-mode .book-body .page-wrapper .page-inner section.normal h1, .book.dark-mode .book-body .page-wrapper .page-inner section.normal h2, .book.dark-mode .book-body .page-wrapper .page-inner section.normal h3, .book.dark-mode .book-body .page-wrapper .page-inner section.normal h4, .book.dark-mode .book-body .page-wrapper .page-inner section.normal h5, .book.dark-mode .book-body .page-wrapper .page-inner section.normal h6 { color: #fffffa; } .book.dark-mode .book-body .page-wrapper .page-inner section.normal h1, .book.dark-mode .book-body .page-wrapper .page-inner section.normal h2 { border-color: #373b4e; } .book.dark-mode .book-body .page-wrapper .page-inner section.normal h6 { color: #373b4e; } .book.dark-mode .book-body .page-wrapper .page-inner section.normal hr { background-color: #373b4e; } .book.dark-mode .book-body .page-wrapper .page-inner section.normal blockquote { border-color: #373b4e; } .book.dark-mode .book-body .page-wrapper .page-inner section.normal pre, .book.dark-mode .book-body .page-wrapper .page-inner section.normal code { color: #9dbed8; background: #2d3143; border-color: #2d3143; } .book.dark-mode .book-body .page-wrapper .page-inner section.normal .highlight { background-color: #282a39; } .book.dark-mode .book-body .page-wrapper .page-inner section.normal table th, .book.dark-mode .book-body .page-wrapper .page-inner section.normal table td { border-color: #3b3f54; } .book.dark-mode .book-body .page-wrapper .page-inner section.normal table tr { color: #b6c2d2; background-color: #2d3143; border-color: #3b3f54; } .book.dark-mode .book-body .page-wrapper .page-inner section.normal table tr:nth-child(2n) { background-color: #35394b; } .book.dark-mode .book-header { color: #7e888b; background: transparent; } .book.dark-mode .book-header .btn { color: #3b3f54; } .book.dark-mode .book-header .btn:hover { color: #fffff5; background: none; } .book.dark-mode .book-header h1 { color: #bdcadb; } .book.dark-mode .book-body .navigation { color: #383f52; } .book.dark-mode .book-body .navigation:hover { color: #fffff5; } .book.dark-mode .book-summary { color: #bcc1d2; background: #2d3143; border-right: none; } .book.dark-mode .book-summary .book-search { background: transparent; } .book.dark-mode .book-summary .book-search input, .book.dark-mode .book-summary .book-search input:focus { border: 1px solid transparent; } .book.dark-mode .book-summary ul.summary li.divider { background: #272a3a; box-shadow: none; } .book.dark-mode .book-summary ul.summary li i.fa-check { color: #33cc33; } .book.dark-mode .book-summary ul.summary li.done > a { color: #62687f; } .book.dark-mode .book-summary ul.summary li a, .book.dark-mode .book-summary ul.summary li span { color: #c1c6d7; background: transparent; font-weight: 600; } .book.dark-mode .book-summary ul.summary li.active > a, .book.dark-mode .book-summary ul.summary li a:hover { color: #f4f4f5; background: #252737; font-weight: 600; } .book.dark-mode .body-header .btn svg { height: 14px; fill: #666666; } .book.dark-mode .body-header .btn svg:hover { fill: #dddddd; }
0.420362
0.077378
@import('https://cdnjs.cloudflare.com/ajax/libs/milligram/1.4.1/milligram.css') /* General button style */ .btn { border: none; font-family: 'Lato'; font-size: inherit; color: inherit; background: none; cursor: pointer; padding: 25px 80px; display: inline-block; margin: 15px 30px; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; outline: none; position: relative; -webkit-transition: all 0.3s; -moz-transition: all 0.3s; transition: all 0.3s; } .btn:after { content: ''; position: absolute; z-index: -1; -webkit-transition: all 0.3s; -moz-transition: all 0.3s; transition: all 0.3s; } /* Pseudo elements for icons */ .btn:before { font-family: 'FontAwesome'; speak: none; font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; line-height: 1; position: relative; -webkit-font-smoothing: antialiased; } /* Icon separator */ .btn-sep { padding: 25px 60px 25px 120px; } .btn-sep:before { background: rgba(0, 0, 0, 0.15); } /* Button 1 */ .btn-1 { background: #3498db; color: #fff; } .btn-1:hover { background: #2980b9; } .btn-1:active { background: #2980b9; top: 2px; } .btn-1:before { position: absolute; height: 100%; left: 0; top: 0; line-height: 3; font-size: 140%; width: 60px; } /* Button 2 */ .btn-2 { background: #2ecc71; color: #fff; } .btn-2:hover { background: #27ae60; } .btn-2:active { background: #27ae60; top: 2px; } .btn-2:before { position: absolute; height: 100%; left: 0; top: 0; line-height: 3; font-size: 140%; width: 60px; } /* Button 3 */ .btn-3 { background: #e74c3c; color: #fff; } .btn-3:hover { background: #c0392b; } .btn-3:active { background: #c0392b; top: 2px; } .btn-3:before { position: absolute; height: 100%; left: 0; top: 0; line-height: 3; font-size: 140%; width: 60px; } /* Button 3 */ .btn-4 { background: #34495e; color: #fff; } .btn-4:hover { background: #2c3e50; } .btn-4:active { background: #2c3e50; top: 2px; } .btn-4:before { position: absolute; height: 100%; left: 0; top: 0; line-height: 3; font-size: 140%; width: 60px; } /* Icons */ .icon-cart:before { content: "\f07a"; } .icon-heart:before { content: "\f55a"; } .icon-info:before { content: "\f05a"; } .icon-send:before { content: "\f1d8"; }
wp/css/imflowMail.css
@import('https://cdnjs.cloudflare.com/ajax/libs/milligram/1.4.1/milligram.css') /* General button style */ .btn { border: none; font-family: 'Lato'; font-size: inherit; color: inherit; background: none; cursor: pointer; padding: 25px 80px; display: inline-block; margin: 15px 30px; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; outline: none; position: relative; -webkit-transition: all 0.3s; -moz-transition: all 0.3s; transition: all 0.3s; } .btn:after { content: ''; position: absolute; z-index: -1; -webkit-transition: all 0.3s; -moz-transition: all 0.3s; transition: all 0.3s; } /* Pseudo elements for icons */ .btn:before { font-family: 'FontAwesome'; speak: none; font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; line-height: 1; position: relative; -webkit-font-smoothing: antialiased; } /* Icon separator */ .btn-sep { padding: 25px 60px 25px 120px; } .btn-sep:before { background: rgba(0, 0, 0, 0.15); } /* Button 1 */ .btn-1 { background: #3498db; color: #fff; } .btn-1:hover { background: #2980b9; } .btn-1:active { background: #2980b9; top: 2px; } .btn-1:before { position: absolute; height: 100%; left: 0; top: 0; line-height: 3; font-size: 140%; width: 60px; } /* Button 2 */ .btn-2 { background: #2ecc71; color: #fff; } .btn-2:hover { background: #27ae60; } .btn-2:active { background: #27ae60; top: 2px; } .btn-2:before { position: absolute; height: 100%; left: 0; top: 0; line-height: 3; font-size: 140%; width: 60px; } /* Button 3 */ .btn-3 { background: #e74c3c; color: #fff; } .btn-3:hover { background: #c0392b; } .btn-3:active { background: #c0392b; top: 2px; } .btn-3:before { position: absolute; height: 100%; left: 0; top: 0; line-height: 3; font-size: 140%; width: 60px; } /* Button 3 */ .btn-4 { background: #34495e; color: #fff; } .btn-4:hover { background: #2c3e50; } .btn-4:active { background: #2c3e50; top: 2px; } .btn-4:before { position: absolute; height: 100%; left: 0; top: 0; line-height: 3; font-size: 140%; width: 60px; } /* Icons */ .icon-cart:before { content: "\f07a"; } .icon-heart:before { content: "\f55a"; } .icon-info:before { content: "\f05a"; } .icon-send:before { content: "\f1d8"; }
0.351756
0.080792
:root { --app-color: #12171d; --app-color-light: #1b222b; --app-color-lightest: #242e3a; /*DEFAULT COLORS*/ --gradient-left: #c80043; --gradient-right: #6f00ff; --button-color-var: #ffffff; --box-shadow: 0 0 2.5px rgba(255, 0, 67, 0.7), 0 0 10px rgba(255, 0, 67, 0.7), 0 0 30px rgba(255, 0, 67, 0.7); --text-shadow: 0 0 5px rgba(255, 0, 67, 0.6), 0 0 20px rgba(255, 0, 67, 0.6), 0 0 60px rgba(255, 0, 67, 0.6); --button-color: #c80043; --button-hover-color: #ff0055; --global-textcolor: #fff; } #main-matchview { height: calc(100% - 32px); overflow-y: auto; padding-top: 0%; padding-left: 6%; padding-right: 6%; opacity: 0; } .matchview-result { color: rgb(255, 244, 197); margin-top: 3rem; } .matchview-nav { display: flex; justify-content: space-around; font-size: 1.3em; } .matchview-result { text-align: center; font-size: 3em; } .matchview-navitem { -webkit-transition: all 300ms ease-in; -o-transition: all 300ms ease-in; transition: all 300ms ease-in; position: relative; text-decoration: none; -webkit-transition: 0.5s; -o-transition: 0.5s; transition: 0.5s; } .matchview-navitem:hover { cursor: pointer; } .matchview-navitem { display: inline-block; } .matchview-navitem::after { position: absolute; content: ""; top: 100%; left: 0rem; width: 100%; height: 1px; background: #fff1ff; -webkit-transform: scaleX(0); -ms-transform: scaleX(0); transform: scaleX(0); -webkit-transform-origin: right; -ms-transform-origin: right; transform-origin: right; -webkit-transition: -webkit-transform 0.3s; transition: -webkit-transform 0.3s; -o-transition: transform 0.3s; transition: transform 0.3s; transition: transform 0.3s, -webkit-transform 0.3s; box-shadow: 0 0 2.5px rgba(255, 255, 255, 0.7), 0 0 10px rgba(148, 148, 148, 0.7), 0 0 30px rgba(138, 138, 138, 0.7); } .matchview-navitem:hover::after { -webkit-transform: scaleX(1); -ms-transform: scaleX(1); transform: scaleX(1); -webkit-transform-origin: left; -ms-transform-origin: left; transform-origin: left; } .matchview-navitem.active::after { -webkit-transform: scaleX(1); -ms-transform: scaleX(1); transform: scaleX(1); -webkit-transform-origin: left; -ms-transform-origin: left; transform-origin: left; } .matchview-agent { width: 75%; } .matchview-playeragent-name { width: 10rem; } .matchview-subinfo { display: flex; flex-direction: column; } .matchview-matchmode, .matchview-map, .matchview-matchstart, .matchview-matchduration { text-align: center; } .matchview-header { display: flex; align-items: center; } .matchview-playerinfo { display: inline-block; align-items: center; text-justify: center; } .matchview-subinfo { margin-left: auto; } .matchview-playerrank-rr { width: 18rem; } .matchview-playerrank-rr, .matchview-playername { font-size: 1.5em; } .matchview-playeragent-name, .matchview-playerrank-rr { display: flex; flex-direction: column; text-align: center; align-items: center; } .matchview-wrapper-1 { margin-top: 1rem; height: 72vh; } .matchview-wrapper-flex { flex-direction: row; display: flex; height: 100%; } .matchview-wrapper-line-small { height: 100%; width: 20%; } .matchview-wrapper-line-large { max-height: 100%; height: 100%; width: 60%; border: 1px dashed rgb(78, 78, 78); overflow: auto; } .matchview-rounds-header { display: flex; font-size: 1.2em; font-weight: 500; margin-bottom: 1rem; margin-top: 1rem; padding-left: 1rem; } .matchview-rounds-header div { max-width: 25%; width: 25%; } .matchview-round { display: flex; align-items: center; padding-left: 1rem; margin-top: 0.25rem; padding-top: 0.25rem; } .matchview-round div { max-width: 25%; width: 25%; } .matchview-round { height: 4rem !important; max-height: 4rem; border-radius: 0px; } .matchview-match-info { text-align: center; font-size: 1.2em; } .matchview-round td { padding: 0; } .agent-image-wrapper { height: 40%; width: 100%; display: relative; } .player-name-rank { margin-left: 1rem; font-size: 1.4em; display: flex; flex-direction: row; align-items: center; } .rank-img-small { width: 20%; margin-right: 0.5rem; filter: drop-shadow(0px 0px 5px #000000); } .rank-img-small.unranked { width: 20%; margin-right: 0.5rem; filter: drop-shadow(0px 0px 5px #000000); } .agent-image { height: 10rem; margin: 1rem; } .agent-ability-usage { height: 60%; } .agent-ability-wrapper { height: 25%; } .matchview-match-info { height: 40%; justify-content: center; align-content: center; } .matchview-stats { text-align: center; } .jett-silhouette { height: 100%; } .agent-ability-wrapper { display: flex; flex-direction: row; align-items: center; font-size: 1.2em; } .agent-ability-wrapper div { margin-left: 0.5rem; margin-right: 0.5rem; } .matchview-playerstats { display: flex; flex-direction: column; } .matchview-player-abilitiesperround li { display: flex; align-items: center; position: relative; left: -1rem; margin-bottom: 0.5rem; } #matchview-abilityicon { width: 20%; } #matchview-abilityname { margin-left: 0.5rem; } .matchview-nav { position: relative; } .matchview-blue-standing { color: #00ffd5; text-shadow: 0 0 2.5px rgba(0, 255, 213, 0.7), 0 0 5px rgba(0, 255, 213, 0.7), 0 0 15px rgba(0, 255, 213, 0.7); } .matchview-red-standing { color: #ff0062; text-shadow: 0 0 2.5px rgba(255, 0, 98, 0.7), 0 0 5px rgba(255, 0, 98, 0.7), 0 0 15px rgba(255, 0, 98, 0.7); } .playerinfo-wrapper { display: flex; text-align: center; position: relative; margin-top: 0.2rem; } .matchview-playerrank-img { margin-left: 0.5rem; width: 23%; } .match-wrapper { cursor: pointer; } .matchview-wrapper-2 { display: none; margin-top: 1rem; } .scoreboard { width: 100%; font-size: 1.2em; } .scoreboard-header { height: 10rem; display: contents; } .played_agent_img { width: 40%; position: relative; left: 5px; } .played_agent { width: 10%; padding-top: 0.25rem; } .playertag_grey { color: rgb(185, 185, 185); } .header-td span { width: fit-content; cursor: pointer; display: inline-block; } .header-td span.active { text-decoration: underline; text-shadow: 0 0 5px rgba(255, 255, 255, 0.7), 0 0 20px rgba(255, 255, 255, 0.7), 0 0 50px rgba(255, 255, 255, 0.7); } .matchview-player-row:hover { cursor: pointer; background-color: var(--app-color-light); } .hidden_puuid { display: none; } .display_name { display: flex; align-items: center; } .matchview-player-rank-img { width: 6%; margin-right: 0.8rem; filter: drop-shadow(0px 0px 5px #000000); } .matchview-player-rank-img.unranked { width: 6%; margin-right: 0.8rem; filter: drop-shadow(0px 0px 5px #000000); position: relative; top: 5px; } /* ROUND-VIEW WIP #round-wrapper { height: 80vh; display: flex; } .matchview-round-small { width: 30%; border: 1px solid orangered; height: 100%; } .matchview-round-large { width: 40%; border: 1px solid blueviolet; height: 100%; } .matchview-round-map-image-wrapper { display: flex; flex-direction: column; align-content: center; justify-content: center; align-items: center; white-space: nowrap; height: auto; width: auto; } .matchview-round-map-image { width: 90%; height: 90%; } .matchview-round-killfeed { width: 95%; margin-left: auto; margin-right: auto; margin-top: 1rem; } .matchview-round-kill-event { height: 3rem; width: 100%; display: flex; flex-direction: row; position: relative; color: var(--global-textcolor); margin-bottom: 0.5rem; font-size: 0.8em; } .kill-event-killer { position: absolute; width: 55%; height: 100%; background-color: var(--gradient-left); clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%); z-index: 2; display: flex; flex-direction: row; align-items: center; } .kill-event-victim { position: relative; width: 100%; height: 100%; background-color: var(--gradient-right); clip-path: polygon(100% 0, 100% 50%, 100% 100%, 0% 100%, 10% 50%, 0% 0%); z-index: 1; align-items: center; display: flex; flex-direction: row; justify-content: end; } .kill-event-agent-img { height: 90%; width: auto; margin-right: 0.5rem; margin-left: 0.5rem; } .kill-event-agent-img.reverse { transform: rotateY(180deg); } */
assets/css/matchview/matchview.css
:root { --app-color: #12171d; --app-color-light: #1b222b; --app-color-lightest: #242e3a; /*DEFAULT COLORS*/ --gradient-left: #c80043; --gradient-right: #6f00ff; --button-color-var: #ffffff; --box-shadow: 0 0 2.5px rgba(255, 0, 67, 0.7), 0 0 10px rgba(255, 0, 67, 0.7), 0 0 30px rgba(255, 0, 67, 0.7); --text-shadow: 0 0 5px rgba(255, 0, 67, 0.6), 0 0 20px rgba(255, 0, 67, 0.6), 0 0 60px rgba(255, 0, 67, 0.6); --button-color: #c80043; --button-hover-color: #ff0055; --global-textcolor: #fff; } #main-matchview { height: calc(100% - 32px); overflow-y: auto; padding-top: 0%; padding-left: 6%; padding-right: 6%; opacity: 0; } .matchview-result { color: rgb(255, 244, 197); margin-top: 3rem; } .matchview-nav { display: flex; justify-content: space-around; font-size: 1.3em; } .matchview-result { text-align: center; font-size: 3em; } .matchview-navitem { -webkit-transition: all 300ms ease-in; -o-transition: all 300ms ease-in; transition: all 300ms ease-in; position: relative; text-decoration: none; -webkit-transition: 0.5s; -o-transition: 0.5s; transition: 0.5s; } .matchview-navitem:hover { cursor: pointer; } .matchview-navitem { display: inline-block; } .matchview-navitem::after { position: absolute; content: ""; top: 100%; left: 0rem; width: 100%; height: 1px; background: #fff1ff; -webkit-transform: scaleX(0); -ms-transform: scaleX(0); transform: scaleX(0); -webkit-transform-origin: right; -ms-transform-origin: right; transform-origin: right; -webkit-transition: -webkit-transform 0.3s; transition: -webkit-transform 0.3s; -o-transition: transform 0.3s; transition: transform 0.3s; transition: transform 0.3s, -webkit-transform 0.3s; box-shadow: 0 0 2.5px rgba(255, 255, 255, 0.7), 0 0 10px rgba(148, 148, 148, 0.7), 0 0 30px rgba(138, 138, 138, 0.7); } .matchview-navitem:hover::after { -webkit-transform: scaleX(1); -ms-transform: scaleX(1); transform: scaleX(1); -webkit-transform-origin: left; -ms-transform-origin: left; transform-origin: left; } .matchview-navitem.active::after { -webkit-transform: scaleX(1); -ms-transform: scaleX(1); transform: scaleX(1); -webkit-transform-origin: left; -ms-transform-origin: left; transform-origin: left; } .matchview-agent { width: 75%; } .matchview-playeragent-name { width: 10rem; } .matchview-subinfo { display: flex; flex-direction: column; } .matchview-matchmode, .matchview-map, .matchview-matchstart, .matchview-matchduration { text-align: center; } .matchview-header { display: flex; align-items: center; } .matchview-playerinfo { display: inline-block; align-items: center; text-justify: center; } .matchview-subinfo { margin-left: auto; } .matchview-playerrank-rr { width: 18rem; } .matchview-playerrank-rr, .matchview-playername { font-size: 1.5em; } .matchview-playeragent-name, .matchview-playerrank-rr { display: flex; flex-direction: column; text-align: center; align-items: center; } .matchview-wrapper-1 { margin-top: 1rem; height: 72vh; } .matchview-wrapper-flex { flex-direction: row; display: flex; height: 100%; } .matchview-wrapper-line-small { height: 100%; width: 20%; } .matchview-wrapper-line-large { max-height: 100%; height: 100%; width: 60%; border: 1px dashed rgb(78, 78, 78); overflow: auto; } .matchview-rounds-header { display: flex; font-size: 1.2em; font-weight: 500; margin-bottom: 1rem; margin-top: 1rem; padding-left: 1rem; } .matchview-rounds-header div { max-width: 25%; width: 25%; } .matchview-round { display: flex; align-items: center; padding-left: 1rem; margin-top: 0.25rem; padding-top: 0.25rem; } .matchview-round div { max-width: 25%; width: 25%; } .matchview-round { height: 4rem !important; max-height: 4rem; border-radius: 0px; } .matchview-match-info { text-align: center; font-size: 1.2em; } .matchview-round td { padding: 0; } .agent-image-wrapper { height: 40%; width: 100%; display: relative; } .player-name-rank { margin-left: 1rem; font-size: 1.4em; display: flex; flex-direction: row; align-items: center; } .rank-img-small { width: 20%; margin-right: 0.5rem; filter: drop-shadow(0px 0px 5px #000000); } .rank-img-small.unranked { width: 20%; margin-right: 0.5rem; filter: drop-shadow(0px 0px 5px #000000); } .agent-image { height: 10rem; margin: 1rem; } .agent-ability-usage { height: 60%; } .agent-ability-wrapper { height: 25%; } .matchview-match-info { height: 40%; justify-content: center; align-content: center; } .matchview-stats { text-align: center; } .jett-silhouette { height: 100%; } .agent-ability-wrapper { display: flex; flex-direction: row; align-items: center; font-size: 1.2em; } .agent-ability-wrapper div { margin-left: 0.5rem; margin-right: 0.5rem; } .matchview-playerstats { display: flex; flex-direction: column; } .matchview-player-abilitiesperround li { display: flex; align-items: center; position: relative; left: -1rem; margin-bottom: 0.5rem; } #matchview-abilityicon { width: 20%; } #matchview-abilityname { margin-left: 0.5rem; } .matchview-nav { position: relative; } .matchview-blue-standing { color: #00ffd5; text-shadow: 0 0 2.5px rgba(0, 255, 213, 0.7), 0 0 5px rgba(0, 255, 213, 0.7), 0 0 15px rgba(0, 255, 213, 0.7); } .matchview-red-standing { color: #ff0062; text-shadow: 0 0 2.5px rgba(255, 0, 98, 0.7), 0 0 5px rgba(255, 0, 98, 0.7), 0 0 15px rgba(255, 0, 98, 0.7); } .playerinfo-wrapper { display: flex; text-align: center; position: relative; margin-top: 0.2rem; } .matchview-playerrank-img { margin-left: 0.5rem; width: 23%; } .match-wrapper { cursor: pointer; } .matchview-wrapper-2 { display: none; margin-top: 1rem; } .scoreboard { width: 100%; font-size: 1.2em; } .scoreboard-header { height: 10rem; display: contents; } .played_agent_img { width: 40%; position: relative; left: 5px; } .played_agent { width: 10%; padding-top: 0.25rem; } .playertag_grey { color: rgb(185, 185, 185); } .header-td span { width: fit-content; cursor: pointer; display: inline-block; } .header-td span.active { text-decoration: underline; text-shadow: 0 0 5px rgba(255, 255, 255, 0.7), 0 0 20px rgba(255, 255, 255, 0.7), 0 0 50px rgba(255, 255, 255, 0.7); } .matchview-player-row:hover { cursor: pointer; background-color: var(--app-color-light); } .hidden_puuid { display: none; } .display_name { display: flex; align-items: center; } .matchview-player-rank-img { width: 6%; margin-right: 0.8rem; filter: drop-shadow(0px 0px 5px #000000); } .matchview-player-rank-img.unranked { width: 6%; margin-right: 0.8rem; filter: drop-shadow(0px 0px 5px #000000); position: relative; top: 5px; } /* ROUND-VIEW WIP #round-wrapper { height: 80vh; display: flex; } .matchview-round-small { width: 30%; border: 1px solid orangered; height: 100%; } .matchview-round-large { width: 40%; border: 1px solid blueviolet; height: 100%; } .matchview-round-map-image-wrapper { display: flex; flex-direction: column; align-content: center; justify-content: center; align-items: center; white-space: nowrap; height: auto; width: auto; } .matchview-round-map-image { width: 90%; height: 90%; } .matchview-round-killfeed { width: 95%; margin-left: auto; margin-right: auto; margin-top: 1rem; } .matchview-round-kill-event { height: 3rem; width: 100%; display: flex; flex-direction: row; position: relative; color: var(--global-textcolor); margin-bottom: 0.5rem; font-size: 0.8em; } .kill-event-killer { position: absolute; width: 55%; height: 100%; background-color: var(--gradient-left); clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%); z-index: 2; display: flex; flex-direction: row; align-items: center; } .kill-event-victim { position: relative; width: 100%; height: 100%; background-color: var(--gradient-right); clip-path: polygon(100% 0, 100% 50%, 100% 100%, 0% 100%, 10% 50%, 0% 0%); z-index: 1; align-items: center; display: flex; flex-direction: row; justify-content: end; } .kill-event-agent-img { height: 90%; width: auto; margin-right: 0.5rem; margin-left: 0.5rem; } .kill-event-agent-img.reverse { transform: rotateY(180deg); } */
0.538498
0.123736
* { /* font-family: "Didot" serif; */ scroll-behavior: smooth; margin: 0; padding: 0; } @font-face { font-family: "Roboto"; src: url("../font/roboto/Roboto-Light.ttf"); src: url("../font/roboto/Roboto-Light.woff") format("woff"); /* url("../font/roboto/Roboto-Light.otf") format("opentype"); */ } @font-face { font-family: "Roboto Bold"; src: url("../font/roboto/Roboto-Bold.ttf"); src: url("../font/roboto/Roboto-Bold.woff") format("woff"); /* url("../font/roboto/Roboto-Bold.otf") format("opentype"); */ } /* @font-face { font-family: "Roboto Thin"; src: url("../font/roboto/Roboto-Thin.ttf"); src: url("../font/roboto/Roboto-Thin.woff") format("woff"), url("../font/roboto/Roboto-Thin.otf") format("opentype"); } */ html { /* overflow: overlay; */ overflow-x: hidden; } ::-webkit-scrollbar { width: 7px; background-color: transparent; } ::-webkit-scrollbar-track { background-color: transparent; } ::-webkit-scrollbar-thumb { background-color: transparent; border-radius: 2px; transition: background-color .2s ease; } ::-webkit-scrollbar-thumb:hover { background-color:rgba(0, 0, 0, 0.3); } body { background: rgb(255,242,215); background: linear-gradient(0deg, rgba(255,242,215,1) 0%, rgba(250,247,242,1) 40%); overflow: -moz-scrollbars-none; -ms-overflow-style: -ms-autohiding-scrollbar; } h1 { position: relative; margin-left: 10%; font-size: 5vmax; font-weight: bold; font-family: "Roboto"; color: #311111; } /*REMOVE AFTER COVID*/ /* #covidBanner { max-width: 75vw; position: fixed; right: 1vw; display: flex; font-family: "Roboto Bold"; font-size: 2vh; color: white; background-color: #FF3333; text-decoration: none; padding: 1%; border-radius: 5px; align-items: center; justify-content: space-between; } */ #covidBanner svg { margin-right: 1%; } #bannerText { font-family: "Roboto Bold"; font-size: 2vh; color: white; text-decoration: none; } /*********************/ #parallaxWrapper { height: 100vh; perspective: 2px; overflow-x: hidden; overflow-y: overlay; } .section { display: flex; position: relative; width: 100vw; margin: 0; padding: 0; } /* .parallax::after { content: " "; position: absolute; top: 0; right: 0; bottom: 0; left: 0; transform: translateZ(-1px) scale(1.5); background-size: 100%; z-index: -1; } */ /* Navigation Content */ #navHeader { height: 6vh; width: 10vh; z-index: 3; position: fixed; display: flex; justify-content: center; margin: 2% 0 0 2%; visibility: hidden; opacity: 0; } #navHeader img { height: auto; width: 100%; opacity: 100%; position: absolute; transition: 1s ease; } #navHeader:hover { cursor: pointer; } #stick1 { transform: rotate(0deg) translate(0, 0) scale(1, 1.4); } #stick2 { transform: rotate(180deg) translate(0, -5vh) scale(1, 1.4); } #menuLabel { align-self: center; font-family: "Roboto Bold"; font-size: 2.5vh; } #nav { position: fixed; display: flex; justify-content: center; height: 100vh; width: 100vw; font-family: "Roboto Bold"; background-color: #311111; overflow: hidden; z-index: 2; } #linkBar { display: flex; flex-direction: row; justify-content: center; position: absolute; bottom: 5vh; width: 100vw; } .column { display: flex; flex-direction: column; margin: 5%; } #left { text-align: right; } #line { background-color: white; margin: 5% 0 5% 0; max-height: 28vw; width: 4px; } #right { text-align: left; } #nav a { font-size: 6vw; text-decoration-line: none; color: white; } #nav a:hover { color: #E4D9B8; } @media only screen and (max-width: 812px) { #nav { overflow: scroll; } #linkBar { display: flex; flex-direction: column; min-height: 100vh; bottom: auto; padding: 0; width: auto; } .column { margin: 0 } #left { text-align: center; margin: 0; } #right { text-align: center; margin: 0; } #line { visibility: hidden; position: absolute; } #nav a { font-size: 8vh; } } /* Front Page */ /* #frontPage { height: 175vh; } */ #frontPage #bigLogo { position: relative; -webkit-filter: drop-shadow(8px 8px 8px black); filter: drop-shadow(8px 8px 8px black); height: auto; width: 65%; z-index: 1; } #frontPage .firstContent p { -webkit-filter: drop-shadow(5px 5px 5px black); filter: drop-shadow(5px 5px 5px black); color: white; margin-top: 2%; font-size: 2vw; } .bg1 { background: radial-gradient(circle, #311111 50%, black 125%); } #frontWrapper { display: flex; height: 100vh; width: 100vw; justify-content: center; } .firstContent { display: flex; flex-direction: column; text-align: center; justify-content: center; align-items: center; position: relative; height: 100vh; width: 100vw; } #stickOverlay img { position: absolute; } #panel1 { left: 0; height: 100vh; width: auto; } #panel2 { right: 0; height: 100vh; width: auto; } @keyframes float { /* #firstSection { height: 120vh; } */ 0% { transform: translateY(0px); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0px); } } #downArrow { animation: float 4s ease-in-out infinite; position: absolute; height: 10vh; bottom: 15vh; z-index: 1; } #downArrow img { -webkit-filter: drop-shadow(5px 5px 5px black); filter: drop-shadow(5px 5px 5px black); height: 100%; width: auto; } /* About Page */ .bg2::after { /* background-image: url("../assets/splatter.jpg"); */ background: rgb(255,242,215); background: linear-gradient(0deg, rgba(255,242,215,1) 0%, rgba(250,247,242,1) 40%); } #aboutWrapper { display: flex; flex-direction: column; padding-top: 2vh; padding-bottom: 2vh; } .titleRow { display: flex; justify-content: space-between; align-items: center; padding-top: 2vh; padding-bottom: 2vh; } .aboutRow { display: flex; justify-content: space-between; padding: 2% 10% 2% 10%; } .bar { background-color: #311111; width: 60vw; height: 5px; } #row2 { background-color: #311111; color: white; } #text2 { text-align: right; } .textBox { font-family: "Roboto"; display: block; max-width: 45%; max-height: 100%; } .grow { transition: 1s ease; transition-delay: 0.2s; } .grow:hover{ -webkit-transform: scale(1.2); -ms-transform: scale(1.2); transform: scale(100%); transform: translate(0, -10px); transition: 1s ease; } #sunset { max-height: 30vw; } #starwars { max-height: 20vw; } #tickets { position: absolute; transform: translate(100%, -20%) rotate(-5deg); right: 0; height: auto; width: 75vw; } #about img { height: auto; max-width: 45%; } #about p { font-size: 2.5vmax; } /* Join Page */ #joinWrapper { display: flex; flex-direction: column; padding-top: 2vh; padding-bottom: 2vh; } .joinRow { display: flex; justify-content: space-between; padding: 2% 10%; } #auditionInfo { padding: 0 2%; margin-top: 0; } .infoBox { text-align: center; padding: 2%; margin-bottom: 2%; max-width: 40vw; background-color: #311111; color: white; border-radius: 30px; } #join .subtext { margin-top: 0; padding-top: 0; font-size: 1.2vmax; font-style: italic; } #faq { padding: 2%; background-color: #311111; color: white; border-radius: 8px; } #join hr { height: 2px; margin: 20px auto; border: none; background-color: #311111; width: 80%; } #auditionInfo hr { background-color: #311111; } #faq hr { background: linear-gradient(0deg, rgba(255,242,215,1) 0%, rgba(250,247,242,1) 40%); } .joinRow { display: flex; flex-direction: row; flex-wrap: wrap; justify-content: center; } #auditionWrapper a { font-weight: bold; } #faq a, .infoBox a { color: #E4D9B8; font-weight: bold; } #join h3 { padding: 2% 2% 2% 0; font-size: 2.5vmax; } #join h4 { padding-top: 2%; font-size: 1.9vmax; } #join p { padding: 2%; font-size: 1.7vmax; } #join ol { margin-left: 5%; margin-right: 5%; font-size: 1.7vmax; } #join a { text-decoration-line: none; } #join a:hover{ text-decoration: underline; } #join img { max-width: 60%; } @media only screen and (max-width: 812px) { .joinChild { max-width: 80vw; margin-top: 20px; } .joinRow { padding: 2%; } #join h3 { font-size: 22px; } #join h4 { font-size: 20px; } #join p, #join ol { font-size: 18px; } #join img { max-width: 80%; } } /* Watch Page */ #watch { box-sizing: border-box; } #watchWrapper { display: flex; flex-direction: column; padding-top: 2vh; padding-bottom: 2vh; font-family: "Roboto"; font-weight: bolder; font-size: 1.75vmax; width: 100vw; } #watchWrapper a { text-decoration: none; } /* Slideshow css from https://www.w3schools.com/howto/howto_js_slideshow.asp */ /* Slideshow container */ .slideshow-container { max-width: 100vw; position: relative; margin: auto; } /* Hide the images by default */ .mySlides { display: none; text-align: center; } /* Next & previous buttons */ .prev, .next { cursor: pointer; position: absolute; top: 50%; width: auto; margin-top: -22px; padding: 16px; color: white; font-weight: bold; font-size: 18px; transition: 0.6s ease; border-radius: 0 3px 3px 0; user-select: none; } /* Position the "next button" to the right */ .next { right: 0; border-radius: 3px 0 0 3px; } /* On hover, add a black background color with a little bit see-through */ .prev:hover, .next:hover { background-color: rgba(0,0,0,0.45); } /* Caption text */ /* .text { color: white; font-size: 15px; padding: 12px 12px; position: absolute; bottom: 0; width: 100%; text-align: right; } */ /* Number text (1/5 etc) */ .numbertext { color: white; font-size: 12px; padding: 12px 12px; position: absolute; bottom: 0; } /* The dots/bullets/indicators */ .dot { cursor: pointer; height: 15px; width: 15px; margin: 0 2px; background-color: #bbb; border-radius: 50%; display: inline-block; transition: background-color 0.6s ease; } .active, .dot:hover { background-color: #717171; } /* Fading animation */ .fade { -webkit-animation-name: fade; -webkit-animation-duration: 1.5s; animation-name: fade; animation-duration: 1.5s; } @-webkit-keyframes fade { from {opacity: .4} to {opacity: 1} } @keyframes fade { from {opacity: .4} to {opacity: 1} } #watch iframe { height: 33.75vw; width: 60vw; } @media only screen and (max-width: 812px) { #watch iframe { height: 45vw; width: 80vw; } #join hr { height: 1px; } } /* Contact Page */ #contactTitle { margin-bottom: 2%; } #contactWrapper { display: flex; flex-direction: column; padding-top: 5vh; padding-bottom: 2vh; } #fifthSection.section.parallax.bg2::after { transform: translateZ(0) scale(1); } #contact .row { display: flex; flex-direction: row; flex-wrap: wrap; justify-content: center; } .contactCard { background-color: white; border-radius: 5%; padding: 20px; margin: 0.5em; height: 300px; width: 200px; text-align: center; box-shadow: 3px 3px 7px rgba(0,0,0,0.3); transition: 1s ease; } .contactCard img { border-radius: 100%; margin-top: 25px; margin-bottom: 50px; } .contactCard:hover{ box-shadow: 5px 5px 9px rgba(0, 0, 0, 0.3); transition: 1s ease; } .contactCard p { text-align: center; font-style: italic; margin-bottom: 1%; } .contactCard a { color: black; text-decoration-line: none; } .contactCard h3 { font-size: 20px; margin-bottom: 10px; } .contactCard h4 { font-size: 20px; } /* Footer */ .socialBubbles { display: flex; flex-direction: row; justify-content: center; } .socialBubbles img { height: 25vh; width: auto; margin: 20px; } #facebook { animation: float 8s ease-in-out infinite; } #instagram { animation: float 6s ease-in-out infinite; } #twitter { animation: float 4s ease-in-out infinite; } footer { text-align: left; padding-top: 2%; display: flex; flex-direction: row; justify-content: center; align-items: center; } footer h3 { animation: float 5s ease-in-out infinite; } footer .socialBubbles { margin-left: 10px; } footer .socialBubbles img { height: 4vh; width: auto; margin-left: 10px; margin-right: 10px; }
css/style.css
* { /* font-family: "Didot" serif; */ scroll-behavior: smooth; margin: 0; padding: 0; } @font-face { font-family: "Roboto"; src: url("../font/roboto/Roboto-Light.ttf"); src: url("../font/roboto/Roboto-Light.woff") format("woff"); /* url("../font/roboto/Roboto-Light.otf") format("opentype"); */ } @font-face { font-family: "Roboto Bold"; src: url("../font/roboto/Roboto-Bold.ttf"); src: url("../font/roboto/Roboto-Bold.woff") format("woff"); /* url("../font/roboto/Roboto-Bold.otf") format("opentype"); */ } /* @font-face { font-family: "Roboto Thin"; src: url("../font/roboto/Roboto-Thin.ttf"); src: url("../font/roboto/Roboto-Thin.woff") format("woff"), url("../font/roboto/Roboto-Thin.otf") format("opentype"); } */ html { /* overflow: overlay; */ overflow-x: hidden; } ::-webkit-scrollbar { width: 7px; background-color: transparent; } ::-webkit-scrollbar-track { background-color: transparent; } ::-webkit-scrollbar-thumb { background-color: transparent; border-radius: 2px; transition: background-color .2s ease; } ::-webkit-scrollbar-thumb:hover { background-color:rgba(0, 0, 0, 0.3); } body { background: rgb(255,242,215); background: linear-gradient(0deg, rgba(255,242,215,1) 0%, rgba(250,247,242,1) 40%); overflow: -moz-scrollbars-none; -ms-overflow-style: -ms-autohiding-scrollbar; } h1 { position: relative; margin-left: 10%; font-size: 5vmax; font-weight: bold; font-family: "Roboto"; color: #311111; } /*REMOVE AFTER COVID*/ /* #covidBanner { max-width: 75vw; position: fixed; right: 1vw; display: flex; font-family: "Roboto Bold"; font-size: 2vh; color: white; background-color: #FF3333; text-decoration: none; padding: 1%; border-radius: 5px; align-items: center; justify-content: space-between; } */ #covidBanner svg { margin-right: 1%; } #bannerText { font-family: "Roboto Bold"; font-size: 2vh; color: white; text-decoration: none; } /*********************/ #parallaxWrapper { height: 100vh; perspective: 2px; overflow-x: hidden; overflow-y: overlay; } .section { display: flex; position: relative; width: 100vw; margin: 0; padding: 0; } /* .parallax::after { content: " "; position: absolute; top: 0; right: 0; bottom: 0; left: 0; transform: translateZ(-1px) scale(1.5); background-size: 100%; z-index: -1; } */ /* Navigation Content */ #navHeader { height: 6vh; width: 10vh; z-index: 3; position: fixed; display: flex; justify-content: center; margin: 2% 0 0 2%; visibility: hidden; opacity: 0; } #navHeader img { height: auto; width: 100%; opacity: 100%; position: absolute; transition: 1s ease; } #navHeader:hover { cursor: pointer; } #stick1 { transform: rotate(0deg) translate(0, 0) scale(1, 1.4); } #stick2 { transform: rotate(180deg) translate(0, -5vh) scale(1, 1.4); } #menuLabel { align-self: center; font-family: "Roboto Bold"; font-size: 2.5vh; } #nav { position: fixed; display: flex; justify-content: center; height: 100vh; width: 100vw; font-family: "Roboto Bold"; background-color: #311111; overflow: hidden; z-index: 2; } #linkBar { display: flex; flex-direction: row; justify-content: center; position: absolute; bottom: 5vh; width: 100vw; } .column { display: flex; flex-direction: column; margin: 5%; } #left { text-align: right; } #line { background-color: white; margin: 5% 0 5% 0; max-height: 28vw; width: 4px; } #right { text-align: left; } #nav a { font-size: 6vw; text-decoration-line: none; color: white; } #nav a:hover { color: #E4D9B8; } @media only screen and (max-width: 812px) { #nav { overflow: scroll; } #linkBar { display: flex; flex-direction: column; min-height: 100vh; bottom: auto; padding: 0; width: auto; } .column { margin: 0 } #left { text-align: center; margin: 0; } #right { text-align: center; margin: 0; } #line { visibility: hidden; position: absolute; } #nav a { font-size: 8vh; } } /* Front Page */ /* #frontPage { height: 175vh; } */ #frontPage #bigLogo { position: relative; -webkit-filter: drop-shadow(8px 8px 8px black); filter: drop-shadow(8px 8px 8px black); height: auto; width: 65%; z-index: 1; } #frontPage .firstContent p { -webkit-filter: drop-shadow(5px 5px 5px black); filter: drop-shadow(5px 5px 5px black); color: white; margin-top: 2%; font-size: 2vw; } .bg1 { background: radial-gradient(circle, #311111 50%, black 125%); } #frontWrapper { display: flex; height: 100vh; width: 100vw; justify-content: center; } .firstContent { display: flex; flex-direction: column; text-align: center; justify-content: center; align-items: center; position: relative; height: 100vh; width: 100vw; } #stickOverlay img { position: absolute; } #panel1 { left: 0; height: 100vh; width: auto; } #panel2 { right: 0; height: 100vh; width: auto; } @keyframes float { /* #firstSection { height: 120vh; } */ 0% { transform: translateY(0px); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0px); } } #downArrow { animation: float 4s ease-in-out infinite; position: absolute; height: 10vh; bottom: 15vh; z-index: 1; } #downArrow img { -webkit-filter: drop-shadow(5px 5px 5px black); filter: drop-shadow(5px 5px 5px black); height: 100%; width: auto; } /* About Page */ .bg2::after { /* background-image: url("../assets/splatter.jpg"); */ background: rgb(255,242,215); background: linear-gradient(0deg, rgba(255,242,215,1) 0%, rgba(250,247,242,1) 40%); } #aboutWrapper { display: flex; flex-direction: column; padding-top: 2vh; padding-bottom: 2vh; } .titleRow { display: flex; justify-content: space-between; align-items: center; padding-top: 2vh; padding-bottom: 2vh; } .aboutRow { display: flex; justify-content: space-between; padding: 2% 10% 2% 10%; } .bar { background-color: #311111; width: 60vw; height: 5px; } #row2 { background-color: #311111; color: white; } #text2 { text-align: right; } .textBox { font-family: "Roboto"; display: block; max-width: 45%; max-height: 100%; } .grow { transition: 1s ease; transition-delay: 0.2s; } .grow:hover{ -webkit-transform: scale(1.2); -ms-transform: scale(1.2); transform: scale(100%); transform: translate(0, -10px); transition: 1s ease; } #sunset { max-height: 30vw; } #starwars { max-height: 20vw; } #tickets { position: absolute; transform: translate(100%, -20%) rotate(-5deg); right: 0; height: auto; width: 75vw; } #about img { height: auto; max-width: 45%; } #about p { font-size: 2.5vmax; } /* Join Page */ #joinWrapper { display: flex; flex-direction: column; padding-top: 2vh; padding-bottom: 2vh; } .joinRow { display: flex; justify-content: space-between; padding: 2% 10%; } #auditionInfo { padding: 0 2%; margin-top: 0; } .infoBox { text-align: center; padding: 2%; margin-bottom: 2%; max-width: 40vw; background-color: #311111; color: white; border-radius: 30px; } #join .subtext { margin-top: 0; padding-top: 0; font-size: 1.2vmax; font-style: italic; } #faq { padding: 2%; background-color: #311111; color: white; border-radius: 8px; } #join hr { height: 2px; margin: 20px auto; border: none; background-color: #311111; width: 80%; } #auditionInfo hr { background-color: #311111; } #faq hr { background: linear-gradient(0deg, rgba(255,242,215,1) 0%, rgba(250,247,242,1) 40%); } .joinRow { display: flex; flex-direction: row; flex-wrap: wrap; justify-content: center; } #auditionWrapper a { font-weight: bold; } #faq a, .infoBox a { color: #E4D9B8; font-weight: bold; } #join h3 { padding: 2% 2% 2% 0; font-size: 2.5vmax; } #join h4 { padding-top: 2%; font-size: 1.9vmax; } #join p { padding: 2%; font-size: 1.7vmax; } #join ol { margin-left: 5%; margin-right: 5%; font-size: 1.7vmax; } #join a { text-decoration-line: none; } #join a:hover{ text-decoration: underline; } #join img { max-width: 60%; } @media only screen and (max-width: 812px) { .joinChild { max-width: 80vw; margin-top: 20px; } .joinRow { padding: 2%; } #join h3 { font-size: 22px; } #join h4 { font-size: 20px; } #join p, #join ol { font-size: 18px; } #join img { max-width: 80%; } } /* Watch Page */ #watch { box-sizing: border-box; } #watchWrapper { display: flex; flex-direction: column; padding-top: 2vh; padding-bottom: 2vh; font-family: "Roboto"; font-weight: bolder; font-size: 1.75vmax; width: 100vw; } #watchWrapper a { text-decoration: none; } /* Slideshow css from https://www.w3schools.com/howto/howto_js_slideshow.asp */ /* Slideshow container */ .slideshow-container { max-width: 100vw; position: relative; margin: auto; } /* Hide the images by default */ .mySlides { display: none; text-align: center; } /* Next & previous buttons */ .prev, .next { cursor: pointer; position: absolute; top: 50%; width: auto; margin-top: -22px; padding: 16px; color: white; font-weight: bold; font-size: 18px; transition: 0.6s ease; border-radius: 0 3px 3px 0; user-select: none; } /* Position the "next button" to the right */ .next { right: 0; border-radius: 3px 0 0 3px; } /* On hover, add a black background color with a little bit see-through */ .prev:hover, .next:hover { background-color: rgba(0,0,0,0.45); } /* Caption text */ /* .text { color: white; font-size: 15px; padding: 12px 12px; position: absolute; bottom: 0; width: 100%; text-align: right; } */ /* Number text (1/5 etc) */ .numbertext { color: white; font-size: 12px; padding: 12px 12px; position: absolute; bottom: 0; } /* The dots/bullets/indicators */ .dot { cursor: pointer; height: 15px; width: 15px; margin: 0 2px; background-color: #bbb; border-radius: 50%; display: inline-block; transition: background-color 0.6s ease; } .active, .dot:hover { background-color: #717171; } /* Fading animation */ .fade { -webkit-animation-name: fade; -webkit-animation-duration: 1.5s; animation-name: fade; animation-duration: 1.5s; } @-webkit-keyframes fade { from {opacity: .4} to {opacity: 1} } @keyframes fade { from {opacity: .4} to {opacity: 1} } #watch iframe { height: 33.75vw; width: 60vw; } @media only screen and (max-width: 812px) { #watch iframe { height: 45vw; width: 80vw; } #join hr { height: 1px; } } /* Contact Page */ #contactTitle { margin-bottom: 2%; } #contactWrapper { display: flex; flex-direction: column; padding-top: 5vh; padding-bottom: 2vh; } #fifthSection.section.parallax.bg2::after { transform: translateZ(0) scale(1); } #contact .row { display: flex; flex-direction: row; flex-wrap: wrap; justify-content: center; } .contactCard { background-color: white; border-radius: 5%; padding: 20px; margin: 0.5em; height: 300px; width: 200px; text-align: center; box-shadow: 3px 3px 7px rgba(0,0,0,0.3); transition: 1s ease; } .contactCard img { border-radius: 100%; margin-top: 25px; margin-bottom: 50px; } .contactCard:hover{ box-shadow: 5px 5px 9px rgba(0, 0, 0, 0.3); transition: 1s ease; } .contactCard p { text-align: center; font-style: italic; margin-bottom: 1%; } .contactCard a { color: black; text-decoration-line: none; } .contactCard h3 { font-size: 20px; margin-bottom: 10px; } .contactCard h4 { font-size: 20px; } /* Footer */ .socialBubbles { display: flex; flex-direction: row; justify-content: center; } .socialBubbles img { height: 25vh; width: auto; margin: 20px; } #facebook { animation: float 8s ease-in-out infinite; } #instagram { animation: float 6s ease-in-out infinite; } #twitter { animation: float 4s ease-in-out infinite; } footer { text-align: left; padding-top: 2%; display: flex; flex-direction: row; justify-content: center; align-items: center; } footer h3 { animation: float 5s ease-in-out infinite; } footer .socialBubbles { margin-left: 10px; } footer .socialBubbles img { height: 4vh; width: auto; margin-left: 10px; margin-right: 10px; }
0.3863
0.050401
/* ========================================================================================== */ /* HTML ELEMENTS */ /* ========================================================================================== */ body { color: #4D4D4D; height: 100%; margin-top: -50px; } html { margin: 0px; height: 100%; width: 100%; } header { background-color: initial; } th a { color: #4d4d4d; font-family: "Segoe UI", Frutiger, "Frutiger Linotype", "Dejavu Sans", "Helvetica Neue", Arial, sans-serif; font-size: 16pt; font-weight: normal; } /*tr { background-color: #ececec; } th { color: #E77A39; background-color: #ececec; } td { color: #ececec; } td a { color: #ececec; } td a:visited { color: #4D4D4D; } h1 { color: #FFFFFF; } h2 { color: #4D4D4D; }*/ /* ========================================================================================== */ /* BOOTSTRAP ELEMENTS */ /* ========================================================================================== */ .control-label { color: #4D4D4D; } .table-striped > tbody > tr:nth-of-type(odd) { background-color: #AAAAAA; } .ui-autocomplete { color: #4D4D4D; background-color: #FFFFFF; } .ui-menu-item { color: #4D4D4D; } .ui-state-focus { color: #E77A39; background-color: #E6E6E6; } /* ========================================================================================== */ /* HEADER */ /* ========================================================================================== */ .logo-heading { color: #FFFFFF; background-color: #E77A39; font-weight: normal; } .logo-heading2 { color: #FFFFFF; background-color: #E77A39; font-weight: normal; } .sub-heading { color: #FFFFFF; background-color: #626262; } .body-content { margin-top: 6px; } /* ========================================================================================== */ /* MENU */ /* ========================================================================================== */ .menu-border { /*border-left-color: #4D4D4D;*/ } .nav-menu li a { color: #575757 !important; } .nav-menu li a.active { color: #E77A39 !important; } .nav-menu li a:hover { color: #E77A39 !important; } .dropdown-menu { background-color: #E6E6E6; } /* ========================================================================================== */ /* PAGE */ /* ========================================================================================== */ /*.page-heading { background: #626262; } */ /* ========================================================================================== */ /* FORM */ /* ========================================================================================== */ .content { background-color: #FFFFFF; } .banner-home-right { background-color: #E77A39; opacity: 1; } .banner-home-right a { color: #FFFFFF; } .banner-splitter { border-right-color: #ffffff; } .paging_end { margin-bottom:3px; } /* ========================================================================================== */ /* BUTTONS */ /* ========================================================================================== */ .btn-search { background-color: #626262; } .btn-search:hover { background-color: #696969; border: none; } .btn-themed { background-color: #E77A39; color: #FFFFFF; } .btn-themed:hover { /*background-color: #E77A39; color: #ffffff;*/ } .btn-themed-secondary { background-color: #E77A39; color: #FFFFFF; } .btn-themed-secondary:hover { background-color: #E76A39; color: #ffffff; } .btn-close { background-color: #626262; color: #FFFFFF; } /* ========================================================================================== */ /* MODAL */ /* ========================================================================================== */ .modal-header { color: #FFFFFF; background-color: #626262; font-size: 18pt; } /* ========================================================================================== */ /* TOP FOOTER */ /* ========================================================================================== */ .top-footer { background-color: #E6E6E6; } .top-footer a { color: #202020; } .top-footer-h2 { color: #4D4D4D; } .top-footer-p { color: #575757; } /* ========================================================================================== */ /* BOTTOM FOOTER */ /* ========================================================================================== */ /*.btm-footer { color: #FFFFFF; background-color: #4D4D4D; } .btm-footer a { color: #FFFFFF; } .btm-footer-item-border { border-right-color: #FFFFFF; }*/ .btm-footer { background-color: #626262; box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12); box-sizing: border-box; width: 100%; text-align: center; /*padding: 45px;*/ margin-top: 10px; } .btm-footer a { color: #FFFFFF; } .btm-footer-item-border { border-right-color: #FFFFFF; } /* ========================================================================================== */ /* PURCHASE */ /* ========================================================================================== */ .ticket-info h3 { color: #4D4D4D; } .ticket-info ul { color: #4D4D4D; } .subscript { color: #4D4D4D; } /* ========================================================================================== */ /* EVENT PANELS */ /* ========================================================================================== */ .event-date { background-color: #91BAEF; } .event-date-shaded { background-color: #2C4240; } .event-performer { color: #666666; } .event-venue { color: #4D4D4D; } .event-detail-heading { color: #4D4D4D; } /* ========================================================================================== */ /* RATING PANELS */ /* ========================================================================================== */ .rating-block { border-bottom-color: #4D4D4D; } .rating-heading { color: #E77A39; } .rating-info { color: #4D4D4D; } /* ========================================================================================== */ /* ACCOUNT BOX */ /* ========================================================================================== */ .box-light { background: #E6E6E6; } .box-light h3 { color: #DE783A; } .box-light p { margin: 10px 0px; font-size: 18px; font-weight: bold; color: #4D4D4D; } .box-light ul li a { color: #4D4D4D; } .box-light-splitter { border-right-color: #DE783A; } /* ========================================================================================== */ /* VENUE BOX */ /* ========================================================================================== */ .box-dark { background: #4D4D4D; } .box-dark h3 { color: #DE783A; } .box-dark ul li a { color: #FFFFFF; font-weight: bold; font-size: 18px; } /* ========================================================================================== */ /* HELPERS */ /* ========================================================================================== */ .highligted-text { color: #DE783A; } .row-underline-dark { border-bottom-color: #333333; } .row-underline-light { border-bottom-color: #999999; }
App/src/Events-TenantUserApp/wwwroot/Themes/Pop.css
/* ========================================================================================== */ /* HTML ELEMENTS */ /* ========================================================================================== */ body { color: #4D4D4D; height: 100%; margin-top: -50px; } html { margin: 0px; height: 100%; width: 100%; } header { background-color: initial; } th a { color: #4d4d4d; font-family: "Segoe UI", Frutiger, "Frutiger Linotype", "Dejavu Sans", "Helvetica Neue", Arial, sans-serif; font-size: 16pt; font-weight: normal; } /*tr { background-color: #ececec; } th { color: #E77A39; background-color: #ececec; } td { color: #ececec; } td a { color: #ececec; } td a:visited { color: #4D4D4D; } h1 { color: #FFFFFF; } h2 { color: #4D4D4D; }*/ /* ========================================================================================== */ /* BOOTSTRAP ELEMENTS */ /* ========================================================================================== */ .control-label { color: #4D4D4D; } .table-striped > tbody > tr:nth-of-type(odd) { background-color: #AAAAAA; } .ui-autocomplete { color: #4D4D4D; background-color: #FFFFFF; } .ui-menu-item { color: #4D4D4D; } .ui-state-focus { color: #E77A39; background-color: #E6E6E6; } /* ========================================================================================== */ /* HEADER */ /* ========================================================================================== */ .logo-heading { color: #FFFFFF; background-color: #E77A39; font-weight: normal; } .logo-heading2 { color: #FFFFFF; background-color: #E77A39; font-weight: normal; } .sub-heading { color: #FFFFFF; background-color: #626262; } .body-content { margin-top: 6px; } /* ========================================================================================== */ /* MENU */ /* ========================================================================================== */ .menu-border { /*border-left-color: #4D4D4D;*/ } .nav-menu li a { color: #575757 !important; } .nav-menu li a.active { color: #E77A39 !important; } .nav-menu li a:hover { color: #E77A39 !important; } .dropdown-menu { background-color: #E6E6E6; } /* ========================================================================================== */ /* PAGE */ /* ========================================================================================== */ /*.page-heading { background: #626262; } */ /* ========================================================================================== */ /* FORM */ /* ========================================================================================== */ .content { background-color: #FFFFFF; } .banner-home-right { background-color: #E77A39; opacity: 1; } .banner-home-right a { color: #FFFFFF; } .banner-splitter { border-right-color: #ffffff; } .paging_end { margin-bottom:3px; } /* ========================================================================================== */ /* BUTTONS */ /* ========================================================================================== */ .btn-search { background-color: #626262; } .btn-search:hover { background-color: #696969; border: none; } .btn-themed { background-color: #E77A39; color: #FFFFFF; } .btn-themed:hover { /*background-color: #E77A39; color: #ffffff;*/ } .btn-themed-secondary { background-color: #E77A39; color: #FFFFFF; } .btn-themed-secondary:hover { background-color: #E76A39; color: #ffffff; } .btn-close { background-color: #626262; color: #FFFFFF; } /* ========================================================================================== */ /* MODAL */ /* ========================================================================================== */ .modal-header { color: #FFFFFF; background-color: #626262; font-size: 18pt; } /* ========================================================================================== */ /* TOP FOOTER */ /* ========================================================================================== */ .top-footer { background-color: #E6E6E6; } .top-footer a { color: #202020; } .top-footer-h2 { color: #4D4D4D; } .top-footer-p { color: #575757; } /* ========================================================================================== */ /* BOTTOM FOOTER */ /* ========================================================================================== */ /*.btm-footer { color: #FFFFFF; background-color: #4D4D4D; } .btm-footer a { color: #FFFFFF; } .btm-footer-item-border { border-right-color: #FFFFFF; }*/ .btm-footer { background-color: #626262; box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12); box-sizing: border-box; width: 100%; text-align: center; /*padding: 45px;*/ margin-top: 10px; } .btm-footer a { color: #FFFFFF; } .btm-footer-item-border { border-right-color: #FFFFFF; } /* ========================================================================================== */ /* PURCHASE */ /* ========================================================================================== */ .ticket-info h3 { color: #4D4D4D; } .ticket-info ul { color: #4D4D4D; } .subscript { color: #4D4D4D; } /* ========================================================================================== */ /* EVENT PANELS */ /* ========================================================================================== */ .event-date { background-color: #91BAEF; } .event-date-shaded { background-color: #2C4240; } .event-performer { color: #666666; } .event-venue { color: #4D4D4D; } .event-detail-heading { color: #4D4D4D; } /* ========================================================================================== */ /* RATING PANELS */ /* ========================================================================================== */ .rating-block { border-bottom-color: #4D4D4D; } .rating-heading { color: #E77A39; } .rating-info { color: #4D4D4D; } /* ========================================================================================== */ /* ACCOUNT BOX */ /* ========================================================================================== */ .box-light { background: #E6E6E6; } .box-light h3 { color: #DE783A; } .box-light p { margin: 10px 0px; font-size: 18px; font-weight: bold; color: #4D4D4D; } .box-light ul li a { color: #4D4D4D; } .box-light-splitter { border-right-color: #DE783A; } /* ========================================================================================== */ /* VENUE BOX */ /* ========================================================================================== */ .box-dark { background: #4D4D4D; } .box-dark h3 { color: #DE783A; } .box-dark ul li a { color: #FFFFFF; font-weight: bold; font-size: 18px; } /* ========================================================================================== */ /* HELPERS */ /* ========================================================================================== */ .highligted-text { color: #DE783A; } .row-underline-dark { border-bottom-color: #333333; } .row-underline-light { border-bottom-color: #999999; }
0.294621
0.077204
.md-header { background-color: #232f3e !important; border-bottom: 1px solid #1b2532 !important; } @media only screen and (max-width: 76.1875em) { html .md-nav--primary .md-nav__title--site { background-color: #232f3e !important; border-bottom: 1px solid #1b2532 !important; } .md-nav__source { background-color: #1f4e79 !important; } html .md-nav--primary .md-nav__title { background-color: #232f3e !important; border-bottom: 1px solid #1b2532 !important; color: #ffffff; } html .md-nav--primary .md-nav__title::before { color: #ffffff; } } .md-tabs__link { font-weight: bold !important; font-size: .8rem !important; } .md-header-nav__source { margin-left: 0; } /* Language Drop Down */ .md-header-nav__lang { display: block; width: 2rem; margin-left: .5rem; margin-right: .2rem; padding-right: .6rem; } .md-lang-drop { line-height: 2.6rem; padding: 0 0.5rem; font-size: 1.2rem; width: 1px } .md-lang-dropbtn { color: white; border: none; cursor: pointer; font-weight: bold; } .md-lang-dropbtn:hover, .md-lang-dropbtn:focus { color: #f8991d; } .md-dropdown-content { display: none; width: 100%; background-color: #f1f1f1; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); z-index: 1; overflow: auto; } .md-dropdown-content a { color: black; padding: 0px 10px; text-decoration: none; display: block; line-height: 3rem; font-weight: bold; font-size: 1.3rem; } .md-dropdown-content a:hover { color: #f8991d; } .show { display:block; } /* Second Navigation */ .md-tabs { background-image: url(../assets/images/second-nav-blue.png); background-color: #1f4e79 !important; } .md-tabs__item { margin-right: 15px; } .md-content__button { display: none; } .md-typeset table:not([class]) th { min-width: 15rem; background-color: #6c6c6c !important; font-size: medium; } .md-typeset table:not([class]) td { vertical-align: middle; } .table { font-size: medium; } .md-header-nav__button.md-logo img, .md-header-nav__button.md-logo svg { width: 40px } /* Footer */ .md-footer-nav { background-image: url(../assets/images/second-nav-blue.png); background-color: #1f4e79 !important; } .md-footer-meta { background-color: #232f3e !important; border-top: 1px solid #1b2532 !important; }
docs/stylesheets/custom.css
.md-header { background-color: #232f3e !important; border-bottom: 1px solid #1b2532 !important; } @media only screen and (max-width: 76.1875em) { html .md-nav--primary .md-nav__title--site { background-color: #232f3e !important; border-bottom: 1px solid #1b2532 !important; } .md-nav__source { background-color: #1f4e79 !important; } html .md-nav--primary .md-nav__title { background-color: #232f3e !important; border-bottom: 1px solid #1b2532 !important; color: #ffffff; } html .md-nav--primary .md-nav__title::before { color: #ffffff; } } .md-tabs__link { font-weight: bold !important; font-size: .8rem !important; } .md-header-nav__source { margin-left: 0; } /* Language Drop Down */ .md-header-nav__lang { display: block; width: 2rem; margin-left: .5rem; margin-right: .2rem; padding-right: .6rem; } .md-lang-drop { line-height: 2.6rem; padding: 0 0.5rem; font-size: 1.2rem; width: 1px } .md-lang-dropbtn { color: white; border: none; cursor: pointer; font-weight: bold; } .md-lang-dropbtn:hover, .md-lang-dropbtn:focus { color: #f8991d; } .md-dropdown-content { display: none; width: 100%; background-color: #f1f1f1; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); z-index: 1; overflow: auto; } .md-dropdown-content a { color: black; padding: 0px 10px; text-decoration: none; display: block; line-height: 3rem; font-weight: bold; font-size: 1.3rem; } .md-dropdown-content a:hover { color: #f8991d; } .show { display:block; } /* Second Navigation */ .md-tabs { background-image: url(../assets/images/second-nav-blue.png); background-color: #1f4e79 !important; } .md-tabs__item { margin-right: 15px; } .md-content__button { display: none; } .md-typeset table:not([class]) th { min-width: 15rem; background-color: #6c6c6c !important; font-size: medium; } .md-typeset table:not([class]) td { vertical-align: middle; } .table { font-size: medium; } .md-header-nav__button.md-logo img, .md-header-nav__button.md-logo svg { width: 40px } /* Footer */ .md-footer-nav { background-image: url(../assets/images/second-nav-blue.png); background-color: #1f4e79 !important; } .md-footer-meta { background-color: #232f3e !important; border-top: 1px solid #1b2532 !important; }
0.448909
0.106737
* { padding: 0; margin: 0; box-sizing: border-box; } .hide { display: none !important; } body { font-family: "lora", serif; font-size: 16px; color: #2f2f2f; background-color: #f9f7f1; --accent-color: teal; --text-color: 24, 24, 24; --foreground-color: 255, 255, 255; --error-color: #e53935; } header { font-family: "Playfair Display", serif; font-weight: 900; width: 100%; text-align: center; font-size: 4rem; text-transform: uppercase; padding: 1rem 0; letter-spacing: 6; } p { margin: 1.2rem 0; display: -webkit-box; -webkit-line-clamp: 8; -webkit-box-orient: vertical; overflow: hidden; text-align: justify; } p:not(:first-of-type)::first-letter { margin-left: 4rem; } #homepage { display: grid; } .head { display: flex; flex-direction: column; text-align: center; justify-content: center; position: relative; margin-bottom: 1rem; } .subhead { display: flex; flex-direction: column; align-items: center; text-transform: uppercase; padding: 0.6rem 0; } .subhead::after { content: ""; position: absolute; bottom: 0; width: 10%; height: 0.1rem; background: #2f2f2f; } .columns { padding-top: 2rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(26rem, 1fr)); } .column { font-size: 1.2rem; line-height: 1.8; display: flex; flex-direction: column; padding: 0 1.5rem; vertical-align: top; margin-bottom: 4rem; } .column .headline { text-align: center; line-height: normal; font-family: "lora", serif; display: block; margin: 0 auto; } .column .headline.hl1 { font-weight: 700; font-size: 30px; text-transform: uppercase; padding: 0.8rem 0; } .column .headline.hl2 { font-weight: 400; font-size: 24px; padding: 0.8rem 0; } .column .headline.hl2:before { border-top: 1px solid #2f2f2f; content: ""; width: 100px; height: 7px; display: block; margin: 0 auto; } .column .headline.hl2:after { border-bottom: 1px solid #2f2f2f; content: ""; width: 100px; height: 13px; display: block; margin: 0 auto; } .column .headline.hl3 { font-weight: 400; font-size: 36px; padding: 0.8rem 0; font-style: italic; font-family: "Playfair Display", serif; } .column .headline.hl4 { font-weight: 500; font-size: 0.9rem; padding: 0.8rem 0; } .column .headline.hl4:before { border-top: 1px solid #2f2f2f; content: ""; width: 100px; height: 7px; display: block; margin: 0 auto; } .column .headline.hl4:after { border-bottom: 1px solid #2f2f2f; content: ""; width: 100px; height: 10px; display: block; margin: 0 auto; } .column .headline.hl5 { font-weight: 400; font-size: 42px; text-transform: uppercase; padding: 0.8rem 0; } .column .headline.hl6 { font-weight: 400; font-size: 18px; padding: 0.8rem 0; } .column .headline.hl6:before { border-top: 1px solid #2f2f2f; content: ""; width: 100px; height: 7px; display: block; margin: 0 auto; } .column .headline.hl6:after { border-bottom: 1px solid #2f2f2f; content: ""; width: 100px; height: 10px; display: block; margin: 0 auto; } .column .headline.hl7 { font-weight: 700; font-size: 0.9rem; display: block; padding: 0.8rem 0; } .column .headline.hl8 { font-weight: 700; font-size: 0.9rem; padding: 0.8rem 0; } .column .headline.hl9 { font-weight: 700; font-size: 0.9rem; padding: 0.8rem 0; } .column .headline.hl10 { font-weight: 700; font-size: 0.9rem; padding: 0.8rem 0; } .column .citation { font-family: "Playfair Display", serif; font-size: 36px; line-height: 44px; /*font-style: italic;*/ text-align: center; font-weight: 400; display: block; margin: 40px 0 40px 0; font-feature-settings: "liga", "dlig"; } .column .citation:before { border-top: 1px solid #2f2f2f; content: ""; width: 100px; height: 16px; display: block; margin: 0 auto; } .column .citation:after { border-bottom: 1px solid #2f2f2f; content: ""; width: 100px; height: 16px; display: block; margin: 0 auto; } .column .figure { margin: 0 0 20px; } .column .figcaption { font-style: italic; font-size: 0.9rem; } .media { -webkit-filter: sepia(80%) contrast(1) opacity(0.8); filter: sepia(80%) grayscale(1) contrast(1) opacity(0.8); mix-blend-mode: multiply; width: 100%; } :any-link { text-decoration: none; color: #dc143c; cursor: pointer; } .topnav { overflow: hidden; display: flex; justify-content: space-between; align-items: center; } /* Style the links inside the navigation bar */ .topnav a { float: left; text-align: center; padding: 14px 16px; text-decoration: none; font-size: 17px; } .topnav a img { width: 14rem; } .rmtimeslogo_size { width: 25rem; height: 10rem; overflow: visible; } .spinner { animation: Rotate 2.4s both infinite linear; } .path { animation: DrawLine 1.6s both infinite alternate linear; fill: none; stroke: #000; stroke-width: 50; } @keyframes Rotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } @keyframes DrawLine { 0% { stroke-dasharray: 0 126; } 100% { stroke-dasharray: 126 126; } } /*________________________________________________________________________________________________________________________________*/ /*MEDIAQUERIES*/ @media all and (max-width: 640px) { header { font-size: 2.5rem; } .topnav a img { width: 10rem; } .rmtimeslogo_size { width: 15rem; height: auto; margin: 3rem 0 1rem 0; } } @media all and (min-width: 640px) { .columns { margin: 0 2vw; } } @media all and (min-width: 1920px) { .columns { margin: 0 4vw; } }
style.css
* { padding: 0; margin: 0; box-sizing: border-box; } .hide { display: none !important; } body { font-family: "lora", serif; font-size: 16px; color: #2f2f2f; background-color: #f9f7f1; --accent-color: teal; --text-color: 24, 24, 24; --foreground-color: 255, 255, 255; --error-color: #e53935; } header { font-family: "Playfair Display", serif; font-weight: 900; width: 100%; text-align: center; font-size: 4rem; text-transform: uppercase; padding: 1rem 0; letter-spacing: 6; } p { margin: 1.2rem 0; display: -webkit-box; -webkit-line-clamp: 8; -webkit-box-orient: vertical; overflow: hidden; text-align: justify; } p:not(:first-of-type)::first-letter { margin-left: 4rem; } #homepage { display: grid; } .head { display: flex; flex-direction: column; text-align: center; justify-content: center; position: relative; margin-bottom: 1rem; } .subhead { display: flex; flex-direction: column; align-items: center; text-transform: uppercase; padding: 0.6rem 0; } .subhead::after { content: ""; position: absolute; bottom: 0; width: 10%; height: 0.1rem; background: #2f2f2f; } .columns { padding-top: 2rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(26rem, 1fr)); } .column { font-size: 1.2rem; line-height: 1.8; display: flex; flex-direction: column; padding: 0 1.5rem; vertical-align: top; margin-bottom: 4rem; } .column .headline { text-align: center; line-height: normal; font-family: "lora", serif; display: block; margin: 0 auto; } .column .headline.hl1 { font-weight: 700; font-size: 30px; text-transform: uppercase; padding: 0.8rem 0; } .column .headline.hl2 { font-weight: 400; font-size: 24px; padding: 0.8rem 0; } .column .headline.hl2:before { border-top: 1px solid #2f2f2f; content: ""; width: 100px; height: 7px; display: block; margin: 0 auto; } .column .headline.hl2:after { border-bottom: 1px solid #2f2f2f; content: ""; width: 100px; height: 13px; display: block; margin: 0 auto; } .column .headline.hl3 { font-weight: 400; font-size: 36px; padding: 0.8rem 0; font-style: italic; font-family: "Playfair Display", serif; } .column .headline.hl4 { font-weight: 500; font-size: 0.9rem; padding: 0.8rem 0; } .column .headline.hl4:before { border-top: 1px solid #2f2f2f; content: ""; width: 100px; height: 7px; display: block; margin: 0 auto; } .column .headline.hl4:after { border-bottom: 1px solid #2f2f2f; content: ""; width: 100px; height: 10px; display: block; margin: 0 auto; } .column .headline.hl5 { font-weight: 400; font-size: 42px; text-transform: uppercase; padding: 0.8rem 0; } .column .headline.hl6 { font-weight: 400; font-size: 18px; padding: 0.8rem 0; } .column .headline.hl6:before { border-top: 1px solid #2f2f2f; content: ""; width: 100px; height: 7px; display: block; margin: 0 auto; } .column .headline.hl6:after { border-bottom: 1px solid #2f2f2f; content: ""; width: 100px; height: 10px; display: block; margin: 0 auto; } .column .headline.hl7 { font-weight: 700; font-size: 0.9rem; display: block; padding: 0.8rem 0; } .column .headline.hl8 { font-weight: 700; font-size: 0.9rem; padding: 0.8rem 0; } .column .headline.hl9 { font-weight: 700; font-size: 0.9rem; padding: 0.8rem 0; } .column .headline.hl10 { font-weight: 700; font-size: 0.9rem; padding: 0.8rem 0; } .column .citation { font-family: "Playfair Display", serif; font-size: 36px; line-height: 44px; /*font-style: italic;*/ text-align: center; font-weight: 400; display: block; margin: 40px 0 40px 0; font-feature-settings: "liga", "dlig"; } .column .citation:before { border-top: 1px solid #2f2f2f; content: ""; width: 100px; height: 16px; display: block; margin: 0 auto; } .column .citation:after { border-bottom: 1px solid #2f2f2f; content: ""; width: 100px; height: 16px; display: block; margin: 0 auto; } .column .figure { margin: 0 0 20px; } .column .figcaption { font-style: italic; font-size: 0.9rem; } .media { -webkit-filter: sepia(80%) contrast(1) opacity(0.8); filter: sepia(80%) grayscale(1) contrast(1) opacity(0.8); mix-blend-mode: multiply; width: 100%; } :any-link { text-decoration: none; color: #dc143c; cursor: pointer; } .topnav { overflow: hidden; display: flex; justify-content: space-between; align-items: center; } /* Style the links inside the navigation bar */ .topnav a { float: left; text-align: center; padding: 14px 16px; text-decoration: none; font-size: 17px; } .topnav a img { width: 14rem; } .rmtimeslogo_size { width: 25rem; height: 10rem; overflow: visible; } .spinner { animation: Rotate 2.4s both infinite linear; } .path { animation: DrawLine 1.6s both infinite alternate linear; fill: none; stroke: #000; stroke-width: 50; } @keyframes Rotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } @keyframes DrawLine { 0% { stroke-dasharray: 0 126; } 100% { stroke-dasharray: 126 126; } } /*________________________________________________________________________________________________________________________________*/ /*MEDIAQUERIES*/ @media all and (max-width: 640px) { header { font-size: 2.5rem; } .topnav a img { width: 10rem; } .rmtimeslogo_size { width: 15rem; height: auto; margin: 3rem 0 1rem 0; } } @media all and (min-width: 640px) { .columns { margin: 0 2vw; } } @media all and (min-width: 1920px) { .columns { margin: 0 4vw; } }
0.435421
0.084153
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700&display=swap'); body { font-family: 'Nunito', sans-serif; } * { margin: 0; padding: 0; box-sizing: border-box; } #container { display: flex; flex-direction: column; align-items: center; } #perfil { display: flex; flex-direction: column; align-items: center; margin-top: 43px; margin-bottom: 38px; } #perfil img { width: 232px; border-radius: 100%; } #perfil h1 { margin-top: 34px; font-size: 30px; font-weight: 600; } #principal { display: flex; width: 1000px; margin-bottom: 150px; } #principal img { border-radius: 6px; } #tocandoAgora { text-align: center; } #tocandoAgora img { width: 286px; } #infoAgora { margin-top: 25px; } #infoAgora h2 { font-size: 24px; font-weight: 600; } #infoAgora p { font-size: 18px; font-weight: 400; margin-top: 8px; color: #707070; } #musicasDisponiveis { display: flex; flex-direction: column; width: 870px; margin-left: 64px; border-left: 1px solid #7346F4; } .faixas { display: flex; align-items: center; justify-content: flex-start; padding: 25px 42px 25px 28px; border-bottom: 1px solid #7346F4; transition: 0.2s ease-in-out; } .faixas img { width: 51px; } .faixas .imgFaixas div { position: relative; display: flex; align-items: center; justify-content: center; cursor: pointer; } .faixas .imgFaixas .pauseImg { width: 20px; height: 25px; position: absolute; opacity: 0; transition: 0.2s ease-in-out; } .faixas .imgFaixas div::before { content: ''; position: absolute; top: 0; background-color: rgba(0, 0, 0, 0.5); width: 51px; height: 51px; border-radius: 6px; opacity: 0; transition: 0.2s ease-in-out; } .faixas .imgFaixas div:hover .pauseImg, .faixas .imgFaixas div:hover:before { opacity: 100%; } .faixas:hover{ background-color: #EFEFEF; } .faixas:last-of-type { border: none; } .infoFaixas { width: 801px; display: flex; justify-content: space-between; padding-left: 52px; } .infoFaixas p { color: #707070; } .infoFaixas p:first-child { transition: 0.2s ease-in-out; } .infoFaixas p:first-child:hover { cursor: pointer; color: #538BF0; } #musica { background-color: #EFEFEF; height: 80px; width: 100%; display: none; align-items: center; justify-content: space-between; position: fixed; bottom: 0; padding: 0 250px 0 250px ; } #controles { display: flex; align-items: center; width: 117px; justify-content: space-between; } #controles img:hover { cursor: pointer; } #container_msc { display: flex; flex-direction: column; } #info_cantor { display: flex; justify-content: center; } #info_cantor a { font-weight: 300; color: black; text-decoration: none; } #barra_progresso { display: flex; align-items: center; margin-top: 5px; } #barra_progresso p { font-size: 11px; font-weight: 300; color: #92929D; } #barra { width: 745px; margin: 0 15px; } #volume { position: relative; display: flex; justify-content: center; } #barra_volume { position: absolute; top: -40px; width: 300px; height: 30px; background-color: #C4C4C4; border-radius: 50px; opacity: 0; display: flex; justify-content: center; align-items: center; } #configVolume { display: flex; justify-content: center; align-items: center; width: 90%; } input[type=range] { width: 100%; background-color: transparent; -webkit-appearance: none; } input[type=range]:focus { outline: none; } input[type=range]::-webkit-slider-runnable-track { background: rgba(146, 146, 157, 0.6); border: 0px solid rgba(0, 1, 1, 0); border: 0; border-radius: 3.1px; width: 100%; height: 6.7px; cursor: pointer; } input[type=range]::-webkit-slider-thumb { margin-top: -3.65px; width: 14px; height: 14px; background: rgba(0, 0, 0, 0.7); border: 0px solid rgba(0, 0, 0, 0); border: 0; border-radius: 17px; cursor: pointer; -webkit-appearance: none; } input[type=range]::-moz-range-track { background: rgba(146, 146, 157, 0.6); border: 0px solid rgba(0, 1, 1, 0); border: 0; border-radius: 3.1px; width: 100%; height: 6.7px; cursor: pointer; } input[type=range]::-moz-range-thumb { width: 14px; height: 14px; background: rgba(0, 0, 0, 0.7); border: 0px solid rgba(0, 0, 0, 0); border: 0; border-radius: 17px; cursor: pointer; } input[type=range]::-ms-track { background: transparent; border-color: transparent; border-width: 3.65px 0; color: transparent; width: 100%; height: 6.7px; cursor: pointer; } input[type=range]::-ms-thumb { width: 14px; height: 14px; background: rgba(0, 0, 0, 0.7); border: 0px solid rgba(0, 0, 0, 0); border: 0; border-radius: 17px; cursor: pointer; margin-top: 0px; /*Needed to keep the Edge thumb centred*/ } /*TODO: Use one of the selectors from https://stackoverflow.com/a/20541859/7077589 and figure out how to remove the virtical space around the range input in IE*/ @supports (-ms-ime-align:auto) { /* Pre-Chromium Edge only styles, selector taken from hhttps://stackoverflow.com/a/32202953/7077589 */ input[type=range] { margin: 0; /*Edge starts the margin from the thumb, not the track as other browsers do*/ } }
style/style.css
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700&display=swap'); body { font-family: 'Nunito', sans-serif; } * { margin: 0; padding: 0; box-sizing: border-box; } #container { display: flex; flex-direction: column; align-items: center; } #perfil { display: flex; flex-direction: column; align-items: center; margin-top: 43px; margin-bottom: 38px; } #perfil img { width: 232px; border-radius: 100%; } #perfil h1 { margin-top: 34px; font-size: 30px; font-weight: 600; } #principal { display: flex; width: 1000px; margin-bottom: 150px; } #principal img { border-radius: 6px; } #tocandoAgora { text-align: center; } #tocandoAgora img { width: 286px; } #infoAgora { margin-top: 25px; } #infoAgora h2 { font-size: 24px; font-weight: 600; } #infoAgora p { font-size: 18px; font-weight: 400; margin-top: 8px; color: #707070; } #musicasDisponiveis { display: flex; flex-direction: column; width: 870px; margin-left: 64px; border-left: 1px solid #7346F4; } .faixas { display: flex; align-items: center; justify-content: flex-start; padding: 25px 42px 25px 28px; border-bottom: 1px solid #7346F4; transition: 0.2s ease-in-out; } .faixas img { width: 51px; } .faixas .imgFaixas div { position: relative; display: flex; align-items: center; justify-content: center; cursor: pointer; } .faixas .imgFaixas .pauseImg { width: 20px; height: 25px; position: absolute; opacity: 0; transition: 0.2s ease-in-out; } .faixas .imgFaixas div::before { content: ''; position: absolute; top: 0; background-color: rgba(0, 0, 0, 0.5); width: 51px; height: 51px; border-radius: 6px; opacity: 0; transition: 0.2s ease-in-out; } .faixas .imgFaixas div:hover .pauseImg, .faixas .imgFaixas div:hover:before { opacity: 100%; } .faixas:hover{ background-color: #EFEFEF; } .faixas:last-of-type { border: none; } .infoFaixas { width: 801px; display: flex; justify-content: space-between; padding-left: 52px; } .infoFaixas p { color: #707070; } .infoFaixas p:first-child { transition: 0.2s ease-in-out; } .infoFaixas p:first-child:hover { cursor: pointer; color: #538BF0; } #musica { background-color: #EFEFEF; height: 80px; width: 100%; display: none; align-items: center; justify-content: space-between; position: fixed; bottom: 0; padding: 0 250px 0 250px ; } #controles { display: flex; align-items: center; width: 117px; justify-content: space-between; } #controles img:hover { cursor: pointer; } #container_msc { display: flex; flex-direction: column; } #info_cantor { display: flex; justify-content: center; } #info_cantor a { font-weight: 300; color: black; text-decoration: none; } #barra_progresso { display: flex; align-items: center; margin-top: 5px; } #barra_progresso p { font-size: 11px; font-weight: 300; color: #92929D; } #barra { width: 745px; margin: 0 15px; } #volume { position: relative; display: flex; justify-content: center; } #barra_volume { position: absolute; top: -40px; width: 300px; height: 30px; background-color: #C4C4C4; border-radius: 50px; opacity: 0; display: flex; justify-content: center; align-items: center; } #configVolume { display: flex; justify-content: center; align-items: center; width: 90%; } input[type=range] { width: 100%; background-color: transparent; -webkit-appearance: none; } input[type=range]:focus { outline: none; } input[type=range]::-webkit-slider-runnable-track { background: rgba(146, 146, 157, 0.6); border: 0px solid rgba(0, 1, 1, 0); border: 0; border-radius: 3.1px; width: 100%; height: 6.7px; cursor: pointer; } input[type=range]::-webkit-slider-thumb { margin-top: -3.65px; width: 14px; height: 14px; background: rgba(0, 0, 0, 0.7); border: 0px solid rgba(0, 0, 0, 0); border: 0; border-radius: 17px; cursor: pointer; -webkit-appearance: none; } input[type=range]::-moz-range-track { background: rgba(146, 146, 157, 0.6); border: 0px solid rgba(0, 1, 1, 0); border: 0; border-radius: 3.1px; width: 100%; height: 6.7px; cursor: pointer; } input[type=range]::-moz-range-thumb { width: 14px; height: 14px; background: rgba(0, 0, 0, 0.7); border: 0px solid rgba(0, 0, 0, 0); border: 0; border-radius: 17px; cursor: pointer; } input[type=range]::-ms-track { background: transparent; border-color: transparent; border-width: 3.65px 0; color: transparent; width: 100%; height: 6.7px; cursor: pointer; } input[type=range]::-ms-thumb { width: 14px; height: 14px; background: rgba(0, 0, 0, 0.7); border: 0px solid rgba(0, 0, 0, 0); border: 0; border-radius: 17px; cursor: pointer; margin-top: 0px; /*Needed to keep the Edge thumb centred*/ } /*TODO: Use one of the selectors from https://stackoverflow.com/a/20541859/7077589 and figure out how to remove the virtical space around the range input in IE*/ @supports (-ms-ime-align:auto) { /* Pre-Chromium Edge only styles, selector taken from hhttps://stackoverflow.com/a/32202953/7077589 */ input[type=range] { margin: 0; /*Edge starts the margin from the thumb, not the track as other browsers do*/ } }
0.276593
0.112551
*{ margin:0; padding:0; box-sizing: border-box; } body { font-family: Arial, Helvetica, sans-serif } header{ position: sticky; top: 0; z-index: 1; } #navbar { background: #252525; opacity: 0.9; color: #f2f2f2; overflow: auto; font-size: 18px; } #navbar a { color: #f2f2f2; } #navbar .logo { float: left; padding-top: 20px; padding-left: 20px; } #navbar ul { list-style: none; float: right; margin: 0; } #navbar ul li { float: left; } #navbar ul li a { display: block; padding: 20px; text-align: center; text-decoration: none; } #navbar ul li a:hover{ background: #a43232; } .logo{ font-size: 100%; } .text-primary { color: #a43232; font-size: 25px; } .showcase { background: url('../images/friends.jpg') no-repeat center center/cover; background-attachment: fixed; height: 600px; } .main-text { font-size: 25px; text-align: justify; width: 70%; margin:5% auto; } .search-bar{ width: 70%; display: block; margin: 0 auto; padding: 55px 15px; } .btn { background: #252525; color: #f2f2f2; font-size: 18px; padding: 15px; margin: 50px; width: 300px; border: none; cursor: pointer; } .btn:hover { background: #a43232; border: none; } .flex { display: flex; justify-content: center; } .weather, .activities{ width: 70%; display: block; margin: 0 auto; background-color: #252525; color: #f2f2f2; padding: 8px; font-size: 2vw; } .activities-section{ margin-top: 40px; margin-bottom: 40px; } #weather-details{ padding: 0 !important; } .three-weather{ background-color:#d4d4d3; padding: 15px; cursor: pointer; border: none; text-align: left; width: 70%; height:50%; margin: 0 auto; animation: display 3s linear; } @keyframes display { 0%{ opacity: 0.2; } 100%{ opacity: 1; } } #activities-details{ background-color:#d4d4d3 ; width: 70%; margin: 0 auto; animation: display 3s linear; } .near-by{ font-size: 2vw; padding: 8px; } .nearby-section{ width: 70%; display: block; margin: 0 auto; background-color: #252525; color: #f2f2f2; } .find{ color: #f2f2f2; padding: 8px; font-size: 2vw; } .find-section{ display: flex; justify-content: space-between; background-color: #252525; width: 70%; margin: 0 auto; } .find-btn{ background-color:rgba(164, 50, 50,0) ; font-size: 2vw; text-align: left; padding: 6px; cursor: pointer; color: #f2f2f2; } .find-btn:hover{ background-color:#a43232; } .display_btn{ display: block; background-color:#d4d4d3 ; width: 100%; margin: 0 auto; font-size: 2vw; text-align: left; padding: 4px; cursor: pointer; } .display_btn:hover{ background-color:rgba(164, 50, 50,0.5); } #about-info .info-right { float: right; width: 50%; min-height: 100%; margin-top: 25px; } #about-info .info-right img { display: block; margin: auto; width: 70%; border-radius: 50%; } /* About Page */ .container { margin: auto; max-width: 1100px; overflow: auto; padding: 0 20px; } #about-info .info-left { float: left; width: 50%; min-height: 100%; } #testimonials { height: 100%; background: url('../images/test-bg.jpg') no-repeat center center/cover; padding-top: 100px; border-radius: 5px; } #testimonials h2 { color: #252525; text-align: center; padding-bottom: 40px; } #testimonials .testimonial img { width: 100px; float: left; margin-right: 20px; border-radius: 50%; } #testimonials .testimonial { padding: 20px; margin-bottom: 40px; opacity: 0.8; } .text { font-size: 20px; } .l-heading { font-size: 30px; line-height: 1.2; color: #252525; } .bg-primary { background: #d4d4d3; color: #333; opacity: 0.8; } /* Footer*/ #main-footer { text-align: center; background: #252525; padding: 20px; color: #f2f2f2; } /*map section*/ /* Always set the map height explicitly to define the size of the div * element that contains the map. */ #map { height: 400px; width: 70%; margin: 0 auto; } /*francis part*/ /*googl search box*/ .pac-card { margin: 10px 10px 0 0; border-radius: 2px 0 0 2px; box-sizing: border-box; -moz-box-sizing: border-box; outline: none; box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3); background-color: #fff; font-family: Roboto; } #pac-container { padding-bottom: 12px; margin-right: 12px; } .pac-controls { display: inline-block; padding: 5px 11px; } .pac-controls label { font-family: Roboto; font-size: 13px; font-weight: 300; } #title { color: #fff; background-color: #4d90fe; font-size: 25px; font-weight: 500; padding: 6px 12px; } #target { width: 345px; } /*francis part*/ @media screen and (max-width: 1024px) { .main-contact{ flex-direction: column; } } .contact-section{ width: 70%; margin: 0 auto 10px auto; padding: 10px; background-color: #d4d4d3; } .contact-info i { margin-right: 20px; font-size: 25px; padding:10px; } .contact-form { max-width: 700px; margin-right: 50px; } .contact-info, .contact-form { flex:1; } .contact-form h1{ text-align: center; font-size: 50px; text-transform: uppercase; margin-bottom: 30px; } .contact-form .text-box { background: #252525; color: #fff; border: none; width: 80%; height: 50px; padding: 12px; margin-bottom: 20px; } .contact-form textarea{ background: #252525; color:#fff; border:none; width: 80%; padding: 12px; font-size: 16px; min-height: 200px; max-height: 400px; resize: vertical; border-radius: 4px; box-shadow: 0 1px 1px #252525; margin-bottom: 20px; opacity: 1; } .contact{ display: flex; flex-direction: column; } .textarea:hover{ outline: none; border: none; } .contact-form .send-btn { float: left; background: #252525; color: #fff; border:none; width: 120px; height: 40px; font-size: 15px; font-weight: 500; text-transform: uppercase; letter-spacing: 2px; border-radius: 4px; cursor: pointer } .contact-form .send-btn:hover { background: #a43232; } .main-contact{ display: flex; }
assets/css/style.css
*{ margin:0; padding:0; box-sizing: border-box; } body { font-family: Arial, Helvetica, sans-serif } header{ position: sticky; top: 0; z-index: 1; } #navbar { background: #252525; opacity: 0.9; color: #f2f2f2; overflow: auto; font-size: 18px; } #navbar a { color: #f2f2f2; } #navbar .logo { float: left; padding-top: 20px; padding-left: 20px; } #navbar ul { list-style: none; float: right; margin: 0; } #navbar ul li { float: left; } #navbar ul li a { display: block; padding: 20px; text-align: center; text-decoration: none; } #navbar ul li a:hover{ background: #a43232; } .logo{ font-size: 100%; } .text-primary { color: #a43232; font-size: 25px; } .showcase { background: url('../images/friends.jpg') no-repeat center center/cover; background-attachment: fixed; height: 600px; } .main-text { font-size: 25px; text-align: justify; width: 70%; margin:5% auto; } .search-bar{ width: 70%; display: block; margin: 0 auto; padding: 55px 15px; } .btn { background: #252525; color: #f2f2f2; font-size: 18px; padding: 15px; margin: 50px; width: 300px; border: none; cursor: pointer; } .btn:hover { background: #a43232; border: none; } .flex { display: flex; justify-content: center; } .weather, .activities{ width: 70%; display: block; margin: 0 auto; background-color: #252525; color: #f2f2f2; padding: 8px; font-size: 2vw; } .activities-section{ margin-top: 40px; margin-bottom: 40px; } #weather-details{ padding: 0 !important; } .three-weather{ background-color:#d4d4d3; padding: 15px; cursor: pointer; border: none; text-align: left; width: 70%; height:50%; margin: 0 auto; animation: display 3s linear; } @keyframes display { 0%{ opacity: 0.2; } 100%{ opacity: 1; } } #activities-details{ background-color:#d4d4d3 ; width: 70%; margin: 0 auto; animation: display 3s linear; } .near-by{ font-size: 2vw; padding: 8px; } .nearby-section{ width: 70%; display: block; margin: 0 auto; background-color: #252525; color: #f2f2f2; } .find{ color: #f2f2f2; padding: 8px; font-size: 2vw; } .find-section{ display: flex; justify-content: space-between; background-color: #252525; width: 70%; margin: 0 auto; } .find-btn{ background-color:rgba(164, 50, 50,0) ; font-size: 2vw; text-align: left; padding: 6px; cursor: pointer; color: #f2f2f2; } .find-btn:hover{ background-color:#a43232; } .display_btn{ display: block; background-color:#d4d4d3 ; width: 100%; margin: 0 auto; font-size: 2vw; text-align: left; padding: 4px; cursor: pointer; } .display_btn:hover{ background-color:rgba(164, 50, 50,0.5); } #about-info .info-right { float: right; width: 50%; min-height: 100%; margin-top: 25px; } #about-info .info-right img { display: block; margin: auto; width: 70%; border-radius: 50%; } /* About Page */ .container { margin: auto; max-width: 1100px; overflow: auto; padding: 0 20px; } #about-info .info-left { float: left; width: 50%; min-height: 100%; } #testimonials { height: 100%; background: url('../images/test-bg.jpg') no-repeat center center/cover; padding-top: 100px; border-radius: 5px; } #testimonials h2 { color: #252525; text-align: center; padding-bottom: 40px; } #testimonials .testimonial img { width: 100px; float: left; margin-right: 20px; border-radius: 50%; } #testimonials .testimonial { padding: 20px; margin-bottom: 40px; opacity: 0.8; } .text { font-size: 20px; } .l-heading { font-size: 30px; line-height: 1.2; color: #252525; } .bg-primary { background: #d4d4d3; color: #333; opacity: 0.8; } /* Footer*/ #main-footer { text-align: center; background: #252525; padding: 20px; color: #f2f2f2; } /*map section*/ /* Always set the map height explicitly to define the size of the div * element that contains the map. */ #map { height: 400px; width: 70%; margin: 0 auto; } /*francis part*/ /*googl search box*/ .pac-card { margin: 10px 10px 0 0; border-radius: 2px 0 0 2px; box-sizing: border-box; -moz-box-sizing: border-box; outline: none; box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3); background-color: #fff; font-family: Roboto; } #pac-container { padding-bottom: 12px; margin-right: 12px; } .pac-controls { display: inline-block; padding: 5px 11px; } .pac-controls label { font-family: Roboto; font-size: 13px; font-weight: 300; } #title { color: #fff; background-color: #4d90fe; font-size: 25px; font-weight: 500; padding: 6px 12px; } #target { width: 345px; } /*francis part*/ @media screen and (max-width: 1024px) { .main-contact{ flex-direction: column; } } .contact-section{ width: 70%; margin: 0 auto 10px auto; padding: 10px; background-color: #d4d4d3; } .contact-info i { margin-right: 20px; font-size: 25px; padding:10px; } .contact-form { max-width: 700px; margin-right: 50px; } .contact-info, .contact-form { flex:1; } .contact-form h1{ text-align: center; font-size: 50px; text-transform: uppercase; margin-bottom: 30px; } .contact-form .text-box { background: #252525; color: #fff; border: none; width: 80%; height: 50px; padding: 12px; margin-bottom: 20px; } .contact-form textarea{ background: #252525; color:#fff; border:none; width: 80%; padding: 12px; font-size: 16px; min-height: 200px; max-height: 400px; resize: vertical; border-radius: 4px; box-shadow: 0 1px 1px #252525; margin-bottom: 20px; opacity: 1; } .contact{ display: flex; flex-direction: column; } .textarea:hover{ outline: none; border: none; } .contact-form .send-btn { float: left; background: #252525; color: #fff; border:none; width: 120px; height: 40px; font-size: 15px; font-weight: 500; text-transform: uppercase; letter-spacing: 2px; border-radius: 4px; cursor: pointer } .contact-form .send-btn:hover { background: #a43232; } .main-contact{ display: flex; }
0.448668
0.086093
.add { height: 100px; } button, input { font-family: inherit; } label { margin-right: 10px; } #forms { margin-bottom: 75px; } #forms input[type='text'] { border: 0; border-bottom: 1px solid var(--secondary-color); width: 50%; padding: 3px; font-family: 'Nunito', sans-serif; font-size: 16px; background-color: var(--primary-color); color: #fff; margin-bottom: 5px; } #albums { margin-top: 20px; margin-bottom: 50px; } #albums a { text-decoration: none; } #albums a:hover { background-color: #0eb165; color: lightgray; } /* <NAME> hasła*/ .modal { display: none; /* Hidden by default */ position: fixed; /* Stay in place */ z-index: 1; /* Sit on top */ padding-top: 100px; /* Location of the box */ left: 0; top: 0; width: 100%; /* Full width */ height: 100%; /* Full height */ overflow: auto; /* Enable scroll if needed */ background-color: rgb(0,0,0); /* Fallback color */ background-color: rgba(0,0,0,0.4); /* Black w/ opacity */ } .modal textarea { width: 100%; height:100px; } .modal button { background-color: #0eb165; width: 20%; float: right; } .modal button:hover { background-color: #00582b; } /* Modal Content */ .modal-content { background-color: #fefefe; color: black; margin: auto; padding: 20px; border: 1px solid #888; width: 30%; text-align: center; } .modal-content input { width: 100%; } /* The Close Button */ .close { color: #aaaaaa; float: right; font-size: 28px; font-weight: bold; } .close:hover, .close:focus { color: #000; text-decoration: none; cursor: pointer; } /*Reszta*/ #userinfo img { width: 200px; height: 200px; border-radius: 50%; } #userinfo input[type='file'] { margin-bottom: 10px; } #addbuttons { justify-content: space-evenly; margin-bottom: 20px; } #addbuttons button { background-color: var(--secondary-color); border-radius: 5%; height: 50px; } @media(max-width: 850px) { #addbuttons { display: block; } #addbuttons button { width: 40%; } }
public/css/homebladestyle.css
.add { height: 100px; } button, input { font-family: inherit; } label { margin-right: 10px; } #forms { margin-bottom: 75px; } #forms input[type='text'] { border: 0; border-bottom: 1px solid var(--secondary-color); width: 50%; padding: 3px; font-family: 'Nunito', sans-serif; font-size: 16px; background-color: var(--primary-color); color: #fff; margin-bottom: 5px; } #albums { margin-top: 20px; margin-bottom: 50px; } #albums a { text-decoration: none; } #albums a:hover { background-color: #0eb165; color: lightgray; } /* <NAME> hasła*/ .modal { display: none; /* Hidden by default */ position: fixed; /* Stay in place */ z-index: 1; /* Sit on top */ padding-top: 100px; /* Location of the box */ left: 0; top: 0; width: 100%; /* Full width */ height: 100%; /* Full height */ overflow: auto; /* Enable scroll if needed */ background-color: rgb(0,0,0); /* Fallback color */ background-color: rgba(0,0,0,0.4); /* Black w/ opacity */ } .modal textarea { width: 100%; height:100px; } .modal button { background-color: #0eb165; width: 20%; float: right; } .modal button:hover { background-color: #00582b; } /* Modal Content */ .modal-content { background-color: #fefefe; color: black; margin: auto; padding: 20px; border: 1px solid #888; width: 30%; text-align: center; } .modal-content input { width: 100%; } /* The Close Button */ .close { color: #aaaaaa; float: right; font-size: 28px; font-weight: bold; } .close:hover, .close:focus { color: #000; text-decoration: none; cursor: pointer; } /*Reszta*/ #userinfo img { width: 200px; height: 200px; border-radius: 50%; } #userinfo input[type='file'] { margin-bottom: 10px; } #addbuttons { justify-content: space-evenly; margin-bottom: 20px; } #addbuttons button { background-color: var(--secondary-color); border-radius: 5%; height: 50px; } @media(max-width: 850px) { #addbuttons { display: block; } #addbuttons button { width: 40%; } }
0.337749
0.077553
@font-face { font-family: 'Raleway'; src: url("../../../fonts/Raleway_v2/raleway-v12-latin-regular.eot"); /* IE9 Compat Modes */ src: local("Raleway"), local("Raleway-Regular"), url("../../../fonts/Raleway_v2/raleway-v12-latin-regular.eot?#iefix") format("embedded-opentype"), url("../../../fonts/Raleway_v2/raleway-v12-latin-regular.woff2") format("woff2"), url("../../../fonts/Raleway_v2/raleway-v12-latin-regular.woff") format("woff"), url("../../../fonts/Raleway_v2/raleway-v12-latin-regular.ttf") format("truetype"), url("../../../fonts/Raleway_v2/raleway-v12-latin-regular.svg#Raleway") format("svg"); /* Legacy iOS */ } /* source-sans-pro-regular - latin */ @font-face { font-family: 'SourceSansPro'; src: url("../../../fonts/SourceSansPro/source-sans-pro-v11-latin-regular.eot"); /* IE9 Compat Modes */ src: local("Source Sans Pro Regular"), local("SourceSansPro-Regular"), url("../../../fonts/SourceSansPro/source-sans-pro-v11-latin-regular.eot?#iefix") format("embedded-opentype"), url("../../../fonts/SourceSansPro/source-sans-pro-v11-latin-regular.woff2") format("woff2"), url("../../../fonts/SourceSansPro/source-sans-pro-v11-latin-regular.woff") format("woff"), url("../../../fonts/SourceSansPro/source-sans-pro-v11-latin-regular.ttf") format("truetype"), url("../../../fonts/SourceSansPro/source-sans-pro-v11-latin-regular.svg#SourceSansPro") format("svg"); /* Legacy iOS */ } /**End police*/ /*** Hello staff custom color ***/ /*// @mixin hs_police { // font-family: Raleway-Black; // src: url("fonts/Raleway/Raleway-Black.tff"); // }*/ /*** Hello staff form element ***/ /*** Hello staff buttons ***/ /*** modal ***/ /*** divider ***/ /*** start range slider ***/ /*** end ***/ /* line 3, ../../../../sass/Front/generale/_layout.scss */ html, body { margin: 0; padding: 0; overflow-x: hidden; } /*** Hello staff positioning ***/ /* taille avec responsivite des police: p , span, label, input, li, button, titre: title_h1, title_h2, title_h3, ... h1, h2, h3 */ /* line 14, ../../../../sass/Front/generale/_default.scss */ label { /*color: #707070;*/ } /* line 18, ../../../../sass/Front/generale/_default.scss */ .title_h2 { color: #707070; font-size: 28px; } /* line 22, ../../../../sass/Front/generale/_default.scss */ .label_create_event { color: #707070; font-size: 18px; } /* End taille avec responsivite des police */ /* line 29, ../../../../sass/Front/generale/_default.scss */ .police_number { font-family: SourceSansPro !important; } @media (max-width: 1840px) { /* line 7, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filter_candidates { padding: 3% 1% !important; } /* line 10, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filter_candidates .slider_jobs { width: 35% !important; } /* line 13, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filter_candidates .slider_jobs .container_btn_slider { width: 95% !important; } /* line 18, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filter_candidates .configuration_filter { width: 64% !important; } /* line 22, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filter_candidates .liste_taux_horaires { justify-content: flex-start; margin-right: -5px; } /* line 26, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filter_candidates .liste_taux_horaires .value_horaires { margin-right: 5px; margin-bottom: 5px; } } @media (max-width: 1700px) { /* line 37, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates .btn_candidat_fiche .loup, .liste_candidates_filter .btn_candidat_fiche .loup { margin-right: 3%; } } @media (max-width: 1580px) { /* line 45, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filter_candidates .slider_jobs { width: 100% !important; margin-bottom: 3%; padding: 2% 0; } /* line 50, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filter_candidates .slider_jobs .container_slider_jobs { height: 100%; width: 70% !important; } /* line 54, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filter_candidates .slider_jobs .container_slider_jobs .post_slider { height: 100%; } /* line 60, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filter_candidates .item_jobs_list .image_slider_jobs_slick { width: 15% !important; margin-top: 1rem; } /* line 65, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filter_candidates .configuration_filter { width: 100% !important; } } /*******************************************************/ @media (min-width: 1301px) and (max-width: 1700px) { /* line 78, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates .personnal_candidates_description .photo_candidates, .liste_candidates_filter .personnal_candidates_description .photo_candidates { width: 3.5vw; height: 3.5vw; } /* line 83, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates .personnal_candidates_description .description_candidates, .liste_candidates_filter .personnal_candidates_description .description_candidates { min-height: 3.5vw; } /* line 86, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates .personnal_candidates_description .description_candidates .name, .liste_candidates_filter .personnal_candidates_description .description_candidates .name { font-size: 15px; } /* line 89, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates .personnal_candidates_description .description_candidates .country, .liste_candidates_filter .personnal_candidates_description .description_candidates .country { font-size: 12px; } /* line 96, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates .evaluations_candidates .title_p_candidates, .liste_candidates_filter .evaluations_candidates .title_p_candidates { font-size: 12px; } /* line 101, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates .evaluations_candidates .description_appreciations .status_appreciation img, .liste_candidates_filter .evaluations_candidates .description_appreciations .status_appreciation img { width: 18px; margin-right: 8px; } /* line 106, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates .evaluations_candidates .description_appreciations .status_appreciation .number, .liste_candidates_filter .evaluations_candidates .description_appreciations .status_appreciation .number { font-size: 16px; } /* line 113, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates .liste_buttons .btn_list_candidates, .liste_candidates_filter .liste_buttons .btn_list_candidates { font-size: 10px; width: 140px; height: 48px; } /* line 121, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .separated { margin: 0 8px; } /* line 124, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .find_candidates .description_jobs .item_jobs_list .title_jobs { font-size: 19px; } /* line 127, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .find_candidates .filtre_candidates, .find_candidates .check_presence { border: 15px solid transparent; } /* line 130, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .find_candidates .btn_find_candidates_white { font-size: 15px; } /* line 133, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .find_candidates .filtre_candidates .title_jobs_candidates, .find_candidates .check_presence .title_jobs_candidates { font-size: 19px; } } @media (min-width: 1301px) and (max-width: 1400px) { /* line 141, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates .personnal_candidates_description .description_candidates .name, .liste_candidates_filter .personnal_candidates_description .description_candidates .name { font-size: 14px; } /* line 145, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates .liste_buttons .btn_list_candidates, .liste_candidates_filter .liste_buttons .btn_list_candidates { width: 135px; height: 45px; padding: 0; } /* line 152, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates .evaluations_candidates .description_appreciations .status_appreciation .number, .liste_candidates_filter .evaluations_candidates .description_appreciations .status_appreciation .number { font-size: 15px; } /* line 156, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates .evaluations_candidates .title_p_candidates, .liste_candidates_filter .evaluations_candidates .title_p_candidates { font-size: 11px; } /* line 162, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .btn_action_candidates { margin-right: 5px; } } @media (max-width: 1185px) { /* line 172, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .find_candidates .find_candidates_form .jobs_candidates { width: 100%; margin-top: 5%; } /* line 176, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .find_candidates .find_candidates_form .slider_jobs { width: 100%; height: 335px; } /* line 181, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .find_candidates .find_candidates_form .jobs_candidates .jobs_proposed, .find_candidates .find_candidates_form .jobs_candidates .presence_confirm { width: calc(50% - 40px); } } @media (max-width: 1300px) { /* line 192, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .personnal_candidates { width: 100%; } /* line 196, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .personnal_candidates_description { justify-content: flex-start; /*width: 30%;*/ } /* line 200, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .personnal_candidates_description .photo_candidates { margin-right: 30px; } /*.evaluations_candidates { width: 20%; }*/ /*.liste_buttons { width: 42%; justify-content: flex-end; }*/ /* line 215, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates_filter { /*.personnal_candidates_description { width: 30%; }*/ /*.evaluations_candidates { width: 20%; }*/ } /* line 216, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates_filter .listes_staff { width: 100% !important; margin-bottom: 5%; } } @media (max-width: 800px) { /* line 230, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filter_candidates { padding: 0 !important; } /* line 233, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filter_candidates .slider_jobs { box-shadow: none; padding: 8% 0; } /* line 239, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filter_candidates .configuration_filter .content_filter .gender_item { width: 100%; margin-bottom: 25px; } /* line 243, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filter_candidates .configuration_filter .content_filter .gender_item .container_gender { display: -webkit-flex; -webkit-justify-content: space-between; -webkit-flex-wrap: wrap; display: flex; justify-content: space-between; flex-wrap: wrap; } /* line 246, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filter_candidates .configuration_filter .content_filter .gender_item .container_gender .list_item_filter { width: 20%; } /* line 251, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filter_candidates .configuration_filter .content_filter .ages_item { width: 100%; margin-bottom: 25px; } /* line 255, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filter_candidates .configuration_filter .content_filter .certifications_item { width: 100%; margin-bottom: 25px; } /* line 259, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filter_candidates .configuration_filter .content_filter .experiences_item { width: 100%; } /* line 263, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filter_candidates .configuration_filter .content_filter .experiences_item .separed_item { margin-bottom: 0; } /* line 267, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filter_candidates .configuration_filter .content_filter .experiences_item .container_exp { display: -webkit-flex; -webkit-justify-content: space-between; -webkit-flex-wrap: wrap; display: flex; justify-content: space-between; flex-wrap: wrap; } /* line 269, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filter_candidates .configuration_filter .content_filter .experiences_item .container_exp .list_item_filter { width: 30%; } /* line 274, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filter_candidates .configuration_filter .content_filter .languages_item { width: 100%; margin-bottom: 25px; } /* line 278, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filter_candidates .configuration_filter .content_filter .languages_item .content_languages .cadres_langues { width: 45%; height: 45px; } /* line 283, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filter_candidates .configuration_filter .content_filter .attributs_item { width: 100%; margin-bottom: 25px; } /* line 287, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filter_candidates .configuration_filter .content_filter .horaires_taux_item { width: 100%; margin-bottom: 25px; } /* line 291, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filter_candidates .configuration_filter .content_filter .horaires_taux_item .liste_taux_horaires { justify-content: space-between; } /* line 294, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filter_candidates .configuration_filter .content_filter .horaires_taux_item .liste_taux_horaires .value_horaires { margin-right: 0; width: 10%; height: 50px; } /* line 305, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates_filter { padding: 3% 1%; } /* line 309, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates_filter .search_candidates .form_item_candidates_search { width: 100%; margin-bottom: 5%; } /* line 313, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates_filter .search_candidates .form_item_candidates_search .loup_search { right: 2rem; } /* line 317, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates_filter .search_candidates .checkox_filter { width: 100%; } /* line 320, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates_filter .search_candidates .checkox_filter .list_item_filter { justify-content: flex-end; } /* line 323, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates_filter .search_candidates .checkox_filter .list_item_filter .title_filter { margin-right: 25px; } } @media (max-width: 885px) { /* line 336, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .find_candidates .find_candidates_form .jobs_candidates { margin-bottom: 2%; } /* line 338, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .find_candidates .find_candidates_form .jobs_candidates .jobs_proposed, .find_candidates .find_candidates_form .jobs_candidates .presence_confirm { width: calc(54% - 40px); } /* line 345, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .find_candidates_form { padding: 0 !important; background-color: #fff !important; } /* line 350, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .find_candidates_form .slider_jobs { width: 95% !important; margin-bottom: 8%; box-shadow: none !important; padding-top: 5%; margin: 0px 2.5%; } /* line 358, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .slider_jobs .container_slider_jobs { height: 100% !important; width: 100%; } /* line 362, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .find_candidates_form .jobs_candidates { width: 94% !important; padding: 0 3% !important; } /* line 366, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .slider_jobs .container_btn_slider { display: none !important; } /* line 369, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .item_jobs_list .image_slider_jobs_slick { margin-top: 1rem; } /* line 372, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .description_jobs .item_jobs_list { width: 90%; border: 15px solid transparent; } /* line 376, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .description_jobs .item_jobs_list:hover { border: 15px solid #d6f5f0; } /* line 379, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .description_jobs .item_jobs_list.active { border: 15px solid #d6f5f0; } /* line 382, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .description_jobs .item_jobs_list .status_jobs { margin-bottom: 1rem; } /* line 386, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filtre_candidates .title_jobs_candidates, .check_presence .title_jobs_candidates { font-size: 20px !important; } /* line 390, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .btn_find_candidates_white { font-size: 16px !important; } /* line 395, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .personnal_candidates_description .photo_candidates { width: 6vw; height: 6vw; margin-right: 1vw; } /* line 401, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .personnal_candidates_description .description_candidates { min-height: 6vw; } /* line 404, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .personnal_candidates_description .description_candidates .name { font-size: 15px; } /* line 406, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .personnal_candidates_description .description_candidates .country { font-size: 13px; } } @media (max-width: 780px) { /*Liste des candidates*/ /* line 415, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates, .liste_candidates_filter { padding: 10% 3% !important; margin: auto; /*.evaluations_candidates { width: 40%; padding: 0 5%; }*/ } /* line 419, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates .candidates, .liste_candidates_filter .candidates { box-shadow: none; padding: inherit; flex-wrap: wrap !important; } /* line 424, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates .personnal_candidates, .liste_candidates_filter .personnal_candidates { margin-bottom: inherit; } /* line 428, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates .liste_buttons, .liste_candidates_filter .liste_buttons { width: 100%; margin-top: 15px; margin-bottom: 20px; } /* line 433, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates .liste_buttons .btn_list_candidates, .liste_candidates_filter .liste_buttons .btn_list_candidates { width: 50%; border-radius: inherit; } /* line 444, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates .icone_responsive_icons_play_one, .liste_candidates .icone_responsive_icons_play_two, .liste_candidates_filter .icone_responsive_icons_play_one, .liste_candidates_filter .icone_responsive_icons_play_two { display: block !important; position: absolute; font-size: 25px; right: 0; width: 20%; cursor: pointer; } /* line 452, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates .click_icone_responsive_icons_play, .liste_candidates_filter .click_icone_responsive_icons_play { transform: rotate(90deg); } /* line 459, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .personnal_candidates_description .photo_candidates { width: 60px; height: 60px; margin-right: 20px; } /* line 465, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .personnal_candidates_description .description_candidates { min-height: 60px; } /* line 470, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .separated { margin: 0 15px; } } @media (max-width: 615px) { /* line 477, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .find_candidates .find_candidates_form .jobs_candidates .jobs_proposed, .find_candidates .find_candidates_form .jobs_candidates .presence_confirm { width: calc(56% - 40px); } } @media (max-width: 500px) { /* line 487, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .find_candidates_form .jobs_candidates .jobs_proposed, .find_candidates_form .jobs_candidates .presence_confirm { width: 100% !important; } /* line 492, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .find_candidates_form .jobs_candidates { width: 100% !important; padding: 0 !important; } /* line 496, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .search_candidates .form_item_candidates_search input { width: 92% !important; } /* line 501, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .personnal_candidates_description .description_candidates { min-height: 13vw; } /* line 504, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .personnal_candidates_description .description_candidates .ages { font-size: 11px; } /* line 507, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .personnal_candidates_description .photo_candidates { width: 13vw; height: 13vw; margin-right: 2.5vw; } /* line 514, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .title_p_candidates { font-size: 70%; } /* line 519, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .evaluations_candidates .description_appreciations .status_appreciation img { width: 16px; } /* line 521, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .evaluations_candidates .description_appreciations .status_appreciation .number { font-size: 16px; } /* line 525, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates .liste_buttons .btn_list_candidates, .liste_candidates_filter .liste_buttons .btn_list_candidates { padding: 0; height: 45px; } } @media (max-width: 380px) { /* line 534, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .item_jobs_list .image_slider_jobs_slick { width: 55% !important; } /*.liste_candidates .evaluations_candidates { width: 46% !important; padding: 0 2% !important; }*/ /* line 541, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .search_candidates .form_item_candidates_search input { width: 90% !important; } /* line 546, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates .liste_buttons .btn_list_candidates, .liste_candidates_filter .liste_buttons .btn_list_candidates { font-size: 11px; } /* line 551, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .btn_candidat_fiche .loup { margin-right: 2vw; } }
public/css/Front/agency/Future_event/find_candidates_responsive.css
@font-face { font-family: 'Raleway'; src: url("../../../fonts/Raleway_v2/raleway-v12-latin-regular.eot"); /* IE9 Compat Modes */ src: local("Raleway"), local("Raleway-Regular"), url("../../../fonts/Raleway_v2/raleway-v12-latin-regular.eot?#iefix") format("embedded-opentype"), url("../../../fonts/Raleway_v2/raleway-v12-latin-regular.woff2") format("woff2"), url("../../../fonts/Raleway_v2/raleway-v12-latin-regular.woff") format("woff"), url("../../../fonts/Raleway_v2/raleway-v12-latin-regular.ttf") format("truetype"), url("../../../fonts/Raleway_v2/raleway-v12-latin-regular.svg#Raleway") format("svg"); /* Legacy iOS */ } /* source-sans-pro-regular - latin */ @font-face { font-family: 'SourceSansPro'; src: url("../../../fonts/SourceSansPro/source-sans-pro-v11-latin-regular.eot"); /* IE9 Compat Modes */ src: local("Source Sans Pro Regular"), local("SourceSansPro-Regular"), url("../../../fonts/SourceSansPro/source-sans-pro-v11-latin-regular.eot?#iefix") format("embedded-opentype"), url("../../../fonts/SourceSansPro/source-sans-pro-v11-latin-regular.woff2") format("woff2"), url("../../../fonts/SourceSansPro/source-sans-pro-v11-latin-regular.woff") format("woff"), url("../../../fonts/SourceSansPro/source-sans-pro-v11-latin-regular.ttf") format("truetype"), url("../../../fonts/SourceSansPro/source-sans-pro-v11-latin-regular.svg#SourceSansPro") format("svg"); /* Legacy iOS */ } /**End police*/ /*** Hello staff custom color ***/ /*// @mixin hs_police { // font-family: Raleway-Black; // src: url("fonts/Raleway/Raleway-Black.tff"); // }*/ /*** Hello staff form element ***/ /*** Hello staff buttons ***/ /*** modal ***/ /*** divider ***/ /*** start range slider ***/ /*** end ***/ /* line 3, ../../../../sass/Front/generale/_layout.scss */ html, body { margin: 0; padding: 0; overflow-x: hidden; } /*** Hello staff positioning ***/ /* taille avec responsivite des police: p , span, label, input, li, button, titre: title_h1, title_h2, title_h3, ... h1, h2, h3 */ /* line 14, ../../../../sass/Front/generale/_default.scss */ label { /*color: #707070;*/ } /* line 18, ../../../../sass/Front/generale/_default.scss */ .title_h2 { color: #707070; font-size: 28px; } /* line 22, ../../../../sass/Front/generale/_default.scss */ .label_create_event { color: #707070; font-size: 18px; } /* End taille avec responsivite des police */ /* line 29, ../../../../sass/Front/generale/_default.scss */ .police_number { font-family: SourceSansPro !important; } @media (max-width: 1840px) { /* line 7, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filter_candidates { padding: 3% 1% !important; } /* line 10, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filter_candidates .slider_jobs { width: 35% !important; } /* line 13, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filter_candidates .slider_jobs .container_btn_slider { width: 95% !important; } /* line 18, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filter_candidates .configuration_filter { width: 64% !important; } /* line 22, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filter_candidates .liste_taux_horaires { justify-content: flex-start; margin-right: -5px; } /* line 26, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filter_candidates .liste_taux_horaires .value_horaires { margin-right: 5px; margin-bottom: 5px; } } @media (max-width: 1700px) { /* line 37, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates .btn_candidat_fiche .loup, .liste_candidates_filter .btn_candidat_fiche .loup { margin-right: 3%; } } @media (max-width: 1580px) { /* line 45, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filter_candidates .slider_jobs { width: 100% !important; margin-bottom: 3%; padding: 2% 0; } /* line 50, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filter_candidates .slider_jobs .container_slider_jobs { height: 100%; width: 70% !important; } /* line 54, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filter_candidates .slider_jobs .container_slider_jobs .post_slider { height: 100%; } /* line 60, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filter_candidates .item_jobs_list .image_slider_jobs_slick { width: 15% !important; margin-top: 1rem; } /* line 65, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filter_candidates .configuration_filter { width: 100% !important; } } /*******************************************************/ @media (min-width: 1301px) and (max-width: 1700px) { /* line 78, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates .personnal_candidates_description .photo_candidates, .liste_candidates_filter .personnal_candidates_description .photo_candidates { width: 3.5vw; height: 3.5vw; } /* line 83, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates .personnal_candidates_description .description_candidates, .liste_candidates_filter .personnal_candidates_description .description_candidates { min-height: 3.5vw; } /* line 86, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates .personnal_candidates_description .description_candidates .name, .liste_candidates_filter .personnal_candidates_description .description_candidates .name { font-size: 15px; } /* line 89, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates .personnal_candidates_description .description_candidates .country, .liste_candidates_filter .personnal_candidates_description .description_candidates .country { font-size: 12px; } /* line 96, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates .evaluations_candidates .title_p_candidates, .liste_candidates_filter .evaluations_candidates .title_p_candidates { font-size: 12px; } /* line 101, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates .evaluations_candidates .description_appreciations .status_appreciation img, .liste_candidates_filter .evaluations_candidates .description_appreciations .status_appreciation img { width: 18px; margin-right: 8px; } /* line 106, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates .evaluations_candidates .description_appreciations .status_appreciation .number, .liste_candidates_filter .evaluations_candidates .description_appreciations .status_appreciation .number { font-size: 16px; } /* line 113, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates .liste_buttons .btn_list_candidates, .liste_candidates_filter .liste_buttons .btn_list_candidates { font-size: 10px; width: 140px; height: 48px; } /* line 121, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .separated { margin: 0 8px; } /* line 124, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .find_candidates .description_jobs .item_jobs_list .title_jobs { font-size: 19px; } /* line 127, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .find_candidates .filtre_candidates, .find_candidates .check_presence { border: 15px solid transparent; } /* line 130, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .find_candidates .btn_find_candidates_white { font-size: 15px; } /* line 133, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .find_candidates .filtre_candidates .title_jobs_candidates, .find_candidates .check_presence .title_jobs_candidates { font-size: 19px; } } @media (min-width: 1301px) and (max-width: 1400px) { /* line 141, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates .personnal_candidates_description .description_candidates .name, .liste_candidates_filter .personnal_candidates_description .description_candidates .name { font-size: 14px; } /* line 145, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates .liste_buttons .btn_list_candidates, .liste_candidates_filter .liste_buttons .btn_list_candidates { width: 135px; height: 45px; padding: 0; } /* line 152, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates .evaluations_candidates .description_appreciations .status_appreciation .number, .liste_candidates_filter .evaluations_candidates .description_appreciations .status_appreciation .number { font-size: 15px; } /* line 156, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates .evaluations_candidates .title_p_candidates, .liste_candidates_filter .evaluations_candidates .title_p_candidates { font-size: 11px; } /* line 162, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .btn_action_candidates { margin-right: 5px; } } @media (max-width: 1185px) { /* line 172, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .find_candidates .find_candidates_form .jobs_candidates { width: 100%; margin-top: 5%; } /* line 176, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .find_candidates .find_candidates_form .slider_jobs { width: 100%; height: 335px; } /* line 181, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .find_candidates .find_candidates_form .jobs_candidates .jobs_proposed, .find_candidates .find_candidates_form .jobs_candidates .presence_confirm { width: calc(50% - 40px); } } @media (max-width: 1300px) { /* line 192, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .personnal_candidates { width: 100%; } /* line 196, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .personnal_candidates_description { justify-content: flex-start; /*width: 30%;*/ } /* line 200, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .personnal_candidates_description .photo_candidates { margin-right: 30px; } /*.evaluations_candidates { width: 20%; }*/ /*.liste_buttons { width: 42%; justify-content: flex-end; }*/ /* line 215, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates_filter { /*.personnal_candidates_description { width: 30%; }*/ /*.evaluations_candidates { width: 20%; }*/ } /* line 216, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates_filter .listes_staff { width: 100% !important; margin-bottom: 5%; } } @media (max-width: 800px) { /* line 230, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filter_candidates { padding: 0 !important; } /* line 233, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filter_candidates .slider_jobs { box-shadow: none; padding: 8% 0; } /* line 239, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filter_candidates .configuration_filter .content_filter .gender_item { width: 100%; margin-bottom: 25px; } /* line 243, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filter_candidates .configuration_filter .content_filter .gender_item .container_gender { display: -webkit-flex; -webkit-justify-content: space-between; -webkit-flex-wrap: wrap; display: flex; justify-content: space-between; flex-wrap: wrap; } /* line 246, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filter_candidates .configuration_filter .content_filter .gender_item .container_gender .list_item_filter { width: 20%; } /* line 251, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filter_candidates .configuration_filter .content_filter .ages_item { width: 100%; margin-bottom: 25px; } /* line 255, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filter_candidates .configuration_filter .content_filter .certifications_item { width: 100%; margin-bottom: 25px; } /* line 259, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filter_candidates .configuration_filter .content_filter .experiences_item { width: 100%; } /* line 263, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filter_candidates .configuration_filter .content_filter .experiences_item .separed_item { margin-bottom: 0; } /* line 267, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filter_candidates .configuration_filter .content_filter .experiences_item .container_exp { display: -webkit-flex; -webkit-justify-content: space-between; -webkit-flex-wrap: wrap; display: flex; justify-content: space-between; flex-wrap: wrap; } /* line 269, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filter_candidates .configuration_filter .content_filter .experiences_item .container_exp .list_item_filter { width: 30%; } /* line 274, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filter_candidates .configuration_filter .content_filter .languages_item { width: 100%; margin-bottom: 25px; } /* line 278, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filter_candidates .configuration_filter .content_filter .languages_item .content_languages .cadres_langues { width: 45%; height: 45px; } /* line 283, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filter_candidates .configuration_filter .content_filter .attributs_item { width: 100%; margin-bottom: 25px; } /* line 287, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filter_candidates .configuration_filter .content_filter .horaires_taux_item { width: 100%; margin-bottom: 25px; } /* line 291, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filter_candidates .configuration_filter .content_filter .horaires_taux_item .liste_taux_horaires { justify-content: space-between; } /* line 294, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filter_candidates .configuration_filter .content_filter .horaires_taux_item .liste_taux_horaires .value_horaires { margin-right: 0; width: 10%; height: 50px; } /* line 305, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates_filter { padding: 3% 1%; } /* line 309, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates_filter .search_candidates .form_item_candidates_search { width: 100%; margin-bottom: 5%; } /* line 313, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates_filter .search_candidates .form_item_candidates_search .loup_search { right: 2rem; } /* line 317, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates_filter .search_candidates .checkox_filter { width: 100%; } /* line 320, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates_filter .search_candidates .checkox_filter .list_item_filter { justify-content: flex-end; } /* line 323, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates_filter .search_candidates .checkox_filter .list_item_filter .title_filter { margin-right: 25px; } } @media (max-width: 885px) { /* line 336, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .find_candidates .find_candidates_form .jobs_candidates { margin-bottom: 2%; } /* line 338, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .find_candidates .find_candidates_form .jobs_candidates .jobs_proposed, .find_candidates .find_candidates_form .jobs_candidates .presence_confirm { width: calc(54% - 40px); } /* line 345, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .find_candidates_form { padding: 0 !important; background-color: #fff !important; } /* line 350, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .find_candidates_form .slider_jobs { width: 95% !important; margin-bottom: 8%; box-shadow: none !important; padding-top: 5%; margin: 0px 2.5%; } /* line 358, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .slider_jobs .container_slider_jobs { height: 100% !important; width: 100%; } /* line 362, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .find_candidates_form .jobs_candidates { width: 94% !important; padding: 0 3% !important; } /* line 366, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .slider_jobs .container_btn_slider { display: none !important; } /* line 369, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .item_jobs_list .image_slider_jobs_slick { margin-top: 1rem; } /* line 372, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .description_jobs .item_jobs_list { width: 90%; border: 15px solid transparent; } /* line 376, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .description_jobs .item_jobs_list:hover { border: 15px solid #d6f5f0; } /* line 379, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .description_jobs .item_jobs_list.active { border: 15px solid #d6f5f0; } /* line 382, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .description_jobs .item_jobs_list .status_jobs { margin-bottom: 1rem; } /* line 386, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .filtre_candidates .title_jobs_candidates, .check_presence .title_jobs_candidates { font-size: 20px !important; } /* line 390, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .btn_find_candidates_white { font-size: 16px !important; } /* line 395, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .personnal_candidates_description .photo_candidates { width: 6vw; height: 6vw; margin-right: 1vw; } /* line 401, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .personnal_candidates_description .description_candidates { min-height: 6vw; } /* line 404, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .personnal_candidates_description .description_candidates .name { font-size: 15px; } /* line 406, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .personnal_candidates_description .description_candidates .country { font-size: 13px; } } @media (max-width: 780px) { /*Liste des candidates*/ /* line 415, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates, .liste_candidates_filter { padding: 10% 3% !important; margin: auto; /*.evaluations_candidates { width: 40%; padding: 0 5%; }*/ } /* line 419, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates .candidates, .liste_candidates_filter .candidates { box-shadow: none; padding: inherit; flex-wrap: wrap !important; } /* line 424, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates .personnal_candidates, .liste_candidates_filter .personnal_candidates { margin-bottom: inherit; } /* line 428, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates .liste_buttons, .liste_candidates_filter .liste_buttons { width: 100%; margin-top: 15px; margin-bottom: 20px; } /* line 433, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates .liste_buttons .btn_list_candidates, .liste_candidates_filter .liste_buttons .btn_list_candidates { width: 50%; border-radius: inherit; } /* line 444, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates .icone_responsive_icons_play_one, .liste_candidates .icone_responsive_icons_play_two, .liste_candidates_filter .icone_responsive_icons_play_one, .liste_candidates_filter .icone_responsive_icons_play_two { display: block !important; position: absolute; font-size: 25px; right: 0; width: 20%; cursor: pointer; } /* line 452, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates .click_icone_responsive_icons_play, .liste_candidates_filter .click_icone_responsive_icons_play { transform: rotate(90deg); } /* line 459, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .personnal_candidates_description .photo_candidates { width: 60px; height: 60px; margin-right: 20px; } /* line 465, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .personnal_candidates_description .description_candidates { min-height: 60px; } /* line 470, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .separated { margin: 0 15px; } } @media (max-width: 615px) { /* line 477, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .find_candidates .find_candidates_form .jobs_candidates .jobs_proposed, .find_candidates .find_candidates_form .jobs_candidates .presence_confirm { width: calc(56% - 40px); } } @media (max-width: 500px) { /* line 487, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .find_candidates_form .jobs_candidates .jobs_proposed, .find_candidates_form .jobs_candidates .presence_confirm { width: 100% !important; } /* line 492, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .find_candidates_form .jobs_candidates { width: 100% !important; padding: 0 !important; } /* line 496, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .search_candidates .form_item_candidates_search input { width: 92% !important; } /* line 501, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .personnal_candidates_description .description_candidates { min-height: 13vw; } /* line 504, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .personnal_candidates_description .description_candidates .ages { font-size: 11px; } /* line 507, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .personnal_candidates_description .photo_candidates { width: 13vw; height: 13vw; margin-right: 2.5vw; } /* line 514, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .title_p_candidates { font-size: 70%; } /* line 519, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .evaluations_candidates .description_appreciations .status_appreciation img { width: 16px; } /* line 521, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .evaluations_candidates .description_appreciations .status_appreciation .number { font-size: 16px; } /* line 525, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates .liste_buttons .btn_list_candidates, .liste_candidates_filter .liste_buttons .btn_list_candidates { padding: 0; height: 45px; } } @media (max-width: 380px) { /* line 534, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .item_jobs_list .image_slider_jobs_slick { width: 55% !important; } /*.liste_candidates .evaluations_candidates { width: 46% !important; padding: 0 2% !important; }*/ /* line 541, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .search_candidates .form_item_candidates_search input { width: 90% !important; } /* line 546, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .liste_candidates .liste_buttons .btn_list_candidates, .liste_candidates_filter .liste_buttons .btn_list_candidates { font-size: 11px; } /* line 551, ../../../../sass/Front/agency/Future_event/find_candidates_responsive.scss */ .btn_candidat_fiche .loup { margin-right: 2vw; } }
0.23855
0.038322
@font-face { font-family: 'Source Sans Pro'; src: url('../fonts/sourcesanspro-regular-webfont.woff2') format('woff2'), url('../fonts/sourcesanspro-regular-webfont.woff') format('woff'); font-weight: normal; font-style: normal; } @font-face { font-family: 'Open Sans'; src: url('../fonts/opensans-regular-webfont.woff2') format('woff2'), url('../fonts/opensans-regular-webfont.woff') format('woff'); font-weight: normal; font-style: normal; } h1,h2,h3,h4,h5,h6 { font-family: 'Source Sans Pro', sans-serif; } body,input { font-family: 'Open Sans', sans-serif; } .jumbotron-fluid > .container { text-align: center; } .jumbotron-fluid { background: #4ECDC4; background: -webkit-linear-gradient(to right, #556270, #4ECDC4); background: linear-gradient(to right, #556270, #4ECDC4); } code { padding: .2rem .5rem; margin: 0 .2rem; font-size: 90%; white-space: nowrap; background: #F1F1F1; border: 1px solid #E1E1E1; border-radius: 4px; } pre > code { display: block; padding: 1rem 1.5rem; white-space: pre; } input[type="email"], input[type="number"], input[type="search"], input[type="text"], input[type="tel"], input[type="url"], input[type="password"], textarea, select { height: 38px; padding: 6px 10px; background-color: #fff; border: 1px solid #D1D1D1; border-radius: 4px; box-shadow: none; box-sizing: border-box } input[type="email"], input[type="number"], input[type="search"], input[type="text"], input[type="tel"], input[type="url"], input[type="password"], textarea { -webkit-appearance: none; -moz-appearance: none; appearance: none } textarea { min-height: 65px; padding-top: 6px; padding-bottom: 6px } input[type="email"]:focus, input[type="number"]:focus, input[type="search"]:focus, input[type="text"]:focus, input[type="tel"]:focus, input[type="url"]:focus, input[type="password"]:focus, textarea:focus, select:focus { border: 1px solid #33C3F0; outline: 0 } label, legend { display: block; margin-bottom: .5rem; font-weight: 600 } fieldset { padding: 0; border-width: 0 } input[type="checkbox"], input[type="radio"] { display: inline } label>.label-body { display: inline-block; margin-left: .5rem; font-weight: normal } .button, button, input[type="submit"], input[type="reset"], input[type="button"] { display: inline-block; height: 38px; padding: 0 30px; color: #555; text-align: center; font-size: 11px; font-weight: 600; line-height: 38px; letter-spacing: .1rem; text-transform: uppercase; text-decoration: none; white-space: nowrap; background-color: transparent; border-radius: 4px; border: 1px solid #bbb; cursor: pointer; box-sizing: border-box } .button:hover, button:hover, input[type="submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover, .button:focus, button:focus, input[type="submit"]:focus, input[type="reset"]:focus, input[type="button"]:focus { color: #333; border-color: #888; outline: 0 } .button.button-primary, button.button-primary, input[type="submit"].button-primary, input[type="reset"].button-primary, input[type="button"].button-primary { color: #FFF; background-color: #33C3F0; border-color: #33C3F0 } .button.button-primary:hover, button.button-primary:hover, input[type="submit"].button-primary:hover, input[type="reset"].button-primary:hover, input[type="button"].button-primary:hover, .button.button-primary:focus, button.button-primary:focus, input[type="submit"].button-primary:focus, input[type="reset"].button-primary:focus, input[type="button"].button-primary:focus { color: #FFF; background-color: #1EAEDB; border-color: #1EAEDB } .hljs-name { color:#01a3a3; } .hljs-tag,.hljs-meta { color:#778899; } .hljs, .hljs-subst { color: #444 } .hljs-comment { color: #888888 } .hljs-keyword, .hljs-attribute, .hljs-selector-tag, .hljs-meta-keyword, .hljs-doctag, .hljs-name { font-weight: bold } .hljs-type, .hljs-string, .hljs-number, .hljs-selector-id, .hljs-selector-class, .hljs-quote, .hljs-template-tag, .hljs-deletion { color: #880000 } .hljs-title, .hljs-section { color: #880000; font-weight: bold } .hljs-regexp, .hljs-symbol, .hljs-variable, .hljs-template-variable, .hljs-link, .hljs-selector-attr, .hljs-selector-pseudo { color: #BC6060 } .hljs-literal { color: #62bcbc } .hljs-built_in, .hljs-bullet, .hljs-code, .hljs-addition { color: #25c6c6 } .hljs-meta-string { color: #4d99bf } .hljs-emphasis { font-style: italic } .hljs-strong { font-weight: bold }
static/css/main.css
@font-face { font-family: 'Source Sans Pro'; src: url('../fonts/sourcesanspro-regular-webfont.woff2') format('woff2'), url('../fonts/sourcesanspro-regular-webfont.woff') format('woff'); font-weight: normal; font-style: normal; } @font-face { font-family: 'Open Sans'; src: url('../fonts/opensans-regular-webfont.woff2') format('woff2'), url('../fonts/opensans-regular-webfont.woff') format('woff'); font-weight: normal; font-style: normal; } h1,h2,h3,h4,h5,h6 { font-family: 'Source Sans Pro', sans-serif; } body,input { font-family: 'Open Sans', sans-serif; } .jumbotron-fluid > .container { text-align: center; } .jumbotron-fluid { background: #4ECDC4; background: -webkit-linear-gradient(to right, #556270, #4ECDC4); background: linear-gradient(to right, #556270, #4ECDC4); } code { padding: .2rem .5rem; margin: 0 .2rem; font-size: 90%; white-space: nowrap; background: #F1F1F1; border: 1px solid #E1E1E1; border-radius: 4px; } pre > code { display: block; padding: 1rem 1.5rem; white-space: pre; } input[type="email"], input[type="number"], input[type="search"], input[type="text"], input[type="tel"], input[type="url"], input[type="password"], textarea, select { height: 38px; padding: 6px 10px; background-color: #fff; border: 1px solid #D1D1D1; border-radius: 4px; box-shadow: none; box-sizing: border-box } input[type="email"], input[type="number"], input[type="search"], input[type="text"], input[type="tel"], input[type="url"], input[type="password"], textarea { -webkit-appearance: none; -moz-appearance: none; appearance: none } textarea { min-height: 65px; padding-top: 6px; padding-bottom: 6px } input[type="email"]:focus, input[type="number"]:focus, input[type="search"]:focus, input[type="text"]:focus, input[type="tel"]:focus, input[type="url"]:focus, input[type="password"]:focus, textarea:focus, select:focus { border: 1px solid #33C3F0; outline: 0 } label, legend { display: block; margin-bottom: .5rem; font-weight: 600 } fieldset { padding: 0; border-width: 0 } input[type="checkbox"], input[type="radio"] { display: inline } label>.label-body { display: inline-block; margin-left: .5rem; font-weight: normal } .button, button, input[type="submit"], input[type="reset"], input[type="button"] { display: inline-block; height: 38px; padding: 0 30px; color: #555; text-align: center; font-size: 11px; font-weight: 600; line-height: 38px; letter-spacing: .1rem; text-transform: uppercase; text-decoration: none; white-space: nowrap; background-color: transparent; border-radius: 4px; border: 1px solid #bbb; cursor: pointer; box-sizing: border-box } .button:hover, button:hover, input[type="submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover, .button:focus, button:focus, input[type="submit"]:focus, input[type="reset"]:focus, input[type="button"]:focus { color: #333; border-color: #888; outline: 0 } .button.button-primary, button.button-primary, input[type="submit"].button-primary, input[type="reset"].button-primary, input[type="button"].button-primary { color: #FFF; background-color: #33C3F0; border-color: #33C3F0 } .button.button-primary:hover, button.button-primary:hover, input[type="submit"].button-primary:hover, input[type="reset"].button-primary:hover, input[type="button"].button-primary:hover, .button.button-primary:focus, button.button-primary:focus, input[type="submit"].button-primary:focus, input[type="reset"].button-primary:focus, input[type="button"].button-primary:focus { color: #FFF; background-color: #1EAEDB; border-color: #1EAEDB } .hljs-name { color:#01a3a3; } .hljs-tag,.hljs-meta { color:#778899; } .hljs, .hljs-subst { color: #444 } .hljs-comment { color: #888888 } .hljs-keyword, .hljs-attribute, .hljs-selector-tag, .hljs-meta-keyword, .hljs-doctag, .hljs-name { font-weight: bold } .hljs-type, .hljs-string, .hljs-number, .hljs-selector-id, .hljs-selector-class, .hljs-quote, .hljs-template-tag, .hljs-deletion { color: #880000 } .hljs-title, .hljs-section { color: #880000; font-weight: bold } .hljs-regexp, .hljs-symbol, .hljs-variable, .hljs-template-variable, .hljs-link, .hljs-selector-attr, .hljs-selector-pseudo { color: #BC6060 } .hljs-literal { color: #62bcbc } .hljs-built_in, .hljs-bullet, .hljs-code, .hljs-addition { color: #25c6c6 } .hljs-meta-string { color: #4d99bf } .hljs-emphasis { font-style: italic } .hljs-strong { font-weight: bold }
0.323487
0.081119
main .related-container .default-content-wrapper { text-align: center; } main .related-wrapper { max-width: 1100px; text-align: center; } main .related { scroll-snap-type: x mandatory; overflow-x: scroll; scroll-behavior: smooth; padding-bottom: 20px; flex-flow: row nowrap; } main .related > div { flex-shrink: 0; scroll-snap-align: start; position: relative; } .related.cards .cards-card { width: calc(100% / 5 * 4); max-width: 300px; height: auto; min-height: 120px; } .related.cards .cards-card > a { display: flex; height: calc(100% - 40px); flex-flow: column; padding: 20px; justify-content: left; } .related .cards-card h2, .related .cards-card h3, .related .cards-card h4 { margin-top: 0; margin-left: 42px; font-size: 24px; color: var(--fg-color-dark-blue); } .related .cards-card.no-image h2, .related .cards-card.no-image h3, .related .cards-card.no-image h4 { margin-left: 0; } .related.cards .cards-card p { font-size: 14px; } .related.cards .cards-card p:first-child { position: absolute; margin: 0; } .related.cards .cards-card p:first-child img { width: 30px; height: 30px; } .related.cards .cards-card p.related-view-content { margin: 10px 0; width: 100%; vertical-align: bottom; flex-grow: 1; color: var(--fg-color-link); font-size: 16px; font-weight: 800; } .related.cards .cards-card p.related-view-content::before { content: "View Content ❯"; position: absolute; bottom: 20px; } main .related::-webkit-scrollbar { width: 5px; height: 8px; background-color: #eee; /* or add it to the track */ } main .related::-webkit-scrollbar-thumb { background: #999; } main .related.cards-single::-webkit-scrollbar { display: none; } @media (min-width: 600px) { .related.cards .cards-card { width: calc(100% / 2); } } @media (min-width: 900px) { main .related > div { width: calc(100% / 3); } .related.cards.cards-fifty-fifty .cards-card { width: calc(50% - 10px); max-width: unset; } } @media (min-width: 1200px) { main .related.cards:not(.cards-fifty-fifty,.cards.cards-single) .cards-card { width: calc((100% / 3) - 14px); } } /* theme-specific styles */ .haematology .related .cards-card h2, .haematology .related .cards-card h3, .haematology .related .cards-card h4 { color: var(--graphite-100); } .haematology .related.cards .cards-card p.related-view-content { color: var(--magenta-100); }
blocks/related/related.css
main .related-container .default-content-wrapper { text-align: center; } main .related-wrapper { max-width: 1100px; text-align: center; } main .related { scroll-snap-type: x mandatory; overflow-x: scroll; scroll-behavior: smooth; padding-bottom: 20px; flex-flow: row nowrap; } main .related > div { flex-shrink: 0; scroll-snap-align: start; position: relative; } .related.cards .cards-card { width: calc(100% / 5 * 4); max-width: 300px; height: auto; min-height: 120px; } .related.cards .cards-card > a { display: flex; height: calc(100% - 40px); flex-flow: column; padding: 20px; justify-content: left; } .related .cards-card h2, .related .cards-card h3, .related .cards-card h4 { margin-top: 0; margin-left: 42px; font-size: 24px; color: var(--fg-color-dark-blue); } .related .cards-card.no-image h2, .related .cards-card.no-image h3, .related .cards-card.no-image h4 { margin-left: 0; } .related.cards .cards-card p { font-size: 14px; } .related.cards .cards-card p:first-child { position: absolute; margin: 0; } .related.cards .cards-card p:first-child img { width: 30px; height: 30px; } .related.cards .cards-card p.related-view-content { margin: 10px 0; width: 100%; vertical-align: bottom; flex-grow: 1; color: var(--fg-color-link); font-size: 16px; font-weight: 800; } .related.cards .cards-card p.related-view-content::before { content: "View Content ❯"; position: absolute; bottom: 20px; } main .related::-webkit-scrollbar { width: 5px; height: 8px; background-color: #eee; /* or add it to the track */ } main .related::-webkit-scrollbar-thumb { background: #999; } main .related.cards-single::-webkit-scrollbar { display: none; } @media (min-width: 600px) { .related.cards .cards-card { width: calc(100% / 2); } } @media (min-width: 900px) { main .related > div { width: calc(100% / 3); } .related.cards.cards-fifty-fifty .cards-card { width: calc(50% - 10px); max-width: unset; } } @media (min-width: 1200px) { main .related.cards:not(.cards-fifty-fifty,.cards.cards-single) .cards-card { width: calc((100% / 3) - 14px); } } /* theme-specific styles */ .haematology .related .cards-card h2, .haematology .related .cards-card h3, .haematology .related .cards-card h4 { color: var(--graphite-100); } .haematology .related.cards .cards-card p.related-view-content { color: var(--magenta-100); }
0.429429
0.049497
@media only screen and ( min-width: 961px ) and ( max-width: 1183px ){ #sharebox {display:none} } @media only screen and ( max-width: 960px ) { img, video, object { max-width: 100%; height: auto;} #sharebox {display:none} .footer-menu, #bottomfooter{width:auto} } @media only screen and ( min-width: 768px ) and ( max-width: 960px ) { #wrapper {width: 748px} /* Header */ #logoleft {float: none; margin: 6px auto; } #logoright {float: none; margin: 0px auto;} #header3-1-left-ticker { max-width: 430px; } /* Menu */ #menu2 {width: auto;} #menu3 {width: auto;} #menu2 li a, #menu2 li a:link, #menu2 li a:visited {font-size: 11px;} /* Featured Area */ #feat {width: 440px;} #feat img {height: auto;} #featsmall {float: none; width: auto;} .featbig img {float: none;} .featbig h2 {font-size: 18px; min-height: auto !important; } #featbig-author {float: right; margin-top: -16px;} #left-insidebar {display: inline-block; width: 444px; margin-left: -4px; } .thumbnail-div { float: none; height: auto; width: auto;} .home-post-wrap {width: 140px; height: auto;margin-right: 0; margin-left: 8px; } .home-post-wrap h2 {width: auto;} #example {height: 472px;} #featgalsliderp { margin: 5px 0px; } .slides_container div.slide {height: 442px;} #slides .next, #slides .prev {top: 450px;} /* Blocks */ #colorcontent { margin: 0 auto; width: 660px; } #colorcontent_left {float: none; margin: 0 auto; width: 660px; margin-bottom: 10px; border-bottom: 1px dotted #CCCCCC; border-right: 0px; } #colorcontentwrap { float: left; border-bottom: 0px; margin-right: 5px; width: 215px; text-align: center; } #colorcontentwrap h3 { font-size: 16px; line-height: 1.2; text-align: left; } #colorcontentwrap h2 {text-align: left;} #colorcontentwrap p {text-align: left;} #colorcontentwrap img { float: none; } #colorcontent_right {float: none; margin: 0 auto; width: 660px; padding: 0px; } #colorcontent_right_1 { width: 400px;} #colorcontent_right_2 { width: 240px;} #colorcontentwrap3 h2 { margin-bottom: 5px;} #colorcontentwrap4 h2 { font: 400 14px "georgia",Arial,Sans-Serif !important; } #content {float: none; padding: 0px; margin: 0 auto; } #sidebar { width: 100%;} /* Sidebar */ #aside { width: 640px; margin: 20px auto 0; float: none; } .section {width: 310px; margin-right: 10px; float: left; } /* Footer */ #footerwrapper1{ width: 748px; } #footerwrapper1 #sidebar1 , #footerwrapper1 #sidebar2 { width: 100%; text-align: center;} #btt {margin-left: 20px; } /* Single */ .single #content { width: auto; } #related { float: none; width: auto;} /* archive category tags */ .archive #content { width: auto !important; } .archive #feat { width: auto; } .archive #feat img { float: left; margin-right: 5px; } .archive #colorcontentwrap4 { width: auto;} } @media only screen and ( max-width: 767px ) { .menu-header{ display:none } #mobile-menu{ clear: both; display: block; text-align: center; } #wrapper { width: 460px; } /* Header */ #topheaderbar { border-bottom: 0px; } #topheaderbar-l , #topheaderbar-r {margin-top: -5px;} #logoleft {float: none; margin: 6px auto; } #logoright {float: none; margin: 0px auto; width: auto;} #logoright-left { display: none;} #logoright-right {float: none; width: auto;} #logoright-right-search { width: 310px; margin: 0 auto} #logoright-right-trending { width: auto; } #header3-1-left-ticker { max-width: 460px; float: none; } #header3-1 { border-bottom: 1px solid #A8A8A8} #header3-1-left {float: none;} #header3-1-right {float: none; width: 220px; margin: 5px auto 0; } /* Menu */ #menu2 {width: auto; display: none; } #menu3 {width: auto; display: none; } .responsivemenu { display: block; margin: 0 auto; width: 400px; padding: 10px;} .responsivemenu select {display:inline-block; width: 400px;} /* Featured Area */ #feat { display: inline-block; float: none; width: 460px;} #featgal {float: none; } #featbig { border-right: 0px dotted #CCCCCC; float: none; padding: 0px;} #featsmall {float: none; width: auto;} .featbig img {float: none;} .featbig h2 {font: 400 22px/1.13em "georgia",Arial,Sans-Serif;} #left-insidebar {display: inline-block; width: 460px; margin-left: -4px; } .thumbnail-div { float: none; height: auto; width: auto;} .home-post-wrap {width: 145px; height: auto;margin-right: 0; margin-left: 8px; } .home-post-wrap h2 {width: auto;} #featgal { margin: 5px auto 0; } #colorcontent_left {float: none; margin: 0 auto; width: auto; margin-bottom: 10px; border-right: 0px; padding:0px; } #colorcontent_right {float: none; width: 460px; padding: 0px; } #content {width: auto; float: none;} #colorcontentblock {display: block;} #colorcontent_right_1 { padding: 0 6px 0 0; width: 260px;} #colorcontent_right_2 { width: 185px;} #colorcontentwrap4 { margin: 6px 5px 0 7px; width: 140px;} #colorcontentwrap4 h2 { font: 400 14px "georgia",Arial,Sans-Serif !important; } #coloredblock4 { display: inline-block;} #coloredblock5 {float: none; width: auto;} #colorcontentwrap5 {text-align: center;} #colorcontentwrap5 h2 {text-align: left;} #colorcontentwrap5 p {text-align: left;} #colorcontentwrap5 h3 {text-align: left;} #coloredblock67 {float: none; width: auto;} #colorcontentwrap6_r, #colorcontentwrap7_r {width: 225px;} .colorcontentwrap8_left, .colorcontentwrap9_right {width: 225px;} #colorcontentwrap8line {width: auto;} #colorcontentwrap2 h3, #colorcontentwrap8 h3, #colorcontentwrap9 h3 {font-size: 16px !important; } .colorcontentwrap10 { width: 142px;} /* Sidebar */ #aside { float: none; margin: 15px auto 0; } /* Footer */ #footerwrapper1 { width:100%; text-align: center; } #footerwrapper1 #sidebar1 { display: none;} #fotnav { float: none; width: auto; } #btt {margin-left: 20px; } #sidebar1, #sidebar2{float: none; margin: 0 auto; width: 100% !important;} #sidebar2 { float: none; text-align: center;} /* Single */ .single #content { width: auto; } #related { float: none; width: auto;} #content .post p img {max-width: 350px;} h1.posttitle {font-size: 22px !important; line-height: 26px !important; } #authorarea {width: auto !important ; padding: 0px; margin: 0; } .addthis_toolbox { display: none;} .related {float: left; margin: 0 0 0 10px; width: 105px;} .relatedpost {float: none;} /* archive category tags search */ .archive #content, .search #content { width: auto !important; } .archive #feat { width: auto; } .archive #feat img { float: none; margin-right: 5px; } .archive #colorcontentwrap4, .search #colorcontentwrap4 { width: auto;} #colorcontentwrap4 h2 {font-size: 16px !important; } .archive #colorcontentwrap4 img, .search #colorcontentwrap4 img {width: 125px;} #pag { width: auto;} } @media only screen and ( max-width: 479px ) { #mobile-menu{ clear: both; display: block; text-align: center; } #wrapper { width: 300px; } /* Header */ #topheaderbar {border-bottom: 2px solid #545454;} #topheaderbar-r {margin: 0} #edition {float: none;} #topheaderbar-l {width: auto; border-bottom: 0px;} #logoleft {width: auto;} #logoright-right-search { margin-right: -5px;} /* Menu */ #menu-top-menu { display: none;} .responsivemenu { width: 240px; } .responsivemenu select { width: 240px; } /* Content */ #feat{width: 300px; } #left-insidebar { width: 216px; margin: 0 auto; display: block;} .home-post-wrap { height: 125px; margin: 10px auto 0px; width: 216px; float: none;} #colorcontentwrap h3 {font-size: 16px; line-height: 1.1;} #colorcontent_right {width: auto;} #colorcontent_right_1 {width: auto; border-right: 0px; float: none; padding: 0;} #colorcontent_right_2 {width: auto; float: none;} #content {padding: 0;} #colorcontentwrap4 {float: none; width: auto; position: inherit;} #colorcontentwrap6_l, #colorcontentwrap7_l {float: none;padding: 0; width: auto;} #colorcontentwrap6_r, #colorcontentwrap7_r {float: none;padding: 0; width: auto;} .colorcontentwrap8_left, .colorcontentwrap9_right { width: 145px;} .colorcontentwrap10 { float: none; margin-right: 0px; position: inherit; width: auto; } /* Footer */ #footerwrapper1 { width:300px; } #footer2 {height: auto;} .fotlogoleft, .fotlogoright { float: none;text-align: center;} /* Single */ #metabox{ display: none; } .related {margin: 0 0 0 5px; width: 70px;} #related { float: none; height: 182px; overflow: hidden; width: auto;} .relatedpost h3 {font-size: 12px !important; line-height: 1.4;} /* archive category tags search */ .archive #content, .search #content { width: auto !important; } .archive #feat { width: auto; } .archive #feat img { float: none; margin-right: 5px; } .archive #colorcontentwrap4, .search #colorcontentwrap4 { width: auto;} #colorcontentwrap4 h2 {font-size: 16px !important; } .archive #colorcontentwrap4 img, .search #colorcontentwrap4 img {display: none;} .avatar {width: 80px; margin-right: 5px;} #pagl {height: 34px; width: 135px;} #pagl a{ background-position: -30px -31px; } #pagl a:hover { background-position: -30px 2px; } #pagr {width: 130px;} }
web/bundles/front/css/responsives.css
@media only screen and ( min-width: 961px ) and ( max-width: 1183px ){ #sharebox {display:none} } @media only screen and ( max-width: 960px ) { img, video, object { max-width: 100%; height: auto;} #sharebox {display:none} .footer-menu, #bottomfooter{width:auto} } @media only screen and ( min-width: 768px ) and ( max-width: 960px ) { #wrapper {width: 748px} /* Header */ #logoleft {float: none; margin: 6px auto; } #logoright {float: none; margin: 0px auto;} #header3-1-left-ticker { max-width: 430px; } /* Menu */ #menu2 {width: auto;} #menu3 {width: auto;} #menu2 li a, #menu2 li a:link, #menu2 li a:visited {font-size: 11px;} /* Featured Area */ #feat {width: 440px;} #feat img {height: auto;} #featsmall {float: none; width: auto;} .featbig img {float: none;} .featbig h2 {font-size: 18px; min-height: auto !important; } #featbig-author {float: right; margin-top: -16px;} #left-insidebar {display: inline-block; width: 444px; margin-left: -4px; } .thumbnail-div { float: none; height: auto; width: auto;} .home-post-wrap {width: 140px; height: auto;margin-right: 0; margin-left: 8px; } .home-post-wrap h2 {width: auto;} #example {height: 472px;} #featgalsliderp { margin: 5px 0px; } .slides_container div.slide {height: 442px;} #slides .next, #slides .prev {top: 450px;} /* Blocks */ #colorcontent { margin: 0 auto; width: 660px; } #colorcontent_left {float: none; margin: 0 auto; width: 660px; margin-bottom: 10px; border-bottom: 1px dotted #CCCCCC; border-right: 0px; } #colorcontentwrap { float: left; border-bottom: 0px; margin-right: 5px; width: 215px; text-align: center; } #colorcontentwrap h3 { font-size: 16px; line-height: 1.2; text-align: left; } #colorcontentwrap h2 {text-align: left;} #colorcontentwrap p {text-align: left;} #colorcontentwrap img { float: none; } #colorcontent_right {float: none; margin: 0 auto; width: 660px; padding: 0px; } #colorcontent_right_1 { width: 400px;} #colorcontent_right_2 { width: 240px;} #colorcontentwrap3 h2 { margin-bottom: 5px;} #colorcontentwrap4 h2 { font: 400 14px "georgia",Arial,Sans-Serif !important; } #content {float: none; padding: 0px; margin: 0 auto; } #sidebar { width: 100%;} /* Sidebar */ #aside { width: 640px; margin: 20px auto 0; float: none; } .section {width: 310px; margin-right: 10px; float: left; } /* Footer */ #footerwrapper1{ width: 748px; } #footerwrapper1 #sidebar1 , #footerwrapper1 #sidebar2 { width: 100%; text-align: center;} #btt {margin-left: 20px; } /* Single */ .single #content { width: auto; } #related { float: none; width: auto;} /* archive category tags */ .archive #content { width: auto !important; } .archive #feat { width: auto; } .archive #feat img { float: left; margin-right: 5px; } .archive #colorcontentwrap4 { width: auto;} } @media only screen and ( max-width: 767px ) { .menu-header{ display:none } #mobile-menu{ clear: both; display: block; text-align: center; } #wrapper { width: 460px; } /* Header */ #topheaderbar { border-bottom: 0px; } #topheaderbar-l , #topheaderbar-r {margin-top: -5px;} #logoleft {float: none; margin: 6px auto; } #logoright {float: none; margin: 0px auto; width: auto;} #logoright-left { display: none;} #logoright-right {float: none; width: auto;} #logoright-right-search { width: 310px; margin: 0 auto} #logoright-right-trending { width: auto; } #header3-1-left-ticker { max-width: 460px; float: none; } #header3-1 { border-bottom: 1px solid #A8A8A8} #header3-1-left {float: none;} #header3-1-right {float: none; width: 220px; margin: 5px auto 0; } /* Menu */ #menu2 {width: auto; display: none; } #menu3 {width: auto; display: none; } .responsivemenu { display: block; margin: 0 auto; width: 400px; padding: 10px;} .responsivemenu select {display:inline-block; width: 400px;} /* Featured Area */ #feat { display: inline-block; float: none; width: 460px;} #featgal {float: none; } #featbig { border-right: 0px dotted #CCCCCC; float: none; padding: 0px;} #featsmall {float: none; width: auto;} .featbig img {float: none;} .featbig h2 {font: 400 22px/1.13em "georgia",Arial,Sans-Serif;} #left-insidebar {display: inline-block; width: 460px; margin-left: -4px; } .thumbnail-div { float: none; height: auto; width: auto;} .home-post-wrap {width: 145px; height: auto;margin-right: 0; margin-left: 8px; } .home-post-wrap h2 {width: auto;} #featgal { margin: 5px auto 0; } #colorcontent_left {float: none; margin: 0 auto; width: auto; margin-bottom: 10px; border-right: 0px; padding:0px; } #colorcontent_right {float: none; width: 460px; padding: 0px; } #content {width: auto; float: none;} #colorcontentblock {display: block;} #colorcontent_right_1 { padding: 0 6px 0 0; width: 260px;} #colorcontent_right_2 { width: 185px;} #colorcontentwrap4 { margin: 6px 5px 0 7px; width: 140px;} #colorcontentwrap4 h2 { font: 400 14px "georgia",Arial,Sans-Serif !important; } #coloredblock4 { display: inline-block;} #coloredblock5 {float: none; width: auto;} #colorcontentwrap5 {text-align: center;} #colorcontentwrap5 h2 {text-align: left;} #colorcontentwrap5 p {text-align: left;} #colorcontentwrap5 h3 {text-align: left;} #coloredblock67 {float: none; width: auto;} #colorcontentwrap6_r, #colorcontentwrap7_r {width: 225px;} .colorcontentwrap8_left, .colorcontentwrap9_right {width: 225px;} #colorcontentwrap8line {width: auto;} #colorcontentwrap2 h3, #colorcontentwrap8 h3, #colorcontentwrap9 h3 {font-size: 16px !important; } .colorcontentwrap10 { width: 142px;} /* Sidebar */ #aside { float: none; margin: 15px auto 0; } /* Footer */ #footerwrapper1 { width:100%; text-align: center; } #footerwrapper1 #sidebar1 { display: none;} #fotnav { float: none; width: auto; } #btt {margin-left: 20px; } #sidebar1, #sidebar2{float: none; margin: 0 auto; width: 100% !important;} #sidebar2 { float: none; text-align: center;} /* Single */ .single #content { width: auto; } #related { float: none; width: auto;} #content .post p img {max-width: 350px;} h1.posttitle {font-size: 22px !important; line-height: 26px !important; } #authorarea {width: auto !important ; padding: 0px; margin: 0; } .addthis_toolbox { display: none;} .related {float: left; margin: 0 0 0 10px; width: 105px;} .relatedpost {float: none;} /* archive category tags search */ .archive #content, .search #content { width: auto !important; } .archive #feat { width: auto; } .archive #feat img { float: none; margin-right: 5px; } .archive #colorcontentwrap4, .search #colorcontentwrap4 { width: auto;} #colorcontentwrap4 h2 {font-size: 16px !important; } .archive #colorcontentwrap4 img, .search #colorcontentwrap4 img {width: 125px;} #pag { width: auto;} } @media only screen and ( max-width: 479px ) { #mobile-menu{ clear: both; display: block; text-align: center; } #wrapper { width: 300px; } /* Header */ #topheaderbar {border-bottom: 2px solid #545454;} #topheaderbar-r {margin: 0} #edition {float: none;} #topheaderbar-l {width: auto; border-bottom: 0px;} #logoleft {width: auto;} #logoright-right-search { margin-right: -5px;} /* Menu */ #menu-top-menu { display: none;} .responsivemenu { width: 240px; } .responsivemenu select { width: 240px; } /* Content */ #feat{width: 300px; } #left-insidebar { width: 216px; margin: 0 auto; display: block;} .home-post-wrap { height: 125px; margin: 10px auto 0px; width: 216px; float: none;} #colorcontentwrap h3 {font-size: 16px; line-height: 1.1;} #colorcontent_right {width: auto;} #colorcontent_right_1 {width: auto; border-right: 0px; float: none; padding: 0;} #colorcontent_right_2 {width: auto; float: none;} #content {padding: 0;} #colorcontentwrap4 {float: none; width: auto; position: inherit;} #colorcontentwrap6_l, #colorcontentwrap7_l {float: none;padding: 0; width: auto;} #colorcontentwrap6_r, #colorcontentwrap7_r {float: none;padding: 0; width: auto;} .colorcontentwrap8_left, .colorcontentwrap9_right { width: 145px;} .colorcontentwrap10 { float: none; margin-right: 0px; position: inherit; width: auto; } /* Footer */ #footerwrapper1 { width:300px; } #footer2 {height: auto;} .fotlogoleft, .fotlogoright { float: none;text-align: center;} /* Single */ #metabox{ display: none; } .related {margin: 0 0 0 5px; width: 70px;} #related { float: none; height: 182px; overflow: hidden; width: auto;} .relatedpost h3 {font-size: 12px !important; line-height: 1.4;} /* archive category tags search */ .archive #content, .search #content { width: auto !important; } .archive #feat { width: auto; } .archive #feat img { float: none; margin-right: 5px; } .archive #colorcontentwrap4, .search #colorcontentwrap4 { width: auto;} #colorcontentwrap4 h2 {font-size: 16px !important; } .archive #colorcontentwrap4 img, .search #colorcontentwrap4 img {display: none;} .avatar {width: 80px; margin-right: 5px;} #pagl {height: 34px; width: 135px;} #pagl a{ background-position: -30px -31px; } #pagl a:hover { background-position: -30px 2px; } #pagr {width: 130px;} }
0.280814
0.120801
body { font-family: 'Rubik', sans-serif!important; } .logo_brac { width: 150px; height: 40px; margin-left: 10px; } .sidebar-icon { width: 25px; height: 25px; } .Support-Contact { position: fixed; width: 200px; height: 150px; margin-top: 500px; margin-left: 13px; padding: 20px 10px 21px 16px; border-radius: 13px; background-color: #eef9ff; } .Pie-Chart-Card-Box { height: 320px; padding: 20px 20px 20px 20px; border-radius: 6px; box-shadow: 0 2px 14px 0 rgba(180, 180, 180, 0.5); background-color: #ffffff; } .Task-List-Card-Box { height: 320px; margin-top: 45px; margin-bottom: 14px; padding-top: 20px; border-radius: 6px; box-shadow: 0 2px 14px 0 rgba(180, 180, 180, 0.5); background-color: #ffffff; } .New-Task-Card-Box { min-height: 320px; padding-left: 15px; padding-top: 20px; padding-bottom: 10px; border-radius: 6px; box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #ffffff; } .Rectangle-btn { width: 116px; height: 27px; border-radius: 19px; border: solid 1px #ec008c; background-color: white; color: #ec008c; transition: all linear 0.3s; } .New-Task-Plus-Icon { height: 20px; width: 20px; margin-bottom: 3px; } .New-TAsk { width: 58px; height: 14px; font-family: Rubik; font-stretch: normal; font-style: normal; letter-spacing: normal; text-align: center; color: #ec008c; } .Task-status-in-chart { font-family: Rubik; font-size: 11px; font-weight: 600; font-stretch: normal; font-style: normal; letter-spacing: normal; text-align: center; } .New-TEAM { font-family: Rubik; font-size: 12px; font-weight: 500; font-stretch: normal; font-style: normal; line-height: 3.67; letter-spacing: normal; text-align: left; color: #ec008c; } .Blue-Color-BG { height: 550px; border-radius: 6px; background-color: #eef9ff; max-width: 100%; height: auto; padding-right: 1.375rem; padding-bottom: 10px; } .Yellow-Color-BG { border-radius: 6px; background-color: #FFFBEF !important; max-width: 100%; height: auto; padding-right: 1.375rem; } .Dash-Line { width: 48px; height: 3px; margin-top: 10px; margin-left: 5px; opacity: 1; background-color: #ec008c; } .Timestamp-BG { width: 200px; height: 30px; margin-top: 15px; padding-top: 7px; text-align: center; box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.19); background-color: rgba(24, 142, 249, 0.11); } .List-Item-BG-White { min-height: 86px; margin-bottom: 15px; margin-right: 15px; padding-left: 10px; padding-right: 10px; padding-top: 10px; padding-bottom: 10px; object-fit: contain; border-radius: 6px; box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16); background-color: #ffffff; } .Hour-ago { /* width: 57px; height: 14px; margin: 14px 0 14px 77px; */ font-family: Rubik; font-size: 12px; font-weight: normal; font-stretch: normal; font-style: normal; line-height: 2; letter-spacing: normal; text-align: left; color: #7a8fa4; } .Task-title { width: 157px; height: 18px; font-family: Rubik; font-size: 15px; font-weight: 500; font-stretch: normal; font-style: normal; line-height: 2.2; letter-spacing: normal; text-align: left; color: #000000; } .Assigned-By { width: 146px; height: 14px; font-family: Rubik; font-size: 12px; font-weight: normal; font-stretch: normal; font-style: normal; line-height: 2.75; letter-spacing: normal; text-align: left; } .Overall-Progress { font-family: Rubik; font-size: 12px; font-weight: normal; font-stretch: normal; font-style: normal; letter-spacing: normal; text-align: center; } .Filter-Icon { width: 24px; height: 24px; } .All { border: none; height: 25px; font-family: Rubik; font-size: 14px; font-weight: 400; /* font-stretch: normal; */ /* font-style: normal; */ line-height: 3.44; letter-spacing: normal; text-align: left; color: #000000; } .View-Icon { width: 24px; height: 24px; margin-left: 20px; } .DataTableBox { margin-left: 3px; margin-right: 20px; box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #ffffff; } .teamTableBox { margin-left: 3px; margin-right: 26px; margin-bottom: 4%; box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #ffffff; } .CreateTaskBox { padding-bottom: 2%; margin-left: 3px; margin-right: 20px; padding-top: 15px; box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #ffffff; margin-bottom: 20px; margin-top: 20px; } .RequestTaskBox { margin-bottom: 1%; margin-left: 0.10%; margin-right: 0.15%; padding-top: 1%; box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #ffffff; margin-top: 10px; } .CreateTeamBox { margin-right: 2%; padding-bottom: 2%; padding-top: 1%; box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #ffffff; } .profileBox { min-height: 70%; box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #ffffff; } .BulkUploadBox { box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #ffffff; } .bulkUploadBox { height: 300px; width: 400px; padding-top: 15px; box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #ffffff; } .right-inner-addon { position: relative; } /* .right-inner-addon input{ } */ .right-inner-addon i { position: absolute; /*text-indent: -15px; bottom: -8px; font-size: 1.3em;*/ right: 0px; padding: 6px 12px; } .AssignToBox { height: 400px; margin-top: 10px; box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #ffffff; } .checkbox { visibility: hidden; } label { cursor: pointer; } .checkbox+label:before { border: 1px solid #ec008c; content: "\00a0"; display: inline-block; font: 16px/1em sans-serif; height: 16px; margin: 0 .25em 0 0; padding: 0; vertical-align: top; width: 16px; } .checkbox:checked+label:before { background: #ec008c; color: white; content: "\2713"; text-align: center; } .checkbox:checked+label:after { font-weight: bold; } .checkbox:focus+label::before { outline: rgb(59, 153, 252) auto 5px; } .radio-item { display: inline-block; position: relative; padding: 0 6px; } .radio-item input[type='radio'] { display: none; } .radio-item label { color: #666; font-weight: normal; } .radio-item label:before { content: " "; display: inline-block; position: relative; top: 5px; margin: 0 5px 0 0; width: 20px; height: 20px; border-radius: 11px; border: 2px solid #ec008c; background-color: transparent; } .radio-item input[type=radio]:checked+label:after { border-radius: 11px; width: 12px; height: 12px; position: absolute; top: 9px; left: 10px; content: " "; display: block; background: #ec008c; } /* width */ ::-webkit-scrollbar { width: 5px; } ::-webkit-scrollbar:horizontal { height: 5px; } /* Track */ ::-webkit-scrollbar-track { background: #f1f1f1; } /* Handle */ ::-webkit-scrollbar-thumb { background: #afafaf; border-radius: 4px; } /* Handle on hover */ ::-webkit-scrollbar-thumb:hover { background: #555; } .Cancel { background-color: white; border: 2px solid #ec008c; color: #ec008c; height: 40px; width: 80px; border-radius: 5px; padding-top: 10px; text-decoration: none !important; display: inline-block; } .Overdue { background-color: Red; border: none; color: white; height: 30px; width: 80px; text-decoration: none !important; display: inline-block; } .Create { box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #ec008c; border: none; margin-left: 10px; color: white; height: 40px; width: 80px; border-radius: 5px; transition: all 0.3s ease-in-out 0s; } .TeamCardBox { height: 250px; width: 200px; box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #ffffff; } .Rectangle-Edit { width: 75px; height: 30px; /* margin: 9px 5.7px 107.5px 16.3px; */ padding: 7px 18px 8px 10px; border-radius: 3px; background-color: #ec008c; color: white; border: 1px solid #ec008c; } .Rectangle-Delete { width: 72px; height: 30px; /* margin: 9px 2px 107.5px 12px; */ padding: 7px 10px 8px 10px; border-radius: 3px; background-color: #ec008c; color: white; border: 1px solid #ec008c; } .Task-Management-Platform { font-family: Rubik; margin-top: 10px; margin-left: 15px; font-size: 18px; font-weight: bold; font-stretch: normal; font-style: normal; line-height: 2.23; letter-spacing: normal; color: #535353; } .assign-to-me { font-family: Rubik; font-size: 18px; font-stretch: normal; font-style: normal; letter-spacing: normal; color: #535353; } .Task-Assign-To { min-height: 40%; width: 90%; box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #ffffff; overflow-y: auto; overflow-x: hidden; max-height: 300px; } .Task-view-title { width: 270px; height: 28px; font-family: Rubik; font-weight: 600; font-stretch: normal; font-style: normal; line-height: 1.24; letter-spacing: normal; text-align: left; color: #000000; font-size: 14px; } .Task-detail-view-title { margin-left: 30px; /* height: 31px; width: 95%; */ font-family: Rubik; font-weight: 600; font-stretch: normal; font-style: normal; font-size: 18px; line-height: 1.24; letter-spacing: normal; text-align: left; color: #000000; } .Task-edit-view-title { padding: 15px; font-size: 16px; font-family: Rubik; font-weight: 600; line-height: 1.24; color: #ec008c; text-align: center; } .vl { border-right: 2px solid rgba(0, 0, 0, 0.1); ; /* min-height: 170px; max-height: 100%; */ } html { font-size: 90%!important; } .change-password-field-label { margin-bottom: 0% !important; text-align: right; } .accordion-header { background-color: #eef9ff; margin-bottom: 10px; } select.form-control { color: #000000 !important; } .dashboard-task-card { text-decoration: none !important; } .team-card { box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); border-radius: 5px; } .team-card:hover { border: #ec008c solid 1px; } .team-card-member-image { margin-left: -15px; border-radius: 50%; border: white solid 4px; } .team-card-member-image-addition-count { display: flex; align-items: center; justify-content: center; color: #ffffff; background-color: #ec008c; } .task-status { border-radius: 0; padding: 5px !important; font-size: 9px; } .mandatory { color: red; } .task-view-hr { margin: 0; padding: 0; color: #EEF1F4; height: 0px !important; } .pagination { float: right; } .task-view-assigned-to-card { margin-left: 20px; padding-bottom: 10px; max-height: 200px; } .comment-reply-link { color: #7D75FE; font-size: 11px; } .comment-reply-link:hover { cursor: pointer; text-decoration: none; } .comment-by { color: #3A68A3; font-weight: bold; font-size: 12px; } .comment { /* padding-top: 30px; */ } .tab-content-comment { border: 1px solid #CED4DA; border-top: 0; padding: 1rem; padding-top: 0px; text-align: justify; } .comment-reply-div { margin-left: 40px; padding-top: 10px; } .comment-detail { background-color: #EFF0F2; border-radius: 5px; padding: 5px; } .comment-btn { border-radius: 5px; width: 100px; background-color: #ec008c; color: white; } .history-comment { color: #84B6F7; } .dropdownField { box-shadow: 0 2px 6px 0 rgb(0 0 0 / 16%); border: 1px solid #CED4DA; height: 45px; border-radius: 4px; } .task-list-action-na { color: #7a8fa4; } .task-list-filter { width: 120px; height: 30px; background-color: transparent; border: 1px solid #CED4DA; border-radius: 5px; padding: 5px; align-items: center; vertical-align: middle; } .task-view-individual-status { border-radius: 0; padding: 5px; font-size: 9px; } .notification-preview-list-div { width: 400px; min-height: 20px; max-height: 400px; padding-left: 15px; overflow: auto; } .notification-preview-list-div .List-Item-BG-White { min-height: 50px; } .main-panel .content-wrapper form span.right-inner-addon input.task-list-filter { padding-left: 6px; border: 1px solid #7a8fa4; color: #7a8fa4; font-size: 0.875rem; } .task-index-page .btn-custom-reset { border: none; background: content-box; color: #ec008c; } /* shovon css starts */ /* sso-login css starts */ /* .sso-login-top{ margin-top:40px; } .sso-login-top img.sso-login-top-img{ margin-left:20%; height: 65%; } .sso-login-content{ line-height: 2.0; margin-top: -10px; } .sso-login-content span{ margin-left:2%; margin-right:2%; } .footer-support-contact{ margin-top: 30px; text-align:center; } .footer-support-time{ text-align:center; } .footer-support-copyright{ margin-top: 25px; margin-bottom: 20px; } */ .login-page { background-image: url("../backend/assets/img/sso_background.png"); background-position: center; background-repeat: no-repeat; background-size: cover; position: relative; } .login-box { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: transparent!important; } .disclosure-item { width: 50%; margin: 0 auto; text-align: center; margin-top: 7%; } .disclosure-item h2 { font-size: 25px; color: #1a1a1a; font-weight: 800; font-family: 'Rubik', sans-serif; margin-bottom: 0px; } .disclosure-item p { float: left; line-height: 45px; font-size: 18px; color: #576271; padding-left: 15px; padding-right: 15px; margin-top: 15px; font-weight: 600; font-family: 'Rubik', sans-serif; } .disclosure-item a { color: #EB078E; padding: 7px 50px; border: 1px solid #EB078E; border-radius: 50px; font-size: 18px; font-weight: 500; float: left; transition: all linear .3s; font-family: 'Rubik', sans-serif; } .disclosure-item a.sso_login { color: #EB078E; padding: 7px 50px; border: 1px solid #EB078E; border-radius: 50px; font-size: 18px; font-weight: 500; float: left; transition: all linear .3s; font-family: 'Rubik', sans-serif; } .disclosure-item a.login_with_email { color: #EB078E; padding: 7px 30px; border: 1px solid #EB078E; border-radius: 50px; font-size: 18px; font-weight: 500; float: left; transition: all linear .3s; font-family: 'Rubik', sans-serif; } .disclosure-item a:hover { border: 1px solid #EB078E; background: #EB078E; color: #fff; } .disclosure-item-button-item { display: flex; justify-content: center; align-items: center; margin-top: 5%; } .login-footer { text-align: center; } .disclosure-item img.sso-login-bg { height: 200px; } .disclosure-item img.brac-logo { height: 35px; margin-bottom: 10px; } .disclosure-item-button-item a:hover { text-decoration: none; } .footer-support p { color: #1a1a1a; font-weight: 600; margin-bottom: 3px; font-size: 15px; font-family: 'Rubik', sans-serif; } .disclosure-item-button-item a { font-size: 15px; } .footer-copyright p { font-size: 13px!important; color: #EB078E!important; font-weight: 600!important; text-align: center!important; padding-top: 10px; font-family: 'Rubik', sans-serif; } @media (min-width: 1000px) and (max-width: 1239px) { /* .disclosure-item a { padding: 7px 29px; font-size: 17px; } */ .disclosure-item a.sso_login { padding: 7px 42px; font-size: 17px; } .disclosure-item a.login_with_email { padding: 7px 18px; font-size: 17px; } } @media (min-width: 600px) and (max-width: 999px) { .login-page { height: 800px!important; } .disclosure-item a.sso_login { padding: 7px 42px; font-size: 17px; } .disclosure-item a.login_with_email { padding: 7px 18px; font-size: 17px; } .disclosure-item-button-item { display: block; text-align: center; margin-bottom: 50px; } .disclosure-item-button-item a { display: inline-block; float: none !important; } .disclosure-item-button-item p { display: block; float: none; line-height: 10px; } .disclosure-item img.sso-login-bg { margin-bottom: 30px; } } @media (min-width: 300px) and (max-width: 599px) { .login-page { height: 600px!important; } .disclosure-item h2 { font-size: 25px; } .disclosure-item img.sso-login-bg { height: 125px; } /* .disclosure-item a { padding: 7px 29px; font-size: 17px; } */ .disclosure-item a.sso_login { padding: 7px 42px; font-size: 17px; } .disclosure-item a.login_with_email { padding: 7px 18px; font-size: 17px; } .disclosure-item-button-item { display: block; text-align: center; margin-bottom: 50px; } .disclosure-item-button-item a { display: inline-block; float: none !important; } .disclosure-item-button-item p { display: block; float: none; line-height: 10px; } .disclosure-item img.sso-login-bg { margin-bottom: 30px; } .disclosure-item { width: 100%; } .footer-support p { font-size: 15px; } } /* sso-login css ends */ /* common header css starts */ .navbar-menu-wrapper ul li a button.Rectangle-btn { margin-right: 10px; line-height: 25px; } .dropdown-notifications.nav-item.dropdown a span#notification-icon { display: none; background-color: red; color: white; font-size: 10px; padding: 2px 4px; border-radius: 50%; } @media (min-width: 300px) and (max-width: 700px) { .Timestamp-BG { display: none; } } @media (min-width: 701px) and (max-width: 917px) { .Timestamp-BG { margin-left: 10px; } } @media (min-width: 992px) and (max-width: 1110px) { .Task-Management-Platform { /* font-size: 15px; */ margin-left: 5px; } .header-create-button { margin-left: 5px!important; margin-right: 0px!important; } } @media (min-width: 616px) and (max-width: 717px) { .Task-Management-Platform { /* font-size: 15px; */ margin-left: 0px; } } @media (min-width: 300px) and (max-width: 615px) { .Task-Management-Platform { /* font-size: 12px; */ margin-left: 0px; } } /* button.navbar-content{ display: none; } @media (min-width: 100px) and (max-width: 991px) { button.navbar-content{ display: block; } .navbar-brand-wrapper{ display: none!important; } } */ @media (min-width: 1150px) { .Task-Management-Platform-short-screen { display: none; } } @media (max-width: 1149px) { .Task-Management-Platform-big-screen { display: none; } } @media (min-width: 100px) and (max-width: 470px) { /* nav.navbar { overflow-x: auto; } */ } h4.Task-Management-Platform { font-size: 16px; } .Timestamp-BG { width: 185px; height: 28px; margin-top: 15px; font-size: 11px; padding-top: 6px; } .navbar .navbar-brand-wrapper .navbar-brand img { height: 26px; } .New-TAsk { font-size: 12px; } .New-Task-Plus-Icon { height: 15px; width: 15px; margin-bottom: 0px; } .navbar-menu-wrapper ul li a button.Rectangle-btn { line-height: 23px; } /* common header css ends */ /* sidebar css starts */ .sidebar-icon { width: 18px; height: 18px; } span.menu-title { font-size: 12px!important; } nav.sidebar { width: 225px; } .sidebar-icon-only .sidebar .nav .nav-item .nav-link .menu-title { margin-left: 0px; } /* sidebar css ends */ /* dashboard css starts */ .assign-to-me { font-size: 17px; font-weight: 600; } .Dash-Line { height: 2px!important; } .Blue-Color-BG-row { margin-top: 20px; } .Blue-Color-BG-row .Pie-Chart-Card-Box h5 { color: #ec008c; text-align: center; font-size: 14px; font-weight: 600; } .Pie-Chart-Card-Box-content { text-align: center; font-size: 25px; } .Pie-Chart-Card-Box-row { margin-top: 20px; /* margin-right: 10px; */ } .Pie-Chart-Card-Box-row-item-1 p:first-child { color: #f2b70a; text-align: center; font-size: 25px; } .Pie-Chart-Card-Box-row-item-2 p:first-child { color: #188ef9; text-align: center; font-size: 25px; } .Pie-Chart-Card-Box-row-item-3 p:first-child { color: #4dc400; text-align: center; font-size: 25px; } .Task-List-Card-Box h5 { color: #ec008c; text-align: center; font-size: 14px; font-weight: 600; } .Task-List-Card-Box .table-responsive { overflow: auto; height: 260px; } .Task-List-Card-Box .table-responsive table tbody tr td:nth-child(2) a { color: #ec008c; } .Task-List-Card-Box .table-responsive table tbody tr td button.btn-inverse-warning { border-radius: 0; padding: 5px; } .Task-List-Card-Box .table-responsive table tbody tr td button.btn-inverse-info { border-radius: 0; padding: 5px; } .Task-List-Card-Box .table-responsive table tbody tr td button.btn-inverse-success { border-radius: 0; padding: 5px; } .dashboard-page .List-Item-BG-White .media .media-left { /* margin-top: 15px; */ } .assign-to-me { font-size: 15px; } .Blue-Color-BG-row .Pie-Chart-Card-Box h5 { font-size: 12px; } .Pie-Chart-Card-Box-content { font-size: 20px; } .Overall-Progress { font-size: 11px; padding-top: 5px; } .Pie-Chart-Card-Box-row-item-1 p:first-child { font-size: 20px; } .Pie-Chart-Card-Box-row-item-2 p:first-child { font-size: 20px; } .Pie-Chart-Card-Box-row-item-3 p:first-child { font-size: 20px; } .Task-List-Card-Box h5 { font-size: 13px; } .Task-List-Card-Box table thead tr th, .Task-List-Card-Box table tbody tr td { font-size: 12px; } .Task-title { font-size: 12px; } .Assigned-By { font-size: 10px; } .Hour-ago { font-size: 10px; } .dashboard-page .List-Item-BG-White .media .media-left { margin-top: 5px; } .Pie-Chart-Card-Box h5 { color: #ec008c; text-align: center; font-size: 12px; font-weight: 600; margin-bottom: 15px; } .List-Item-BG-White { transition: all linear .3s; } .List-Item-BG-White:hover { background: #ec008e21; } @media (min-width: 1450px) { .dashboard-rejected-item { min-height: 350px; } } /* dashboard css ends */ .main-panel .content-wrapper.Blue-Color-BG { background-color: #eef9ff; } .List-Item-BG-White { overflow: auto; } table#assignToMe tbody tr td:nth-child(2), table#assignToMe tbody tr td:nth-child(3), table#assignByMe tbody tr td:nth-child(2), table#assignByMe tbody tr td:nth-child(3) { /* padding-right: 5px; */ /* padding-left: 0px; padding-right: 0px; */ } table#assignToMe thead tr th:nth-child(2), table#assignToMe thead tr th:nth-child(3), table#assignByMe thead tr th:nth-child(2), table#assignByMe thead tr th:nth-child(3) { /* padding-right: 5px; */ /* padding-left: 0px; padding-right: 0px; */ } table#assignToMe tbody tr td:nth-child(2) a, table#assignToMe tbody tr td:nth-child(3) { /* word-break: break-all; */ white-space: pre-line; line-height: 18px; } table#assignToMe tbody tr td:nth-child(3) p, table#assignByMe tbody tr td:nth-child(3) p { margin-bottom: 0px!important; } table#assignByMe tbody tr td:nth-child(2) a, table#assignByMe tbody tr td:nth-child(3) { /* word-break: break-all; */ white-space: pre-line; line-height: 18px; } table#assignByMe tbody tr td:nth-child(3) { line-height: 10px; /* padding: 5px 1.375rem; */ } @media (min-width: 300px) and (max-width: 768px) { .Pie-Chart-Card-Box canvas { margin-top: 20px!important; display: block!important; height: 155px!important; width: 250px!important; margin-left: 50%; transform: translateX(-50%); } } @media (min-width: 1600px) { canvas#myChart, canvas#myChart1 { margin-top: 20px!important; display: block!important; width: 269px!important; height: 168px!important; margin-left: 50%; transform: translateX(-50%); } } .reject-item-media-left { padding-right: 5px; } .accepted-item, .rejected-item { height: 350px; } @media (min-width: 1450px) { .Pie-Chart-Card-Box { height: 350px; } .Task-List-Card-Box { height: 350px; } .accepted-item .New-Task-Card-Box { height: 350px; } .rejected-item .New-Task-Card-Box { height: 350px; } } /* dashboard css ends */ /* task list page css starts */ .main-panel .content-wrapper { background-color: #f8fafb; } .main-panel .content-wrapper form { margin-top: 20px; } .main-panel .content-wrapper form span#sort i:first-child { font-size: 16px; } .main-panel .content-wrapper form span#sort i:last-child { font-size: 16px; display: none; } .main-panel .content-wrapper form span.right-inner-addon input { width: 107px; height: 30px; border: none; } .main-panel .content-wrapper form span.right-inner-addon i { /* line-height: 28px; margin-right: 5px; */ right: 5px; top: 0px; } .main-panel .content-wrapper img.list-view { display: inline-block; margin-right: 5px; } .kanban-view-text { margin-right: 5px; margin-left: 5px; } .main-panel .content-wrapper img.kanban-view small { color: #7a8fa4; } .list-view-text { margin-right: 5px; margin-left: 5px; } .main-panel .content-wrapper a.task-export { margin-left: 5px; } span.atoz { font-weight: 600; padding-right: 5px; } small.assignee-list { padding-left: 5px; } .assignee-section p { padding-left: 20px; } .main-panel .content-wrapper form span.right-inner-addon input.task-list-filter::placeholder { font-size: 12px; padding-left: 5px; } .main-panel .content-wrapper form span.right-inner-addon input.task-list-filter { padding-left: 6px; border: 1px solid #7a8fa4; } small.task-list-priority, small.task-list-status { padding-left: 5px; padding-right: 5px; } #priority, #status { padding: 5px; font-size: 12px; color: #7a8fa4; } .View-Icon { margin-left: 0px; } table#task-table tbody tr td:nth-child(2), table#task-table tbody tr td:nth-child(3) { /* word-break: break-all; */ white-space: pre-line; line-height: 20px; padding-right: 5px; } table#task-table tbody tr td:nth-child(3) { line-height: 10px; padding: 5px 0.5rem; } .Filter-Icon { width: 22px; height: 22px; } #sort small { font-size: 12px; } .Info-Icon-Common { width: 22px; height: 22px; } #task-table thead tr th, #task-table tbody tr td { font-size: 12px; } @media (min-width: 992px) and (max-width: 1237px) { #priority, #status { /* margin-top: 15px; */ /* margin-bottom: 15px; */ } } @media (min-width: 688px) and (max-width: 991px) { #priority, #status { /* margin-top: 15px; */ /* margin-bottom: 15px; */ } } @media (min-width: 300px) and (max-width: 687px) { #priority, #status { margin-top: 0px; /* margin-bottom: 15px; */ } .main-panel .content-wrapper form span.right-inner-addon input.task-list-filter { margin-top: 0px; /* margin-bottom: 15px; */ } button.btn-custom-reset { margin-top: 15px; } a.task-export svg { margin-top: 15px; } } @media (min-width: 300px) and (max-width: 472px) { #priority, #status { margin-top: 10px; /* margin-bottom: 15px; */ } button.btn-custom-reset { margin-top: 10px; } } .CreateTaskBox .view-task-header-buttons a.edit-task-btn:hover { background: #ec008c; color: #fff; } .CreateTaskBox .view-task-header-buttons a.edit-task-btn:hover span { color: #fff; } .CreateTaskBox .view-task-header-buttons a.edit-task-btn, .CreateTaskBox .view-task-header-buttons a.edit-task-btn span { transition: all linear .3s; } .CreateTaskBox .view-task-header-buttons a:hover button.reassign-btn { background: #ec008c; color: #fff; } .CreateTaskBox .view-task-header-buttons a:hover button.reassign-btn span { color: #fff; } .CreateTaskBox .view-task-header-buttons a button.reassign-btn span, .CreateTaskBox .view-task-header-buttons a button.reassign-btn { transition: all linear .3s; } .CreateTaskBox .view-task-header-buttons a { text-decoration: none; } /* task list page css ends */ /* team list css starts */ .team-list-page-top { margin-top: 20px; } .team-list-page-top-row { margin-top: 5px; } .team-list-page-top-row-sort i:nth-child(1) { font-size: 16px; } .team-list-page-top-row-sort i:nth-child(2) { font-size: 16px; display: none; } .team-list-page-top-form-inline { /* padding-left: 20px; */ } .team-list-page-top-form-inline .form-control { margin-left: 10px; height: 20px; } .team-list-page-buttons { margin-top: 10px; text-align: right; padding-right: 35px; } .team-list-page-buttons #button_grid i { font-size: 25px; } .team-list-page-buttons #button_list { margin-bottom: 3px; margin-right: 5px; } .team-list-page-buttons #button_list i { font-size: 25px; } .team-list-page #list-view { margin-top: 5px; } .team-list-page #card-view { display: none; margin-top: 5px; } .team-list-card-top { margin-top: 5px; padding: 10px; padding-right: 15px; } .team-list-card-top .media-right { display: flex; align-items: center; justify-content: center; } .team-list-card-top .media-right .media-right-content { height: 70px; width: 70px; font-size: 12px; border-radius: 50%; border: 1px solid #ec008c; display: flex; align-items: center; justify-content: center; color: #ec008c; background-color: #F2F4F6; } .team-list-task-overview { color: #ec008c; font-size: 18px; font-weight: bold; } .team-list-card-content { display: flex; height: 60px; align-items: center; justify-content: center; } .team-list-card-view-details { color: #ec008c; font-size: small; text-decoration: none; } .team-list-card-pagination { display: flex; align-items: center; justify-content: center; } .team-list-card-top .team-card { transition: all linear .3s ease; } .team-list-main-page #card-view { margin-bottom: 30px; padding-right: 25px; padding-left: 8px; } .team-list-main-page #list-view { margin-top: 15px; } .team-list-card-top .team-list-card-content-main p.team-list-card-team-name { min-height: 40px; } .teamTableBox table tbody tr td:nth-child(2) a { word-break: break-all; white-space: pre-line; line-height: 20px; } /* team list css ends */ /* single task page css starts */ .task-details-main-page .task-accept-button { border-radius: 0; /* width: 100px; */ font-size: 11px; padding: 0.92rem 1.5rem !important; } .task-details-main-page .task-reject-button { border-radius: 0px; /* width: 100px; */ font-size: 11px; padding: 0.92rem 1.62rem !important; } .task-details-main-page-form { margin-right: 30px; } .Task-detail-view-title { font-size: 15px; } .task-details-main-page button.task-reject-button { /* width: 80px; */ } .task-details-main-page button.task-accept-button { /* width: unset; */ } .task-details-main-page-form { margin-right: 0px; } .media-left svg { height: 40px; } .media-body { font-size: 13px; } .task-view-assigned-to-card .media svg { height: 35px; } #tabId #myTab { font-size: 12px; } #myTabContent { font-size: 12px; } .Cancel:hover { color: #ec008c; } @media (min-width: 717px) and (max-width: 1326px) {} .CreateTaskBox .view-task-header-buttons a.edit-task-button-redesign:hover { background: #ec008c; color: #fff; } .CreateTaskBox .view-task-header-buttons a.edit-task-button-redesign:hover span { color: #fff; } .CreateTaskBox .view-task-header-buttons a.edit-task-button-redesign span, .CreateTaskBox .view-task-header-buttons a.edit-task-button-redesign { transition: all linear .3s; } /* single task page css ends */ /* profile view page css starts */ @media (min-width: 741px) and (max-width: 767px) { .user-profile-panel .user-info-row .user-info-col-3 { padding-left: 2%!important; } } @media (min-width: 100px) and (max-width: 740px) { .user-profile-panel .user-info-row .user-info-col-3 { padding-left: 0%!important; } } .profile-edit-page { font-weight: bold; color: #535353; padding: 10px 0px; } /* profile view page css ends */ /* task create css starts */ .task-create-page .task-create-page-priority select { min-height: 50px; padding-left: 10px!important; } .task-create-title { font-size: 15px; } .task-create-page label { font-size: 13px!important; } .teamAssignToBox #input_img, .individualAssignToBox #input_img { right: 5px; top: 15%; } .task-view-assigned-to-card-row { margin-right: 0px!important; } .button-to-do { padding-left: 19px!important; padding-right: 16px!important; } .button-pending { padding-left: 11px!important; padding-right: 11px!important; } .task-view-assigned-to-card .media .media-body { word-break: break-all; white-space: pre-line; line-height: 20px; margin-left: 15px; } /* .team-section label{ word-break: break-all; white-space: pre-line; line-height: 20px; } */ /* task create css ends */ /* role create edit list css starts */ .role-create-main-panel .form-check { margin-top: -5px!important; } .role-edit-main-panel .form-check { margin-top: -5px!important; } .role-list-page .role-list-page-action a:hover { color: #fff!important; } .role-list-main-panel .role-list-title { font-size: 15px!important; } .role-list-main-panel .role-list-New-role-btn { font-size: 12px; padding: 0.55em 15px!important; } .role-list-page table thead tr th, .role-list-page table tbody tr td { font-size: 12px; } .role-list-page .role-list-main-panel .role-list-table-subHeader a { text-decoration: none; } /* role create edit list css ends */ /* user list page css starts */ .user-list-page-actions a:hover { color: #fff!important; } #userList thead tr th, #userList tbody tr td { font-size: 12px; } .users-list-main-panel .users-list-title { font-size: 15px!important; } .users-list-main-panel .user-list-Bulk-Upload, .user-list-New-User { font-size: 12px; padding: 0.55em 15px!important; } .users-list-main-panel .users-list-table-subHeader a { text-decoration: none; } @media (max-width:768px) { .users-list-main-panel #userList::-webkit-scrollbar { display: none; } .users-list-main-panel .pagination { margin-top: 15px; float: none; overflow-x: auto !important; } .users-list-main-pane .subHeader-col-1 .form-inline b { font-size: 12px; } } /* user list page css ends */ /* team list css starts */ .team-list-page-buttons { font-size: 12px; } #Export { font-size: 15px; } .teamTableBox table thead tr th, .teamTableBox table tbody tr td { font-size: 12px; } .teamTableBox table tbody tr td:nth-child(2), .teamTableBox table tbody tr td:nth-child(3), .teamTableBox table tbody tr td:nth-child(4) { word-break: break-all; white-space: pre-line; line-height: 20px; } .teamTableBox table tbody tr td:nth-child(4) p { margin-bottom: 0px!important; } .teamTableBox table tbody tr td:nth-child(4) { line-height: 10px; padding: 5px 1.375rem; } .teamTableBox table tbody tr td:nth-child(3) { line-height: 10px; padding: 5px 1.375rem; } /* team list css ends */ /* team create css starts */ .team-create-main-panel .team-create-title { font-size: 15px!important; } .CreateTeamBox h5 { font-size: 14px; } .CreateTeamBox label { font-size: 13px!important; } .CreateTeamBox .accordion-button { font-size: 13px!important; } /* team create css ends */ /* profile list create css starts */ .user-info-row svg { width: 100px; } .user-info-row { font-size: 13px; } .user-profile-title { font-size: 14px; } .profileBox .text-end i { font-size: 25px!important; line-height: 29px!important; } .CreateTeamBox svg { width: 100px; } .CreateTeamBox { font-size: 13px; } /* profile list create css ends */ /* user create edit list css starts */ .user-create-main-panel label { font-size: 13px!important; } .user-edit-main-panel label { font-size: 13px!important; } .user-create-title, .user-edit-title { font-size: 15px!important; } .user-edit-main-panel #input_container { position: relative; padding: 0 0 0 5px; margin-left: 5px; } .user-edit-main-panel #input { height: 20px; margin: 0; padding-right: 30px; border: none; width: 100%; } .user-edit-main-panel #input_img { position: absolute; bottom: 2px; right: 5px; width: 24px; height: 24px; } /* .users-list-main-panel table#userList tbody tr td:nth-child(2){ word-break: break-all; white-space: pre-line; line-height: 20px; } */ /* user create edit list css ends */ /* role create edit list css starts */ .role-create-title, .role-edit-title { font-size: 15px!important; } .CreateRolekBox h5 { font-size: 14px!important; } .CreateRolekBox label { font-size: 13px!important; } .role-list-page table tbody tr td:nth-child(2) { /* word-break: break-all; */ white-space: pre-line; line-height: 20px; } /* .role-list-page table tbody tr td:nth-child(2) { word-break: break-all; white-space: pre-line; line-height: 20px; } */ /* role create edit list css ends */ /* header notification css starts */ @media (min-width: 100px) and (max-width: 991px) { .notification-preview-list-div { width: 100%; } .navbar .navbar-menu-wrapper .navbar-nav .nav-item.dropdown .navbar-dropdown { width: 355px; left: unset; } } @media (min-width: 100px) and (max-width: 440px) { .navbar .navbar-menu-wrapper .navbar-nav .nav-item.dropdown .navbar-dropdown { width: 83%; } } /* header notification css ends */ /* shovon css ends */ /*################# azmain css start ###################*/ /* login page css */ @media (min-width: 300px) and (max-width: 413px) { .disclosure-item h2 { font-size: 17px; } } @media (min-width: 414px) and (max-width: 770px) { .disclosure-item h2 { font-size: 23px !important; } } /* login page css end */ /* layouts css start */ .navbar-menu-wrapper .notification-preview-list-div .media-body { padding-left: 10px; } .navbar-menu-wrapper .notification-preview-list-div .media-body p { color: #ec008c; } /* layouts css end */ /* navbar css start */ .navbar-brand.nav-logo { display: none; } .notification-menu .notification-preview-list-div .List-Item-BG-White { margin-right: 0px; } .notification-menu .notification-preview-list-div { width: 375px; min-height: 20px; max-height: 400px; padding-left: 6px; padding-right: 6px; color: #ec008c; overflow: auto; } @media (max-width: 991px) { /* .navbar .navbar-menu-wrapper .navbar-toggler.navbar-toggler-right { margin-left: 15px !important; padding-right: 0; } */ } @media (min-width: 300px) and (max-width: 750px) { .navbar-brand.nav-logo { display: none !important; } .navbar .navbar-menu-wrapper .navbar-nav .nav-item { margin-left: 0.5rem; margin-right: 0.5rem; } .navbar .navbar-menu-wrapper .Rectangle-btn { width: 95px; } .notification-menu .notification-preview-list-div { padding-left: 16px; } } @media (min-width: 410px) { .navbar .navbar-menu-wrapper .navbar-nav .nav-item { margin-left: 1.4rem; margin-right: 1rem; } } nav.sidebar ul.nav li.nav-item a.nav-link { transition: all linear .3s; } nav.sidebar ul.nav li.nav-item a.nav-link:hover span { color: #ec008c; /* background: #fff!important; */ font-weight: bold; } nav.sidebar ul.nav li.nav-item a.nav-link:hover .menu-non-active { display: none; } nav.sidebar ul.nav li.nav-item a.nav-link:hover .menu-active { display: block; transition: all linear .3s; } nav.sidebar ul.nav li.nav-item a.nav-link .menu-active { display: none; transition: all linear .3s; } /* navbar css end */ /* sidebar css start */ .nav-link:hover .menu-title { /* background-color: #F3F3F3 !important; */ } .nav-item.hover-open .nav-link .menu-title { /* background-color: #f4d2e7f5 !important; */ background-color: #eef9ff !important; padding: 0.4rem 1.4rem !important; left: 80% !important; } /* sidebar css end */ /* Dashboard css start */ .assign-by-me-badge, .assign-to-me-badge { border-radius: 3px; padding-bottom: .28rem; } .dashboard-main-panel .accepted-item { overflow-y: auto; overflow-x: auto; } .dashboard-main-panel .Yellow-Color-BG .task-status-percnetage { text-align: center; font-size: 20px; } .dashboard-main-panel .rejected-item.dashboard-rejected-item { overflow-y: auto; overflow-x: auto; } .dashboard-main-panel .Pie-Chart-Card-Box canvas { margin-top: 20px; } /* .dashboard-main-panel .table th, .jsgrid .jsgrid-table th, .table td, .jsgrid .jsgrid-table td { padding: 1.125rem 1.3rem; } */ .dashboard-main-panel .table th, .dashboard-main-panel .jsgrid .jsgrid-table th, .dashboard-main-panel .table td, .dashboard-main-panel .jsgrid .jsgrid-table td { padding: 1.125rem 1.3rem; vertical-align: top; border-top: 1px solid #CED4DA; padding-left: 8px; padding-right: 6px; } @media (min-width: 300px) and (max-width: 917px) { /* .Pie-Chart-Card-Box-row { margin-top: 8px; margin-right: 10px; } */ } @media (min-width: 300px) and (max-width: 767px) { .Pie-Chart-Card-Box { height: 385px; } .Task-List-Card-Box { height: 380px; } .Task-List-Card-Box .table-responsive { height: 308px; } } /* @media (min-width: 768px) and (max-width: 991px) { table#assignToMe thead tr th:nth-child(3), table#assignByMe thead tr th:nth-child(3) { padding-left: 10px; } table#assignToMe tbody tr td:nth-child(3), table#assignByMe tbody tr td:nth-child(3) { padding-left: 10px; } } */ /* Dashboard css end */ /* task mgt css start */ .task-index-panel .btn-custom-reset { border: none !important; background: content-box !important; color: #ec008c !important; padding-left: 6px; } .task-create-page .loading { display: none; } .task-create-main-panel .content-wrapper { padding: 1.5rem 1.5rem; } .task-create-main-panel .CreateTaskBox { padding-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-bottom: 0px; margin-top: 0px; padding: 3%; } .task-create-main-panel .form-group label { font-size: 0.95rem; line-height: 1.4rem; vertical-align: top; margin-bottom: .5rem; font-weight: 600; } .task-create-main-panel .CreateTaskBox .task-create-title { color: #ec008c; max-width: 100%; font-size: 16px; margin-top: 0.5rem; } .task-create-main-panel .CreateTaskBox .individualAssignToBox.Task-Assign-To { opacity: 0.3; } .task-create-main-panel .CreateTaskBox #input_container { position: relative; padding: 0px; margin-left: 0px; padding: 3%; } .task-create-main-panel .Task-Assign-To { width: 100%; height: 300px; } .task-create-main-panel .assign-to-block .team-section { overflow-y: auto; height: 200px; } .task-create-main-panel .assign-to-block .individual-section { overflow-y: auto; height: 200px; } .task-create-main-panel .CreateTaskBox .right-inner-addon { box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #ffffff; } .task-create-main-panel .right-inner-addon .date-picker-input { background-color: #ffffff !important; border: none; } .task-create-main-panel .CreateTaskBox .priority-input { /* height: 60%; */ box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #ffffff; border: none !important; outline: none !important; } .loading { z-index: 999; background: rgba(255, 255, 255, 0.9); } .task-create-main-panel .comments-text-area { background-color: #eef9ff; border: none; } .task-create-main-panel #input_container { position: relative; padding: 0 0 0 5px; margin-left: 5px; } .task-create-main-panel #input { height: 20px; margin: 0; padding-right: 30px; border: none; width: 100%; } .task-create-main-panel #input_img { position: absolute; top: 7%; bottom: 2px; right: 5px; width: 24px; height: 24px; color: #ec008c; } .task-create-page .task-create-main-panel .error { color: red } .task-create-page .task-create-main-panel .fa-calendar-o.date-picker { margin-top: 7px; margin-right: 6px; } /*----- task edit -----*/ .task-edit-page .loading { display: none } .task-edit-page .CreateTaskBox { padding: 3% !important; } .task-edit-page #input_container { /* position: relative; padding: 0 0 0 5px; margin-left: 5px; margin-top: 10px; */ position: relative; padding: 0px; margin-left: 0px; padding: 3%; } .task-edit-page #input { height: 20px; margin: 0; padding-right: 30px; border: none; width: 100%; } .task-edit-page #input_img { position: absolute; top: 7%; bottom: 2px; right: 5px; width: 24px; height: 24px; color: #ec008c; } .task-edit-page .assign-to-block { margin-top: 35px; } .task-edit-page .assign-to-block .if-block-col-2 .individualAssignToBox { opacity: 0.3; padding-left: 20px; padding-right: 20px; } .task-edit-page .assign-to-block .else-block-col-1 .teamAssignToBox { opacity: 0.3; } .task-edit-page .assign-to-block .team-section { overflow-y: auto; height: 200px; } .task-edit-page .assign-to-block .individual-section { overflow-y: auto; height: 200px; } .task-edit-page .individualAssignToBox { /* padding-left: 20px; padding-right: 20px; */ } .task-edit-page .task-comment-area { box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #eef9ff; } .task-edit-page .Task-Assign-To { width: 100%; } .task-edit-page .error { color: red; } .task-edit-page .CreateTaskBox .row.start-end-priority .right-inner-addon { box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #ffffff; } .task-edit-page .CreateTaskBox .row.start-end-priority .right-inner-addon .fa-calendar-o { margin-top: 7px; margin-right: 6px; } .task-edit-page .CreateTaskBox .task-priority { box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); border-radius: 3px; border-style: none; height: 50px; } .task-edit-main-panel .CreateTaskBox .task-title-group input, .task-edit-main-panel .CreateTaskBox .task-description-group textarea { box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #ffffff; } .task-edit-main-panel .form-group label { font-size: 0.95rem; line-height: 1.4rem; vertical-align: top; margin-bottom: .5rem; font-weight: 600; } /* .task-edit-main-panel .teamAssignToBox .team-section { overflow-y: auto; height: 200px; } .task-edit-main-panel .individualAssignToBox { opacity: 0.3; } .task-edit-main-panel .individualAssignToBox .input_container { margin-top: 10px; } .task-edit-main-panel #input_container .fa.fa-search { color: #ec008c; } .task-edit-main-panel #input { height: 20px; margin: 0; padding-right: 30px; border: none; width: 100%; } .task-edit-main-panel #input_img { position: absolute; bottom: 2px; right: 5px; width: 24px; height: 24px; color: #ec008c; top: 3%; } .task-edit-main-panel .CreateTaskBox .individualAssignToBox.Task-Assign-To { opacity: 0.3; } .task-edit-main-panel .CreateTaskBox #input_container { position: relative; padding: 0px; margin-left: 0px; padding: 3%; } #input_img { top: 25%; } .task-edit-main-panel .Task-Assign-To { width: 100%; height: 300px; } .task-edit-main-panel .comments-text-area { background-color: #eef9ff; border: none; } .task-edit-main-panel .teamAssignToBox #input_img, .task-edit-main-panel .individualAssignToBox #input_img { right: 5px; top: 9%; } .task-edit-main-panel #input_container { position: relative; padding: 0 0 0 5px; margin-left: 5px; } .task-edit-main-panel #input { height: 20px; margin: 0; padding-right: 30px; border: none; width: 100%; } */ /*----- task edit end -------*/ /* task-reassign-page css */ .task-reassign-page .loading { display: none; } .task-reassign-page .CreateTaskBox { padding: 3% !important; } .task-reassign-page .Task-reassign-title { padding: 15px; font-size: 16px; font-family: Rubik; font-weight: 600; line-height: 1.24; color: #ec008c; text-align: center; } .task-reassign-page #input_container { /* position: relative; padding: 0 0 0 5px; margin-left: 5px; margin-top: 10px; */ position: relative; padding: 0px; margin-left: 0px; padding: 3%; } .task-reassign-page #input { height: 20px; margin: 0; padding-right: 30px; border: none; width: 100%; } .task-reassign-page #input_img { position: absolute; top: 7%; bottom: 2px; right: 5px; width: 24px; height: 24px; color: #ec008c; } .task-reassign-page .assign-to-block { margin-top: 35px; } .task-reassign-page .assign-to-block .if-block-col-2 .individualAssignToBox { opacity: 0.3; padding-left: 20px; padding-right: 20px; } .task-reassign-page .assign-to-block .else-block-col-1 .teamAssignToBox { opacity: 0.3; } .task-reassign-page .assign-to-block .team-section { overflow-y: auto; height: 200px; } .task-reassign-page .assign-to-block .individual-section { overflow-y: auto; height: 200px; } .task-reassign-page .individualAssignToBox { /* padding-left: 20px; padding-right: 20px; */ } .task-reassign-page .task-comment-area { box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #eef9ff; } .task-reassign-page .Task-Assign-To { width: 100%; } .task-reassign-page .error { color: red; } .task-reassign-page .CreateTaskBox .row.start-end-priority .right-inner-addon { box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #ffffff; } .task-reassign-page .CreateTaskBox .row.start-end-priority .right-inner-addon .fa-calendar-o { margin-top: 7px; margin-right: 6px; } .task-reassign-page .CreateTaskBox .task-priority { box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); border-radius: 3px; border-style: none; height: 50px; } .task-reassign-panel .CreateTaskBox .task-title-group input, .task-reassign-panel .CreateTaskBox .task-description-group textarea { box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #ffffff; } .task-reassign-panel .form-group label { font-size: 0.95rem; line-height: 1.4rem; vertical-align: top; margin-bottom: .5rem; font-weight: 600; } /* .task-reassign-panel .teamAssignToBox .team-section { overflow-y: auto; height: 200px; } .task-reassign-panel .individualAssignToBox { opacity: 0.3; } .task-reassign-panel .individualAssignToBox .input_container { margin-top: 10px; } .task-reassign-panel #input_container .fa.fa-search { color: #ec008c; } .task-reassign-panel #input { height: 20px; margin: 0; padding-right: 30px; border: none; width: 100%; } .task-reassign-panel #input_img { position: absolute; bottom: 2px; right: 5px; width: 24px; height: 24px; color: #ec008c; top: 3%; } .task-reassign-panel .CreateTaskBox .individualAssignToBox.Task-Assign-To { opacity: 0.3; } .task-reassign-panel .CreateTaskBox #input_container { position: relative; padding: 0px; margin-left: 0px; padding: 3%; } .task-reassign-panel .Task-Assign-To { width: 100%; height: 300px; } .task-reassign-panel .teamAssignToBox #input_img, .task-reassign-panel .individualAssignToBox #input_img { right: 5px; top: 9%; } .task-reassign-panel #input { height: 20px; margin: 0; padding-right: 30px; border: none; width: 100%; } */ /* task-reassign-page css end*/ .main-panel .content-wrapper form { margin-top: 0px !important; } /*---- Task detail page css start -----*/ .view-task-panel .content-wrapper { padding-left: 0.375rem; } .view-task-panel .card-head { /* padding-left: 6%; */ padding-bottom: 10px; } .view-task-panel .progress-dropdown { box-shadow: 0 2px 6px 0 rgb(0 0 0 / 16%); border-style: none; width: 32%; height: 100%; border-radius: 6px; padding-left: 2%; } .view-task-panel .CreateTaskBox { padding-bottom: 3%; /*margin-left: 3px; margin-right: 20px; padding-top: 15px; margin-top: 20px; */ margin: 23px; } .view-task-panel .CreateTaskBox.card-body { flex: 1 1 auto; min-height: 1px; padding: 1.4rem !important; } .view-task-panel .Task-Assign-To { width: 100% !important; border: 5px solid white; border-radius: 1%; } .task-details-main-page label { font-size: 0.97rem; line-height: 1.4rem; vertical-align: top; margin-bottom: .5rem; font-weight: 600; } .task-details-main-page .date-row .task-element span { margin-left: 10px; font-size: 12px; font-family: 'Rubik' } .task-details-main-page .assign-to-block .Task-Assign-To .row .col-9 .Task-view-title { margin-top: 20px; margin-left: 80px; font-size: 14px; } .task-details-main-page .assign-to-block .Task-Assign-To .row .col-3 .Task-view-title { margin-top: 20px; margin-left: 5px; font-size: 14px; } .task-details-main-page .task-id-title { color: #0c63e4; } .Task-detail-view-title { margin-left: 0px !important; margin-bottom: 10px; word-break: break-all; } .view-task-panel .assign-by-assign-to-block { padding: 1.6% 1.2%; padding-bottom: 0px; /* padding-top: 26px; */ } .task-details-main-page .form-control.reply-textarea { box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #ffffff; } .view-task-panel .description-block { padding: 0%; } .task-details-main-page .dot { height: 20px; width: 20px; background-color: #bbb; border-radius: 50%; display: inline-block; } /******** Individual task header buttons */ .view-task-panel .priority-btn { background-color: #F3F3F3; color: #ec008c; transition: all 0.5s ease-in-out 0s; /* border-radius: 1px solid #F3F3F3; */ border-radius: 0%; margin-right: 6px; /* border-radius: 0%; padding: 1.82% 3%; margin-left: 10px; height: auto; width: auto; */ /* padding: 0.52em 1em; */ /* margin-right: 1%; */ /* padding: 5px; */ /* margin-left: 10px; */ /* height: 28px; */ } .view-task-panel .edit-task-btn { border-radius: 0%; /* padding: 1.55% 2%; */ margin-right: 6px; height: unset; width: unset; padding: 0.78rem 0.6rem; } .view-task-panel .edit-task-btn:hover { color: #ec008c; } .Rectangle-btn.reassign-btn { border-radius: 0%; /* padding: 1.38% 2%; */ /* margin-top: 0.16rem; */ margin-right: 6px; height: unset; width: unset; padding: 0.7rem 0.6rem; } .hand-icon-added i { font-size: 15px; padding-right: 5px; color: #727064; } .view-task-header-buttons .btn-fw { border-radius: 0%; /* padding: 1.78% 3%; */ height: unset; width: unset; padding: 0.88rem 0.6rem; } .view-task-panel .date-show .right-inner-addon.date { box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #ffffff; } .view-task-panel .date-show .fa-calendar-o.date-picker { margin-top: 7px; } .view-task-panel .comment-section textarea { box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #ffffff; } .view-task-panel .Create.update { transition: all linear 0.3s; border: 1px solid #ec008c; } .taskCommentsSection, .taskHistorySection { max-height: 300px; overflow-y: auto; padding-right: 8px; } .view-task-panel .viewTaskTabPanel { padding-top: 45px; } .view-task-panel .media-body.comment-detail { margin-bottom: 20px; } .view-task-panel .delete-btn-for-reply { width: auto; height: auto; padding: 2px 6px; float: right; font-size: 18px; background-color: #EFF0F2; color: #ec008c; border: none; } @media (max-width: 415px) { .view-task-panel .view-task-header-buttons .Rectangle-btn { /* width: auto; */ } .view-task-panel .edit-task-btn { /* padding: 1.4% 1%; margin-left: 0px; */ } .view-task-panel .priority-btn { /* padding: 1.8% 4%; margin-left: 0px; */ } .view-task-header-buttons .btn-fw { /* padding: 1.7% 8%; margin-left: 0px; */ } .Rectangle-btn.reassign-btn { /* padding: 0.4% 10.4%; margin-left: 10px; margin-top: 3%; */ } .Rectangle-btn.reassign-btn i { display: none; } } @media (min-width: 300px) and (max-width: 767px) { .view-task-panel .priority-btn { padding: 0.875rem 0.4rem; margin-right: 2px; } .view-task-panel .edit-task-btn { margin-right: 2px; padding: 0.78rem 0.4rem; } .Rectangle-btn.reassign-btn { margin-right: 2px; padding: 0.7rem 0.4rem; margin-bottom: 10px; } .view-task-header-buttons .btn-fw { padding: 0.88rem 0.4rem; margin-right: 2px; } } @media (min-width: 575px) and (max-width: 620px) { .view-task-panel .priority-btn { padding: 0.875rem 0.6rem; } } @media (min-width: 300px) and (max-width: 575px) { .view-task-panel .view-task-header-buttons { text-align: left !important; margin-bottom: 10px; } .view-task-panel .priority-btn { float: left; margin-right: 5px; } .view-task-panel .view-task-header-buttons form { float: none !important; } .task-details-main-page button.task-accept-button { padding: 0.92rem 0.8rem !important; } .task-details-main-page button.task-reject-button { padding: 0.92rem 0.95rem !important; } } @media (min-width: 300px) and (max-width: 351px) { .view-task-panel .priority-btn { padding: 0.8rem 0.5rem; } .Rectangle-btn.reassign-btn { margin-top: 5px; } } /******** Individual task header buttons end*/ /* ----------Task detail page css end---------- */ @media (min-width: 300px) and (max-width: 740px) { .task-create-main-panel .form-group.row .col-md-6 { padding: 1.2em !important; } .task-edit-main-panel .form-group.row .col-md-6 { padding: 1.2em !important; } .view-task-panel .description-block { padding-top: 3%; } } @media (min-width: 100px) and (max-width: 767px) { .view-task-panel .assign-by-assign-to-block { padding: 4%; } } @media (min-width: 576px) and (max-width: 767px) {} .view-task-panel .task-element { margin-bottom: 1.6rem !important; } .view-task-panel .assign-to-block { padding-right: 0px !important; padding-left: 0px !important; } @media (max-width: 767px) { .nav-tabs .nav-link { padding: .75rem 0.3rem !important; } .view-task-panel .Task-Assign-To { overflow-x: auto; } .view-task-panel .card-head { /* padding-left: 6%; */ } .view-task-panel .CreateTaskBox { padding-bottom: 3%; margin: 3px 3px; } .main-panel .content-wrapper form span.right-inner-addon input { width: 100px; height: 30px; border: none; } .main-panel .content-wrapper form span.right-inner-addon input.task-list-filter { padding-left: 5px; } .dropdown .btn.btn-default.dropdown-toggle { padding: 0%; } .view-task-panel .content-wrapper { padding-left: 5%; } .task-edit-page .CreateTaskBox { margin-right: 6px; } } @media (max-width: 415px) { .view-task-panel .Rectangle-btn { /* width: 72px; */ } .view-task-panel .New-Task-Plus-Icon { display: none; } .view-task-panel .edit-task-btn i { display: none; } .task-list-filter { width: 100px; } .DataTableBox { margin-right: 2px; padding: 5% 0%; } } @media (max-width: 376px) { .main-panel .content-wrapper form span.right-inner-addon input { width: 90px; } .main-panel .content-wrapper form span.right-inner-addon i { display: none; } .task-list-filter { width: 82px; } } @media (min-width: 740px) and (max-width: 1290px) { .main-panel .content-wrapper form span.right-inner-addon input { width: 110px; } .view-task-panel .assign-by-assign-to-block { padding: 2%; } } /* task mgt css end */ /* Subtask page css start */ .main-panel.subtask-panel .CreateTaskBox { padding: 1.7rem !important; } .main-panel.subtask-panel label { font-size: 0.95rem; line-height: 1.4rem; vertical-align: top; margin-bottom: .5rem; font-weight: 600; } .main-panel.subtask-panel .CreateTaskBox .subtask-header { /* margin-bottom: 20px; */ max-width: 100%; font-size: 16px; margin-top: 0px; margin-bottom: 10px; width: 100% } .main-panel.subtask-panel .CreateTaskBox .subtask-header .task-id { color: #0c63e4; text-align: center; } .main-panel.subtask-panel .CreateTaskBox .subtask-header .Task-view-title { font-size: 14px; text-align: center; height: 15px; width: 100%; } .main-panel.subtask-panel .CreateTaskBox .subtask-header .create-new-subtask { color: #ec008c; text-align: center; } .main-panel.subtask-panel .CreateTaskBox .task-title-group .Task-view-title { font-size: 14px; } .main-panel.subtask-panel .CreateTaskBox .task-title-group input { box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #ffffff; } .main-panel.subtask-panel .CreateTaskBox .task-description-group .Task-view-title { font-size: 14px; } .main-panel.subtask-panel .CreateTaskBox .task-description-group textarea { box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #ffffff; } .main-panel.subtask-panel .CreateTaskBox .row.start-end-priority .Task-view-title { font-size: 14px; } .main-panel.subtask-panel .CreateTaskBox .row.start-end-priority .right-inner-addon { box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #ffffff; } .main-panel.subtask-panel .CreateTaskBox .row.start-end-priority .right-inner-addon .fa-calendar-o { margin-top: 7px; margin-right: 6px; } .main-panel.subtask-panel .CreateTaskBox .Task-view-title { font-size: 14px; } .main-panel.subtask-panel .CreateTaskBox .subtask-priority { box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); border-radius: 3px; border-style: none; height: 50px; } .main-panel.subtask-panel .CreateTaskBox .subtask-comment-area { box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #eef9ff; } .main-panel.subtask-panel .CreateTaskBox .error { color: red } .main-panel.subtask-panel #input_container { position: relative; padding: 0 0 0 5px; margin-left: 5px; margin-top: 10px; } .main-panel.subtask-panel .teamAssignToBox .team-section { overflow-y: auto; height: 200px; } .main-panel.subtask-panel .individualAssignToBox { opacity: 0.3; } .main-panel.subtask-panel .individualAssignToBox .input_container { margin-top: 10px; } .main-panel.subtask-panel #input_container .fa.fa-search { color: #ec008c; } .main-panel.subtask-panel #input { height: 20px; margin: 0; padding-right: 30px; border: none; width: 100%; } .main-panel.subtask-panel #input_img { position: absolute; bottom: 2px; right: 5px; width: 24px; height: 24px; color: #ec008c; top: 3%; } .main-panel.subtask-panel .CreateTaskBox .individualAssignToBox.Task-Assign-To { opacity: 0.3; } .main-panel.subtask-panel .CreateTaskBox #input_container { position: relative; padding: 0px; margin-left: 0px; padding: 3%; } #input_img { top: 25%; } .main-panel.subtask-panel .Task-Assign-To { width: 100%; height: 300px; } .main-panel.subtask-panel .comments-text-area { background-color: #eef9ff; border: none; } .main-panel.subtask-panel .teamAssignToBox #input_img, .main-panel.subtask-panel .individualAssignToBox #input_img { right: 5px; top: 9%; } .main-panel.subtask-panel #input_container { position: relative; padding: 0 0 0 5px; margin-left: 5px; } .main-panel.subtask-panel #input { height: 20px; margin: 0; padding-right: 30px; border: none; width: 100%; } /* .main-panel.subtask-panel #input_img { position: absolute; bottom: 2px; right: 5px; width: 24px; height: 24px; color: #ec008c; } */ @media (min-width: 300px) and (max-width: 740px) { .main-panel.subtask-panel .form-group.row .col-md-6.pl-4 { padding-left: 1em !important; } } /* Subtask page css end */ /* user profile start */ .user-profile-panel .content-wrapper { padding: 4%; } .user-profile-panel .content-wrapper .user-profile-title { font-weight: bold; color: #535353; } .user-profile-panel .user-info-row { padding: 3rem 5rem !important; } .user-profile-panel .user-info-row .profile-info { padding-bottom: 1.6em !important; } .user-profile-panel .user-info-row .user-info-col-2 { padding-left: 2%; } .user-profile-panel .user-info-row .user-info-col-3 { padding-left: 10%; } .user-profile-panel .content-wrapper .profile-picture, .user-profile-edit-panel .content-wrapper .profile-picture { border-radius: 50%; border: 3px solid #f6f6f6; box-shadow: 1px 0px 20px 5px rgb(0 0 0 / 21%); } .user-profile-edit-panel .content-wrapper { padding: 4%; } .user-profile-edit-panel .content-wrapper .CreateTeamBox { margin-right: 0%; padding-bottom: 2%; padding-top: 2%; } .user-profile-edit-panel .content-wrapper .edit-profile-title { font-weight: bold; color: #535353; } .user-profile-edit-panel .user-photo-edit-label { max-width: 12.5%; } .user-profile-edit-panel .custom-file { width: 105%; } .user-profile-edit-panel .user-photo-edit { /* padding-left: 4.5rem; */ } .navbar .navbar-menu-wrapper .navbar-nav .nav-item.nav-profile img { width: 30px; height: 30px; border-radius: 100%; } .edit-profile-icon i { color: #ec008c; padding: 0.11em; transition: all 0.2s ease-in-out 0s; } .edit-profile-icon i { transition: all linear .3s; } .edit-profile-icon i:hover { -webkit-transform: scale(1.2); -ms-transform: scale(1.2); transform: scale(1.2); } /* .edit-profile-icon i:hover { animation: bounce 900ms; } */ @keyframes bounce { 0%, 20%, 60%, 100% { -webkit-transform: translateY(0); transform: translateY(0); } 40% { -webkit-transform: translateY(-20px); transform: translateY(-20px); } 80% { -webkit-transform: translateY(-10px); transform: translateY(-10px); } } @media (min-width: 300px) and (max-width: 740px) { .user-profile-panel .user-info-row .user-info-col-2, .user-info-col-3 { text-align: center; } .user-profile-panel .user-info-row .vl { border-right: none; } .user-profile-edit-panel .user-photo-edit { padding-left: 1rem; } .user-profile-edit-panel .user-photo-edit-label { max-width: none; } .user-profile-edit-panel .custom-file { width: 100%; } } @media (min-width: 1000px) and (max-width: 1380px) { .user-profile-panel .user-info-row { padding: 3rem 1rem !important; } } /* user profile end */ /* Team Mgt css start */ .team-create-main-panel .content-wrapper { padding: 2% 4%; } .team-create-main-panel .team-create-title { margin-top: 10px; margin-left: 5px; font-weight: 600; color: #4B0E54; font-size: 18px; } .team-create-main-panel .form-group label { font-size: 0.95rem; line-height: 1.4rem; vertical-align: top; margin-bottom: .5rem; } .team-create-main-panel .CreateTeamBox { /* margin-right: 0%; padding-bottom: 0%; padding-top: 2%; */ padding: 2%; } .team-create-main-panel .team-lead-section { overflow-y: auto; /* height: 500px; */ max-height: 300px; } .team-create-main-panel .team-member-section { overflow-y: auto; /* height: 500px; */ max-height: 300px; } .team-create-main-panel .col-md-12 #input_container { position: relative; padding: 0 0 0 5px; margin-left: 5px; margin-top: 10px; } .team-create-main-panel .col-md-12 #input { height: 20px; margin: 0; padding-right: 30px; border: none; width: 100%; } .team-create-main-panel .col-md-12 #input_img { position: absolute; bottom: 2px; right: 5px; width: 24px; height: 24px; color: #ec008c; } /* --- team edit --*/ .team-edit-main-panel .content-wrapper { padding: 2% 4%; } .team-edit-main-panel .team-edit-title { margin-top: 10px; margin-left: 5px; font-weight: 600; color: #4B0E54; font-size: 18px; } .team-edit-main-panel #input_container { position: relative; padding: 0 0 0 5px; margin-left: 5px; margin-top: 10px; } .team-edit-main-panel #input { height: 20px; margin: 0; padding-right: 30px; border: none; width: 100%; } .team-edit-main-panel #input_img { position: absolute; bottom: 2px; right: 5px; width: 24px; height: 24px; color: #ec008c; } .team-edit-main-panel .team-lead-section { overflow-y: auto; max-height: 300px; } .team-edit-main-panel .team-member-section { overflow-y: auto; max-height: 300px; } /* --- team edit end--*/ @media (min-width: 300px) and (max-width: 615px) { .team-list-main-panel .teamTableBox { margin-left: 3px; margin-right: 3px; } .team-list-page-top-form-inline .form-control { margin-left: 0px; } .team-list-main-panel .team-list-page-buttons #button_list { margin-bottom: 3px; margin-right: 0px; } .team-list-page-buttons { padding-right: 15px; text-align: center; } .team-list-page-buttons .button { margin-left: 0px !important; } } /* Team mgt css end */ /* user management */ .users-list-main-panel .content-wrapper { /* padding: 2% 4%; */ padding: 15px 20px; } .users-list-main-panel .users-list-title { margin-top: 10px; margin-left: 5px; font-weight: 600; color: #4B0E54; font-size: 18px; } .users-list-main-panel .DataTableBox { margin-right: 0px; max-width: 100%; height: auto; } .users-list-main-panel .users-list-table-subHeader { margin-left: 10px; } .users-list-main-panel .users-list-table-subHeader .subHeader-col-1, .subHeader-col-2 { margin-top: 20px; } .users-list-main-panel .users-list-table-subHeader .subHeader-col-1 { padding: 0%; } .users-list-main-panel .users-list-table-subHeader .subHeader-col-2 { text-align: end; } .users-list-main-panel .user-list-search { margin-left: 10px; height: 20px; } .users-list-main-panel .user-table-section { margin-bottom: 20px; } .users-list-main-panel .user-list-Bulk-Upload, .user-list-New-User { border-radius: 5px; border: 1px solid #ec008c; color: #ec008c; background-color: white; margin-left: 10px; padding: 0.3em .5rem; transition: all 0.5s ease-in-out 0s; } .users-list-main-panel .dataTables_paginate.paging_simple_numbers { /* display: flex; justify-content: center; */ } /* table#userList tbody tr td:nth-child(2) { word-break: break-all; white-space: pre-line; line-height: 20px; } */ .navbar-menu-wrapper .dropdown-notifications .notification-menu .dropdown-toolbar { text-align: center; } .navbar-menu-wrapper .dropdown-notifications .notification-menu .dropdown-container hr { margin-bottom: 0.5rem; } .main-panel.user-create-main-panel .content-wrapper { /* padding: 2% 4%; */ padding: 15px 20px; } .main-panel.user-create-main-panel .content-wrapper .user-create-title { margin-top: 10px; margin-left: 5px; font-weight: 600; color: #4B0E54; font-size: 18px; } .main-panel.user-create-main-panel .custom-file-label::after { background-color: #eef9ff; border-left: none; } .main-panel.user-create-main-panel .CreateTaskBox { padding-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-bottom: 0px; } .main-panel.user-create-main-panel .form-group label { font-size: 0.95rem; line-height: 1.4rem; vertical-align: top; margin-bottom: .5rem; } .user-edit-main-panel .user-edit-title { margin-top: 10px; margin-left: 5px; font-weight: 600; color: #4B0E54; font-size: 18px; } .main-panel.user-edit-main-panel .content-wrapper { /* padding: 2% 4%; */ padding: 15px 20px; } .main-panel.user-edit-main-panel .CreateTaskBox { padding-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-bottom: 0px; } .main-panel.user-edit-main-panel .form-group label { font-size: 0.95rem; line-height: 1.4rem; vertical-align: top; margin-bottom: .5rem; } .bulk-upload-panel .content-wrapper { padding: 10% 15%; } .bulk-upload-panel .bulk-upload-form { padding: 4% 8%; } .bulk-upload-panel .bulk-upload-form .file-up-label { color: #4f5e6d; font-weight: bold; } .bulk-upload-panel .custom-file { box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); border-radius: 0.35em; } .bulk-upload-panel .custom-file .custom-file-label { border: none; } .bulk-upload-panel .custom-file-label::after { height: 35px; padding: 0.39rem 0.75rem; background-color: #7A8FA4; color: #fafafa; border-left: none; } .bulk-upload-panel .bulk-download { text-decoration: underline; } /* create */ .user-create-main-panel .select2-container .select2-selection--multiple { min-height: 41px !important; } .user-create-main-panel .select2-container--default .select2-selection--multiple { border: 1px solid #CED4DA !important; } .user-create-main-panel .select2-container--default .select2-selection--multiple .select2-selection__choice { font-size: 13px; line-height: 2; } .user-edit-main-panel .select2-container .select2-selection--multiple { min-height: 41px !important; overflow: hidden !important; } .user-edit-main-panel .select2-container--default .select2-selection--multiple { border: 1px solid #CED4DA !important; } .user-edit-main-panel .select2-container--default .select2-selection--multiple .select2-selection__choice { font-size: 13px; line-height: 2; } /* create end*/ @media (min-width: 300px) and (max-width: 917px) {} @media (min-width: 992px) and (max-width: 1110px) {} @media (min-width: 616px) and (max-width: 740px) { .users-list-main-panel .users-list-table-subHeader .subHeader-col-1 .form-control { width: 60%; margin-left: auto; } .users-list-main-panel .user-list-search { margin-left: 0px; } .users-list-main-panel .users-list-table-subHeader .subHeader-col-2 { text-align: center; } .users-list-main-panel .user-list-Bulk-Upload, .user-list-New-User { margin-left: 2px; } } @media (min-width: 300px) and (max-width: 615px) { .users-list-main-panel .users-list-table-subHeader .subHeader-col-1 .form-control { width: 65%; /* margin-left: 16%; */ } .users-list-main-panel .users-list-table-subHeader .subHeader-col-1 span b { font-size: 12px; } .users-list-main-panel .users-list-table-subHeader .subHeader-col-2 { text-align: center; padding-right: 0px; padding-left: 0px; } .users-list-main-panel .user-list-Bulk-Upload, .user-list-New-User { margin-left: 2px; } .users-list-main-panel .user-list-Bulk-Upload, .user-list-New-User { padding: 0.3em 0.1rem; } .users-list-main-panel .users-list-table-subHeader { margin-left: 2px; } .bulk-upload-panel .content-wrapper { padding: 6% 6%; } } /* user mangement end */ /* Role Management */ .role-list-main-panel .content-wrapper { /* padding: 2% 4%; */ padding: 15px 20px; } .role-list-main-panel .role-list-title { margin-top: 10px; margin-left: 5px; font-weight: 600; color: #4B0E54; font-size: 18px; } .role-list-main-panel .DataTableBox { margin-right: 0px; max-width: 100%; height: auto; } .role-list-main-panel .role-list-table-subHeader { margin-left: 10px; } .role-list-main-panel .role-list-table-subHeader .subHeader-col-1, .subHeader-col-2 { margin-top: 20px; } .role-list-main-panel .role-list-table-subHeader .subHeader-col-1 { padding: 0%; } .role-list-main-panel .role-list-table-subHeader .subHeader-col-2 { text-align: end; } .role-list-main-panel .role-list-table-subHeader .role-list-search { margin-left: 10px; height: 20px; } .role-list-main-panel .role-list-New-role-btn { border-radius: 5px; border: 1px solid #ec008c; color: #ec008c; background-color: white; margin-left: 10px; padding: 0.3em .5rem; transition: all 0.5s ease-in-out 0s; } .role-list-main-panel .dataTables_paginate.paging_simple_numbers { /* display: flex; justify-content: center; */ } .role-create-main-panel .content-wrapper { /* padding: 2% 4%; */ padding: 15px 20px; } .role-create-main-panel .content-wrapper .role-create-title { margin-top: 10px; margin-left: 5px; font-weight: 600; color: #4B0E54; font-size: 18px; } .role-create-main-panel .form-check { margin-top: 0px; } .CreateRolekBox { padding-bottom: 2%; padding-top: 15px; box-shadow: 0 2px 6px 0 rgb(0 0 0 / 16%); background-color: #ffffff; margin-bottom: 20px; margin-top: 20px; } .role-create-main-panel .add-role-form { padding: 1% 3%; } .role-create-main-panel .add-role-form .role-group { padding-left: 7%; } .role-create-main-panel .form-group label { font-size: 0.95rem; line-height: 1.4rem; vertical-align: top; margin-bottom: .5rem; } .role-edit-main-panel .content-wrapper { /* padding: 3% 4%; */ padding: 15px 20px; } .role-edit-main-panel .content-wrapper .role-edit-title { margin-top: 10px; margin-left: 5px; font-weight: 600; color: #4B0E54; font-size: 18px; } .role-edit-main-panel .form-group label { font-size: 0.95rem; line-height: 1.4rem; vertical-align: top; margin-bottom: .5rem; } .role-edit-main-panel .form-check { margin-top: 0px; } .role-edit-main-panel .add-role-form .role-group { padding-left: 7%; } .role-edit-main-panel .add-role-form { padding: 1% 3%; } @media (min-width: 300px) and (max-width: 917px) {} @media (min-width: 992px) and (max-width: 1110px) {} @media (min-width: 616px) and (max-width: 740px) { .role-list-main-panel .role-list-table-subHeader .subHeader-col-1 .form-control { width: 60%; margin-left: auto; } .role-list-main-panel .role-list-search { margin-left: 0px; } .role-list-main-panel .role-list-table-subHeader .subHeader-col-2 { text-align: center; } .role-list-main-panel .role-list-New-role-btn { margin-left: 2px; } } @media (min-width: 300px) and (max-width: 615px) { .role-list-main-panel .role-list-table-subHeader .subHeader-col-1 .form-control { width: 63%; } .role-list-main-panel .role-list-table-subHeader .subHeader-col-2 { text-align: center; padding-right: 0px; padding-left: 0px; } .role-list-main-panel .role-list-table-subHeader { margin-left: 0px; } .role-list-main-panel .role-list-table-subHeader .role-list-search { margin-left: 10px; /*height: 20px; */ } .role-list-main-panel .role-list-table-subHeader .subHeader-col-1 { margin-left: 3%; } .role-list-main-panel .role-list-table-subHeader .subHeader-col-1 span b { font-size: 12px; } .role-edit-main-panel .add-role-form .role-group { padding-left: 22%; } .role-create-main-panel .add-role-form .role-group { padding-left: 22%; } } /* Role Management end */ .custom-btn { /* box-shadow: 0 2px 6px 0 rgb(0 0 0 / 16%); */ background-color: #ec008c; margin-left: 10px; color: white; padding: .7em 2.5em; border: 2px solid #ec008c; border-radius: 5px; transition: all linear 0.3s; } .custom-btn:hover { background-color: white; border: 2px solid #ec008c; color: #ec008c; /* box-shadow: rgb(22 63 82 / 15%) 0px 18px 21px 0px; */ /* transform: translate(0px, -2px); */ } .custom-outline-btn { background-color: white; border: 2px solid #ec008c; color: #ec008c; border-radius: 5px; text-decoration: none !important; padding: .7em 2.3em; transition: all linear 0.3s; } .custom-outline-btn:hover { background-color: #ec008c; color: white; text-decoration: none; /* box-shadow: rgb(22 63 82 / 15%) 0px 18px 21px 0px; */ /* transform: translate(0px, -2px); */ } .custom-input { box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #ffffff; outline: none; } .btn-hover { transition: all 0.3s ease-in-out 0s; } .btn-hover :hover { background-color: #ec008c; color: white; transition: all 0.3s ease-in-out 0s; } /* .kanban-hover :hover { background-color: #ec008c; transition: all 0.3s ease-in-out 0s; } */ .kanban-hover:hover .kanban-card-header-para { color: #ec008c!important; } .btn-hover2 { transition: all 0.3s ease-in-out 0s; } .btn-hover2:hover { background-color: white; color: #ec008c !important; border: 1px solid #ec008c; } /* .Rectangle-Edit:hover { background: white; color: #ec008c; border: 1px solid #ec008c; } */ .comment-btn.btn:hover { color: white; text-decoration: none; } .comment-btn { transition: all 0.5s ease-in-out 0s; } .Create.update:hover { background-color: white; color: #ec008c !important; border: 1px solid #ec008c; } .comment-btn:hover { background-color: white; color: #ec008c !important; border: 1px solid #ec008c; } @media (min-width: 300px) and (max-width: 760px) { .task-accept-button { /* width: 46% !important; padding: 0.5rem 0.4rem; */ } .task-reject-button { /* width: 45% !important; padding: 0.5rem 0.5rem; */ } .bulk-upload-panel .custom-btn { padding: .7em 1em; } .bulk-upload-panel .custom-outline-btn { padding: .7em 1em; } } /*------ checkbox design --------*/ /* The container */ .container { display: block; position: relative; padding-left: 35px; margin-bottom: 12px; cursor: pointer; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; word-break: break-all } /* Hide the browser's default checkbox */ .container input { position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0; } /* Create a custom checkbox */ .checkmark { position: absolute; top: 0; left: 0; /* height: 25px; width: 25px; */ /* background-color: #eee; */ border: 1px solid #ec008c; display: inline-block; font: 16px/1em sans-serif; height: 16px; width: 16px; margin: 0 .25em 0 0; padding: 0; vertical-align: top; } /* On mouse-over, add a grey background color */ .container:hover input~.checkmark { /* background-color: #ccc; */ } /* When the checkbox is checked, add a blue background */ .container input:checked~.checkmark { /* background-color: #2196F3; */ } /* Create the checkmark/indicator (hidden when not checked) */ .checkmark:after { content: ""; position: absolute; display: none; } /* Show the checkmark when checked */ .container input:checked~.checkmark:after { display: block; } /* Style the checkmark/indicator */ .container .checkmark:after { /* left: 9px; top: 5px; width: 5px; height: 10px; */ /* border: solid white; */ /* border-width: 0 3px 3px 0; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg); */ background: #ec008c; color: white; content: "\2713"; text-align: center; padding: 0%; position: absolute; top: -1px; left: 0px; width: 16px; } /*---------- checkbox design end ------------*/ /*---------- Kanban css start ------------*/ .kanban-card-header-todo-dot { height: 10px; width: 10px; border-radius: 50%; background-color: #FFCE00; margin-right: 10px; margin-top: 5px; float: left; } .kanban-card-header-progress-dot { height: 10px; width: 10px; border-radius: 50%; background-color: #095CF8; margin-right: 10px; margin-top: 5px; float: left; } .kanban-card-header-completed-dot { height: 10px; width: 10px; border-radius: 50%; background-color: #12B002; margin-right: 10px; margin-top: 5px; float: left; } /* ----- task card ---- */ .task-card-body { margin: 0; padding: 0; box-sizing: border-box; background-color: #ffffff; font-family: 'Roboto', Helvetica, sans-serif; } .task-card-body .app { display: flex; flex-flow: column; align-items: center; justify-content: center; width: 100vw; height: 80vh; /* height: calc(100vh - 165px); */ overflow-y: hidden; } .task-card-body .lists { display: flex; align-items: center; justify-content: center; width: 100%; overflow-x: auto; overflow-y: hidden; height: 100%; } .task-card-body .lists .list { display: flex; flex-flow: column; flex: 1; width: 100%; min-width: 250px; max-width: 390px; height: 100%; /* min-height: 150px; */ overflow-y: scroll; overflow-x: hidden; margin: 0 15px; padding: 25px; transition: all 0.2s linear; border-right: 1px solid rgb(226, 226, 226); padding-top: 5px; } .task-card-body .lists .list .list-item { width: 100%; background-color: #F3F3F3; border-radius: 5px; /* padding: 15px 20px; */ padding-left: 20px; padding-right: 20px; padding-top: 10px!important; padding-bottom: 5px!important; margin: 4px 0px; background-color: #ffffff!important; box-shadow: 2px 2px 2px 2px #AFAFAF; } .task-card-body .list-item-item { font-size: 15px; /* display: flex; */ align-items: center; } /* ----- task card end---- */ .kanban-card-header-para { font-weight: 900; word-break: break-all; /* height: 35px; */ font-family: 'Rubik', sans-serif!important; /* transition: all linear 0.5s; */ } .task-card-body .lists .list .list-item { transition: all linear .3s; } .task-card-body .lists .list .list-item:hover { /* box-shadow: 0 20px 30px rgba(33,33,33,.2)!important; */ -webkit-transform: scale(1.05, 1.05); -o-transform: scale(1.05, 1.05); -moz-transform: scale(1.05, 1.05); transform: scale(1.05); } .sticky { position: fixed; top: 135px; width: 100%; } .task-card-body .lists .list .list-item:hover .kanban-card-header-left a p { color: #ec008c!important; } .kanban-card-header-left a p { transition: all linear .3s; margin-bottom: 0px; } .kanban-card-header-right { text-align: right; } .kanban-card-footer { display: flex; align-items: center; padding-left: 15px; margin-top: 5px; } .task-card-body .lists .list .list-item { box-shadow: 0 0px 10px 1px #ddd; /* margin-bottom: 20px; */ /* padding-bottom: 5px!important; */ margin-bottom: 6px; transition: all linear 0.5s; } .task-card-body .lists .list { margin-top: 90px; border-right: none; position: relative; margin-left: 0px; } .task-card-body .lists .list::after { content: ""; display: block; background: #ddd; width: 1px; height: 100%; position: absolute; right: -3%; top: 11%; } /* .task-card-body .lists .list:nth-of-type(1):after { right: -7%; } */ .task-card-body .lists .list:nth-of-type(3):after { /* content: ""; */ display: none !important; } .task-card-body .kanban-todo-col { margin-bottom: 20px; margin-top: 1px; font-size: 18px; color: #FFCE00; font-weight: 900; font-family: 'Rubik', sans-serif!important; } .task-card-body .kanban-inprogress-col { margin-bottom: 15px; margin-top: 1px; font-size: 18px; color: #095CF8; font-weight: 900; font-family: 'Rubik', sans-serif!important; } .task-card-body .kanban-completed-col { margin-bottom: 20px; margin-top: 1px; font-size: 18px; color: #12B002; font-weight: 900; font-family: 'Rubik', sans-serif!important; } .list-item-item.todo-description { padding-top: 5px; height: 70px; line-height: 20px; /* padding-bottom: 25px; */ border-bottom: 1px solid #909190; font-size: 13px; font-family: 'Rubik', sans-serif!important; color: #909190; word-break: break-all; } .list-item-item.in-progress-description { padding-top: 5px; line-height: 20px; /* padding-bottom: 25px; */ height: 70px; border-bottom: 1px solid #909190; font-size: 13px; font-family: 'Rubik', sans-serif!important; color: #909190; word-break: break-all; } .list-item-item.completed-description { padding-top: 5px; line-height: 20px; /* padding-bottom: 25px; */ height: 70px; border-bottom: 1px solid #909190; font-size: 13px; font-family: 'Rubik', sans-serif!important; color: #909190; word-break: break-all; } .task-card-body .kanban-card-member-image { height: 40px; width: 40px; margin-left: -19px; border-radius: 50%; border: white solid 3px; } @media (max-width:1365px) { .task-card-body .lists .list { margin-left: 0px; } .task-card-body .lists .list::after { right: -3% !important; } } @media (max-width:768px) { .kanban-card-header-right { text-align: left; margin-left: 15px; } } /*---------- Kanban css end ------------*/ /* task list css */ .task-index-panel .list-view, .task-index-panel .kanban-view, .list-view-text, .kanban-view-text { cursor: pointer; } .task-list-view, .task-kanban-view { display: inline-flex; justify-content: center; transform: translate(0px, 3px); } .task-list-view i, .task-kanban-view i { font-size: 21px; margin-left: 5px; } .task-kanban-view { color: #7C90A5; } /* task list css end*/ /*header notification css start*/ .notification-top-section .dropdown-toolbar-actions { float: right; padding-right: 10px; color: #ec008c; cursor: pointer; line-height: 18px; } .navbar-menu-wrapper .dropdown-notifications .notification-menu .dropdown-toolbar { text-align: left; padding-left: 10px; padding-top: 10px; } /*header notification css end*/ .assign-by-me-badge, .assign-to-me-badge { border-radius: 3px; padding-bottom: .28rem; } .file-show-area { font-family: 'Rubik', sans-serif; font-size: 14px; color: #ec008c; } .removeFile { color: red; padding-bottom: 10px; } /* task analytics css start */ .task-analytics-main-panel .analytics-task-status-crd { padding: 10px; border-radius: 5px; box-shadow: 0 2px 14px 0 rgb(180 180 180 / 50%) } /* .task-analytics-main-panel .overall-task-quantity { padding-left: 45px; } */ .task-analytics-main-panel .overall-task-quantity h4.task-quantity-title { font-size: 13px; padding-top: 10px; color: #475f7b; font-weight: 500; } .task-analytics-main-panel .overall-task-quantity h3.task-quantity-number { font-size: 25px; padding-top: 5px; } .task-analytics-main-panel .analytics-task-status-crd .overall-task-img { padding: 8px 25px; } .task-analytics-main-panel .analytics-task-status-crd .overall-task-img img { height: 50px; } .task-analytics-main-panel .analytics-task-status-crd .overall-task-img::after { content: ""; display: block; height: 53px; width: 1px; background: #EEEEEE; float: right; } .task-quantity-number.Programs { color: #f2b70a; } .task-quantity-number.Members { color: #ce006b; } .task-quantity-number.Tasks { color: #6c63ff; } .task-quantity-number.Pending { color: #C0C0C0; } .task-quantity-number.Accepted { color: #f2b70a; } .task-quantity-number.In-Progress { color: #188ef9; } .task-quantity-number.Completed { color: #4dc400; } .task-quantity-number.Rejected { color: #ec008c; } .task-quantity-number.overdue { color: #ff0404 !important; } .card.direct-supervise-status { color: #475f7b; } .card.direct-supervise-status .subHeader-col-1 { padding-top: 20px; } .card.direct-supervise-status .col-sm-7.subHeader-col-2 { text-align: right; } .card.direct-supervise-status .form-inline { display: unset; } .card.direct-supervise-status .supervise-status-search { height: 10px; border-color: #ec008c; margin-left: 10px; } table.supervise-status-table tr th { color: #ec008c; } table.supervise-status-table tr td { color: #475f7b; } .card.direct-supervise-status div.dataTables_wrapper div.dataTables_info { float: left; } .card.direct-supervise-status div.dataTables_wrapper div.dataTables_paginate ul.pagination { margin-top: 10px; } .card.direct-supervise-status .DataTableBox { border-radius: 5px; } .program-details .form-group h3 { font-size: 20px; font-weight: bold; color: #475f7b; margin-bottom: 20px; } .task-analytics-main-panel .program-details { transform: translate(10px, 17px); z-index: 1; } .task-analytics-main-panel .select2-selection.select2-selection--single { padding: 0px; height: 35px !important; border-color: #ec008c; } .task-analytics-main-panel .select2-selection--single .select2-selection__rendered { line-height: 35px !important; font-size: 13px; } .task-analytics-main-panel .select2-selection--single .select2-selection__arrow { height: 34px !important; right: 2px !important; } .program-wise-task-details { background: #eef9ff; border: 1px solid #ec008c; border-radius: 5px; margin: 0px 5px; padding: 15px 15px; } .program-wise-task-details .custom-col-width { max-width: 10.66667% !important; } .program-wise-task-details .analytics-task-status-crd .overall-task-img { padding: 8px 15px !important; } .program-wise-task-details .kanban-card-footer { display: flex; align-items: center; padding-left: 0px; margin-top: 16px; background-color: unset; } .program-wise-task-details .supervise-status-search { height: 10px; border-color: #ec008c; margin-left: 10px; } .program-wise-task-details .col-sm-7.subHeader-col-2 { text-align: right; } .task-analytics-main-panel .program-wise-task-details .analytics-task-status-crd { box-shadow: none; border: 1px solid #ec008c; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; } .task-analytics-main-panel .program-wise-task-details .DataTableBox { box-shadow: none; padding-top: 20px; border-bottom-right-radius: 5px; } .task-analytics-main-panel .program-wise-task-details .form-inline { display: unset; } .task-analytics-main-panel .program-wise-task-details .form-inline span b { line-height: 25px; } .program-wise-task-details .role-list-table-subHeader .subHeader-col-2 { margin-top: 0px; } .directSuperviseStatusCard { box-shadow: 0 2px 14px 0 rgb(180 180 180 / 50%); border-radius: 5px; } .Overdue-task-status-graph .wrapper { padding: 50px 10px; background: #fff; border-radius: 4px; box-shadow: 0 2px 14px 0 rgb(180 180 180 / 50%); } .Overdue-task-status-graph canvas { background: #fff; height: 400px; } .directSuperviseStatusCard .analytics-task-status-crd .overall-task-img::after { transform: translateX(-18px); } .task-analytics-main-panel .right-inner-addon i { right: unset; left: 90px; } @media (min-width: 991px) and (max-width: 1088px) { .program-wise-member-images { padding: 0%; } .program-wise-task-details .overall-task-quantity h4.task-quantity-title { font-size: 10px; font-weight: bold; } .program-wise-task-details .overall-task-quantity h3.task-quantity-number { font-size: 20px; } .program-wise-task-details .supervise-status-search { float: none; } .task-analytics-main-panel .analytics-task-status-crd.top-section .overall-task-img::after { display: none; } } @media (min-width: 768px) and (max-width: 990px) { .program-wise-task-details .supervise-status-search { float: none; } .task-analytics-main-panel .analytics-task-status-crd.top-section .overall-task-img::after { display: none; } } @media (min-width: 576px) and (max-width: 767px) { .card.analytics-task-status-crd.top-section { text-align: center; } .program-wise-task-details .supervise-status-search { float: none; } .directSuperviseStatusCard .DataTableBox .pagination { float: none; margin-top: 10px !important; } .analytics-task-status-crd.top-section .overall-task-img::after { display: none; } .card.direct-supervise-status .supervise-status-search { float: none; } .program-details.text-center .select2-container { width: 115px !important; } } @media (min-width: 300px) and (max-width: 575px) { .directSuperviseStatusCard .card.analytics-task-status-crd { text-align: center; } .program-wise-task-details .analytics-task-status-crd .overall-task-img { text-align: center; } .program-wise-task-details .kanban-card-footer { justify-content: center; } .program-wise-task-details .overall-task-quantity h4.task-quantity-title { font-size: 9px; font-weight: bold; } .program-wise-task-details .overall-task-quantity h3.task-quantity-number { font-size: 20px; } .program-wise-task-details .analytics-task-status-crd .overall-task-img::after { display: none; } .program-wise-task-details .supervise-status-search { float: right; width: 48%; } .program-wise-task-details .col-sm-7.subHeader-col-2 { text-align: center; margin-top: 10px; } .directSuperviseStatusCard .DataTableBox .pagination { float: none; margin-top: 10px !important; } .card.analytics-task-status-crd.top-section { text-align: center; } .card.analytics-task-status-crd.top-section .overall-task-quantity { /* text-align: left; */ } .analytics-task-status-crd.top-section .overall-task-img::after { display: none; } .card.direct-supervise-status .col-sm-7.subHeader-col-2 { text-align: center; } .program-details.text-center .select2-container { width: 115px !important; } .task-analytics-main-panel span.right-inner-addon { float: right !important; padding: 0px; } .task-analytics-main-panel .right-inner-addon i { display: none; } .task-analytics-main-panel .right-inner-addon p { font-size: 10px; } .task-analytics-main-panel .task-list-filter { margin-top: 4px; } .task-analytics-main-panel .task-list-filter#start_date { /* float: right; */ width: 64px; margin-right: 10px; } .task-analytics-main-panel .task-list-filter#end_date { /* float: right; */ width: 64px; /* margin-left: 10px; */ } .task-analytics-main-panel #priority { margin-top: 4px; /* margin-bottom: 15px; */ } .task-analytics-main-panel .Rectangle-btn { width: 95px; } .task-analytics-main-panel .subHeader-col-1 span b { font-size: 12px; float: left; } .card.direct-supervise-status .supervise-status-search { float: right; width: 47%; } } @media (min-width: 300px) and (max-width: 376px) { .task-analytics-main-panel .task_Status_date_filter { position: relative; } .task-analytics-main-panel span.right-inner-addon.end-date-box { position: absolute; left: 29%; } .task-analytics-main-panel span.right-inner-addon.start-date-box { position: absolute; left: 8%; } .card.analytics-task-status-crd.top-section { margin-top: 25px; } } /* task analytics css end */ /* individual overall task status css start */ .individual-all-task-details .supervise-status-search { float: none; height: 10px; margin-left: 10px; border-color: #ec008c; } .individual-all-task-details .subHeader-col-1 { margin-top: 20px; } .individual-all-task-details .col-sm-7.subHeader-col-2 { text-align: right; } .task-analytics-main-panel .individual-all-task-details .form-inline { display: unset; } .task-analytics-main-panel .individual-all-task-details .form-inline span b { line-height: 25px; } .task-analytics-main-panel .individual-all-task-details .DataTableBox { border-radius: 5px; } /* .individual-all-task-details-wrapper span.right-inner-addon i { right: 5px!important; top: 0px!important; } */ .individual-all-task-details-wrapper .right-inner-addon.date.datepicker input { font-size: 12px; } .individual-all-task-details-wrapper tbody button.btn-fw { padding: 8px 0px !important; border-radius: 1px !important; width: 95px; } .individual-all-task-details-wrapper tbody p.badge { padding: .2rem .5625rem; } .individual-all-task-details-wrapper div.dataTables_wrapper div.dataTables_info { float: left; } .individual-all-task-details-wrapper div.dataTables_paginate ul.pagination { margin-top: 10px !important; } .task-assigned-person-name { color: #ec008c; } .task-assigned-person-name b { font-size: 13px; } .individual-all-task-details-wrapper .dropdown.assignee-section-dropdown .dropdown-menu { min-width: 16rem; padding-left: 8px; padding-right: 8px; } .individual-all-task-details-wrapper .dropdown.assignee-section-dropdown .dropdown-menu .checkbox { display: none; } .individual-all-task-details-wrapper .dropdown.assignee-section-dropdown .dropdown-menu .assignee-section p { padding-left: 0px; } .individual-all-task-details .btn-custom-reset { border: none !important; background: content-box !important; color: #ec008c !important; padding-left: 6px; } /* .individual-all-task-details .table-responsive::-webkit-scrollbar { display: none; } */ @media (min-width: 991px) and (max-width: 1078px) { .individual-all-task-details-wrapper .analytics-task-status-crd .overall-task-img::after { display: none; } } @media (min-width: 300px) and (max-width: 883px) { .individual-all-task-details-wrapper .analytics-task-status-crd .overall-task-img::after { display: none; } } @media (min-width: 300px) and (max-width: 768px) { .individual-all-task-details-wrapper .analytics-task-status-crd { text-align: center; } } @media (min-width: 300px) and (max-width: 575px) { .individual-all-task-details-wrapper .analytics-task-status-crd { text-align: center; } .individual-all-task-details-wrapper .date-picker-sectioon { text-align: left !important; margin: 8px 0px; } .individual-all-task-details-wrapper .date-picker-for-filter { text-align: left !important; margin-top: 10px; } .individual-all-task-details-wrapper .individual-all-task-details .col-sm-7.subHeader-col-2 { text-align: center; } .individual-all-task-details-wrapper .right-inner-addon.date.datepicker input#start_date { float: unset; } .individual-all-task-details-wrapper .right-inner-addon.date.datepicker input#end_date { float: unset; } } @media (min-width: 575px) and (max-width: 710px) { /* .individual-all-task-details-wrapper span input.task-list-filter { margin-top: 10px !important; } */ } @media (min-width: 300px) and (max-width: 376px) { .individual-all-task-details-wrapper .date-picker-for-filter { position: relative; } .individual-all-task-details-wrapper .date-picker-for-filter .datepicker.from-date { position: absolute; left: 5%; } .individual-all-task-details-wrapper .date-picker-for-filter .datepicker.to-date { position: absolute; left: 27%; } .individual-all-task-details-wrapper .analytics-task-status-crd { margin-top: 10%; } } /* individual overall task status css end */ /* report page css start */ .main-panel.report-page .card { padding-top: 26px; margin-top: 40px; border-radius: 15px; box-shadow: 0 0px 10px 1px #ddd; } .main-panel.report-page .card .card-body input[type="submit"] { font-size: 14px; padding: 8px 44px; margin-top: 11px; margin-bottom: 10px; color: #fff; background: #ec008c; border: 1px solid #ec008c; border-radius: 20px; transition: all linear 0.3s; } .main-panel.report-page .card .card-body input[type="submit"]:hover { color: #ec008c; background: #fff; border: 1px solid #ec008c; } .main-panel.report-page h3 { margin-top: 25px; margin-left: 5px; font-weight: 600; color: #4B0E54; font-size: 16px; } /* .main-panel.report-page .card .card-body .form-group { margin-left: 95px; } */ /* report page css end */ input[type=date] { -webkit-appearance: none; /* display: none; */ } /*################ azmain css end ###############*/ .loading { position: fixed; top: 0; right: 0; bottom: 0; left: 0; /* background: #fff; */ } .loader { left: 50%; margin-left: -4em; font-size: 10px; border: .8em solid rgba(218, 219, 223, 1); border-left: .8em solid #ec008c; animation: spin 1.1s infinite linear; } .loader, .loader:after { border-radius: 50%; width: 8em; height: 8em; display: block; position: absolute; top: 50%; margin-top: -4.05em; } @keyframes spin { 0% { transform: rotate(360deg); } 100% { transform: rotate(0deg); } } .memberNameBox { padding: 0.25rem !important; display: inline-block; padding-right: 9px !important; padding-bottom: 7px !important; } .memberNameBox i { color: red; } .custom-sorting{ font-size:12px; color:#7a848d; transform:rotate(90deg); }
public/backend/assets/templates/css/custom-styles.css
body { font-family: 'Rubik', sans-serif!important; } .logo_brac { width: 150px; height: 40px; margin-left: 10px; } .sidebar-icon { width: 25px; height: 25px; } .Support-Contact { position: fixed; width: 200px; height: 150px; margin-top: 500px; margin-left: 13px; padding: 20px 10px 21px 16px; border-radius: 13px; background-color: #eef9ff; } .Pie-Chart-Card-Box { height: 320px; padding: 20px 20px 20px 20px; border-radius: 6px; box-shadow: 0 2px 14px 0 rgba(180, 180, 180, 0.5); background-color: #ffffff; } .Task-List-Card-Box { height: 320px; margin-top: 45px; margin-bottom: 14px; padding-top: 20px; border-radius: 6px; box-shadow: 0 2px 14px 0 rgba(180, 180, 180, 0.5); background-color: #ffffff; } .New-Task-Card-Box { min-height: 320px; padding-left: 15px; padding-top: 20px; padding-bottom: 10px; border-radius: 6px; box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #ffffff; } .Rectangle-btn { width: 116px; height: 27px; border-radius: 19px; border: solid 1px #ec008c; background-color: white; color: #ec008c; transition: all linear 0.3s; } .New-Task-Plus-Icon { height: 20px; width: 20px; margin-bottom: 3px; } .New-TAsk { width: 58px; height: 14px; font-family: Rubik; font-stretch: normal; font-style: normal; letter-spacing: normal; text-align: center; color: #ec008c; } .Task-status-in-chart { font-family: Rubik; font-size: 11px; font-weight: 600; font-stretch: normal; font-style: normal; letter-spacing: normal; text-align: center; } .New-TEAM { font-family: Rubik; font-size: 12px; font-weight: 500; font-stretch: normal; font-style: normal; line-height: 3.67; letter-spacing: normal; text-align: left; color: #ec008c; } .Blue-Color-BG { height: 550px; border-radius: 6px; background-color: #eef9ff; max-width: 100%; height: auto; padding-right: 1.375rem; padding-bottom: 10px; } .Yellow-Color-BG { border-radius: 6px; background-color: #FFFBEF !important; max-width: 100%; height: auto; padding-right: 1.375rem; } .Dash-Line { width: 48px; height: 3px; margin-top: 10px; margin-left: 5px; opacity: 1; background-color: #ec008c; } .Timestamp-BG { width: 200px; height: 30px; margin-top: 15px; padding-top: 7px; text-align: center; box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.19); background-color: rgba(24, 142, 249, 0.11); } .List-Item-BG-White { min-height: 86px; margin-bottom: 15px; margin-right: 15px; padding-left: 10px; padding-right: 10px; padding-top: 10px; padding-bottom: 10px; object-fit: contain; border-radius: 6px; box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16); background-color: #ffffff; } .Hour-ago { /* width: 57px; height: 14px; margin: 14px 0 14px 77px; */ font-family: Rubik; font-size: 12px; font-weight: normal; font-stretch: normal; font-style: normal; line-height: 2; letter-spacing: normal; text-align: left; color: #7a8fa4; } .Task-title { width: 157px; height: 18px; font-family: Rubik; font-size: 15px; font-weight: 500; font-stretch: normal; font-style: normal; line-height: 2.2; letter-spacing: normal; text-align: left; color: #000000; } .Assigned-By { width: 146px; height: 14px; font-family: Rubik; font-size: 12px; font-weight: normal; font-stretch: normal; font-style: normal; line-height: 2.75; letter-spacing: normal; text-align: left; } .Overall-Progress { font-family: Rubik; font-size: 12px; font-weight: normal; font-stretch: normal; font-style: normal; letter-spacing: normal; text-align: center; } .Filter-Icon { width: 24px; height: 24px; } .All { border: none; height: 25px; font-family: Rubik; font-size: 14px; font-weight: 400; /* font-stretch: normal; */ /* font-style: normal; */ line-height: 3.44; letter-spacing: normal; text-align: left; color: #000000; } .View-Icon { width: 24px; height: 24px; margin-left: 20px; } .DataTableBox { margin-left: 3px; margin-right: 20px; box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #ffffff; } .teamTableBox { margin-left: 3px; margin-right: 26px; margin-bottom: 4%; box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #ffffff; } .CreateTaskBox { padding-bottom: 2%; margin-left: 3px; margin-right: 20px; padding-top: 15px; box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #ffffff; margin-bottom: 20px; margin-top: 20px; } .RequestTaskBox { margin-bottom: 1%; margin-left: 0.10%; margin-right: 0.15%; padding-top: 1%; box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #ffffff; margin-top: 10px; } .CreateTeamBox { margin-right: 2%; padding-bottom: 2%; padding-top: 1%; box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #ffffff; } .profileBox { min-height: 70%; box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #ffffff; } .BulkUploadBox { box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #ffffff; } .bulkUploadBox { height: 300px; width: 400px; padding-top: 15px; box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #ffffff; } .right-inner-addon { position: relative; } /* .right-inner-addon input{ } */ .right-inner-addon i { position: absolute; /*text-indent: -15px; bottom: -8px; font-size: 1.3em;*/ right: 0px; padding: 6px 12px; } .AssignToBox { height: 400px; margin-top: 10px; box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #ffffff; } .checkbox { visibility: hidden; } label { cursor: pointer; } .checkbox+label:before { border: 1px solid #ec008c; content: "\00a0"; display: inline-block; font: 16px/1em sans-serif; height: 16px; margin: 0 .25em 0 0; padding: 0; vertical-align: top; width: 16px; } .checkbox:checked+label:before { background: #ec008c; color: white; content: "\2713"; text-align: center; } .checkbox:checked+label:after { font-weight: bold; } .checkbox:focus+label::before { outline: rgb(59, 153, 252) auto 5px; } .radio-item { display: inline-block; position: relative; padding: 0 6px; } .radio-item input[type='radio'] { display: none; } .radio-item label { color: #666; font-weight: normal; } .radio-item label:before { content: " "; display: inline-block; position: relative; top: 5px; margin: 0 5px 0 0; width: 20px; height: 20px; border-radius: 11px; border: 2px solid #ec008c; background-color: transparent; } .radio-item input[type=radio]:checked+label:after { border-radius: 11px; width: 12px; height: 12px; position: absolute; top: 9px; left: 10px; content: " "; display: block; background: #ec008c; } /* width */ ::-webkit-scrollbar { width: 5px; } ::-webkit-scrollbar:horizontal { height: 5px; } /* Track */ ::-webkit-scrollbar-track { background: #f1f1f1; } /* Handle */ ::-webkit-scrollbar-thumb { background: #afafaf; border-radius: 4px; } /* Handle on hover */ ::-webkit-scrollbar-thumb:hover { background: #555; } .Cancel { background-color: white; border: 2px solid #ec008c; color: #ec008c; height: 40px; width: 80px; border-radius: 5px; padding-top: 10px; text-decoration: none !important; display: inline-block; } .Overdue { background-color: Red; border: none; color: white; height: 30px; width: 80px; text-decoration: none !important; display: inline-block; } .Create { box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #ec008c; border: none; margin-left: 10px; color: white; height: 40px; width: 80px; border-radius: 5px; transition: all 0.3s ease-in-out 0s; } .TeamCardBox { height: 250px; width: 200px; box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #ffffff; } .Rectangle-Edit { width: 75px; height: 30px; /* margin: 9px 5.7px 107.5px 16.3px; */ padding: 7px 18px 8px 10px; border-radius: 3px; background-color: #ec008c; color: white; border: 1px solid #ec008c; } .Rectangle-Delete { width: 72px; height: 30px; /* margin: 9px 2px 107.5px 12px; */ padding: 7px 10px 8px 10px; border-radius: 3px; background-color: #ec008c; color: white; border: 1px solid #ec008c; } .Task-Management-Platform { font-family: Rubik; margin-top: 10px; margin-left: 15px; font-size: 18px; font-weight: bold; font-stretch: normal; font-style: normal; line-height: 2.23; letter-spacing: normal; color: #535353; } .assign-to-me { font-family: Rubik; font-size: 18px; font-stretch: normal; font-style: normal; letter-spacing: normal; color: #535353; } .Task-Assign-To { min-height: 40%; width: 90%; box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #ffffff; overflow-y: auto; overflow-x: hidden; max-height: 300px; } .Task-view-title { width: 270px; height: 28px; font-family: Rubik; font-weight: 600; font-stretch: normal; font-style: normal; line-height: 1.24; letter-spacing: normal; text-align: left; color: #000000; font-size: 14px; } .Task-detail-view-title { margin-left: 30px; /* height: 31px; width: 95%; */ font-family: Rubik; font-weight: 600; font-stretch: normal; font-style: normal; font-size: 18px; line-height: 1.24; letter-spacing: normal; text-align: left; color: #000000; } .Task-edit-view-title { padding: 15px; font-size: 16px; font-family: Rubik; font-weight: 600; line-height: 1.24; color: #ec008c; text-align: center; } .vl { border-right: 2px solid rgba(0, 0, 0, 0.1); ; /* min-height: 170px; max-height: 100%; */ } html { font-size: 90%!important; } .change-password-field-label { margin-bottom: 0% !important; text-align: right; } .accordion-header { background-color: #eef9ff; margin-bottom: 10px; } select.form-control { color: #000000 !important; } .dashboard-task-card { text-decoration: none !important; } .team-card { box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); border-radius: 5px; } .team-card:hover { border: #ec008c solid 1px; } .team-card-member-image { margin-left: -15px; border-radius: 50%; border: white solid 4px; } .team-card-member-image-addition-count { display: flex; align-items: center; justify-content: center; color: #ffffff; background-color: #ec008c; } .task-status { border-radius: 0; padding: 5px !important; font-size: 9px; } .mandatory { color: red; } .task-view-hr { margin: 0; padding: 0; color: #EEF1F4; height: 0px !important; } .pagination { float: right; } .task-view-assigned-to-card { margin-left: 20px; padding-bottom: 10px; max-height: 200px; } .comment-reply-link { color: #7D75FE; font-size: 11px; } .comment-reply-link:hover { cursor: pointer; text-decoration: none; } .comment-by { color: #3A68A3; font-weight: bold; font-size: 12px; } .comment { /* padding-top: 30px; */ } .tab-content-comment { border: 1px solid #CED4DA; border-top: 0; padding: 1rem; padding-top: 0px; text-align: justify; } .comment-reply-div { margin-left: 40px; padding-top: 10px; } .comment-detail { background-color: #EFF0F2; border-radius: 5px; padding: 5px; } .comment-btn { border-radius: 5px; width: 100px; background-color: #ec008c; color: white; } .history-comment { color: #84B6F7; } .dropdownField { box-shadow: 0 2px 6px 0 rgb(0 0 0 / 16%); border: 1px solid #CED4DA; height: 45px; border-radius: 4px; } .task-list-action-na { color: #7a8fa4; } .task-list-filter { width: 120px; height: 30px; background-color: transparent; border: 1px solid #CED4DA; border-radius: 5px; padding: 5px; align-items: center; vertical-align: middle; } .task-view-individual-status { border-radius: 0; padding: 5px; font-size: 9px; } .notification-preview-list-div { width: 400px; min-height: 20px; max-height: 400px; padding-left: 15px; overflow: auto; } .notification-preview-list-div .List-Item-BG-White { min-height: 50px; } .main-panel .content-wrapper form span.right-inner-addon input.task-list-filter { padding-left: 6px; border: 1px solid #7a8fa4; color: #7a8fa4; font-size: 0.875rem; } .task-index-page .btn-custom-reset { border: none; background: content-box; color: #ec008c; } /* shovon css starts */ /* sso-login css starts */ /* .sso-login-top{ margin-top:40px; } .sso-login-top img.sso-login-top-img{ margin-left:20%; height: 65%; } .sso-login-content{ line-height: 2.0; margin-top: -10px; } .sso-login-content span{ margin-left:2%; margin-right:2%; } .footer-support-contact{ margin-top: 30px; text-align:center; } .footer-support-time{ text-align:center; } .footer-support-copyright{ margin-top: 25px; margin-bottom: 20px; } */ .login-page { background-image: url("../backend/assets/img/sso_background.png"); background-position: center; background-repeat: no-repeat; background-size: cover; position: relative; } .login-box { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: transparent!important; } .disclosure-item { width: 50%; margin: 0 auto; text-align: center; margin-top: 7%; } .disclosure-item h2 { font-size: 25px; color: #1a1a1a; font-weight: 800; font-family: 'Rubik', sans-serif; margin-bottom: 0px; } .disclosure-item p { float: left; line-height: 45px; font-size: 18px; color: #576271; padding-left: 15px; padding-right: 15px; margin-top: 15px; font-weight: 600; font-family: 'Rubik', sans-serif; } .disclosure-item a { color: #EB078E; padding: 7px 50px; border: 1px solid #EB078E; border-radius: 50px; font-size: 18px; font-weight: 500; float: left; transition: all linear .3s; font-family: 'Rubik', sans-serif; } .disclosure-item a.sso_login { color: #EB078E; padding: 7px 50px; border: 1px solid #EB078E; border-radius: 50px; font-size: 18px; font-weight: 500; float: left; transition: all linear .3s; font-family: 'Rubik', sans-serif; } .disclosure-item a.login_with_email { color: #EB078E; padding: 7px 30px; border: 1px solid #EB078E; border-radius: 50px; font-size: 18px; font-weight: 500; float: left; transition: all linear .3s; font-family: 'Rubik', sans-serif; } .disclosure-item a:hover { border: 1px solid #EB078E; background: #EB078E; color: #fff; } .disclosure-item-button-item { display: flex; justify-content: center; align-items: center; margin-top: 5%; } .login-footer { text-align: center; } .disclosure-item img.sso-login-bg { height: 200px; } .disclosure-item img.brac-logo { height: 35px; margin-bottom: 10px; } .disclosure-item-button-item a:hover { text-decoration: none; } .footer-support p { color: #1a1a1a; font-weight: 600; margin-bottom: 3px; font-size: 15px; font-family: 'Rubik', sans-serif; } .disclosure-item-button-item a { font-size: 15px; } .footer-copyright p { font-size: 13px!important; color: #EB078E!important; font-weight: 600!important; text-align: center!important; padding-top: 10px; font-family: 'Rubik', sans-serif; } @media (min-width: 1000px) and (max-width: 1239px) { /* .disclosure-item a { padding: 7px 29px; font-size: 17px; } */ .disclosure-item a.sso_login { padding: 7px 42px; font-size: 17px; } .disclosure-item a.login_with_email { padding: 7px 18px; font-size: 17px; } } @media (min-width: 600px) and (max-width: 999px) { .login-page { height: 800px!important; } .disclosure-item a.sso_login { padding: 7px 42px; font-size: 17px; } .disclosure-item a.login_with_email { padding: 7px 18px; font-size: 17px; } .disclosure-item-button-item { display: block; text-align: center; margin-bottom: 50px; } .disclosure-item-button-item a { display: inline-block; float: none !important; } .disclosure-item-button-item p { display: block; float: none; line-height: 10px; } .disclosure-item img.sso-login-bg { margin-bottom: 30px; } } @media (min-width: 300px) and (max-width: 599px) { .login-page { height: 600px!important; } .disclosure-item h2 { font-size: 25px; } .disclosure-item img.sso-login-bg { height: 125px; } /* .disclosure-item a { padding: 7px 29px; font-size: 17px; } */ .disclosure-item a.sso_login { padding: 7px 42px; font-size: 17px; } .disclosure-item a.login_with_email { padding: 7px 18px; font-size: 17px; } .disclosure-item-button-item { display: block; text-align: center; margin-bottom: 50px; } .disclosure-item-button-item a { display: inline-block; float: none !important; } .disclosure-item-button-item p { display: block; float: none; line-height: 10px; } .disclosure-item img.sso-login-bg { margin-bottom: 30px; } .disclosure-item { width: 100%; } .footer-support p { font-size: 15px; } } /* sso-login css ends */ /* common header css starts */ .navbar-menu-wrapper ul li a button.Rectangle-btn { margin-right: 10px; line-height: 25px; } .dropdown-notifications.nav-item.dropdown a span#notification-icon { display: none; background-color: red; color: white; font-size: 10px; padding: 2px 4px; border-radius: 50%; } @media (min-width: 300px) and (max-width: 700px) { .Timestamp-BG { display: none; } } @media (min-width: 701px) and (max-width: 917px) { .Timestamp-BG { margin-left: 10px; } } @media (min-width: 992px) and (max-width: 1110px) { .Task-Management-Platform { /* font-size: 15px; */ margin-left: 5px; } .header-create-button { margin-left: 5px!important; margin-right: 0px!important; } } @media (min-width: 616px) and (max-width: 717px) { .Task-Management-Platform { /* font-size: 15px; */ margin-left: 0px; } } @media (min-width: 300px) and (max-width: 615px) { .Task-Management-Platform { /* font-size: 12px; */ margin-left: 0px; } } /* button.navbar-content{ display: none; } @media (min-width: 100px) and (max-width: 991px) { button.navbar-content{ display: block; } .navbar-brand-wrapper{ display: none!important; } } */ @media (min-width: 1150px) { .Task-Management-Platform-short-screen { display: none; } } @media (max-width: 1149px) { .Task-Management-Platform-big-screen { display: none; } } @media (min-width: 100px) and (max-width: 470px) { /* nav.navbar { overflow-x: auto; } */ } h4.Task-Management-Platform { font-size: 16px; } .Timestamp-BG { width: 185px; height: 28px; margin-top: 15px; font-size: 11px; padding-top: 6px; } .navbar .navbar-brand-wrapper .navbar-brand img { height: 26px; } .New-TAsk { font-size: 12px; } .New-Task-Plus-Icon { height: 15px; width: 15px; margin-bottom: 0px; } .navbar-menu-wrapper ul li a button.Rectangle-btn { line-height: 23px; } /* common header css ends */ /* sidebar css starts */ .sidebar-icon { width: 18px; height: 18px; } span.menu-title { font-size: 12px!important; } nav.sidebar { width: 225px; } .sidebar-icon-only .sidebar .nav .nav-item .nav-link .menu-title { margin-left: 0px; } /* sidebar css ends */ /* dashboard css starts */ .assign-to-me { font-size: 17px; font-weight: 600; } .Dash-Line { height: 2px!important; } .Blue-Color-BG-row { margin-top: 20px; } .Blue-Color-BG-row .Pie-Chart-Card-Box h5 { color: #ec008c; text-align: center; font-size: 14px; font-weight: 600; } .Pie-Chart-Card-Box-content { text-align: center; font-size: 25px; } .Pie-Chart-Card-Box-row { margin-top: 20px; /* margin-right: 10px; */ } .Pie-Chart-Card-Box-row-item-1 p:first-child { color: #f2b70a; text-align: center; font-size: 25px; } .Pie-Chart-Card-Box-row-item-2 p:first-child { color: #188ef9; text-align: center; font-size: 25px; } .Pie-Chart-Card-Box-row-item-3 p:first-child { color: #4dc400; text-align: center; font-size: 25px; } .Task-List-Card-Box h5 { color: #ec008c; text-align: center; font-size: 14px; font-weight: 600; } .Task-List-Card-Box .table-responsive { overflow: auto; height: 260px; } .Task-List-Card-Box .table-responsive table tbody tr td:nth-child(2) a { color: #ec008c; } .Task-List-Card-Box .table-responsive table tbody tr td button.btn-inverse-warning { border-radius: 0; padding: 5px; } .Task-List-Card-Box .table-responsive table tbody tr td button.btn-inverse-info { border-radius: 0; padding: 5px; } .Task-List-Card-Box .table-responsive table tbody tr td button.btn-inverse-success { border-radius: 0; padding: 5px; } .dashboard-page .List-Item-BG-White .media .media-left { /* margin-top: 15px; */ } .assign-to-me { font-size: 15px; } .Blue-Color-BG-row .Pie-Chart-Card-Box h5 { font-size: 12px; } .Pie-Chart-Card-Box-content { font-size: 20px; } .Overall-Progress { font-size: 11px; padding-top: 5px; } .Pie-Chart-Card-Box-row-item-1 p:first-child { font-size: 20px; } .Pie-Chart-Card-Box-row-item-2 p:first-child { font-size: 20px; } .Pie-Chart-Card-Box-row-item-3 p:first-child { font-size: 20px; } .Task-List-Card-Box h5 { font-size: 13px; } .Task-List-Card-Box table thead tr th, .Task-List-Card-Box table tbody tr td { font-size: 12px; } .Task-title { font-size: 12px; } .Assigned-By { font-size: 10px; } .Hour-ago { font-size: 10px; } .dashboard-page .List-Item-BG-White .media .media-left { margin-top: 5px; } .Pie-Chart-Card-Box h5 { color: #ec008c; text-align: center; font-size: 12px; font-weight: 600; margin-bottom: 15px; } .List-Item-BG-White { transition: all linear .3s; } .List-Item-BG-White:hover { background: #ec008e21; } @media (min-width: 1450px) { .dashboard-rejected-item { min-height: 350px; } } /* dashboard css ends */ .main-panel .content-wrapper.Blue-Color-BG { background-color: #eef9ff; } .List-Item-BG-White { overflow: auto; } table#assignToMe tbody tr td:nth-child(2), table#assignToMe tbody tr td:nth-child(3), table#assignByMe tbody tr td:nth-child(2), table#assignByMe tbody tr td:nth-child(3) { /* padding-right: 5px; */ /* padding-left: 0px; padding-right: 0px; */ } table#assignToMe thead tr th:nth-child(2), table#assignToMe thead tr th:nth-child(3), table#assignByMe thead tr th:nth-child(2), table#assignByMe thead tr th:nth-child(3) { /* padding-right: 5px; */ /* padding-left: 0px; padding-right: 0px; */ } table#assignToMe tbody tr td:nth-child(2) a, table#assignToMe tbody tr td:nth-child(3) { /* word-break: break-all; */ white-space: pre-line; line-height: 18px; } table#assignToMe tbody tr td:nth-child(3) p, table#assignByMe tbody tr td:nth-child(3) p { margin-bottom: 0px!important; } table#assignByMe tbody tr td:nth-child(2) a, table#assignByMe tbody tr td:nth-child(3) { /* word-break: break-all; */ white-space: pre-line; line-height: 18px; } table#assignByMe tbody tr td:nth-child(3) { line-height: 10px; /* padding: 5px 1.375rem; */ } @media (min-width: 300px) and (max-width: 768px) { .Pie-Chart-Card-Box canvas { margin-top: 20px!important; display: block!important; height: 155px!important; width: 250px!important; margin-left: 50%; transform: translateX(-50%); } } @media (min-width: 1600px) { canvas#myChart, canvas#myChart1 { margin-top: 20px!important; display: block!important; width: 269px!important; height: 168px!important; margin-left: 50%; transform: translateX(-50%); } } .reject-item-media-left { padding-right: 5px; } .accepted-item, .rejected-item { height: 350px; } @media (min-width: 1450px) { .Pie-Chart-Card-Box { height: 350px; } .Task-List-Card-Box { height: 350px; } .accepted-item .New-Task-Card-Box { height: 350px; } .rejected-item .New-Task-Card-Box { height: 350px; } } /* dashboard css ends */ /* task list page css starts */ .main-panel .content-wrapper { background-color: #f8fafb; } .main-panel .content-wrapper form { margin-top: 20px; } .main-panel .content-wrapper form span#sort i:first-child { font-size: 16px; } .main-panel .content-wrapper form span#sort i:last-child { font-size: 16px; display: none; } .main-panel .content-wrapper form span.right-inner-addon input { width: 107px; height: 30px; border: none; } .main-panel .content-wrapper form span.right-inner-addon i { /* line-height: 28px; margin-right: 5px; */ right: 5px; top: 0px; } .main-panel .content-wrapper img.list-view { display: inline-block; margin-right: 5px; } .kanban-view-text { margin-right: 5px; margin-left: 5px; } .main-panel .content-wrapper img.kanban-view small { color: #7a8fa4; } .list-view-text { margin-right: 5px; margin-left: 5px; } .main-panel .content-wrapper a.task-export { margin-left: 5px; } span.atoz { font-weight: 600; padding-right: 5px; } small.assignee-list { padding-left: 5px; } .assignee-section p { padding-left: 20px; } .main-panel .content-wrapper form span.right-inner-addon input.task-list-filter::placeholder { font-size: 12px; padding-left: 5px; } .main-panel .content-wrapper form span.right-inner-addon input.task-list-filter { padding-left: 6px; border: 1px solid #7a8fa4; } small.task-list-priority, small.task-list-status { padding-left: 5px; padding-right: 5px; } #priority, #status { padding: 5px; font-size: 12px; color: #7a8fa4; } .View-Icon { margin-left: 0px; } table#task-table tbody tr td:nth-child(2), table#task-table tbody tr td:nth-child(3) { /* word-break: break-all; */ white-space: pre-line; line-height: 20px; padding-right: 5px; } table#task-table tbody tr td:nth-child(3) { line-height: 10px; padding: 5px 0.5rem; } .Filter-Icon { width: 22px; height: 22px; } #sort small { font-size: 12px; } .Info-Icon-Common { width: 22px; height: 22px; } #task-table thead tr th, #task-table tbody tr td { font-size: 12px; } @media (min-width: 992px) and (max-width: 1237px) { #priority, #status { /* margin-top: 15px; */ /* margin-bottom: 15px; */ } } @media (min-width: 688px) and (max-width: 991px) { #priority, #status { /* margin-top: 15px; */ /* margin-bottom: 15px; */ } } @media (min-width: 300px) and (max-width: 687px) { #priority, #status { margin-top: 0px; /* margin-bottom: 15px; */ } .main-panel .content-wrapper form span.right-inner-addon input.task-list-filter { margin-top: 0px; /* margin-bottom: 15px; */ } button.btn-custom-reset { margin-top: 15px; } a.task-export svg { margin-top: 15px; } } @media (min-width: 300px) and (max-width: 472px) { #priority, #status { margin-top: 10px; /* margin-bottom: 15px; */ } button.btn-custom-reset { margin-top: 10px; } } .CreateTaskBox .view-task-header-buttons a.edit-task-btn:hover { background: #ec008c; color: #fff; } .CreateTaskBox .view-task-header-buttons a.edit-task-btn:hover span { color: #fff; } .CreateTaskBox .view-task-header-buttons a.edit-task-btn, .CreateTaskBox .view-task-header-buttons a.edit-task-btn span { transition: all linear .3s; } .CreateTaskBox .view-task-header-buttons a:hover button.reassign-btn { background: #ec008c; color: #fff; } .CreateTaskBox .view-task-header-buttons a:hover button.reassign-btn span { color: #fff; } .CreateTaskBox .view-task-header-buttons a button.reassign-btn span, .CreateTaskBox .view-task-header-buttons a button.reassign-btn { transition: all linear .3s; } .CreateTaskBox .view-task-header-buttons a { text-decoration: none; } /* task list page css ends */ /* team list css starts */ .team-list-page-top { margin-top: 20px; } .team-list-page-top-row { margin-top: 5px; } .team-list-page-top-row-sort i:nth-child(1) { font-size: 16px; } .team-list-page-top-row-sort i:nth-child(2) { font-size: 16px; display: none; } .team-list-page-top-form-inline { /* padding-left: 20px; */ } .team-list-page-top-form-inline .form-control { margin-left: 10px; height: 20px; } .team-list-page-buttons { margin-top: 10px; text-align: right; padding-right: 35px; } .team-list-page-buttons #button_grid i { font-size: 25px; } .team-list-page-buttons #button_list { margin-bottom: 3px; margin-right: 5px; } .team-list-page-buttons #button_list i { font-size: 25px; } .team-list-page #list-view { margin-top: 5px; } .team-list-page #card-view { display: none; margin-top: 5px; } .team-list-card-top { margin-top: 5px; padding: 10px; padding-right: 15px; } .team-list-card-top .media-right { display: flex; align-items: center; justify-content: center; } .team-list-card-top .media-right .media-right-content { height: 70px; width: 70px; font-size: 12px; border-radius: 50%; border: 1px solid #ec008c; display: flex; align-items: center; justify-content: center; color: #ec008c; background-color: #F2F4F6; } .team-list-task-overview { color: #ec008c; font-size: 18px; font-weight: bold; } .team-list-card-content { display: flex; height: 60px; align-items: center; justify-content: center; } .team-list-card-view-details { color: #ec008c; font-size: small; text-decoration: none; } .team-list-card-pagination { display: flex; align-items: center; justify-content: center; } .team-list-card-top .team-card { transition: all linear .3s ease; } .team-list-main-page #card-view { margin-bottom: 30px; padding-right: 25px; padding-left: 8px; } .team-list-main-page #list-view { margin-top: 15px; } .team-list-card-top .team-list-card-content-main p.team-list-card-team-name { min-height: 40px; } .teamTableBox table tbody tr td:nth-child(2) a { word-break: break-all; white-space: pre-line; line-height: 20px; } /* team list css ends */ /* single task page css starts */ .task-details-main-page .task-accept-button { border-radius: 0; /* width: 100px; */ font-size: 11px; padding: 0.92rem 1.5rem !important; } .task-details-main-page .task-reject-button { border-radius: 0px; /* width: 100px; */ font-size: 11px; padding: 0.92rem 1.62rem !important; } .task-details-main-page-form { margin-right: 30px; } .Task-detail-view-title { font-size: 15px; } .task-details-main-page button.task-reject-button { /* width: 80px; */ } .task-details-main-page button.task-accept-button { /* width: unset; */ } .task-details-main-page-form { margin-right: 0px; } .media-left svg { height: 40px; } .media-body { font-size: 13px; } .task-view-assigned-to-card .media svg { height: 35px; } #tabId #myTab { font-size: 12px; } #myTabContent { font-size: 12px; } .Cancel:hover { color: #ec008c; } @media (min-width: 717px) and (max-width: 1326px) {} .CreateTaskBox .view-task-header-buttons a.edit-task-button-redesign:hover { background: #ec008c; color: #fff; } .CreateTaskBox .view-task-header-buttons a.edit-task-button-redesign:hover span { color: #fff; } .CreateTaskBox .view-task-header-buttons a.edit-task-button-redesign span, .CreateTaskBox .view-task-header-buttons a.edit-task-button-redesign { transition: all linear .3s; } /* single task page css ends */ /* profile view page css starts */ @media (min-width: 741px) and (max-width: 767px) { .user-profile-panel .user-info-row .user-info-col-3 { padding-left: 2%!important; } } @media (min-width: 100px) and (max-width: 740px) { .user-profile-panel .user-info-row .user-info-col-3 { padding-left: 0%!important; } } .profile-edit-page { font-weight: bold; color: #535353; padding: 10px 0px; } /* profile view page css ends */ /* task create css starts */ .task-create-page .task-create-page-priority select { min-height: 50px; padding-left: 10px!important; } .task-create-title { font-size: 15px; } .task-create-page label { font-size: 13px!important; } .teamAssignToBox #input_img, .individualAssignToBox #input_img { right: 5px; top: 15%; } .task-view-assigned-to-card-row { margin-right: 0px!important; } .button-to-do { padding-left: 19px!important; padding-right: 16px!important; } .button-pending { padding-left: 11px!important; padding-right: 11px!important; } .task-view-assigned-to-card .media .media-body { word-break: break-all; white-space: pre-line; line-height: 20px; margin-left: 15px; } /* .team-section label{ word-break: break-all; white-space: pre-line; line-height: 20px; } */ /* task create css ends */ /* role create edit list css starts */ .role-create-main-panel .form-check { margin-top: -5px!important; } .role-edit-main-panel .form-check { margin-top: -5px!important; } .role-list-page .role-list-page-action a:hover { color: #fff!important; } .role-list-main-panel .role-list-title { font-size: 15px!important; } .role-list-main-panel .role-list-New-role-btn { font-size: 12px; padding: 0.55em 15px!important; } .role-list-page table thead tr th, .role-list-page table tbody tr td { font-size: 12px; } .role-list-page .role-list-main-panel .role-list-table-subHeader a { text-decoration: none; } /* role create edit list css ends */ /* user list page css starts */ .user-list-page-actions a:hover { color: #fff!important; } #userList thead tr th, #userList tbody tr td { font-size: 12px; } .users-list-main-panel .users-list-title { font-size: 15px!important; } .users-list-main-panel .user-list-Bulk-Upload, .user-list-New-User { font-size: 12px; padding: 0.55em 15px!important; } .users-list-main-panel .users-list-table-subHeader a { text-decoration: none; } @media (max-width:768px) { .users-list-main-panel #userList::-webkit-scrollbar { display: none; } .users-list-main-panel .pagination { margin-top: 15px; float: none; overflow-x: auto !important; } .users-list-main-pane .subHeader-col-1 .form-inline b { font-size: 12px; } } /* user list page css ends */ /* team list css starts */ .team-list-page-buttons { font-size: 12px; } #Export { font-size: 15px; } .teamTableBox table thead tr th, .teamTableBox table tbody tr td { font-size: 12px; } .teamTableBox table tbody tr td:nth-child(2), .teamTableBox table tbody tr td:nth-child(3), .teamTableBox table tbody tr td:nth-child(4) { word-break: break-all; white-space: pre-line; line-height: 20px; } .teamTableBox table tbody tr td:nth-child(4) p { margin-bottom: 0px!important; } .teamTableBox table tbody tr td:nth-child(4) { line-height: 10px; padding: 5px 1.375rem; } .teamTableBox table tbody tr td:nth-child(3) { line-height: 10px; padding: 5px 1.375rem; } /* team list css ends */ /* team create css starts */ .team-create-main-panel .team-create-title { font-size: 15px!important; } .CreateTeamBox h5 { font-size: 14px; } .CreateTeamBox label { font-size: 13px!important; } .CreateTeamBox .accordion-button { font-size: 13px!important; } /* team create css ends */ /* profile list create css starts */ .user-info-row svg { width: 100px; } .user-info-row { font-size: 13px; } .user-profile-title { font-size: 14px; } .profileBox .text-end i { font-size: 25px!important; line-height: 29px!important; } .CreateTeamBox svg { width: 100px; } .CreateTeamBox { font-size: 13px; } /* profile list create css ends */ /* user create edit list css starts */ .user-create-main-panel label { font-size: 13px!important; } .user-edit-main-panel label { font-size: 13px!important; } .user-create-title, .user-edit-title { font-size: 15px!important; } .user-edit-main-panel #input_container { position: relative; padding: 0 0 0 5px; margin-left: 5px; } .user-edit-main-panel #input { height: 20px; margin: 0; padding-right: 30px; border: none; width: 100%; } .user-edit-main-panel #input_img { position: absolute; bottom: 2px; right: 5px; width: 24px; height: 24px; } /* .users-list-main-panel table#userList tbody tr td:nth-child(2){ word-break: break-all; white-space: pre-line; line-height: 20px; } */ /* user create edit list css ends */ /* role create edit list css starts */ .role-create-title, .role-edit-title { font-size: 15px!important; } .CreateRolekBox h5 { font-size: 14px!important; } .CreateRolekBox label { font-size: 13px!important; } .role-list-page table tbody tr td:nth-child(2) { /* word-break: break-all; */ white-space: pre-line; line-height: 20px; } /* .role-list-page table tbody tr td:nth-child(2) { word-break: break-all; white-space: pre-line; line-height: 20px; } */ /* role create edit list css ends */ /* header notification css starts */ @media (min-width: 100px) and (max-width: 991px) { .notification-preview-list-div { width: 100%; } .navbar .navbar-menu-wrapper .navbar-nav .nav-item.dropdown .navbar-dropdown { width: 355px; left: unset; } } @media (min-width: 100px) and (max-width: 440px) { .navbar .navbar-menu-wrapper .navbar-nav .nav-item.dropdown .navbar-dropdown { width: 83%; } } /* header notification css ends */ /* shovon css ends */ /*################# azmain css start ###################*/ /* login page css */ @media (min-width: 300px) and (max-width: 413px) { .disclosure-item h2 { font-size: 17px; } } @media (min-width: 414px) and (max-width: 770px) { .disclosure-item h2 { font-size: 23px !important; } } /* login page css end */ /* layouts css start */ .navbar-menu-wrapper .notification-preview-list-div .media-body { padding-left: 10px; } .navbar-menu-wrapper .notification-preview-list-div .media-body p { color: #ec008c; } /* layouts css end */ /* navbar css start */ .navbar-brand.nav-logo { display: none; } .notification-menu .notification-preview-list-div .List-Item-BG-White { margin-right: 0px; } .notification-menu .notification-preview-list-div { width: 375px; min-height: 20px; max-height: 400px; padding-left: 6px; padding-right: 6px; color: #ec008c; overflow: auto; } @media (max-width: 991px) { /* .navbar .navbar-menu-wrapper .navbar-toggler.navbar-toggler-right { margin-left: 15px !important; padding-right: 0; } */ } @media (min-width: 300px) and (max-width: 750px) { .navbar-brand.nav-logo { display: none !important; } .navbar .navbar-menu-wrapper .navbar-nav .nav-item { margin-left: 0.5rem; margin-right: 0.5rem; } .navbar .navbar-menu-wrapper .Rectangle-btn { width: 95px; } .notification-menu .notification-preview-list-div { padding-left: 16px; } } @media (min-width: 410px) { .navbar .navbar-menu-wrapper .navbar-nav .nav-item { margin-left: 1.4rem; margin-right: 1rem; } } nav.sidebar ul.nav li.nav-item a.nav-link { transition: all linear .3s; } nav.sidebar ul.nav li.nav-item a.nav-link:hover span { color: #ec008c; /* background: #fff!important; */ font-weight: bold; } nav.sidebar ul.nav li.nav-item a.nav-link:hover .menu-non-active { display: none; } nav.sidebar ul.nav li.nav-item a.nav-link:hover .menu-active { display: block; transition: all linear .3s; } nav.sidebar ul.nav li.nav-item a.nav-link .menu-active { display: none; transition: all linear .3s; } /* navbar css end */ /* sidebar css start */ .nav-link:hover .menu-title { /* background-color: #F3F3F3 !important; */ } .nav-item.hover-open .nav-link .menu-title { /* background-color: #f4d2e7f5 !important; */ background-color: #eef9ff !important; padding: 0.4rem 1.4rem !important; left: 80% !important; } /* sidebar css end */ /* Dashboard css start */ .assign-by-me-badge, .assign-to-me-badge { border-radius: 3px; padding-bottom: .28rem; } .dashboard-main-panel .accepted-item { overflow-y: auto; overflow-x: auto; } .dashboard-main-panel .Yellow-Color-BG .task-status-percnetage { text-align: center; font-size: 20px; } .dashboard-main-panel .rejected-item.dashboard-rejected-item { overflow-y: auto; overflow-x: auto; } .dashboard-main-panel .Pie-Chart-Card-Box canvas { margin-top: 20px; } /* .dashboard-main-panel .table th, .jsgrid .jsgrid-table th, .table td, .jsgrid .jsgrid-table td { padding: 1.125rem 1.3rem; } */ .dashboard-main-panel .table th, .dashboard-main-panel .jsgrid .jsgrid-table th, .dashboard-main-panel .table td, .dashboard-main-panel .jsgrid .jsgrid-table td { padding: 1.125rem 1.3rem; vertical-align: top; border-top: 1px solid #CED4DA; padding-left: 8px; padding-right: 6px; } @media (min-width: 300px) and (max-width: 917px) { /* .Pie-Chart-Card-Box-row { margin-top: 8px; margin-right: 10px; } */ } @media (min-width: 300px) and (max-width: 767px) { .Pie-Chart-Card-Box { height: 385px; } .Task-List-Card-Box { height: 380px; } .Task-List-Card-Box .table-responsive { height: 308px; } } /* @media (min-width: 768px) and (max-width: 991px) { table#assignToMe thead tr th:nth-child(3), table#assignByMe thead tr th:nth-child(3) { padding-left: 10px; } table#assignToMe tbody tr td:nth-child(3), table#assignByMe tbody tr td:nth-child(3) { padding-left: 10px; } } */ /* Dashboard css end */ /* task mgt css start */ .task-index-panel .btn-custom-reset { border: none !important; background: content-box !important; color: #ec008c !important; padding-left: 6px; } .task-create-page .loading { display: none; } .task-create-main-panel .content-wrapper { padding: 1.5rem 1.5rem; } .task-create-main-panel .CreateTaskBox { padding-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-bottom: 0px; margin-top: 0px; padding: 3%; } .task-create-main-panel .form-group label { font-size: 0.95rem; line-height: 1.4rem; vertical-align: top; margin-bottom: .5rem; font-weight: 600; } .task-create-main-panel .CreateTaskBox .task-create-title { color: #ec008c; max-width: 100%; font-size: 16px; margin-top: 0.5rem; } .task-create-main-panel .CreateTaskBox .individualAssignToBox.Task-Assign-To { opacity: 0.3; } .task-create-main-panel .CreateTaskBox #input_container { position: relative; padding: 0px; margin-left: 0px; padding: 3%; } .task-create-main-panel .Task-Assign-To { width: 100%; height: 300px; } .task-create-main-panel .assign-to-block .team-section { overflow-y: auto; height: 200px; } .task-create-main-panel .assign-to-block .individual-section { overflow-y: auto; height: 200px; } .task-create-main-panel .CreateTaskBox .right-inner-addon { box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #ffffff; } .task-create-main-panel .right-inner-addon .date-picker-input { background-color: #ffffff !important; border: none; } .task-create-main-panel .CreateTaskBox .priority-input { /* height: 60%; */ box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #ffffff; border: none !important; outline: none !important; } .loading { z-index: 999; background: rgba(255, 255, 255, 0.9); } .task-create-main-panel .comments-text-area { background-color: #eef9ff; border: none; } .task-create-main-panel #input_container { position: relative; padding: 0 0 0 5px; margin-left: 5px; } .task-create-main-panel #input { height: 20px; margin: 0; padding-right: 30px; border: none; width: 100%; } .task-create-main-panel #input_img { position: absolute; top: 7%; bottom: 2px; right: 5px; width: 24px; height: 24px; color: #ec008c; } .task-create-page .task-create-main-panel .error { color: red } .task-create-page .task-create-main-panel .fa-calendar-o.date-picker { margin-top: 7px; margin-right: 6px; } /*----- task edit -----*/ .task-edit-page .loading { display: none } .task-edit-page .CreateTaskBox { padding: 3% !important; } .task-edit-page #input_container { /* position: relative; padding: 0 0 0 5px; margin-left: 5px; margin-top: 10px; */ position: relative; padding: 0px; margin-left: 0px; padding: 3%; } .task-edit-page #input { height: 20px; margin: 0; padding-right: 30px; border: none; width: 100%; } .task-edit-page #input_img { position: absolute; top: 7%; bottom: 2px; right: 5px; width: 24px; height: 24px; color: #ec008c; } .task-edit-page .assign-to-block { margin-top: 35px; } .task-edit-page .assign-to-block .if-block-col-2 .individualAssignToBox { opacity: 0.3; padding-left: 20px; padding-right: 20px; } .task-edit-page .assign-to-block .else-block-col-1 .teamAssignToBox { opacity: 0.3; } .task-edit-page .assign-to-block .team-section { overflow-y: auto; height: 200px; } .task-edit-page .assign-to-block .individual-section { overflow-y: auto; height: 200px; } .task-edit-page .individualAssignToBox { /* padding-left: 20px; padding-right: 20px; */ } .task-edit-page .task-comment-area { box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #eef9ff; } .task-edit-page .Task-Assign-To { width: 100%; } .task-edit-page .error { color: red; } .task-edit-page .CreateTaskBox .row.start-end-priority .right-inner-addon { box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #ffffff; } .task-edit-page .CreateTaskBox .row.start-end-priority .right-inner-addon .fa-calendar-o { margin-top: 7px; margin-right: 6px; } .task-edit-page .CreateTaskBox .task-priority { box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); border-radius: 3px; border-style: none; height: 50px; } .task-edit-main-panel .CreateTaskBox .task-title-group input, .task-edit-main-panel .CreateTaskBox .task-description-group textarea { box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #ffffff; } .task-edit-main-panel .form-group label { font-size: 0.95rem; line-height: 1.4rem; vertical-align: top; margin-bottom: .5rem; font-weight: 600; } /* .task-edit-main-panel .teamAssignToBox .team-section { overflow-y: auto; height: 200px; } .task-edit-main-panel .individualAssignToBox { opacity: 0.3; } .task-edit-main-panel .individualAssignToBox .input_container { margin-top: 10px; } .task-edit-main-panel #input_container .fa.fa-search { color: #ec008c; } .task-edit-main-panel #input { height: 20px; margin: 0; padding-right: 30px; border: none; width: 100%; } .task-edit-main-panel #input_img { position: absolute; bottom: 2px; right: 5px; width: 24px; height: 24px; color: #ec008c; top: 3%; } .task-edit-main-panel .CreateTaskBox .individualAssignToBox.Task-Assign-To { opacity: 0.3; } .task-edit-main-panel .CreateTaskBox #input_container { position: relative; padding: 0px; margin-left: 0px; padding: 3%; } #input_img { top: 25%; } .task-edit-main-panel .Task-Assign-To { width: 100%; height: 300px; } .task-edit-main-panel .comments-text-area { background-color: #eef9ff; border: none; } .task-edit-main-panel .teamAssignToBox #input_img, .task-edit-main-panel .individualAssignToBox #input_img { right: 5px; top: 9%; } .task-edit-main-panel #input_container { position: relative; padding: 0 0 0 5px; margin-left: 5px; } .task-edit-main-panel #input { height: 20px; margin: 0; padding-right: 30px; border: none; width: 100%; } */ /*----- task edit end -------*/ /* task-reassign-page css */ .task-reassign-page .loading { display: none; } .task-reassign-page .CreateTaskBox { padding: 3% !important; } .task-reassign-page .Task-reassign-title { padding: 15px; font-size: 16px; font-family: Rubik; font-weight: 600; line-height: 1.24; color: #ec008c; text-align: center; } .task-reassign-page #input_container { /* position: relative; padding: 0 0 0 5px; margin-left: 5px; margin-top: 10px; */ position: relative; padding: 0px; margin-left: 0px; padding: 3%; } .task-reassign-page #input { height: 20px; margin: 0; padding-right: 30px; border: none; width: 100%; } .task-reassign-page #input_img { position: absolute; top: 7%; bottom: 2px; right: 5px; width: 24px; height: 24px; color: #ec008c; } .task-reassign-page .assign-to-block { margin-top: 35px; } .task-reassign-page .assign-to-block .if-block-col-2 .individualAssignToBox { opacity: 0.3; padding-left: 20px; padding-right: 20px; } .task-reassign-page .assign-to-block .else-block-col-1 .teamAssignToBox { opacity: 0.3; } .task-reassign-page .assign-to-block .team-section { overflow-y: auto; height: 200px; } .task-reassign-page .assign-to-block .individual-section { overflow-y: auto; height: 200px; } .task-reassign-page .individualAssignToBox { /* padding-left: 20px; padding-right: 20px; */ } .task-reassign-page .task-comment-area { box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #eef9ff; } .task-reassign-page .Task-Assign-To { width: 100%; } .task-reassign-page .error { color: red; } .task-reassign-page .CreateTaskBox .row.start-end-priority .right-inner-addon { box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #ffffff; } .task-reassign-page .CreateTaskBox .row.start-end-priority .right-inner-addon .fa-calendar-o { margin-top: 7px; margin-right: 6px; } .task-reassign-page .CreateTaskBox .task-priority { box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); border-radius: 3px; border-style: none; height: 50px; } .task-reassign-panel .CreateTaskBox .task-title-group input, .task-reassign-panel .CreateTaskBox .task-description-group textarea { box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #ffffff; } .task-reassign-panel .form-group label { font-size: 0.95rem; line-height: 1.4rem; vertical-align: top; margin-bottom: .5rem; font-weight: 600; } /* .task-reassign-panel .teamAssignToBox .team-section { overflow-y: auto; height: 200px; } .task-reassign-panel .individualAssignToBox { opacity: 0.3; } .task-reassign-panel .individualAssignToBox .input_container { margin-top: 10px; } .task-reassign-panel #input_container .fa.fa-search { color: #ec008c; } .task-reassign-panel #input { height: 20px; margin: 0; padding-right: 30px; border: none; width: 100%; } .task-reassign-panel #input_img { position: absolute; bottom: 2px; right: 5px; width: 24px; height: 24px; color: #ec008c; top: 3%; } .task-reassign-panel .CreateTaskBox .individualAssignToBox.Task-Assign-To { opacity: 0.3; } .task-reassign-panel .CreateTaskBox #input_container { position: relative; padding: 0px; margin-left: 0px; padding: 3%; } .task-reassign-panel .Task-Assign-To { width: 100%; height: 300px; } .task-reassign-panel .teamAssignToBox #input_img, .task-reassign-panel .individualAssignToBox #input_img { right: 5px; top: 9%; } .task-reassign-panel #input { height: 20px; margin: 0; padding-right: 30px; border: none; width: 100%; } */ /* task-reassign-page css end*/ .main-panel .content-wrapper form { margin-top: 0px !important; } /*---- Task detail page css start -----*/ .view-task-panel .content-wrapper { padding-left: 0.375rem; } .view-task-panel .card-head { /* padding-left: 6%; */ padding-bottom: 10px; } .view-task-panel .progress-dropdown { box-shadow: 0 2px 6px 0 rgb(0 0 0 / 16%); border-style: none; width: 32%; height: 100%; border-radius: 6px; padding-left: 2%; } .view-task-panel .CreateTaskBox { padding-bottom: 3%; /*margin-left: 3px; margin-right: 20px; padding-top: 15px; margin-top: 20px; */ margin: 23px; } .view-task-panel .CreateTaskBox.card-body { flex: 1 1 auto; min-height: 1px; padding: 1.4rem !important; } .view-task-panel .Task-Assign-To { width: 100% !important; border: 5px solid white; border-radius: 1%; } .task-details-main-page label { font-size: 0.97rem; line-height: 1.4rem; vertical-align: top; margin-bottom: .5rem; font-weight: 600; } .task-details-main-page .date-row .task-element span { margin-left: 10px; font-size: 12px; font-family: 'Rubik' } .task-details-main-page .assign-to-block .Task-Assign-To .row .col-9 .Task-view-title { margin-top: 20px; margin-left: 80px; font-size: 14px; } .task-details-main-page .assign-to-block .Task-Assign-To .row .col-3 .Task-view-title { margin-top: 20px; margin-left: 5px; font-size: 14px; } .task-details-main-page .task-id-title { color: #0c63e4; } .Task-detail-view-title { margin-left: 0px !important; margin-bottom: 10px; word-break: break-all; } .view-task-panel .assign-by-assign-to-block { padding: 1.6% 1.2%; padding-bottom: 0px; /* padding-top: 26px; */ } .task-details-main-page .form-control.reply-textarea { box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #ffffff; } .view-task-panel .description-block { padding: 0%; } .task-details-main-page .dot { height: 20px; width: 20px; background-color: #bbb; border-radius: 50%; display: inline-block; } /******** Individual task header buttons */ .view-task-panel .priority-btn { background-color: #F3F3F3; color: #ec008c; transition: all 0.5s ease-in-out 0s; /* border-radius: 1px solid #F3F3F3; */ border-radius: 0%; margin-right: 6px; /* border-radius: 0%; padding: 1.82% 3%; margin-left: 10px; height: auto; width: auto; */ /* padding: 0.52em 1em; */ /* margin-right: 1%; */ /* padding: 5px; */ /* margin-left: 10px; */ /* height: 28px; */ } .view-task-panel .edit-task-btn { border-radius: 0%; /* padding: 1.55% 2%; */ margin-right: 6px; height: unset; width: unset; padding: 0.78rem 0.6rem; } .view-task-panel .edit-task-btn:hover { color: #ec008c; } .Rectangle-btn.reassign-btn { border-radius: 0%; /* padding: 1.38% 2%; */ /* margin-top: 0.16rem; */ margin-right: 6px; height: unset; width: unset; padding: 0.7rem 0.6rem; } .hand-icon-added i { font-size: 15px; padding-right: 5px; color: #727064; } .view-task-header-buttons .btn-fw { border-radius: 0%; /* padding: 1.78% 3%; */ height: unset; width: unset; padding: 0.88rem 0.6rem; } .view-task-panel .date-show .right-inner-addon.date { box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #ffffff; } .view-task-panel .date-show .fa-calendar-o.date-picker { margin-top: 7px; } .view-task-panel .comment-section textarea { box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #ffffff; } .view-task-panel .Create.update { transition: all linear 0.3s; border: 1px solid #ec008c; } .taskCommentsSection, .taskHistorySection { max-height: 300px; overflow-y: auto; padding-right: 8px; } .view-task-panel .viewTaskTabPanel { padding-top: 45px; } .view-task-panel .media-body.comment-detail { margin-bottom: 20px; } .view-task-panel .delete-btn-for-reply { width: auto; height: auto; padding: 2px 6px; float: right; font-size: 18px; background-color: #EFF0F2; color: #ec008c; border: none; } @media (max-width: 415px) { .view-task-panel .view-task-header-buttons .Rectangle-btn { /* width: auto; */ } .view-task-panel .edit-task-btn { /* padding: 1.4% 1%; margin-left: 0px; */ } .view-task-panel .priority-btn { /* padding: 1.8% 4%; margin-left: 0px; */ } .view-task-header-buttons .btn-fw { /* padding: 1.7% 8%; margin-left: 0px; */ } .Rectangle-btn.reassign-btn { /* padding: 0.4% 10.4%; margin-left: 10px; margin-top: 3%; */ } .Rectangle-btn.reassign-btn i { display: none; } } @media (min-width: 300px) and (max-width: 767px) { .view-task-panel .priority-btn { padding: 0.875rem 0.4rem; margin-right: 2px; } .view-task-panel .edit-task-btn { margin-right: 2px; padding: 0.78rem 0.4rem; } .Rectangle-btn.reassign-btn { margin-right: 2px; padding: 0.7rem 0.4rem; margin-bottom: 10px; } .view-task-header-buttons .btn-fw { padding: 0.88rem 0.4rem; margin-right: 2px; } } @media (min-width: 575px) and (max-width: 620px) { .view-task-panel .priority-btn { padding: 0.875rem 0.6rem; } } @media (min-width: 300px) and (max-width: 575px) { .view-task-panel .view-task-header-buttons { text-align: left !important; margin-bottom: 10px; } .view-task-panel .priority-btn { float: left; margin-right: 5px; } .view-task-panel .view-task-header-buttons form { float: none !important; } .task-details-main-page button.task-accept-button { padding: 0.92rem 0.8rem !important; } .task-details-main-page button.task-reject-button { padding: 0.92rem 0.95rem !important; } } @media (min-width: 300px) and (max-width: 351px) { .view-task-panel .priority-btn { padding: 0.8rem 0.5rem; } .Rectangle-btn.reassign-btn { margin-top: 5px; } } /******** Individual task header buttons end*/ /* ----------Task detail page css end---------- */ @media (min-width: 300px) and (max-width: 740px) { .task-create-main-panel .form-group.row .col-md-6 { padding: 1.2em !important; } .task-edit-main-panel .form-group.row .col-md-6 { padding: 1.2em !important; } .view-task-panel .description-block { padding-top: 3%; } } @media (min-width: 100px) and (max-width: 767px) { .view-task-panel .assign-by-assign-to-block { padding: 4%; } } @media (min-width: 576px) and (max-width: 767px) {} .view-task-panel .task-element { margin-bottom: 1.6rem !important; } .view-task-panel .assign-to-block { padding-right: 0px !important; padding-left: 0px !important; } @media (max-width: 767px) { .nav-tabs .nav-link { padding: .75rem 0.3rem !important; } .view-task-panel .Task-Assign-To { overflow-x: auto; } .view-task-panel .card-head { /* padding-left: 6%; */ } .view-task-panel .CreateTaskBox { padding-bottom: 3%; margin: 3px 3px; } .main-panel .content-wrapper form span.right-inner-addon input { width: 100px; height: 30px; border: none; } .main-panel .content-wrapper form span.right-inner-addon input.task-list-filter { padding-left: 5px; } .dropdown .btn.btn-default.dropdown-toggle { padding: 0%; } .view-task-panel .content-wrapper { padding-left: 5%; } .task-edit-page .CreateTaskBox { margin-right: 6px; } } @media (max-width: 415px) { .view-task-panel .Rectangle-btn { /* width: 72px; */ } .view-task-panel .New-Task-Plus-Icon { display: none; } .view-task-panel .edit-task-btn i { display: none; } .task-list-filter { width: 100px; } .DataTableBox { margin-right: 2px; padding: 5% 0%; } } @media (max-width: 376px) { .main-panel .content-wrapper form span.right-inner-addon input { width: 90px; } .main-panel .content-wrapper form span.right-inner-addon i { display: none; } .task-list-filter { width: 82px; } } @media (min-width: 740px) and (max-width: 1290px) { .main-panel .content-wrapper form span.right-inner-addon input { width: 110px; } .view-task-panel .assign-by-assign-to-block { padding: 2%; } } /* task mgt css end */ /* Subtask page css start */ .main-panel.subtask-panel .CreateTaskBox { padding: 1.7rem !important; } .main-panel.subtask-panel label { font-size: 0.95rem; line-height: 1.4rem; vertical-align: top; margin-bottom: .5rem; font-weight: 600; } .main-panel.subtask-panel .CreateTaskBox .subtask-header { /* margin-bottom: 20px; */ max-width: 100%; font-size: 16px; margin-top: 0px; margin-bottom: 10px; width: 100% } .main-panel.subtask-panel .CreateTaskBox .subtask-header .task-id { color: #0c63e4; text-align: center; } .main-panel.subtask-panel .CreateTaskBox .subtask-header .Task-view-title { font-size: 14px; text-align: center; height: 15px; width: 100%; } .main-panel.subtask-panel .CreateTaskBox .subtask-header .create-new-subtask { color: #ec008c; text-align: center; } .main-panel.subtask-panel .CreateTaskBox .task-title-group .Task-view-title { font-size: 14px; } .main-panel.subtask-panel .CreateTaskBox .task-title-group input { box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #ffffff; } .main-panel.subtask-panel .CreateTaskBox .task-description-group .Task-view-title { font-size: 14px; } .main-panel.subtask-panel .CreateTaskBox .task-description-group textarea { box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #ffffff; } .main-panel.subtask-panel .CreateTaskBox .row.start-end-priority .Task-view-title { font-size: 14px; } .main-panel.subtask-panel .CreateTaskBox .row.start-end-priority .right-inner-addon { box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #ffffff; } .main-panel.subtask-panel .CreateTaskBox .row.start-end-priority .right-inner-addon .fa-calendar-o { margin-top: 7px; margin-right: 6px; } .main-panel.subtask-panel .CreateTaskBox .Task-view-title { font-size: 14px; } .main-panel.subtask-panel .CreateTaskBox .subtask-priority { box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); border-radius: 3px; border-style: none; height: 50px; } .main-panel.subtask-panel .CreateTaskBox .subtask-comment-area { box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #eef9ff; } .main-panel.subtask-panel .CreateTaskBox .error { color: red } .main-panel.subtask-panel #input_container { position: relative; padding: 0 0 0 5px; margin-left: 5px; margin-top: 10px; } .main-panel.subtask-panel .teamAssignToBox .team-section { overflow-y: auto; height: 200px; } .main-panel.subtask-panel .individualAssignToBox { opacity: 0.3; } .main-panel.subtask-panel .individualAssignToBox .input_container { margin-top: 10px; } .main-panel.subtask-panel #input_container .fa.fa-search { color: #ec008c; } .main-panel.subtask-panel #input { height: 20px; margin: 0; padding-right: 30px; border: none; width: 100%; } .main-panel.subtask-panel #input_img { position: absolute; bottom: 2px; right: 5px; width: 24px; height: 24px; color: #ec008c; top: 3%; } .main-panel.subtask-panel .CreateTaskBox .individualAssignToBox.Task-Assign-To { opacity: 0.3; } .main-panel.subtask-panel .CreateTaskBox #input_container { position: relative; padding: 0px; margin-left: 0px; padding: 3%; } #input_img { top: 25%; } .main-panel.subtask-panel .Task-Assign-To { width: 100%; height: 300px; } .main-panel.subtask-panel .comments-text-area { background-color: #eef9ff; border: none; } .main-panel.subtask-panel .teamAssignToBox #input_img, .main-panel.subtask-panel .individualAssignToBox #input_img { right: 5px; top: 9%; } .main-panel.subtask-panel #input_container { position: relative; padding: 0 0 0 5px; margin-left: 5px; } .main-panel.subtask-panel #input { height: 20px; margin: 0; padding-right: 30px; border: none; width: 100%; } /* .main-panel.subtask-panel #input_img { position: absolute; bottom: 2px; right: 5px; width: 24px; height: 24px; color: #ec008c; } */ @media (min-width: 300px) and (max-width: 740px) { .main-panel.subtask-panel .form-group.row .col-md-6.pl-4 { padding-left: 1em !important; } } /* Subtask page css end */ /* user profile start */ .user-profile-panel .content-wrapper { padding: 4%; } .user-profile-panel .content-wrapper .user-profile-title { font-weight: bold; color: #535353; } .user-profile-panel .user-info-row { padding: 3rem 5rem !important; } .user-profile-panel .user-info-row .profile-info { padding-bottom: 1.6em !important; } .user-profile-panel .user-info-row .user-info-col-2 { padding-left: 2%; } .user-profile-panel .user-info-row .user-info-col-3 { padding-left: 10%; } .user-profile-panel .content-wrapper .profile-picture, .user-profile-edit-panel .content-wrapper .profile-picture { border-radius: 50%; border: 3px solid #f6f6f6; box-shadow: 1px 0px 20px 5px rgb(0 0 0 / 21%); } .user-profile-edit-panel .content-wrapper { padding: 4%; } .user-profile-edit-panel .content-wrapper .CreateTeamBox { margin-right: 0%; padding-bottom: 2%; padding-top: 2%; } .user-profile-edit-panel .content-wrapper .edit-profile-title { font-weight: bold; color: #535353; } .user-profile-edit-panel .user-photo-edit-label { max-width: 12.5%; } .user-profile-edit-panel .custom-file { width: 105%; } .user-profile-edit-panel .user-photo-edit { /* padding-left: 4.5rem; */ } .navbar .navbar-menu-wrapper .navbar-nav .nav-item.nav-profile img { width: 30px; height: 30px; border-radius: 100%; } .edit-profile-icon i { color: #ec008c; padding: 0.11em; transition: all 0.2s ease-in-out 0s; } .edit-profile-icon i { transition: all linear .3s; } .edit-profile-icon i:hover { -webkit-transform: scale(1.2); -ms-transform: scale(1.2); transform: scale(1.2); } /* .edit-profile-icon i:hover { animation: bounce 900ms; } */ @keyframes bounce { 0%, 20%, 60%, 100% { -webkit-transform: translateY(0); transform: translateY(0); } 40% { -webkit-transform: translateY(-20px); transform: translateY(-20px); } 80% { -webkit-transform: translateY(-10px); transform: translateY(-10px); } } @media (min-width: 300px) and (max-width: 740px) { .user-profile-panel .user-info-row .user-info-col-2, .user-info-col-3 { text-align: center; } .user-profile-panel .user-info-row .vl { border-right: none; } .user-profile-edit-panel .user-photo-edit { padding-left: 1rem; } .user-profile-edit-panel .user-photo-edit-label { max-width: none; } .user-profile-edit-panel .custom-file { width: 100%; } } @media (min-width: 1000px) and (max-width: 1380px) { .user-profile-panel .user-info-row { padding: 3rem 1rem !important; } } /* user profile end */ /* Team Mgt css start */ .team-create-main-panel .content-wrapper { padding: 2% 4%; } .team-create-main-panel .team-create-title { margin-top: 10px; margin-left: 5px; font-weight: 600; color: #4B0E54; font-size: 18px; } .team-create-main-panel .form-group label { font-size: 0.95rem; line-height: 1.4rem; vertical-align: top; margin-bottom: .5rem; } .team-create-main-panel .CreateTeamBox { /* margin-right: 0%; padding-bottom: 0%; padding-top: 2%; */ padding: 2%; } .team-create-main-panel .team-lead-section { overflow-y: auto; /* height: 500px; */ max-height: 300px; } .team-create-main-panel .team-member-section { overflow-y: auto; /* height: 500px; */ max-height: 300px; } .team-create-main-panel .col-md-12 #input_container { position: relative; padding: 0 0 0 5px; margin-left: 5px; margin-top: 10px; } .team-create-main-panel .col-md-12 #input { height: 20px; margin: 0; padding-right: 30px; border: none; width: 100%; } .team-create-main-panel .col-md-12 #input_img { position: absolute; bottom: 2px; right: 5px; width: 24px; height: 24px; color: #ec008c; } /* --- team edit --*/ .team-edit-main-panel .content-wrapper { padding: 2% 4%; } .team-edit-main-panel .team-edit-title { margin-top: 10px; margin-left: 5px; font-weight: 600; color: #4B0E54; font-size: 18px; } .team-edit-main-panel #input_container { position: relative; padding: 0 0 0 5px; margin-left: 5px; margin-top: 10px; } .team-edit-main-panel #input { height: 20px; margin: 0; padding-right: 30px; border: none; width: 100%; } .team-edit-main-panel #input_img { position: absolute; bottom: 2px; right: 5px; width: 24px; height: 24px; color: #ec008c; } .team-edit-main-panel .team-lead-section { overflow-y: auto; max-height: 300px; } .team-edit-main-panel .team-member-section { overflow-y: auto; max-height: 300px; } /* --- team edit end--*/ @media (min-width: 300px) and (max-width: 615px) { .team-list-main-panel .teamTableBox { margin-left: 3px; margin-right: 3px; } .team-list-page-top-form-inline .form-control { margin-left: 0px; } .team-list-main-panel .team-list-page-buttons #button_list { margin-bottom: 3px; margin-right: 0px; } .team-list-page-buttons { padding-right: 15px; text-align: center; } .team-list-page-buttons .button { margin-left: 0px !important; } } /* Team mgt css end */ /* user management */ .users-list-main-panel .content-wrapper { /* padding: 2% 4%; */ padding: 15px 20px; } .users-list-main-panel .users-list-title { margin-top: 10px; margin-left: 5px; font-weight: 600; color: #4B0E54; font-size: 18px; } .users-list-main-panel .DataTableBox { margin-right: 0px; max-width: 100%; height: auto; } .users-list-main-panel .users-list-table-subHeader { margin-left: 10px; } .users-list-main-panel .users-list-table-subHeader .subHeader-col-1, .subHeader-col-2 { margin-top: 20px; } .users-list-main-panel .users-list-table-subHeader .subHeader-col-1 { padding: 0%; } .users-list-main-panel .users-list-table-subHeader .subHeader-col-2 { text-align: end; } .users-list-main-panel .user-list-search { margin-left: 10px; height: 20px; } .users-list-main-panel .user-table-section { margin-bottom: 20px; } .users-list-main-panel .user-list-Bulk-Upload, .user-list-New-User { border-radius: 5px; border: 1px solid #ec008c; color: #ec008c; background-color: white; margin-left: 10px; padding: 0.3em .5rem; transition: all 0.5s ease-in-out 0s; } .users-list-main-panel .dataTables_paginate.paging_simple_numbers { /* display: flex; justify-content: center; */ } /* table#userList tbody tr td:nth-child(2) { word-break: break-all; white-space: pre-line; line-height: 20px; } */ .navbar-menu-wrapper .dropdown-notifications .notification-menu .dropdown-toolbar { text-align: center; } .navbar-menu-wrapper .dropdown-notifications .notification-menu .dropdown-container hr { margin-bottom: 0.5rem; } .main-panel.user-create-main-panel .content-wrapper { /* padding: 2% 4%; */ padding: 15px 20px; } .main-panel.user-create-main-panel .content-wrapper .user-create-title { margin-top: 10px; margin-left: 5px; font-weight: 600; color: #4B0E54; font-size: 18px; } .main-panel.user-create-main-panel .custom-file-label::after { background-color: #eef9ff; border-left: none; } .main-panel.user-create-main-panel .CreateTaskBox { padding-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-bottom: 0px; } .main-panel.user-create-main-panel .form-group label { font-size: 0.95rem; line-height: 1.4rem; vertical-align: top; margin-bottom: .5rem; } .user-edit-main-panel .user-edit-title { margin-top: 10px; margin-left: 5px; font-weight: 600; color: #4B0E54; font-size: 18px; } .main-panel.user-edit-main-panel .content-wrapper { /* padding: 2% 4%; */ padding: 15px 20px; } .main-panel.user-edit-main-panel .CreateTaskBox { padding-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-bottom: 0px; } .main-panel.user-edit-main-panel .form-group label { font-size: 0.95rem; line-height: 1.4rem; vertical-align: top; margin-bottom: .5rem; } .bulk-upload-panel .content-wrapper { padding: 10% 15%; } .bulk-upload-panel .bulk-upload-form { padding: 4% 8%; } .bulk-upload-panel .bulk-upload-form .file-up-label { color: #4f5e6d; font-weight: bold; } .bulk-upload-panel .custom-file { box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); border-radius: 0.35em; } .bulk-upload-panel .custom-file .custom-file-label { border: none; } .bulk-upload-panel .custom-file-label::after { height: 35px; padding: 0.39rem 0.75rem; background-color: #7A8FA4; color: #fafafa; border-left: none; } .bulk-upload-panel .bulk-download { text-decoration: underline; } /* create */ .user-create-main-panel .select2-container .select2-selection--multiple { min-height: 41px !important; } .user-create-main-panel .select2-container--default .select2-selection--multiple { border: 1px solid #CED4DA !important; } .user-create-main-panel .select2-container--default .select2-selection--multiple .select2-selection__choice { font-size: 13px; line-height: 2; } .user-edit-main-panel .select2-container .select2-selection--multiple { min-height: 41px !important; overflow: hidden !important; } .user-edit-main-panel .select2-container--default .select2-selection--multiple { border: 1px solid #CED4DA !important; } .user-edit-main-panel .select2-container--default .select2-selection--multiple .select2-selection__choice { font-size: 13px; line-height: 2; } /* create end*/ @media (min-width: 300px) and (max-width: 917px) {} @media (min-width: 992px) and (max-width: 1110px) {} @media (min-width: 616px) and (max-width: 740px) { .users-list-main-panel .users-list-table-subHeader .subHeader-col-1 .form-control { width: 60%; margin-left: auto; } .users-list-main-panel .user-list-search { margin-left: 0px; } .users-list-main-panel .users-list-table-subHeader .subHeader-col-2 { text-align: center; } .users-list-main-panel .user-list-Bulk-Upload, .user-list-New-User { margin-left: 2px; } } @media (min-width: 300px) and (max-width: 615px) { .users-list-main-panel .users-list-table-subHeader .subHeader-col-1 .form-control { width: 65%; /* margin-left: 16%; */ } .users-list-main-panel .users-list-table-subHeader .subHeader-col-1 span b { font-size: 12px; } .users-list-main-panel .users-list-table-subHeader .subHeader-col-2 { text-align: center; padding-right: 0px; padding-left: 0px; } .users-list-main-panel .user-list-Bulk-Upload, .user-list-New-User { margin-left: 2px; } .users-list-main-panel .user-list-Bulk-Upload, .user-list-New-User { padding: 0.3em 0.1rem; } .users-list-main-panel .users-list-table-subHeader { margin-left: 2px; } .bulk-upload-panel .content-wrapper { padding: 6% 6%; } } /* user mangement end */ /* Role Management */ .role-list-main-panel .content-wrapper { /* padding: 2% 4%; */ padding: 15px 20px; } .role-list-main-panel .role-list-title { margin-top: 10px; margin-left: 5px; font-weight: 600; color: #4B0E54; font-size: 18px; } .role-list-main-panel .DataTableBox { margin-right: 0px; max-width: 100%; height: auto; } .role-list-main-panel .role-list-table-subHeader { margin-left: 10px; } .role-list-main-panel .role-list-table-subHeader .subHeader-col-1, .subHeader-col-2 { margin-top: 20px; } .role-list-main-panel .role-list-table-subHeader .subHeader-col-1 { padding: 0%; } .role-list-main-panel .role-list-table-subHeader .subHeader-col-2 { text-align: end; } .role-list-main-panel .role-list-table-subHeader .role-list-search { margin-left: 10px; height: 20px; } .role-list-main-panel .role-list-New-role-btn { border-radius: 5px; border: 1px solid #ec008c; color: #ec008c; background-color: white; margin-left: 10px; padding: 0.3em .5rem; transition: all 0.5s ease-in-out 0s; } .role-list-main-panel .dataTables_paginate.paging_simple_numbers { /* display: flex; justify-content: center; */ } .role-create-main-panel .content-wrapper { /* padding: 2% 4%; */ padding: 15px 20px; } .role-create-main-panel .content-wrapper .role-create-title { margin-top: 10px; margin-left: 5px; font-weight: 600; color: #4B0E54; font-size: 18px; } .role-create-main-panel .form-check { margin-top: 0px; } .CreateRolekBox { padding-bottom: 2%; padding-top: 15px; box-shadow: 0 2px 6px 0 rgb(0 0 0 / 16%); background-color: #ffffff; margin-bottom: 20px; margin-top: 20px; } .role-create-main-panel .add-role-form { padding: 1% 3%; } .role-create-main-panel .add-role-form .role-group { padding-left: 7%; } .role-create-main-panel .form-group label { font-size: 0.95rem; line-height: 1.4rem; vertical-align: top; margin-bottom: .5rem; } .role-edit-main-panel .content-wrapper { /* padding: 3% 4%; */ padding: 15px 20px; } .role-edit-main-panel .content-wrapper .role-edit-title { margin-top: 10px; margin-left: 5px; font-weight: 600; color: #4B0E54; font-size: 18px; } .role-edit-main-panel .form-group label { font-size: 0.95rem; line-height: 1.4rem; vertical-align: top; margin-bottom: .5rem; } .role-edit-main-panel .form-check { margin-top: 0px; } .role-edit-main-panel .add-role-form .role-group { padding-left: 7%; } .role-edit-main-panel .add-role-form { padding: 1% 3%; } @media (min-width: 300px) and (max-width: 917px) {} @media (min-width: 992px) and (max-width: 1110px) {} @media (min-width: 616px) and (max-width: 740px) { .role-list-main-panel .role-list-table-subHeader .subHeader-col-1 .form-control { width: 60%; margin-left: auto; } .role-list-main-panel .role-list-search { margin-left: 0px; } .role-list-main-panel .role-list-table-subHeader .subHeader-col-2 { text-align: center; } .role-list-main-panel .role-list-New-role-btn { margin-left: 2px; } } @media (min-width: 300px) and (max-width: 615px) { .role-list-main-panel .role-list-table-subHeader .subHeader-col-1 .form-control { width: 63%; } .role-list-main-panel .role-list-table-subHeader .subHeader-col-2 { text-align: center; padding-right: 0px; padding-left: 0px; } .role-list-main-panel .role-list-table-subHeader { margin-left: 0px; } .role-list-main-panel .role-list-table-subHeader .role-list-search { margin-left: 10px; /*height: 20px; */ } .role-list-main-panel .role-list-table-subHeader .subHeader-col-1 { margin-left: 3%; } .role-list-main-panel .role-list-table-subHeader .subHeader-col-1 span b { font-size: 12px; } .role-edit-main-panel .add-role-form .role-group { padding-left: 22%; } .role-create-main-panel .add-role-form .role-group { padding-left: 22%; } } /* Role Management end */ .custom-btn { /* box-shadow: 0 2px 6px 0 rgb(0 0 0 / 16%); */ background-color: #ec008c; margin-left: 10px; color: white; padding: .7em 2.5em; border: 2px solid #ec008c; border-radius: 5px; transition: all linear 0.3s; } .custom-btn:hover { background-color: white; border: 2px solid #ec008c; color: #ec008c; /* box-shadow: rgb(22 63 82 / 15%) 0px 18px 21px 0px; */ /* transform: translate(0px, -2px); */ } .custom-outline-btn { background-color: white; border: 2px solid #ec008c; color: #ec008c; border-radius: 5px; text-decoration: none !important; padding: .7em 2.3em; transition: all linear 0.3s; } .custom-outline-btn:hover { background-color: #ec008c; color: white; text-decoration: none; /* box-shadow: rgb(22 63 82 / 15%) 0px 18px 21px 0px; */ /* transform: translate(0px, -2px); */ } .custom-input { box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); background-color: #ffffff; outline: none; } .btn-hover { transition: all 0.3s ease-in-out 0s; } .btn-hover :hover { background-color: #ec008c; color: white; transition: all 0.3s ease-in-out 0s; } /* .kanban-hover :hover { background-color: #ec008c; transition: all 0.3s ease-in-out 0s; } */ .kanban-hover:hover .kanban-card-header-para { color: #ec008c!important; } .btn-hover2 { transition: all 0.3s ease-in-out 0s; } .btn-hover2:hover { background-color: white; color: #ec008c !important; border: 1px solid #ec008c; } /* .Rectangle-Edit:hover { background: white; color: #ec008c; border: 1px solid #ec008c; } */ .comment-btn.btn:hover { color: white; text-decoration: none; } .comment-btn { transition: all 0.5s ease-in-out 0s; } .Create.update:hover { background-color: white; color: #ec008c !important; border: 1px solid #ec008c; } .comment-btn:hover { background-color: white; color: #ec008c !important; border: 1px solid #ec008c; } @media (min-width: 300px) and (max-width: 760px) { .task-accept-button { /* width: 46% !important; padding: 0.5rem 0.4rem; */ } .task-reject-button { /* width: 45% !important; padding: 0.5rem 0.5rem; */ } .bulk-upload-panel .custom-btn { padding: .7em 1em; } .bulk-upload-panel .custom-outline-btn { padding: .7em 1em; } } /*------ checkbox design --------*/ /* The container */ .container { display: block; position: relative; padding-left: 35px; margin-bottom: 12px; cursor: pointer; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; word-break: break-all } /* Hide the browser's default checkbox */ .container input { position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0; } /* Create a custom checkbox */ .checkmark { position: absolute; top: 0; left: 0; /* height: 25px; width: 25px; */ /* background-color: #eee; */ border: 1px solid #ec008c; display: inline-block; font: 16px/1em sans-serif; height: 16px; width: 16px; margin: 0 .25em 0 0; padding: 0; vertical-align: top; } /* On mouse-over, add a grey background color */ .container:hover input~.checkmark { /* background-color: #ccc; */ } /* When the checkbox is checked, add a blue background */ .container input:checked~.checkmark { /* background-color: #2196F3; */ } /* Create the checkmark/indicator (hidden when not checked) */ .checkmark:after { content: ""; position: absolute; display: none; } /* Show the checkmark when checked */ .container input:checked~.checkmark:after { display: block; } /* Style the checkmark/indicator */ .container .checkmark:after { /* left: 9px; top: 5px; width: 5px; height: 10px; */ /* border: solid white; */ /* border-width: 0 3px 3px 0; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg); */ background: #ec008c; color: white; content: "\2713"; text-align: center; padding: 0%; position: absolute; top: -1px; left: 0px; width: 16px; } /*---------- checkbox design end ------------*/ /*---------- Kanban css start ------------*/ .kanban-card-header-todo-dot { height: 10px; width: 10px; border-radius: 50%; background-color: #FFCE00; margin-right: 10px; margin-top: 5px; float: left; } .kanban-card-header-progress-dot { height: 10px; width: 10px; border-radius: 50%; background-color: #095CF8; margin-right: 10px; margin-top: 5px; float: left; } .kanban-card-header-completed-dot { height: 10px; width: 10px; border-radius: 50%; background-color: #12B002; margin-right: 10px; margin-top: 5px; float: left; } /* ----- task card ---- */ .task-card-body { margin: 0; padding: 0; box-sizing: border-box; background-color: #ffffff; font-family: 'Roboto', Helvetica, sans-serif; } .task-card-body .app { display: flex; flex-flow: column; align-items: center; justify-content: center; width: 100vw; height: 80vh; /* height: calc(100vh - 165px); */ overflow-y: hidden; } .task-card-body .lists { display: flex; align-items: center; justify-content: center; width: 100%; overflow-x: auto; overflow-y: hidden; height: 100%; } .task-card-body .lists .list { display: flex; flex-flow: column; flex: 1; width: 100%; min-width: 250px; max-width: 390px; height: 100%; /* min-height: 150px; */ overflow-y: scroll; overflow-x: hidden; margin: 0 15px; padding: 25px; transition: all 0.2s linear; border-right: 1px solid rgb(226, 226, 226); padding-top: 5px; } .task-card-body .lists .list .list-item { width: 100%; background-color: #F3F3F3; border-radius: 5px; /* padding: 15px 20px; */ padding-left: 20px; padding-right: 20px; padding-top: 10px!important; padding-bottom: 5px!important; margin: 4px 0px; background-color: #ffffff!important; box-shadow: 2px 2px 2px 2px #AFAFAF; } .task-card-body .list-item-item { font-size: 15px; /* display: flex; */ align-items: center; } /* ----- task card end---- */ .kanban-card-header-para { font-weight: 900; word-break: break-all; /* height: 35px; */ font-family: 'Rubik', sans-serif!important; /* transition: all linear 0.5s; */ } .task-card-body .lists .list .list-item { transition: all linear .3s; } .task-card-body .lists .list .list-item:hover { /* box-shadow: 0 20px 30px rgba(33,33,33,.2)!important; */ -webkit-transform: scale(1.05, 1.05); -o-transform: scale(1.05, 1.05); -moz-transform: scale(1.05, 1.05); transform: scale(1.05); } .sticky { position: fixed; top: 135px; width: 100%; } .task-card-body .lists .list .list-item:hover .kanban-card-header-left a p { color: #ec008c!important; } .kanban-card-header-left a p { transition: all linear .3s; margin-bottom: 0px; } .kanban-card-header-right { text-align: right; } .kanban-card-footer { display: flex; align-items: center; padding-left: 15px; margin-top: 5px; } .task-card-body .lists .list .list-item { box-shadow: 0 0px 10px 1px #ddd; /* margin-bottom: 20px; */ /* padding-bottom: 5px!important; */ margin-bottom: 6px; transition: all linear 0.5s; } .task-card-body .lists .list { margin-top: 90px; border-right: none; position: relative; margin-left: 0px; } .task-card-body .lists .list::after { content: ""; display: block; background: #ddd; width: 1px; height: 100%; position: absolute; right: -3%; top: 11%; } /* .task-card-body .lists .list:nth-of-type(1):after { right: -7%; } */ .task-card-body .lists .list:nth-of-type(3):after { /* content: ""; */ display: none !important; } .task-card-body .kanban-todo-col { margin-bottom: 20px; margin-top: 1px; font-size: 18px; color: #FFCE00; font-weight: 900; font-family: 'Rubik', sans-serif!important; } .task-card-body .kanban-inprogress-col { margin-bottom: 15px; margin-top: 1px; font-size: 18px; color: #095CF8; font-weight: 900; font-family: 'Rubik', sans-serif!important; } .task-card-body .kanban-completed-col { margin-bottom: 20px; margin-top: 1px; font-size: 18px; color: #12B002; font-weight: 900; font-family: 'Rubik', sans-serif!important; } .list-item-item.todo-description { padding-top: 5px; height: 70px; line-height: 20px; /* padding-bottom: 25px; */ border-bottom: 1px solid #909190; font-size: 13px; font-family: 'Rubik', sans-serif!important; color: #909190; word-break: break-all; } .list-item-item.in-progress-description { padding-top: 5px; line-height: 20px; /* padding-bottom: 25px; */ height: 70px; border-bottom: 1px solid #909190; font-size: 13px; font-family: 'Rubik', sans-serif!important; color: #909190; word-break: break-all; } .list-item-item.completed-description { padding-top: 5px; line-height: 20px; /* padding-bottom: 25px; */ height: 70px; border-bottom: 1px solid #909190; font-size: 13px; font-family: 'Rubik', sans-serif!important; color: #909190; word-break: break-all; } .task-card-body .kanban-card-member-image { height: 40px; width: 40px; margin-left: -19px; border-radius: 50%; border: white solid 3px; } @media (max-width:1365px) { .task-card-body .lists .list { margin-left: 0px; } .task-card-body .lists .list::after { right: -3% !important; } } @media (max-width:768px) { .kanban-card-header-right { text-align: left; margin-left: 15px; } } /*---------- Kanban css end ------------*/ /* task list css */ .task-index-panel .list-view, .task-index-panel .kanban-view, .list-view-text, .kanban-view-text { cursor: pointer; } .task-list-view, .task-kanban-view { display: inline-flex; justify-content: center; transform: translate(0px, 3px); } .task-list-view i, .task-kanban-view i { font-size: 21px; margin-left: 5px; } .task-kanban-view { color: #7C90A5; } /* task list css end*/ /*header notification css start*/ .notification-top-section .dropdown-toolbar-actions { float: right; padding-right: 10px; color: #ec008c; cursor: pointer; line-height: 18px; } .navbar-menu-wrapper .dropdown-notifications .notification-menu .dropdown-toolbar { text-align: left; padding-left: 10px; padding-top: 10px; } /*header notification css end*/ .assign-by-me-badge, .assign-to-me-badge { border-radius: 3px; padding-bottom: .28rem; } .file-show-area { font-family: 'Rubik', sans-serif; font-size: 14px; color: #ec008c; } .removeFile { color: red; padding-bottom: 10px; } /* task analytics css start */ .task-analytics-main-panel .analytics-task-status-crd { padding: 10px; border-radius: 5px; box-shadow: 0 2px 14px 0 rgb(180 180 180 / 50%) } /* .task-analytics-main-panel .overall-task-quantity { padding-left: 45px; } */ .task-analytics-main-panel .overall-task-quantity h4.task-quantity-title { font-size: 13px; padding-top: 10px; color: #475f7b; font-weight: 500; } .task-analytics-main-panel .overall-task-quantity h3.task-quantity-number { font-size: 25px; padding-top: 5px; } .task-analytics-main-panel .analytics-task-status-crd .overall-task-img { padding: 8px 25px; } .task-analytics-main-panel .analytics-task-status-crd .overall-task-img img { height: 50px; } .task-analytics-main-panel .analytics-task-status-crd .overall-task-img::after { content: ""; display: block; height: 53px; width: 1px; background: #EEEEEE; float: right; } .task-quantity-number.Programs { color: #f2b70a; } .task-quantity-number.Members { color: #ce006b; } .task-quantity-number.Tasks { color: #6c63ff; } .task-quantity-number.Pending { color: #C0C0C0; } .task-quantity-number.Accepted { color: #f2b70a; } .task-quantity-number.In-Progress { color: #188ef9; } .task-quantity-number.Completed { color: #4dc400; } .task-quantity-number.Rejected { color: #ec008c; } .task-quantity-number.overdue { color: #ff0404 !important; } .card.direct-supervise-status { color: #475f7b; } .card.direct-supervise-status .subHeader-col-1 { padding-top: 20px; } .card.direct-supervise-status .col-sm-7.subHeader-col-2 { text-align: right; } .card.direct-supervise-status .form-inline { display: unset; } .card.direct-supervise-status .supervise-status-search { height: 10px; border-color: #ec008c; margin-left: 10px; } table.supervise-status-table tr th { color: #ec008c; } table.supervise-status-table tr td { color: #475f7b; } .card.direct-supervise-status div.dataTables_wrapper div.dataTables_info { float: left; } .card.direct-supervise-status div.dataTables_wrapper div.dataTables_paginate ul.pagination { margin-top: 10px; } .card.direct-supervise-status .DataTableBox { border-radius: 5px; } .program-details .form-group h3 { font-size: 20px; font-weight: bold; color: #475f7b; margin-bottom: 20px; } .task-analytics-main-panel .program-details { transform: translate(10px, 17px); z-index: 1; } .task-analytics-main-panel .select2-selection.select2-selection--single { padding: 0px; height: 35px !important; border-color: #ec008c; } .task-analytics-main-panel .select2-selection--single .select2-selection__rendered { line-height: 35px !important; font-size: 13px; } .task-analytics-main-panel .select2-selection--single .select2-selection__arrow { height: 34px !important; right: 2px !important; } .program-wise-task-details { background: #eef9ff; border: 1px solid #ec008c; border-radius: 5px; margin: 0px 5px; padding: 15px 15px; } .program-wise-task-details .custom-col-width { max-width: 10.66667% !important; } .program-wise-task-details .analytics-task-status-crd .overall-task-img { padding: 8px 15px !important; } .program-wise-task-details .kanban-card-footer { display: flex; align-items: center; padding-left: 0px; margin-top: 16px; background-color: unset; } .program-wise-task-details .supervise-status-search { height: 10px; border-color: #ec008c; margin-left: 10px; } .program-wise-task-details .col-sm-7.subHeader-col-2 { text-align: right; } .task-analytics-main-panel .program-wise-task-details .analytics-task-status-crd { box-shadow: none; border: 1px solid #ec008c; border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; } .task-analytics-main-panel .program-wise-task-details .DataTableBox { box-shadow: none; padding-top: 20px; border-bottom-right-radius: 5px; } .task-analytics-main-panel .program-wise-task-details .form-inline { display: unset; } .task-analytics-main-panel .program-wise-task-details .form-inline span b { line-height: 25px; } .program-wise-task-details .role-list-table-subHeader .subHeader-col-2 { margin-top: 0px; } .directSuperviseStatusCard { box-shadow: 0 2px 14px 0 rgb(180 180 180 / 50%); border-radius: 5px; } .Overdue-task-status-graph .wrapper { padding: 50px 10px; background: #fff; border-radius: 4px; box-shadow: 0 2px 14px 0 rgb(180 180 180 / 50%); } .Overdue-task-status-graph canvas { background: #fff; height: 400px; } .directSuperviseStatusCard .analytics-task-status-crd .overall-task-img::after { transform: translateX(-18px); } .task-analytics-main-panel .right-inner-addon i { right: unset; left: 90px; } @media (min-width: 991px) and (max-width: 1088px) { .program-wise-member-images { padding: 0%; } .program-wise-task-details .overall-task-quantity h4.task-quantity-title { font-size: 10px; font-weight: bold; } .program-wise-task-details .overall-task-quantity h3.task-quantity-number { font-size: 20px; } .program-wise-task-details .supervise-status-search { float: none; } .task-analytics-main-panel .analytics-task-status-crd.top-section .overall-task-img::after { display: none; } } @media (min-width: 768px) and (max-width: 990px) { .program-wise-task-details .supervise-status-search { float: none; } .task-analytics-main-panel .analytics-task-status-crd.top-section .overall-task-img::after { display: none; } } @media (min-width: 576px) and (max-width: 767px) { .card.analytics-task-status-crd.top-section { text-align: center; } .program-wise-task-details .supervise-status-search { float: none; } .directSuperviseStatusCard .DataTableBox .pagination { float: none; margin-top: 10px !important; } .analytics-task-status-crd.top-section .overall-task-img::after { display: none; } .card.direct-supervise-status .supervise-status-search { float: none; } .program-details.text-center .select2-container { width: 115px !important; } } @media (min-width: 300px) and (max-width: 575px) { .directSuperviseStatusCard .card.analytics-task-status-crd { text-align: center; } .program-wise-task-details .analytics-task-status-crd .overall-task-img { text-align: center; } .program-wise-task-details .kanban-card-footer { justify-content: center; } .program-wise-task-details .overall-task-quantity h4.task-quantity-title { font-size: 9px; font-weight: bold; } .program-wise-task-details .overall-task-quantity h3.task-quantity-number { font-size: 20px; } .program-wise-task-details .analytics-task-status-crd .overall-task-img::after { display: none; } .program-wise-task-details .supervise-status-search { float: right; width: 48%; } .program-wise-task-details .col-sm-7.subHeader-col-2 { text-align: center; margin-top: 10px; } .directSuperviseStatusCard .DataTableBox .pagination { float: none; margin-top: 10px !important; } .card.analytics-task-status-crd.top-section { text-align: center; } .card.analytics-task-status-crd.top-section .overall-task-quantity { /* text-align: left; */ } .analytics-task-status-crd.top-section .overall-task-img::after { display: none; } .card.direct-supervise-status .col-sm-7.subHeader-col-2 { text-align: center; } .program-details.text-center .select2-container { width: 115px !important; } .task-analytics-main-panel span.right-inner-addon { float: right !important; padding: 0px; } .task-analytics-main-panel .right-inner-addon i { display: none; } .task-analytics-main-panel .right-inner-addon p { font-size: 10px; } .task-analytics-main-panel .task-list-filter { margin-top: 4px; } .task-analytics-main-panel .task-list-filter#start_date { /* float: right; */ width: 64px; margin-right: 10px; } .task-analytics-main-panel .task-list-filter#end_date { /* float: right; */ width: 64px; /* margin-left: 10px; */ } .task-analytics-main-panel #priority { margin-top: 4px; /* margin-bottom: 15px; */ } .task-analytics-main-panel .Rectangle-btn { width: 95px; } .task-analytics-main-panel .subHeader-col-1 span b { font-size: 12px; float: left; } .card.direct-supervise-status .supervise-status-search { float: right; width: 47%; } } @media (min-width: 300px) and (max-width: 376px) { .task-analytics-main-panel .task_Status_date_filter { position: relative; } .task-analytics-main-panel span.right-inner-addon.end-date-box { position: absolute; left: 29%; } .task-analytics-main-panel span.right-inner-addon.start-date-box { position: absolute; left: 8%; } .card.analytics-task-status-crd.top-section { margin-top: 25px; } } /* task analytics css end */ /* individual overall task status css start */ .individual-all-task-details .supervise-status-search { float: none; height: 10px; margin-left: 10px; border-color: #ec008c; } .individual-all-task-details .subHeader-col-1 { margin-top: 20px; } .individual-all-task-details .col-sm-7.subHeader-col-2 { text-align: right; } .task-analytics-main-panel .individual-all-task-details .form-inline { display: unset; } .task-analytics-main-panel .individual-all-task-details .form-inline span b { line-height: 25px; } .task-analytics-main-panel .individual-all-task-details .DataTableBox { border-radius: 5px; } /* .individual-all-task-details-wrapper span.right-inner-addon i { right: 5px!important; top: 0px!important; } */ .individual-all-task-details-wrapper .right-inner-addon.date.datepicker input { font-size: 12px; } .individual-all-task-details-wrapper tbody button.btn-fw { padding: 8px 0px !important; border-radius: 1px !important; width: 95px; } .individual-all-task-details-wrapper tbody p.badge { padding: .2rem .5625rem; } .individual-all-task-details-wrapper div.dataTables_wrapper div.dataTables_info { float: left; } .individual-all-task-details-wrapper div.dataTables_paginate ul.pagination { margin-top: 10px !important; } .task-assigned-person-name { color: #ec008c; } .task-assigned-person-name b { font-size: 13px; } .individual-all-task-details-wrapper .dropdown.assignee-section-dropdown .dropdown-menu { min-width: 16rem; padding-left: 8px; padding-right: 8px; } .individual-all-task-details-wrapper .dropdown.assignee-section-dropdown .dropdown-menu .checkbox { display: none; } .individual-all-task-details-wrapper .dropdown.assignee-section-dropdown .dropdown-menu .assignee-section p { padding-left: 0px; } .individual-all-task-details .btn-custom-reset { border: none !important; background: content-box !important; color: #ec008c !important; padding-left: 6px; } /* .individual-all-task-details .table-responsive::-webkit-scrollbar { display: none; } */ @media (min-width: 991px) and (max-width: 1078px) { .individual-all-task-details-wrapper .analytics-task-status-crd .overall-task-img::after { display: none; } } @media (min-width: 300px) and (max-width: 883px) { .individual-all-task-details-wrapper .analytics-task-status-crd .overall-task-img::after { display: none; } } @media (min-width: 300px) and (max-width: 768px) { .individual-all-task-details-wrapper .analytics-task-status-crd { text-align: center; } } @media (min-width: 300px) and (max-width: 575px) { .individual-all-task-details-wrapper .analytics-task-status-crd { text-align: center; } .individual-all-task-details-wrapper .date-picker-sectioon { text-align: left !important; margin: 8px 0px; } .individual-all-task-details-wrapper .date-picker-for-filter { text-align: left !important; margin-top: 10px; } .individual-all-task-details-wrapper .individual-all-task-details .col-sm-7.subHeader-col-2 { text-align: center; } .individual-all-task-details-wrapper .right-inner-addon.date.datepicker input#start_date { float: unset; } .individual-all-task-details-wrapper .right-inner-addon.date.datepicker input#end_date { float: unset; } } @media (min-width: 575px) and (max-width: 710px) { /* .individual-all-task-details-wrapper span input.task-list-filter { margin-top: 10px !important; } */ } @media (min-width: 300px) and (max-width: 376px) { .individual-all-task-details-wrapper .date-picker-for-filter { position: relative; } .individual-all-task-details-wrapper .date-picker-for-filter .datepicker.from-date { position: absolute; left: 5%; } .individual-all-task-details-wrapper .date-picker-for-filter .datepicker.to-date { position: absolute; left: 27%; } .individual-all-task-details-wrapper .analytics-task-status-crd { margin-top: 10%; } } /* individual overall task status css end */ /* report page css start */ .main-panel.report-page .card { padding-top: 26px; margin-top: 40px; border-radius: 15px; box-shadow: 0 0px 10px 1px #ddd; } .main-panel.report-page .card .card-body input[type="submit"] { font-size: 14px; padding: 8px 44px; margin-top: 11px; margin-bottom: 10px; color: #fff; background: #ec008c; border: 1px solid #ec008c; border-radius: 20px; transition: all linear 0.3s; } .main-panel.report-page .card .card-body input[type="submit"]:hover { color: #ec008c; background: #fff; border: 1px solid #ec008c; } .main-panel.report-page h3 { margin-top: 25px; margin-left: 5px; font-weight: 600; color: #4B0E54; font-size: 16px; } /* .main-panel.report-page .card .card-body .form-group { margin-left: 95px; } */ /* report page css end */ input[type=date] { -webkit-appearance: none; /* display: none; */ } /*################ azmain css end ###############*/ .loading { position: fixed; top: 0; right: 0; bottom: 0; left: 0; /* background: #fff; */ } .loader { left: 50%; margin-left: -4em; font-size: 10px; border: .8em solid rgba(218, 219, 223, 1); border-left: .8em solid #ec008c; animation: spin 1.1s infinite linear; } .loader, .loader:after { border-radius: 50%; width: 8em; height: 8em; display: block; position: absolute; top: 50%; margin-top: -4.05em; } @keyframes spin { 0% { transform: rotate(360deg); } 100% { transform: rotate(0deg); } } .memberNameBox { padding: 0.25rem !important; display: inline-block; padding-right: 9px !important; padding-bottom: 7px !important; } .memberNameBox i { color: red; } .custom-sorting{ font-size:12px; color:#7a848d; transform:rotate(90deg); }
0.502197
0.104249