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
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap"); * { margin: 0; padding: 0; box-sizing: border-box; font-family: "Poppins", sans-serif; } :root { --bg-color: #000; --primary-color: #fff; } body { display: flex; flex-direction: column; justify-content: center; align-items: center; min-height: 100vh; background-color: var(--bg-color); transition: 0.5s; } .container { flex-grow: 3; display: flex; flex-direction: column; justify-content: center; width: 80%; padding: 20px; gap: 40px; } .title { font-size: 40px; text-align: center; user-select: none; color: var(--primary-color); } .row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; } .inputbox { position: relative; display: flex; flex-direction: column-reverse; height: 40px; } .inputbox label { position: relative; top: 0; left: 10px; font-size: 20px; color: var(--primary-color); transition: 0.5s; cursor: text; } .inputbox input { position: absolute; background-color: var(--primary-color); width: 100%; height: 3px; bottom: 0; box-shadow: none; border: none; outline: none; border-radius: 2px; transition: 0.5s; font-size: 20px; font-weight: bold; padding: 0 10px; } .inputbox input:focus, .inputbox input:valid { height: 100%; } .inputbox input:focus + label, .inputbox input:valid + label { top: -40px; left: 0; } .container button { justify-self: center; width: 200px; height: 50px; border: none; outline: none; cursor: pointer; background-color: var(--primary-color); font-size: 20px; font-weight: bold; border-radius: 2px; } footer { color: var(--primary-color); } /* botao light e dark */ #toggle { margin-bottom: 80px; position: relative; display: block; width: 120px; height: 50px; border-radius: 120px; background: linear-gradient(to bottom, var(--primary-color), #222); transition: 0.5s; cursor: pointer; box-shadow: inset 0 8px 60px rgba(0, 0, 0, 0.1), inset 0 8px 8px rgba(0, 0, 0, 0.1), inset 0 4px 4px rgba(0, 0, 0, 0.1); } body.active { background: var(--primary-color); color: var(--bg-color); } body.active input { background: var(--bg-color); color: var(--primary-color); } body.active label { color: var(--bg-color); } body.active .title, body.active footer { color: var(--bg-color); } body.active button { background: var(--bg-color); color: var(--primary-color); } #toggle .indicator { position: absolute; top: 0; left: 0; width: 40px; height: 50px; border-radius: 50%; transform: scale(0.9); transition: 0.5s; background: linear-gradient(to bottom, var(--bg-color), #222); box-shadow: inset 0 8px 20px rgba(0, 0, 0, 0.1), inset 0 4px 4px rgba(255, 255, 255, 1), inset 0 -4px -4px rgba(255, 255, 255, 1); } #toggle.active .indicator { left: 80px; background: linear-gradient( to bottom, var(--primary-color), var(--primary-color) ); box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), inset 0 4px 4px rgba(255, 255, 255, 0.2), inset 0 -4px 4px rgba(255, 255, 255, 0.2); } body.active { background: var(--primary-color); }
ApiCorreios/style.css
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap"); * { margin: 0; padding: 0; box-sizing: border-box; font-family: "Poppins", sans-serif; } :root { --bg-color: #000; --primary-color: #fff; } body { display: flex; flex-direction: column; justify-content: center; align-items: center; min-height: 100vh; background-color: var(--bg-color); transition: 0.5s; } .container { flex-grow: 3; display: flex; flex-direction: column; justify-content: center; width: 80%; padding: 20px; gap: 40px; } .title { font-size: 40px; text-align: center; user-select: none; color: var(--primary-color); } .row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; } .inputbox { position: relative; display: flex; flex-direction: column-reverse; height: 40px; } .inputbox label { position: relative; top: 0; left: 10px; font-size: 20px; color: var(--primary-color); transition: 0.5s; cursor: text; } .inputbox input { position: absolute; background-color: var(--primary-color); width: 100%; height: 3px; bottom: 0; box-shadow: none; border: none; outline: none; border-radius: 2px; transition: 0.5s; font-size: 20px; font-weight: bold; padding: 0 10px; } .inputbox input:focus, .inputbox input:valid { height: 100%; } .inputbox input:focus + label, .inputbox input:valid + label { top: -40px; left: 0; } .container button { justify-self: center; width: 200px; height: 50px; border: none; outline: none; cursor: pointer; background-color: var(--primary-color); font-size: 20px; font-weight: bold; border-radius: 2px; } footer { color: var(--primary-color); } /* botao light e dark */ #toggle { margin-bottom: 80px; position: relative; display: block; width: 120px; height: 50px; border-radius: 120px; background: linear-gradient(to bottom, var(--primary-color), #222); transition: 0.5s; cursor: pointer; box-shadow: inset 0 8px 60px rgba(0, 0, 0, 0.1), inset 0 8px 8px rgba(0, 0, 0, 0.1), inset 0 4px 4px rgba(0, 0, 0, 0.1); } body.active { background: var(--primary-color); color: var(--bg-color); } body.active input { background: var(--bg-color); color: var(--primary-color); } body.active label { color: var(--bg-color); } body.active .title, body.active footer { color: var(--bg-color); } body.active button { background: var(--bg-color); color: var(--primary-color); } #toggle .indicator { position: absolute; top: 0; left: 0; width: 40px; height: 50px; border-radius: 50%; transform: scale(0.9); transition: 0.5s; background: linear-gradient(to bottom, var(--bg-color), #222); box-shadow: inset 0 8px 20px rgba(0, 0, 0, 0.1), inset 0 4px 4px rgba(255, 255, 255, 1), inset 0 -4px -4px rgba(255, 255, 255, 1); } #toggle.active .indicator { left: 80px; background: linear-gradient( to bottom, var(--primary-color), var(--primary-color) ); box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), inset 0 4px 4px rgba(255, 255, 255, 0.2), inset 0 -4px 4px rgba(255, 255, 255, 0.2); } body.active { background: var(--primary-color); }
0.360939
0.075483
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,dl,dt,dd,ol,nav ul,nav 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;} article, aside, details, figcaption, figure,footer, header, hgroup, menu, nav, section {display: block;} ol,ul{list-style:none;margin:0px;padding:0px;} blockquote,q{quotes:none;} blockquote:before,blockquote:after,q:before,q:after{content:'';content:none;} table{border-collapse:collapse;border-spacing:0;} /* start editing from here */ a{text-decoration:none;} .txt-rt{text-align:right;}/* text align right */ .txt-lt{text-align:left;}/* text align left */ .txt-center{text-align:center;}/* text align center */ .float-rt{float:right;}/* float right */ .float-lt{float:left;}/* float left */ .clear{clear:both;}/* clear float */ .pos-relative{position:relative;}/* Position Relative */ .pos-absolute{position:absolute;}/* Position Absolute */ .vertical-base{ vertical-align:baseline;}/* vertical align baseline */ .vertical-top{ vertical-align:top;}/* vertical align top */ nav.vertical ul li{ display:block;}/* vertical menu */ nav.horizontal ul li{ display: inline-block;}/* horizontal menu */ img{max-width:100%;} /*end reset*/ body { padding: 0; margin: 0; background: #FFF; font-family: 'Open Sans', sans-serif; background: url(../images/bg.jpg) no-repeat 0px 0px; background-size: cover; } body a { transition: 0.5s all; -webkit-transition: 0.5s all; -moz-transition: 0.5s all; -o-transition: 0.5s all; -ms-transition: 0.5s all; text-decoration: none; } body a:hover { text-decoration: none; } body a:focus, a:hover { text-decoration: none; } input[type="button"], input[type="submit"] { transition: 0.5s all; -webkit-transition: 0.5s all; -moz-transition: 0.5s all; -o-transition: 0.5s all; -ms-transition: 0.5s all; } h1, h2, h3, h4, h5, h6 { margin: 0; padding: 0; font-family: 'Raleway', sans-serif; } p { margin: 0; font-family: 'Open Sans', sans-serif; } ul { margin: 0; padding: 0; } label { margin: 0; } a:focus, a:hover { text-decoration: none; outline: none; } /*-- //Reset-Code --*/ /* plans*/ .w3l_pricing_grid_content{ padding:1em; } .w3l_pricing_grid_content ul li{ list-style-type:none; padding:1em; border-bottom:1px dotted #c1c1c1; font-size:14px; color:#000; } ul.w3_count { text-align: left; } .w3l_pricing_grid_content ul li i{ padding-right:1.5em; color: #FFC107; } .priceing-table-main { margin: 4em 0 0 0; } .price-list i.fa { font-size: 17px; color: #d6d6d6; } .price-list ul { padding: 0px; list-style: none; } .price-gd-top { text-align: center; } .price-gd-top h4 { font-size: 1.6em; color: #00ffba; padding: 10px 0; letter-spacing: 2px; text-transform: uppercase; } .price-gd-top h3 { padding: 0.2em 0em; font-size: 3em; color: #fff; } .price-gd-top h3 span { font-size: 30px; vertical-align: top; } .price-gd-top h5 { font-size: 1em; line-height: 26px; color: #fff; padding: 0em 0em 0.8em 0em; text-align: center; text-transform: capitalize; } .price-gd-bottom { text-align: center; padding: 0em; } .price-gd-top.pric-clr2 h4 { } .price-gd-top.pric-clr2 { } .price-selet.pric-sclr2 a { background: #fff; } .price-gd-top.pric-clr3 { } .price-gd-top.pric-clr3 h4 { } .price-gd-top.pric-clr4 { background:#673AB7; } .price-gd-top.pric-clr4 h4 { background: #5426a5; } .price-selet.pric-sclr3 a { background: #fff; } .price-list ul li { padding: 0.5em 0em; font-size: 0.9em; color: #2b2b2b; display: inline-block; } .price-selet { padding: 1em 0em; text-align: center; } .price-selet a { font-size: 1.1em; color: #fff; display: block; } .price-selet a { font-size: 0.9em; color: #f00; display: inline-block; padding: 0.7em 1em; letter-spacing: 1px; background: #fff; text-decoration: none; text-transform: uppercase; border-radius: 3px; -webkit-border-radius: 3px; -o-border-radius: 3px; } a.w3_agileits_sign_up2.popup-with-zoom-anim.ab.scroll:hover { background: #f93c3c; color: #fff; } .price-block { transition: 0.5s all; -webkit-transition: 0.5s all; -moz-transition: 0.5s all; -o-transition: 0.5s all; background: #000; padding: 20px; } .price-block:hover,.w3layouts-pricing:hover,.w3-agileits-vpn-grid:hover { transform: scale(1.06); -webkit-transform: scale(1.06); -moz-transform: scale(1.06); -o-transform: scale(1.06); -ms-transform: scale(1.06); z-index: 1; } .price-grid { width: 31%; float: left; padding: 10px; } h1.w3l-inner-h-title { text-align: center; font-size: 45px; color: #000; color: #fff; margin: 50px 0; } .plans-main { width: 60%; margin: 0 auto; } i.fa.fa-diamond { font-size: 65px; margin: 15px 0; color: #fff; } .price-grid p { color: #fff; padding: 10px 20px; line-height: 26px; font-size: 15px; } .price-block { background: #fd5c63; background: rgba(253, 92, 99, 0.69); } .price-block1 { background: #0079c1; background: rgba(0, 121, 193, 0.69); } .price-block2 { background: #49a942; background: rgba(73, 169, 66, 0.69); } /* pricing tables */ /* popup signup form styling */ .agile_signup_form h2 { text-align: center; font-size: 2em; margin-bottom: 1em; color: #212121; position: relative; padding-bottom: .5em; } .form-control label { font-size: 1em; color: #212121; width: 40%; display: inline-block; } input#firstname, input#lastname, input#email, input#password1, input#password2, input#tel { padding: 15px 10px; font-size: 14px; width: 54%; border: none; border: 1px solid #dadada; color: #212121; text-align: justify; outline: none; letter-spacing: 1px; font-weight: normal; background-color: transparent; } input[type="submit"], a { transition: .5s ease-in; -webkit-transition: .5s ease-in; -moz-transition: .5s ease-in; -o-transition: .5s ease-in; -ms-transition: .5s ease-in; border-radius: 3px; -webkit-border-radius: 3px; -o-border-radius: 3px; } .register { background-color: #F44336; width: 100%; padding: 15px 0px; border: none; margin-top: 20px; cursor: pointer; color: #fff; outline: none; font-size: 15px; font-weight: normal; text-transform: capitalize; letter-spacing: 2px; font-family: 'Raleway', sans-serif; } .w3_submit { margin: 0 auto; width: 35%; } .register:hover { background-color: #4CAF50; } .form-control { position: relative; margin-top: 1em; } .form-control { height: auto; border: none; box-shadow: none; } .form-control label span { position: absolute; left: 30%; } /* //popup signup form styling */ /* copyright */ .copyright-agile { text-align: center; padding: 1em; margin-top: 30px; } .copyright-agile p { color: #fff; font-size: 14px; letter-spacing: .1em; line-height: 26px; } .copyright-agile p a { color: #999 !important; text-decoration: none !important; } .copyright-agile p a:hover { color: #f00 !important; } /* //copyright */ /* //Responsive design */ @media (max-width:1440px) { .plans-main { width: 65%; } } @media (max-width:1280px) { .plans-main { width: 70%; } } @media (max-width:1080px) { .plans-main { width: 80%; } .price-grid { width: 32%; padding: 5px; } body { padding-bottom: 2em; } } @media (max-width:1024px) { .price-gd-top h3 { font-size: 2.2em; } .price-gd-top h4 { font-size: 1.6em; } } @media (max-width: 900px) { .plans-main { width: 85%; } } @media (max-width: 800px) { .plans-main { width: 96%; } } @media (max-width: 768px) { .plans-main { width: 98%; } .price-grid { width: 31.5%; } } @media (max-width: 736px) { h1.w3l-inner-h-title { font-size: 43px; margin: 35px 0; } i.fa.fa-diamond { font-size: 60px; margin: 10px 0; } .price-block { padding: 20px 15px; } } @media (max-width: 667px) { .agile_signup_form h2 { font-size: 1.8em; padding-bottom: 0em; } .price-gd-top h5 { font-size: .875em; } } @media (max-width: 600px) { i.fa.fa-diamond { font-size: 50px; margin: 8px 0; } .price-block { padding: 20px 5px; } .price-gd-top h5 { font-size: 14.5px; } .price-grid p { font-size: 14.5px; } .copyright-agile { padding: 0 1em; } } @media (max-width: 568px) { h1.w3l-inner-h-title { font-size: 36px; margin: 30px 0; } .plans-main { width: 99%; } .form-control label { width: 38%; } .agile_signup_form h2 { font-size: 1.7em; } } @media (max-width: 480px) { .price-grid { width: 60%; margin: 0 auto 1.5em; float: none; } .price-block { padding: 20px; } .agile_signup_form h2 { font-size: 1.6em; } .form-control label { width: 37%; font-size: 14px; } } @media (max-width: 414px) { h1.w3l-inner-h-title { font-size: 33px; margin: 30px 0; } .price-grid { width: 70%; } .register { padding: 12px 0px; } } @media (max-width: 384px) { h1.w3l-inner-h-title { font-size: 30px; } .price-grid { width: 75%; } input#firstname, input#lastname, input#email, input#password1, input#password2, input#tel { width: 95%; } .form-control label span { left: 50%; } .form-control label { width: 45%; } } @media (max-width: 320px) { h1.w3l-inner-h-title { font-size: 26px; } .price-grid { width: 85%; } .agile_signup_form h2 { font-size: 1.3em; } input#firstname, input#lastname, input#email, input#password1, input#password2, input#tel { width: 90%; padding: 12px; font-size: 13px; } .form-control label { width: 50%; font-size: 13px; } .register { padding: 10px 0px; font-size: 14px; } } @media (max-width:1440px) { }
public/layout/transfer/css/style.css
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,dl,dt,dd,ol,nav ul,nav 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;} article, aside, details, figcaption, figure,footer, header, hgroup, menu, nav, section {display: block;} ol,ul{list-style:none;margin:0px;padding:0px;} blockquote,q{quotes:none;} blockquote:before,blockquote:after,q:before,q:after{content:'';content:none;} table{border-collapse:collapse;border-spacing:0;} /* start editing from here */ a{text-decoration:none;} .txt-rt{text-align:right;}/* text align right */ .txt-lt{text-align:left;}/* text align left */ .txt-center{text-align:center;}/* text align center */ .float-rt{float:right;}/* float right */ .float-lt{float:left;}/* float left */ .clear{clear:both;}/* clear float */ .pos-relative{position:relative;}/* Position Relative */ .pos-absolute{position:absolute;}/* Position Absolute */ .vertical-base{ vertical-align:baseline;}/* vertical align baseline */ .vertical-top{ vertical-align:top;}/* vertical align top */ nav.vertical ul li{ display:block;}/* vertical menu */ nav.horizontal ul li{ display: inline-block;}/* horizontal menu */ img{max-width:100%;} /*end reset*/ body { padding: 0; margin: 0; background: #FFF; font-family: 'Open Sans', sans-serif; background: url(../images/bg.jpg) no-repeat 0px 0px; background-size: cover; } body a { transition: 0.5s all; -webkit-transition: 0.5s all; -moz-transition: 0.5s all; -o-transition: 0.5s all; -ms-transition: 0.5s all; text-decoration: none; } body a:hover { text-decoration: none; } body a:focus, a:hover { text-decoration: none; } input[type="button"], input[type="submit"] { transition: 0.5s all; -webkit-transition: 0.5s all; -moz-transition: 0.5s all; -o-transition: 0.5s all; -ms-transition: 0.5s all; } h1, h2, h3, h4, h5, h6 { margin: 0; padding: 0; font-family: 'Raleway', sans-serif; } p { margin: 0; font-family: 'Open Sans', sans-serif; } ul { margin: 0; padding: 0; } label { margin: 0; } a:focus, a:hover { text-decoration: none; outline: none; } /*-- //Reset-Code --*/ /* plans*/ .w3l_pricing_grid_content{ padding:1em; } .w3l_pricing_grid_content ul li{ list-style-type:none; padding:1em; border-bottom:1px dotted #c1c1c1; font-size:14px; color:#000; } ul.w3_count { text-align: left; } .w3l_pricing_grid_content ul li i{ padding-right:1.5em; color: #FFC107; } .priceing-table-main { margin: 4em 0 0 0; } .price-list i.fa { font-size: 17px; color: #d6d6d6; } .price-list ul { padding: 0px; list-style: none; } .price-gd-top { text-align: center; } .price-gd-top h4 { font-size: 1.6em; color: #00ffba; padding: 10px 0; letter-spacing: 2px; text-transform: uppercase; } .price-gd-top h3 { padding: 0.2em 0em; font-size: 3em; color: #fff; } .price-gd-top h3 span { font-size: 30px; vertical-align: top; } .price-gd-top h5 { font-size: 1em; line-height: 26px; color: #fff; padding: 0em 0em 0.8em 0em; text-align: center; text-transform: capitalize; } .price-gd-bottom { text-align: center; padding: 0em; } .price-gd-top.pric-clr2 h4 { } .price-gd-top.pric-clr2 { } .price-selet.pric-sclr2 a { background: #fff; } .price-gd-top.pric-clr3 { } .price-gd-top.pric-clr3 h4 { } .price-gd-top.pric-clr4 { background:#673AB7; } .price-gd-top.pric-clr4 h4 { background: #5426a5; } .price-selet.pric-sclr3 a { background: #fff; } .price-list ul li { padding: 0.5em 0em; font-size: 0.9em; color: #2b2b2b; display: inline-block; } .price-selet { padding: 1em 0em; text-align: center; } .price-selet a { font-size: 1.1em; color: #fff; display: block; } .price-selet a { font-size: 0.9em; color: #f00; display: inline-block; padding: 0.7em 1em; letter-spacing: 1px; background: #fff; text-decoration: none; text-transform: uppercase; border-radius: 3px; -webkit-border-radius: 3px; -o-border-radius: 3px; } a.w3_agileits_sign_up2.popup-with-zoom-anim.ab.scroll:hover { background: #f93c3c; color: #fff; } .price-block { transition: 0.5s all; -webkit-transition: 0.5s all; -moz-transition: 0.5s all; -o-transition: 0.5s all; background: #000; padding: 20px; } .price-block:hover,.w3layouts-pricing:hover,.w3-agileits-vpn-grid:hover { transform: scale(1.06); -webkit-transform: scale(1.06); -moz-transform: scale(1.06); -o-transform: scale(1.06); -ms-transform: scale(1.06); z-index: 1; } .price-grid { width: 31%; float: left; padding: 10px; } h1.w3l-inner-h-title { text-align: center; font-size: 45px; color: #000; color: #fff; margin: 50px 0; } .plans-main { width: 60%; margin: 0 auto; } i.fa.fa-diamond { font-size: 65px; margin: 15px 0; color: #fff; } .price-grid p { color: #fff; padding: 10px 20px; line-height: 26px; font-size: 15px; } .price-block { background: #fd5c63; background: rgba(253, 92, 99, 0.69); } .price-block1 { background: #0079c1; background: rgba(0, 121, 193, 0.69); } .price-block2 { background: #49a942; background: rgba(73, 169, 66, 0.69); } /* pricing tables */ /* popup signup form styling */ .agile_signup_form h2 { text-align: center; font-size: 2em; margin-bottom: 1em; color: #212121; position: relative; padding-bottom: .5em; } .form-control label { font-size: 1em; color: #212121; width: 40%; display: inline-block; } input#firstname, input#lastname, input#email, input#password1, input#password2, input#tel { padding: 15px 10px; font-size: 14px; width: 54%; border: none; border: 1px solid #dadada; color: #212121; text-align: justify; outline: none; letter-spacing: 1px; font-weight: normal; background-color: transparent; } input[type="submit"], a { transition: .5s ease-in; -webkit-transition: .5s ease-in; -moz-transition: .5s ease-in; -o-transition: .5s ease-in; -ms-transition: .5s ease-in; border-radius: 3px; -webkit-border-radius: 3px; -o-border-radius: 3px; } .register { background-color: #F44336; width: 100%; padding: 15px 0px; border: none; margin-top: 20px; cursor: pointer; color: #fff; outline: none; font-size: 15px; font-weight: normal; text-transform: capitalize; letter-spacing: 2px; font-family: 'Raleway', sans-serif; } .w3_submit { margin: 0 auto; width: 35%; } .register:hover { background-color: #4CAF50; } .form-control { position: relative; margin-top: 1em; } .form-control { height: auto; border: none; box-shadow: none; } .form-control label span { position: absolute; left: 30%; } /* //popup signup form styling */ /* copyright */ .copyright-agile { text-align: center; padding: 1em; margin-top: 30px; } .copyright-agile p { color: #fff; font-size: 14px; letter-spacing: .1em; line-height: 26px; } .copyright-agile p a { color: #999 !important; text-decoration: none !important; } .copyright-agile p a:hover { color: #f00 !important; } /* //copyright */ /* //Responsive design */ @media (max-width:1440px) { .plans-main { width: 65%; } } @media (max-width:1280px) { .plans-main { width: 70%; } } @media (max-width:1080px) { .plans-main { width: 80%; } .price-grid { width: 32%; padding: 5px; } body { padding-bottom: 2em; } } @media (max-width:1024px) { .price-gd-top h3 { font-size: 2.2em; } .price-gd-top h4 { font-size: 1.6em; } } @media (max-width: 900px) { .plans-main { width: 85%; } } @media (max-width: 800px) { .plans-main { width: 96%; } } @media (max-width: 768px) { .plans-main { width: 98%; } .price-grid { width: 31.5%; } } @media (max-width: 736px) { h1.w3l-inner-h-title { font-size: 43px; margin: 35px 0; } i.fa.fa-diamond { font-size: 60px; margin: 10px 0; } .price-block { padding: 20px 15px; } } @media (max-width: 667px) { .agile_signup_form h2 { font-size: 1.8em; padding-bottom: 0em; } .price-gd-top h5 { font-size: .875em; } } @media (max-width: 600px) { i.fa.fa-diamond { font-size: 50px; margin: 8px 0; } .price-block { padding: 20px 5px; } .price-gd-top h5 { font-size: 14.5px; } .price-grid p { font-size: 14.5px; } .copyright-agile { padding: 0 1em; } } @media (max-width: 568px) { h1.w3l-inner-h-title { font-size: 36px; margin: 30px 0; } .plans-main { width: 99%; } .form-control label { width: 38%; } .agile_signup_form h2 { font-size: 1.7em; } } @media (max-width: 480px) { .price-grid { width: 60%; margin: 0 auto 1.5em; float: none; } .price-block { padding: 20px; } .agile_signup_form h2 { font-size: 1.6em; } .form-control label { width: 37%; font-size: 14px; } } @media (max-width: 414px) { h1.w3l-inner-h-title { font-size: 33px; margin: 30px 0; } .price-grid { width: 70%; } .register { padding: 12px 0px; } } @media (max-width: 384px) { h1.w3l-inner-h-title { font-size: 30px; } .price-grid { width: 75%; } input#firstname, input#lastname, input#email, input#password1, input#password2, input#tel { width: 95%; } .form-control label span { left: 50%; } .form-control label { width: 45%; } } @media (max-width: 320px) { h1.w3l-inner-h-title { font-size: 26px; } .price-grid { width: 85%; } .agile_signup_form h2 { font-size: 1.3em; } input#firstname, input#lastname, input#email, input#password1, input#password2, input#tel { width: 90%; padding: 12px; font-size: 13px; } .form-control label { width: 50%; font-size: 13px; } .register { padding: 10px 0px; font-size: 14px; } } @media (max-width:1440px) { }
0.272702
0.077868
body { background-color: #202020; } #pageHeader { color: #FFF; background-color: #202020; background: -moz-linear-gradient(top, #101010 0%, #202020 100%); /* FF3.6+ */ background: -webkit-linear-gradient(top, #101010 0%,#202020 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #101010 0%,#202020 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #101010 0%,#202020 100%); /* IE10+ */ background: linear-gradient(top, #101010 0%,#202020 100%); /* W3C */ border-bottom: 1px solid #404040; } #pageHeader h1 { color: #808080 } #visualization { border: 1px solid #404040; } .widget h2 { color: #606060; background-color: #202020; background: -moz-linear-gradient(top, #101010 0%, #202020 100%); /* FF3.6+ */ background: -webkit-linear-gradient(top, #101010 0%,#202020 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #101010 0%,#202020 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #101010 0%,#202020 100%); /* IE10+ */ background: linear-gradient(top, #101010 0%,#202020 100%); /* W3C */ } .widget div.status { } .widget div.status.loading { background-color: #202020; background: url(../../img/loader.gif) no-repeat center 5px, -moz-linear-gradient(top, #101010 0%, #202020 100%); /* FF3.6+ */ background: url(../../img/loader.gif) no-repeat center 5px, -webkit-linear-gradient(top, #101010 0%, #202020 100%); /* Chrome10+,Safari5.1+ */ background: url(../../img/loader.gif) no-repeat center 5px, -o-linear-gradient(top, #101010 0%, #202020 100%); /* Opera 11.10+ */ background: url(../../img/loader.gif) no-repeat center 5px, -ms-linear-gradient(top, #101010 0%, #202020 100%); /* IE10+ */ background: url(../../img/loader.gif) no-repeat center 5px, linear-linear-gradient(top, #101010 0%, #202020 100%); /* W3C */ } .widget .item, .widget > div { color: #808080; background-color: #202020; background: -moz-linear-gradient(top, #101010 0%, #202020 100%); /* FF3.6+ */ background: -webkit-linear-gradient(top, #101010 0%,#202020 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #101010 0%,#202020 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #101010 0%,#202020 100%); /* IE10+ */ background: linear-gradient(top, #101010 0%,#202020 100%); /* W3C */ } .widget .changed { -webkit-animation: item-glow 1s ease-out 20 alternate; -moz-animation: item-glow 1s ease-out 20 alternate; animation: item-glow 1s ease-out 20 alternate; } .widget .warning { color: #000; background-color: #f57900; /* Old browsers */ background: -moz-linear-gradient(top, #633100 0%, #f57900 100%); /* FF3.6+ */ background: -webkit-linear-gradient(top, #633100 0%, #f57900 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #633100 0%, #f57900 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #633100 0%, #f57900 100%); /* IE10+ */ background: linear-gradient(top, #633100 0%, #f57900 100%); /* W3C */ } .widget .error { color: #aaa; background-color: #FF0000; /* Old browsers */ background: -moz-linear-gradient(top, #570000 0%, #a40000 100%); /* FF3.6+ */ background: -webkit-linear-gradient(top, #570000 0%, #a40000 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #570000 0%, #a40000 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #570000 0%, #a40000 100%); /* IE10+ */ background: linear-gradient(top, #570000 0%, #a40000 100%); /* W3C */ } .spriteIcon.hasTitle { background: #202020; } .numberIcon .number { background: #202020; color: #808080; } #clock .digit { border: none; color: #606060; background: transparent; padding: 0; } #clock .digit:last-of-type:before { content: ':'; } #clock .details { color: #808080; } /** Animations **/ @-webkit-keyframes item-glow { 0% { box-shadow: inset 0 0 20px rgba(252, 175, 62, 0); } 100% { box-shadow: inset 0 0 20px rgba(252, 175, 62, 0.5); } } @-moz-keyframes item-glow { 0% { box-shadow: inset 0 0 20px rgba(252, 175, 62, 0); } 100% { box-shadow: inset 0 0 20px rgba(252, 175, 62, 0.5); } } @keyframes item-glow { 0% { box-shadow: inset 0 0 20px rgba(252, 175, 62, 0); } 100% { box-shadow: inset 0 0 20px rgba(252, 175, 62, 0.5); } }
scribbles/css/effects/dark.css
body { background-color: #202020; } #pageHeader { color: #FFF; background-color: #202020; background: -moz-linear-gradient(top, #101010 0%, #202020 100%); /* FF3.6+ */ background: -webkit-linear-gradient(top, #101010 0%,#202020 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #101010 0%,#202020 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #101010 0%,#202020 100%); /* IE10+ */ background: linear-gradient(top, #101010 0%,#202020 100%); /* W3C */ border-bottom: 1px solid #404040; } #pageHeader h1 { color: #808080 } #visualization { border: 1px solid #404040; } .widget h2 { color: #606060; background-color: #202020; background: -moz-linear-gradient(top, #101010 0%, #202020 100%); /* FF3.6+ */ background: -webkit-linear-gradient(top, #101010 0%,#202020 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #101010 0%,#202020 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #101010 0%,#202020 100%); /* IE10+ */ background: linear-gradient(top, #101010 0%,#202020 100%); /* W3C */ } .widget div.status { } .widget div.status.loading { background-color: #202020; background: url(../../img/loader.gif) no-repeat center 5px, -moz-linear-gradient(top, #101010 0%, #202020 100%); /* FF3.6+ */ background: url(../../img/loader.gif) no-repeat center 5px, -webkit-linear-gradient(top, #101010 0%, #202020 100%); /* Chrome10+,Safari5.1+ */ background: url(../../img/loader.gif) no-repeat center 5px, -o-linear-gradient(top, #101010 0%, #202020 100%); /* Opera 11.10+ */ background: url(../../img/loader.gif) no-repeat center 5px, -ms-linear-gradient(top, #101010 0%, #202020 100%); /* IE10+ */ background: url(../../img/loader.gif) no-repeat center 5px, linear-linear-gradient(top, #101010 0%, #202020 100%); /* W3C */ } .widget .item, .widget > div { color: #808080; background-color: #202020; background: -moz-linear-gradient(top, #101010 0%, #202020 100%); /* FF3.6+ */ background: -webkit-linear-gradient(top, #101010 0%,#202020 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #101010 0%,#202020 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #101010 0%,#202020 100%); /* IE10+ */ background: linear-gradient(top, #101010 0%,#202020 100%); /* W3C */ } .widget .changed { -webkit-animation: item-glow 1s ease-out 20 alternate; -moz-animation: item-glow 1s ease-out 20 alternate; animation: item-glow 1s ease-out 20 alternate; } .widget .warning { color: #000; background-color: #f57900; /* Old browsers */ background: -moz-linear-gradient(top, #633100 0%, #f57900 100%); /* FF3.6+ */ background: -webkit-linear-gradient(top, #633100 0%, #f57900 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #633100 0%, #f57900 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #633100 0%, #f57900 100%); /* IE10+ */ background: linear-gradient(top, #633100 0%, #f57900 100%); /* W3C */ } .widget .error { color: #aaa; background-color: #FF0000; /* Old browsers */ background: -moz-linear-gradient(top, #570000 0%, #a40000 100%); /* FF3.6+ */ background: -webkit-linear-gradient(top, #570000 0%, #a40000 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #570000 0%, #a40000 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #570000 0%, #a40000 100%); /* IE10+ */ background: linear-gradient(top, #570000 0%, #a40000 100%); /* W3C */ } .spriteIcon.hasTitle { background: #202020; } .numberIcon .number { background: #202020; color: #808080; } #clock .digit { border: none; color: #606060; background: transparent; padding: 0; } #clock .digit:last-of-type:before { content: ':'; } #clock .details { color: #808080; } /** Animations **/ @-webkit-keyframes item-glow { 0% { box-shadow: inset 0 0 20px rgba(252, 175, 62, 0); } 100% { box-shadow: inset 0 0 20px rgba(252, 175, 62, 0.5); } } @-moz-keyframes item-glow { 0% { box-shadow: inset 0 0 20px rgba(252, 175, 62, 0); } 100% { box-shadow: inset 0 0 20px rgba(252, 175, 62, 0.5); } } @keyframes item-glow { 0% { box-shadow: inset 0 0 20px rgba(252, 175, 62, 0); } 100% { box-shadow: inset 0 0 20px rgba(252, 175, 62, 0.5); } }
0.380529
0.085404
* { box-sizing: border-box; } html, body { font-family: Lobster; /* Some normalization */ padding: 0; margin: 0; } .primary { color: #607D8B; } .secondary { color: white; } h1, h2, h3, h4, h5, h6 { margin: 0 15px; } label { font-size: 22px; } #map { width: 100%; height: 100vh; } header { height: 70px; background-color: #607D8B; padding: 5px; } header > h1 { display: inline-block; height: 100%; line-height: 60px } input[type=text] { font-size: 22px; } #input-data { position: fixed; right: 30px; top: 50px; background: white; box-shadow: 0 2px 4px rgba(0, 0, 0, .3); border-radius: 3px; padding: 10px 20px; z-index: 1; } @media (max-width: 550px) { #input-data { width:100%; top:70px; right: 0; left: 0; } } button { box-shadow: 0 2px 4px rgba(0, 0, 0, .3); padding: 10px; background: #607D8B; border-radius: 3px; border: none; font-size: 18px; margin: 10px auto; width: 100%; } /* Animation */ @-webkit-keyframes uil-ring-anim { 0% { -ms-transform: rotate(0deg); -moz-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); transform: rotate(0deg); } 100% { -ms-transform: rotate(360deg); -moz-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); transform: rotate(360deg); } } @-webkit-keyframes uil-ring-anim { 0% { -ms-transform: rotate(0deg); -moz-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); transform: rotate(0deg); } 100% { -ms-transform: rotate(360deg); -moz-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); transform: rotate(360deg); } } @-moz-keyframes uil-ring-anim { 0% { -ms-transform: rotate(0deg); -moz-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); transform: rotate(0deg); } 100% { -ms-transform: rotate(360deg); -moz-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); transform: rotate(360deg); } } @-ms-keyframes uil-ring-anim { 0% { -ms-transform: rotate(0deg); -moz-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); transform: rotate(0deg); } 100% { -ms-transform: rotate(360deg); -moz-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); transform: rotate(360deg); } } @-moz-keyframes uil-ring-anim { 0% { -ms-transform: rotate(0deg); -moz-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); transform: rotate(0deg); } 100% { -ms-transform: rotate(360deg); -moz-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); transform: rotate(360deg); } } @-webkit-keyframes uil-ring-anim { 0% { -ms-transform: rotate(0deg); -moz-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); transform: rotate(0deg); } 100% { -ms-transform: rotate(360deg); -moz-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); transform: rotate(360deg); } } @-o-keyframes uil-ring-anim { 0% { -ms-transform: rotate(0deg); -moz-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); transform: rotate(0deg); } 100% { -ms-transform: rotate(360deg); -moz-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); transform: rotate(360deg); } } @keyframes uil-ring-anim { 0% { -ms-transform: rotate(0deg); -moz-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); transform: rotate(0deg); } 100% { -ms-transform: rotate(360deg); -moz-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); transform: rotate(360deg); } } .uil-ring-css { background: none; position: relative; width: 200px; height: 200px; } .uil-ring-css > div { position: absolute; display: block; width: 160px; height: 160px; top: 20px; left: 20px; border-radius: 80px; box-shadow: 0 6px 0 0 #607d8b; -ms-animation: uil-ring-anim 1s linear infinite; -moz-animation: uil-ring-anim 1s linear infinite; -webkit-animation: uil-ring-anim 1s linear infinite; -o-animation: uil-ring-anim 1s linear infinite; animation: uil-ring-anim 1s linear infinite; }
lib/client/css/master.css
* { box-sizing: border-box; } html, body { font-family: Lobster; /* Some normalization */ padding: 0; margin: 0; } .primary { color: #607D8B; } .secondary { color: white; } h1, h2, h3, h4, h5, h6 { margin: 0 15px; } label { font-size: 22px; } #map { width: 100%; height: 100vh; } header { height: 70px; background-color: #607D8B; padding: 5px; } header > h1 { display: inline-block; height: 100%; line-height: 60px } input[type=text] { font-size: 22px; } #input-data { position: fixed; right: 30px; top: 50px; background: white; box-shadow: 0 2px 4px rgba(0, 0, 0, .3); border-radius: 3px; padding: 10px 20px; z-index: 1; } @media (max-width: 550px) { #input-data { width:100%; top:70px; right: 0; left: 0; } } button { box-shadow: 0 2px 4px rgba(0, 0, 0, .3); padding: 10px; background: #607D8B; border-radius: 3px; border: none; font-size: 18px; margin: 10px auto; width: 100%; } /* Animation */ @-webkit-keyframes uil-ring-anim { 0% { -ms-transform: rotate(0deg); -moz-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); transform: rotate(0deg); } 100% { -ms-transform: rotate(360deg); -moz-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); transform: rotate(360deg); } } @-webkit-keyframes uil-ring-anim { 0% { -ms-transform: rotate(0deg); -moz-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); transform: rotate(0deg); } 100% { -ms-transform: rotate(360deg); -moz-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); transform: rotate(360deg); } } @-moz-keyframes uil-ring-anim { 0% { -ms-transform: rotate(0deg); -moz-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); transform: rotate(0deg); } 100% { -ms-transform: rotate(360deg); -moz-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); transform: rotate(360deg); } } @-ms-keyframes uil-ring-anim { 0% { -ms-transform: rotate(0deg); -moz-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); transform: rotate(0deg); } 100% { -ms-transform: rotate(360deg); -moz-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); transform: rotate(360deg); } } @-moz-keyframes uil-ring-anim { 0% { -ms-transform: rotate(0deg); -moz-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); transform: rotate(0deg); } 100% { -ms-transform: rotate(360deg); -moz-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); transform: rotate(360deg); } } @-webkit-keyframes uil-ring-anim { 0% { -ms-transform: rotate(0deg); -moz-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); transform: rotate(0deg); } 100% { -ms-transform: rotate(360deg); -moz-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); transform: rotate(360deg); } } @-o-keyframes uil-ring-anim { 0% { -ms-transform: rotate(0deg); -moz-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); transform: rotate(0deg); } 100% { -ms-transform: rotate(360deg); -moz-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); transform: rotate(360deg); } } @keyframes uil-ring-anim { 0% { -ms-transform: rotate(0deg); -moz-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); transform: rotate(0deg); } 100% { -ms-transform: rotate(360deg); -moz-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); transform: rotate(360deg); } } .uil-ring-css { background: none; position: relative; width: 200px; height: 200px; } .uil-ring-css > div { position: absolute; display: block; width: 160px; height: 160px; top: 20px; left: 20px; border-radius: 80px; box-shadow: 0 6px 0 0 #607d8b; -ms-animation: uil-ring-anim 1s linear infinite; -moz-animation: uil-ring-anim 1s linear infinite; -webkit-animation: uil-ring-anim 1s linear infinite; -o-animation: uil-ring-anim 1s linear infinite; animation: uil-ring-anim 1s linear infinite; }
0.54577
0.153391
.text1 { FONT-SIZE: 13px; COLOR: #0f3199; FONT-FAMILY: Times, Courier New, Times New Roman, Arial; TEXT-DECORATION: none } .text2 { FONT-SIZE: 14px; FONT-WEIGHT: bold; COLOR: #0f3199; TEXT-DECORATION: none } .text3 { FONT-SIZE: 25px; FONT-WEIGHT: bold; COLOR: #0f3199; TEXT-DECORATION: none } A:hover { TEXT-DECORATION: underline } .scale { FONT-SIZE: 10px; COLOR: #0f3199; FONT-FAMILY: Arial, sans-serif; TEXT-DECORATION: none } .nav { FONT-SIZE: 12px; COLOR: #333333 } .menutext { FONT-SIZE: 13px; COLOR: #22519F; TEXT-DECORATION: none } .menutext2 { FONT-SIZE: 13px; COLOR: #ffffff; TEXT-DECORATION: none } .menutext3 { FONT-SIZE: 13px; COLOR: #000000; TEXT-DECORATION: none } .submenu { FONT-WEIGHT: normal; FONT-SIZE: 13px; COLOR: #0f3199; TEXT-DECORATION: none } .asubmenu { FONT-WEIGHT: normal; FONT-SIZE: 13px; COLOR: #000000; TEXT-DECORATION: none } .aamenu { FONT-SIZE: 10pt; COLOR: #000000; TEXT-INDENT: 12px; LINE-HEIGHT: 22px; TEXT-DECORATION: underline } .newsdate { FONT-WEIGHT: normal; FONT-SIZE: 15px; COLOR: #808080; TEXT-DECORATION: none } .newstext { FONT-WEIGHT: normal; FONT-SIZE: 16px; COLOR: #000000; TEXT-DECORATION: none } .newstext_i { FONT-WEIGHT: bold; font-style: italic; FONT-SIZE: 16px; COLOR: #000000; TEXT-DECORATION: none } .newstext2 { FONT-WEIGHT: normal; FONT-SIZE: 16px; COLOR: #392B80; TEXT-DECORATION: none } .newstext3 { FONT-SIZE: 16px; font-weight: bold; COLOR: #0092DF; TEXT-DECORATION: none } .newstext4 { FONT-WEIGHT: bold; FONT-SIZE: 14px; COLOR: #392B80; TEXT-DECORATION: none } .snewsdate { FONT-WEIGHT: normal; FONT-SIZE: 13px; COLOR: #808080; TEXT-DECORATION: none } .snewstext { FONT-WEIGHT: normal; FONT-SIZE: 13px; COLOR: #000000; TEXT-DECORATION: none } .snewstext2 { FONT-WEIGHT: normal; FONT-SIZE: 13px; COLOR: #399933; TEXT-DECORATION: none } .snewstext3 { FONT-WEIGHT: normal; FONT-SIZE: 13px; COLOR: #FF3333; TEXT-DECORATION: none } .snewstext4 { FONT-WEIGHT: normal; FONT-SIZE: 13px; COLOR: #FFbf33; TEXT-DECORATION: none } .t { FONT-SIZE: 11px; FONT-FAMILY: Arial, sans-serif } .red { COLOR: red } .green { COLOR: green } .menulink { FONT-WEIGHT: normal; FONT-SIZE: 17px; COLOR: #ffffff; TEXT-DECORATION: none } .menulink_n { FONT-SIZE: 14px; FONT-WEIGHT: bold; COLOR: #ffffff; TEXT-DECORATION: none } .menulink22 { FONT-WEIGHT: normal; FONT-SIZE: 15px; COLOR: #ffffff; TEXT-DECORATION: none } .menulink22a { FONT-WEIGHT: normal; FONT-SIZE: 15px; COLOR: #red; TEXT-DECORATION: none } .menulink3 { FONT-WEIGHT: normal; FONT-SIZE: 28px; COLOR: black; TEXT-DECORATION: none } .menulink4 { FONT-WEIGHT: normal; FONT-SIZE: 28px; COLOR: white; TEXT-DECORATION: none } .menulink2 { FONT-WEIGHT: normal; FONT-SIZE: 16px; TEXT-DECORATION: none } .copyright { FONT-SIZE: 13px; COLOR: #000000; TEXT-DECORATION: none } .hottours { FONT-SIZE: 13px; COLOR: #000000; TEXT-DECORATION: none } .main_title { FONT-SIZE: 15px; COLOR: #ffffff; font-weight: bold; TEXT-DECORATION: none } .middle_title { FONT-SIZE: 15px; font-weight: bold; COLOR: #0092DF; TEXT-DECORATION: none } .middle_title2 { FONT-SIZE: 15px; font-weight: bold; COLOR: #FF3333; TEXT-DECORATION: none } .country_title { FONT-SIZE: 18px; font-weight: bold; COLOR: #0092DF; TEXT-DECORATION: none }
src/main/webapp/css/styles.css
.text1 { FONT-SIZE: 13px; COLOR: #0f3199; FONT-FAMILY: Times, Courier New, Times New Roman, Arial; TEXT-DECORATION: none } .text2 { FONT-SIZE: 14px; FONT-WEIGHT: bold; COLOR: #0f3199; TEXT-DECORATION: none } .text3 { FONT-SIZE: 25px; FONT-WEIGHT: bold; COLOR: #0f3199; TEXT-DECORATION: none } A:hover { TEXT-DECORATION: underline } .scale { FONT-SIZE: 10px; COLOR: #0f3199; FONT-FAMILY: Arial, sans-serif; TEXT-DECORATION: none } .nav { FONT-SIZE: 12px; COLOR: #333333 } .menutext { FONT-SIZE: 13px; COLOR: #22519F; TEXT-DECORATION: none } .menutext2 { FONT-SIZE: 13px; COLOR: #ffffff; TEXT-DECORATION: none } .menutext3 { FONT-SIZE: 13px; COLOR: #000000; TEXT-DECORATION: none } .submenu { FONT-WEIGHT: normal; FONT-SIZE: 13px; COLOR: #0f3199; TEXT-DECORATION: none } .asubmenu { FONT-WEIGHT: normal; FONT-SIZE: 13px; COLOR: #000000; TEXT-DECORATION: none } .aamenu { FONT-SIZE: 10pt; COLOR: #000000; TEXT-INDENT: 12px; LINE-HEIGHT: 22px; TEXT-DECORATION: underline } .newsdate { FONT-WEIGHT: normal; FONT-SIZE: 15px; COLOR: #808080; TEXT-DECORATION: none } .newstext { FONT-WEIGHT: normal; FONT-SIZE: 16px; COLOR: #000000; TEXT-DECORATION: none } .newstext_i { FONT-WEIGHT: bold; font-style: italic; FONT-SIZE: 16px; COLOR: #000000; TEXT-DECORATION: none } .newstext2 { FONT-WEIGHT: normal; FONT-SIZE: 16px; COLOR: #392B80; TEXT-DECORATION: none } .newstext3 { FONT-SIZE: 16px; font-weight: bold; COLOR: #0092DF; TEXT-DECORATION: none } .newstext4 { FONT-WEIGHT: bold; FONT-SIZE: 14px; COLOR: #392B80; TEXT-DECORATION: none } .snewsdate { FONT-WEIGHT: normal; FONT-SIZE: 13px; COLOR: #808080; TEXT-DECORATION: none } .snewstext { FONT-WEIGHT: normal; FONT-SIZE: 13px; COLOR: #000000; TEXT-DECORATION: none } .snewstext2 { FONT-WEIGHT: normal; FONT-SIZE: 13px; COLOR: #399933; TEXT-DECORATION: none } .snewstext3 { FONT-WEIGHT: normal; FONT-SIZE: 13px; COLOR: #FF3333; TEXT-DECORATION: none } .snewstext4 { FONT-WEIGHT: normal; FONT-SIZE: 13px; COLOR: #FFbf33; TEXT-DECORATION: none } .t { FONT-SIZE: 11px; FONT-FAMILY: Arial, sans-serif } .red { COLOR: red } .green { COLOR: green } .menulink { FONT-WEIGHT: normal; FONT-SIZE: 17px; COLOR: #ffffff; TEXT-DECORATION: none } .menulink_n { FONT-SIZE: 14px; FONT-WEIGHT: bold; COLOR: #ffffff; TEXT-DECORATION: none } .menulink22 { FONT-WEIGHT: normal; FONT-SIZE: 15px; COLOR: #ffffff; TEXT-DECORATION: none } .menulink22a { FONT-WEIGHT: normal; FONT-SIZE: 15px; COLOR: #red; TEXT-DECORATION: none } .menulink3 { FONT-WEIGHT: normal; FONT-SIZE: 28px; COLOR: black; TEXT-DECORATION: none } .menulink4 { FONT-WEIGHT: normal; FONT-SIZE: 28px; COLOR: white; TEXT-DECORATION: none } .menulink2 { FONT-WEIGHT: normal; FONT-SIZE: 16px; TEXT-DECORATION: none } .copyright { FONT-SIZE: 13px; COLOR: #000000; TEXT-DECORATION: none } .hottours { FONT-SIZE: 13px; COLOR: #000000; TEXT-DECORATION: none } .main_title { FONT-SIZE: 15px; COLOR: #ffffff; font-weight: bold; TEXT-DECORATION: none } .middle_title { FONT-SIZE: 15px; font-weight: bold; COLOR: #0092DF; TEXT-DECORATION: none } .middle_title2 { FONT-SIZE: 15px; font-weight: bold; COLOR: #FF3333; TEXT-DECORATION: none } .country_title { FONT-SIZE: 18px; font-weight: bold; COLOR: #0092DF; TEXT-DECORATION: none }
0.258981
0.054904
@media(max-width: 998px) { .theme-preview { max-width: 200px; } } @media(max-width: 798px) { .theme-preview { max-width: 170px; } } @media(max-width: 498px) { .theme-preview { max-width: 150px; } } @media(max-width: 376px) { .page-header { font-size: 90%; } .pull-right { float: none !important; } } nav.navbar { background: #ffffff; font-weight: bolder; } .navbar-brand, .nav-link { color: #000000 !important; } main { background: #ffffff; margin-top: -30px; } .main-body { padding: 0px; } .btn { background: transparent; color: #616161; border: 1px solid #616161; padding: 10px 30px; border-radius: 30px; } .btn:hover { background: #616161; color: #ffffff; } .btn-primary { color: #990037; border-color: #990037; } .btn-primary:hover { background: #990037; color: #ffffff; } .btn-danger { color: #7a0000; border-color: #7a0000; } .btn-danger:hover { background: #7a0000; color: #ffffff; } .page-header { font-weight: bolder; padding: 10px 0px; border-bottom: 2px solid #ccc; margin-bottom: 25px; } .page-header span { font-size: 120%; } .card .card-header { background: transparent; padding: 10px; } .card.record .card-header { background: transparent; padding: 0px; } .card.record .card-header ul.categories { list-style: none; padding: 0; margin: 0; } .card.record .card-header ul.categories .cat-link { display: inline-block; padding: 10px 20px; margin-right: -10px; cursor: pointer; border-right: 1px solid #eee; } .card.record .card-header ul.categories .cat-link:first-child { background: #eee; color: #000000; border-top-left-radius: 5px; border-width: 4px; cursor: default; } .card.record .card-header ul.categories .cat-link:last-child { color: #990037; padding-right: 10px; padding-bottom: 2px; padding-left: 8px; border: 0; background: #eee; border-top-right-radius: 5px; } .pull-right { float: right; clear: right; } .pull-left { float: left; clear: left; } .titleclick { cursor: pointer; } .page-item, .page-link { color: #990037; } .page-link:hover, .page-link:active { background: #990037; color: #ffffff; } .badge a { color: #ffffff; text-decoration: none; } .theme-preview { min-height: 150px; width: 250px; background: #eee; margin-top: 10px; } .cat-preview { padding: 10px; border-radius: 50%; background: #eee; width: 5px; } #theme .col-3, #profile .col-3 { font-weight: bold; } table.table thead tr th { border-top: 0 !important; } table.table { font-size: 90%; } table.table a { color: #000000; text-decoration: none; } #category table.table thead tr th { padding-top: 0; } ul.options { list-style: none; padding: 0; } ul.options li { display: inline-block; margin-right: 10px; margin-bottom: 10px; } a.carve { border: 1px solid #616161; border-radius: 15px; padding: 5px 20px; font-size: 80%; text-decoration: none; color: #616161; cursor: default; } a.carve:hover { background: #616161; color: #ffffff !important; } a.carve.primary { color: #990037; border-color: #990037; } a.carve.primary:hover { color: #ffffff; border-color: #990037; background: #990037; } a.carve.blue { color: #0266b4; border-color: #0266b4; } a.carve.blue:hover { color: #ffffff; border-color: #0266b4; background: #0266b4; } a.carve.danger { color: #7a0000; border-color: #7a0000; } a.carve.danger:hover { color: #ffffff; border-color: #7a0000; background: #7a0000; } p.category { color: #ffffff; padding: 5px 15px; margin: 0px -15px; margin-top: -15px; } .diary-content { text-align: justify; padding: 10px; border-radius: 0; background: #eee; } .danger { color: #7a0000; }
public/css/dashboard.css
@media(max-width: 998px) { .theme-preview { max-width: 200px; } } @media(max-width: 798px) { .theme-preview { max-width: 170px; } } @media(max-width: 498px) { .theme-preview { max-width: 150px; } } @media(max-width: 376px) { .page-header { font-size: 90%; } .pull-right { float: none !important; } } nav.navbar { background: #ffffff; font-weight: bolder; } .navbar-brand, .nav-link { color: #000000 !important; } main { background: #ffffff; margin-top: -30px; } .main-body { padding: 0px; } .btn { background: transparent; color: #616161; border: 1px solid #616161; padding: 10px 30px; border-radius: 30px; } .btn:hover { background: #616161; color: #ffffff; } .btn-primary { color: #990037; border-color: #990037; } .btn-primary:hover { background: #990037; color: #ffffff; } .btn-danger { color: #7a0000; border-color: #7a0000; } .btn-danger:hover { background: #7a0000; color: #ffffff; } .page-header { font-weight: bolder; padding: 10px 0px; border-bottom: 2px solid #ccc; margin-bottom: 25px; } .page-header span { font-size: 120%; } .card .card-header { background: transparent; padding: 10px; } .card.record .card-header { background: transparent; padding: 0px; } .card.record .card-header ul.categories { list-style: none; padding: 0; margin: 0; } .card.record .card-header ul.categories .cat-link { display: inline-block; padding: 10px 20px; margin-right: -10px; cursor: pointer; border-right: 1px solid #eee; } .card.record .card-header ul.categories .cat-link:first-child { background: #eee; color: #000000; border-top-left-radius: 5px; border-width: 4px; cursor: default; } .card.record .card-header ul.categories .cat-link:last-child { color: #990037; padding-right: 10px; padding-bottom: 2px; padding-left: 8px; border: 0; background: #eee; border-top-right-radius: 5px; } .pull-right { float: right; clear: right; } .pull-left { float: left; clear: left; } .titleclick { cursor: pointer; } .page-item, .page-link { color: #990037; } .page-link:hover, .page-link:active { background: #990037; color: #ffffff; } .badge a { color: #ffffff; text-decoration: none; } .theme-preview { min-height: 150px; width: 250px; background: #eee; margin-top: 10px; } .cat-preview { padding: 10px; border-radius: 50%; background: #eee; width: 5px; } #theme .col-3, #profile .col-3 { font-weight: bold; } table.table thead tr th { border-top: 0 !important; } table.table { font-size: 90%; } table.table a { color: #000000; text-decoration: none; } #category table.table thead tr th { padding-top: 0; } ul.options { list-style: none; padding: 0; } ul.options li { display: inline-block; margin-right: 10px; margin-bottom: 10px; } a.carve { border: 1px solid #616161; border-radius: 15px; padding: 5px 20px; font-size: 80%; text-decoration: none; color: #616161; cursor: default; } a.carve:hover { background: #616161; color: #ffffff !important; } a.carve.primary { color: #990037; border-color: #990037; } a.carve.primary:hover { color: #ffffff; border-color: #990037; background: #990037; } a.carve.blue { color: #0266b4; border-color: #0266b4; } a.carve.blue:hover { color: #ffffff; border-color: #0266b4; background: #0266b4; } a.carve.danger { color: #7a0000; border-color: #7a0000; } a.carve.danger:hover { color: #ffffff; border-color: #7a0000; background: #7a0000; } p.category { color: #ffffff; padding: 5px 15px; margin: 0px -15px; margin-top: -15px; } .diary-content { text-align: justify; padding: 10px; border-radius: 0; background: #eee; } .danger { color: #7a0000; }
0.252108
0.070784
.header1{ position: absolute; left: 250px; bottom: 450px; font-family: arial; font-size: 0.9cm; -webkit-animation: colorchange 20s infinite alternate; } @-webkit-keyframes colorchange { 0% { color: blue; } 10% { color: #8e44ad; } 20% { color: #1abc9c; } 30% { color: #d35400; } 40% { color: blue; } 50% { color: #34495e; } 60% { color: blue; } 70% { color: #2980b9; } 80% { color: #f1c40f; } 90% { color: #2980b9; } 100% { color: pink; } } .header3{ position: absolute; left: 270px; bottom: 400px; font-family: arial; font-size: 1.0cm; } .information { width: 800px; height: 450px; } .header2 { margin-top: 75px; margin-left: 250px; color: #5DADE2; font-weight: 400px; font-size: 0.8cm; font-family: sans-serif; } .author { color: black; font-family: sans-serif; font-size: 0.6cm; line-height: 32px; margin-left: 250px; } .line { margin-top: -220px; border-left: 4px solid #5DADE2; height: 250px; margin-left: 850px; } .submit { background-color: #F2F4F4; height: 570px; margin-left: 200px; margin-right: 200px; } .p1 { align-self: auto; } .submit1 { float: left; margin-left: 750px; margin-top: -550px; line-height: 1cm; } .p1 { font-size: 0.9cm; font-weight: bold; } #side1 { border-radius: 25px; border: 2px solid #5DADE2; padding: 20px; width: 400px; height: 10px; } #side2 { border-radius: 25px; border: 2px solid #5DADE2; padding: 20px; width: 400px; height: 10px; } #side3 { border-radius: 25px; border: 2px solid #5DADE2; padding: 20px; width: 400px; height: 10px; } .button1 { font-size: 20px; border-radius: 12px; margin: 10px 5px; height: 50px; width: 150px; color: white; background-color: #5DADE2; } .button2 { font-size: 20px; border-radius: 12px; margin: 4px 2px; height: 50px; width: 150px; color: white; background-color: #5DADE2; } .footer { height: 100px; text-align: center; width: 100%; }
css/styles.css
.header1{ position: absolute; left: 250px; bottom: 450px; font-family: arial; font-size: 0.9cm; -webkit-animation: colorchange 20s infinite alternate; } @-webkit-keyframes colorchange { 0% { color: blue; } 10% { color: #8e44ad; } 20% { color: #1abc9c; } 30% { color: #d35400; } 40% { color: blue; } 50% { color: #34495e; } 60% { color: blue; } 70% { color: #2980b9; } 80% { color: #f1c40f; } 90% { color: #2980b9; } 100% { color: pink; } } .header3{ position: absolute; left: 270px; bottom: 400px; font-family: arial; font-size: 1.0cm; } .information { width: 800px; height: 450px; } .header2 { margin-top: 75px; margin-left: 250px; color: #5DADE2; font-weight: 400px; font-size: 0.8cm; font-family: sans-serif; } .author { color: black; font-family: sans-serif; font-size: 0.6cm; line-height: 32px; margin-left: 250px; } .line { margin-top: -220px; border-left: 4px solid #5DADE2; height: 250px; margin-left: 850px; } .submit { background-color: #F2F4F4; height: 570px; margin-left: 200px; margin-right: 200px; } .p1 { align-self: auto; } .submit1 { float: left; margin-left: 750px; margin-top: -550px; line-height: 1cm; } .p1 { font-size: 0.9cm; font-weight: bold; } #side1 { border-radius: 25px; border: 2px solid #5DADE2; padding: 20px; width: 400px; height: 10px; } #side2 { border-radius: 25px; border: 2px solid #5DADE2; padding: 20px; width: 400px; height: 10px; } #side3 { border-radius: 25px; border: 2px solid #5DADE2; padding: 20px; width: 400px; height: 10px; } .button1 { font-size: 20px; border-radius: 12px; margin: 10px 5px; height: 50px; width: 150px; color: white; background-color: #5DADE2; } .button2 { font-size: 20px; border-radius: 12px; margin: 4px 2px; height: 50px; width: 150px; color: white; background-color: #5DADE2; } .footer { height: 100px; text-align: center; width: 100%; }
0.464902
0.160595
body { margin:0 10px; height:100%; font-family:verdana,arial,helvetica,sans-serif; } #menubar { margin-bottom:10px; background-color:#006; color:white; } #infobar { width:300px; position:absolute; top:0; } #mainimg { overflow:auto; position:relative; top:0; } #dropview { margin-left:310px; position:relative; top:0; } #dropinfo { font-size:70%; } div.box { border:1px solid #006; background-color:#ccc; color:#006; } div.box h3 { height:1.5em; line-height:1.5em; } #information { margin-top:0.5em; } div.box .boxcontent { border-top:1px solid #006; border-bottom:1px solid #006; background-color:white; color:black; margin-bottom:5px; font-size:80% } #wells { max-height:170px;overflow:auto; padding-bottom:10px} #wells span { font-size:90%; cursor:pointer; border:3px solid white; background-color:red; display:block; text-align:center; width:3.4em; margin-right:0.2em; float:left; } #wells span.well96 { border:2px solid white; height:12px; width:12px; font-size:0; } #wells span.pix { border-color:#808080; border-style:dotted; } #wells span.currentwell { border-color:black; } #wells table { border-collapse:collapse; font-size:11px; margin:0 auto; } #wells th,#wells td { padding:0; } #navigation input { } #navigation input[type="button"] { width:1em; margin:0; } #navigation input[type="text"] { width:2.5em; text-align:center; margin:0; } #controls { } #player { margin:0 auto; height:25px; } /* Repeat above for tc */ #timecoursebox input { } #timecoursebox input[type="button"] { width:1em; margin:0; } #timecoursebox input[type="text"] { width:2.5em; text-align:center; margin:0; } #tccontrols { } #tcplayer { margin:0 auto; height:25px; } .playericon { height:20px; width:20px; color:white; display:block; float:left; margin:0 1px; font-size:0; background-image:url(../xtal/images/icons/playericons.png); } .playericonfirst { background-position:0 -100px; } .playericonprev { background-position:0 -80px; } .playericonplay { background-position:0 -20px; } .playericonstop { background-position:0 0px; } .playericonnext { background-position:0 -40px; } .playericonlast { background-position:0 -60px; } .playericondisabled { -moz-opacity:0.4; filter:alpha(opacity=40); } #timecoursebox { position:absolute; top:0; left:0; width:298px; height: 355px; display: block; } #fulltimecourse { overflow:auto; } .timecourseimage { clear:both; } .timecourseimage img { float:left; margin-right:0.5em; } h2, h3, h4 { color: #006; font-family:verdana,arial,helvetica,sans-serif; }
install/XtalPiMS/XtalPiMS_Web/web/css/viewtrialdrops3.css
body { margin:0 10px; height:100%; font-family:verdana,arial,helvetica,sans-serif; } #menubar { margin-bottom:10px; background-color:#006; color:white; } #infobar { width:300px; position:absolute; top:0; } #mainimg { overflow:auto; position:relative; top:0; } #dropview { margin-left:310px; position:relative; top:0; } #dropinfo { font-size:70%; } div.box { border:1px solid #006; background-color:#ccc; color:#006; } div.box h3 { height:1.5em; line-height:1.5em; } #information { margin-top:0.5em; } div.box .boxcontent { border-top:1px solid #006; border-bottom:1px solid #006; background-color:white; color:black; margin-bottom:5px; font-size:80% } #wells { max-height:170px;overflow:auto; padding-bottom:10px} #wells span { font-size:90%; cursor:pointer; border:3px solid white; background-color:red; display:block; text-align:center; width:3.4em; margin-right:0.2em; float:left; } #wells span.well96 { border:2px solid white; height:12px; width:12px; font-size:0; } #wells span.pix { border-color:#808080; border-style:dotted; } #wells span.currentwell { border-color:black; } #wells table { border-collapse:collapse; font-size:11px; margin:0 auto; } #wells th,#wells td { padding:0; } #navigation input { } #navigation input[type="button"] { width:1em; margin:0; } #navigation input[type="text"] { width:2.5em; text-align:center; margin:0; } #controls { } #player { margin:0 auto; height:25px; } /* Repeat above for tc */ #timecoursebox input { } #timecoursebox input[type="button"] { width:1em; margin:0; } #timecoursebox input[type="text"] { width:2.5em; text-align:center; margin:0; } #tccontrols { } #tcplayer { margin:0 auto; height:25px; } .playericon { height:20px; width:20px; color:white; display:block; float:left; margin:0 1px; font-size:0; background-image:url(../xtal/images/icons/playericons.png); } .playericonfirst { background-position:0 -100px; } .playericonprev { background-position:0 -80px; } .playericonplay { background-position:0 -20px; } .playericonstop { background-position:0 0px; } .playericonnext { background-position:0 -40px; } .playericonlast { background-position:0 -60px; } .playericondisabled { -moz-opacity:0.4; filter:alpha(opacity=40); } #timecoursebox { position:absolute; top:0; left:0; width:298px; height: 355px; display: block; } #fulltimecourse { overflow:auto; } .timecourseimage { clear:both; } .timecourseimage img { float:left; margin-right:0.5em; } h2, h3, h4 { color: #006; font-family:verdana,arial,helvetica,sans-serif; }
0.420957
0.117521
header > h1{ font-family:Impact, Charcoal, sans-serif; color:#ffffff; font-size:50px; background-color:#000033; border-style:solid; border-width:5px; border-color:#ff0000; padding:50px 40px 60px 20px; margin-top:10px; margin-bottom:50px; margin-right:70px; margin-left:30px; width:1000px; height:50px; } main h3{ font-family:"Trebuchet MS", Helvetica, sans-serif; color:green; font-size:45px; background-color:red; border-style:solid; border-width:25px; border-color:yellow; padding:50px 30px 70px 5px; margin-top: 10px; margin-bottom: 80px; margin-right: 70px; margin-left: 30px; width:1000px; height:80px; } h2 + p{ font-family:"Trebuchet MS", Helvetica, sans-serif; color:#ffffff; font-size:40px; background-color:purple; border-style:dotted solid double dashed; border-width:5px; border-color:#ff6600; padding:40px 65px 80px 35px; margin-top: 15px; margin-bottom: 95px; margin-right: 25px; margin-left: 75px; width:1000px; height:15px; } p ~ ul{ font-family:"Courier New", Courier, monospace; color:white; font-size:20px; background-color:black; border-style:solid; border-width:5px; border-color:green; padding:15px 20px 45px 70px; margin-top: 100px; margin-bottom: 100px; margin-right: 150px; margin-left: 80px; width:1000px; height:600px; } nav{ font-family:"Times New Roman", Times, serif; color:black; font-size:20px; background-color:aqua; border-style:solid; border-width:5px; border-color:#ffff00; padding:10px 5px 45px 70px; margin-top: 100px; margin-bottom: 100px; margin-right: 150px; margin-left: 80px; width:1000px; height:500px; } header ~ table{ font-family:"Arial Black", Gadget, sans-serif; color:#ffffff; font-size:15px; background-color:#000033; border-style:dotted solid; border-width:5px; border-color:#00cc00; padding:20px 85px 75px 50px; margin-top: 160px; margin-bottom: 160px; margin-right: 95px; margin-left: 80px; width:1000px; height:1000px; } article > h4{ font-family:"Palatino Linotype", "Book Antiqua", Palatino, serif; color:white; font-size:35px; background-color:black; border-style:dotted solid dashed dotted; border-width:15px; border-color:red; padding:20px 85px 50px 50px; margin-top: 160px; margin-bottom: 160px; margin-right: 95px; margin-left: 80px; width:1000px; height:5px; } tbody + tfoot{ font-family:"Palatino Linotype", "Book Antiqua", Palatino, serif; color:purple; font-size:50px; background-color:yellow; border-style:solid dashed ; border-width:20px; border-color:blue; padding:20px 30px 50px 80px; margin-top: 160px; margin-bottom: 160px; margin-right: 95px; margin-left: 80px; width:1000px; height:5px; } h2 ~ ol{ font-family:"Palatino Linotype", "Book Antiqua", Palatino, serif; color:blue; font-size:25px; background-color:white; border-style:dashed ; border-width:35px; border-color:yellow; padding:60px 20px 50px 50px; margin-top: 10px; margin-bottom: 40px; margin-right: 50px; margin-left: 50px; width:1000px; height:700px; }
css/box.css
header > h1{ font-family:Impact, Charcoal, sans-serif; color:#ffffff; font-size:50px; background-color:#000033; border-style:solid; border-width:5px; border-color:#ff0000; padding:50px 40px 60px 20px; margin-top:10px; margin-bottom:50px; margin-right:70px; margin-left:30px; width:1000px; height:50px; } main h3{ font-family:"Trebuchet MS", Helvetica, sans-serif; color:green; font-size:45px; background-color:red; border-style:solid; border-width:25px; border-color:yellow; padding:50px 30px 70px 5px; margin-top: 10px; margin-bottom: 80px; margin-right: 70px; margin-left: 30px; width:1000px; height:80px; } h2 + p{ font-family:"Trebuchet MS", Helvetica, sans-serif; color:#ffffff; font-size:40px; background-color:purple; border-style:dotted solid double dashed; border-width:5px; border-color:#ff6600; padding:40px 65px 80px 35px; margin-top: 15px; margin-bottom: 95px; margin-right: 25px; margin-left: 75px; width:1000px; height:15px; } p ~ ul{ font-family:"Courier New", Courier, monospace; color:white; font-size:20px; background-color:black; border-style:solid; border-width:5px; border-color:green; padding:15px 20px 45px 70px; margin-top: 100px; margin-bottom: 100px; margin-right: 150px; margin-left: 80px; width:1000px; height:600px; } nav{ font-family:"Times New Roman", Times, serif; color:black; font-size:20px; background-color:aqua; border-style:solid; border-width:5px; border-color:#ffff00; padding:10px 5px 45px 70px; margin-top: 100px; margin-bottom: 100px; margin-right: 150px; margin-left: 80px; width:1000px; height:500px; } header ~ table{ font-family:"Arial Black", Gadget, sans-serif; color:#ffffff; font-size:15px; background-color:#000033; border-style:dotted solid; border-width:5px; border-color:#00cc00; padding:20px 85px 75px 50px; margin-top: 160px; margin-bottom: 160px; margin-right: 95px; margin-left: 80px; width:1000px; height:1000px; } article > h4{ font-family:"Palatino Linotype", "Book Antiqua", Palatino, serif; color:white; font-size:35px; background-color:black; border-style:dotted solid dashed dotted; border-width:15px; border-color:red; padding:20px 85px 50px 50px; margin-top: 160px; margin-bottom: 160px; margin-right: 95px; margin-left: 80px; width:1000px; height:5px; } tbody + tfoot{ font-family:"Palatino Linotype", "Book Antiqua", Palatino, serif; color:purple; font-size:50px; background-color:yellow; border-style:solid dashed ; border-width:20px; border-color:blue; padding:20px 30px 50px 80px; margin-top: 160px; margin-bottom: 160px; margin-right: 95px; margin-left: 80px; width:1000px; height:5px; } h2 ~ ol{ font-family:"Palatino Linotype", "Book Antiqua", Palatino, serif; color:blue; font-size:25px; background-color:white; border-style:dashed ; border-width:35px; border-color:yellow; padding:60px 20px 50px 50px; margin-top: 10px; margin-bottom: 40px; margin-right: 50px; margin-left: 50px; width:1000px; height:700px; }
0.22414
0.052643
@font-face { font-family: 'Lato'; font-style: normal; font-weight: 700; src: local('Lato Bold'), local('Lato-Bold'), url('../fonts/Lato-Bold.ttf') format('truetype'); } @font-face { font-family: 'Lato'; font-style: italic; font-weight: 400; src: local('Lato Italic'), local('Lato-Italic'), url('../fonts/Lato-Italic.ttf') format('truetype'); } @font-face { font-family: 'Lato'; font-style: italic; font-weight: 700; src: local('Lato Bold Italic'), local('Lato-BoldItalic'), url('../fonts/Lato-BoldItalic.ttf') format('truetype'); } @font-face { font-family: 'Lato'; font-style: normal; font-weight: 400; src: local('Lato Regular'), local('Lato-Regular'), url('../fonts/Lato-Regular.ttf') format('truetype'); } html, body { background-color: #161616; color: #C3C3C3; padding: 0; margin: 0px; height: 100%; font: 16px 'Lato', 'Helvetica Neue', Arial, 'Liberation Sans', FreeSans, sans-serif; } form { margin: 0px; padding: 0px; } /* text styles */ h1,h2,h3,p { margin-bottom: 20px; } h1,h2,h3 { font-weight: bold; } h1 { margin-top: 15px; color: #fff; font-size: 1.875em; } h2 { font-size: 1.375em; margin-top: 20px; color: #fff; } h3 { border-bottom: 1px solid #333; font-size: 1.125em; } p { margin-top: 0px; } a { color: #86D4B1; } a.highlight { color: #fff; } .header_right a { text-decoration: none; color: #fff; } em { font-style: italic; } strong { font-weight: bold; } ul { list-style: disc inside; } ol { list-style: decimal inside; } label { font-weight: normal; } input, textarea { font-size:1em; font-family:'Lato', sans-serif; } /* website structure */ #wrap { min-height: 100%; height: auto; /* This must be equal to the footer height + 5px */ margin-bottom: -35px; } #wrap:after { content: ""; display: block; } footer, #wrap:after { height: 30px; } header { width: 100%; padding: 0; margin-bottom: 42px; border-bottom: 1px solid #333; } .header_left { width: 47%; margin: 0 0 0 8px; display: inline-block; } .header_right { width: 47%; margin: 8px 8px 4px 0; display: inline-block; float: right; text-align: right; line-height: 1.6em; } #header_dropdown { margin-bottom: 20px; padding: 0px 10px 0px 10px; } #header_dropdown li { margin: 4px 0; list-style: none; } #header_dropdown p { margin-top: 12px; margin-bottom: 10px; } .dropdown_title { font-size: 20px; } a.logo { color: #fff; font-weight: bold; text-decoration: none; } .status_icon { border-radius: 2px; padding: 4px; margin: 0px 4px; } .num_queued { background: #56446F; } .num_failed { background: #87453B; } .status_icon a { display: inline-block; color: #C3C3C3; } .logo img { vertical-align: middle; margin: 6px 8px 6px 0; } .welcomeimage { float: right; } .fine_print { font-size: 0.8em; } .mediagoblin_content { width: 100%; padding-bottom: 74px; } footer { width: 100%; border-top: 1px solid #333; padding: 8px 0; text-align: center; font-size: 0.875em; clear: both; } .thumb_gallery { margin-left: 10px; margin-right: 10px; } .profile_showcase .thumb_gallery { margin-left: 0; margin-right: 0; } .media_image_container { } .media_image { display: block; margin-left: auto; margin-right: auto; max-width: 100%; } .media_other_container { display: flex; justify-content: center; } .media_pane { /* in place for possible future wide view */ /* border-bottom: 1px solid #333333;*/ } .media_sidebar { /* in place for possible future wide view */ /* border-left: 1px solid #333333;*/ /* padding-left: 1em;*/ /* padding-top: 1em;*/ } .media_comments { padding-top: 1em; } /* common website elements */ .button_action, .button_action_highlight, .button_form { display: inline-block; color: #c3c3c3; background-color: #363636; border: 1px solid; border-color: #464646 #2B2B2B #252525; border-radius: 4px; padding: 3px 8px; font-size: 16px; text-decoration: none; font-style: normal; font-weight: bold; cursor: pointer; } .button_action_highlight, .button_form { background-color: #86D4B1; border-color: #A2DEC3 #6CAA8E #5C9179; color: #283F35; } .button_info { background-color: #508BB5; border-color: #5899C7 #437699 #427496; color: #C3C3C3; } .button_warning { background-color: #8A2D2D; border-color: #913030 #451717 #431212; color: #C3C3C3; } .button_form { min-width: 99px; margin: 10px 0px 10px 15px; text-align: center; font-family: 'Lato', sans-serif; } .pagination { text-align: center; } .pagination_arrow { margin: 5px; } .empty_space { background-image: url("../images/empty_back.png"); font-style: italic; text-align: center; height: 160px; padding-top: 70px; } .no_background { background-image: none; height: 0; padding-top: 0; display: inline-block; } .right_align { float: right; } .left_align { float: right; } .pull-right { float: right !important; } .pull-left { float: left !important; } .clear { clear: both; display: block; overflow: hidden; visibility: hidden; width: 0; height: 0; } .hidden { display: none; } .media_sidebar h3 { font-size: 1em; margin: 0 0 5px; border: none; } .media_sidebar p { margin-left: 8px; } .alpha { margin-left:0; } .omega { margin-right:0; } .head { margin-top:0; } .foot { margin-bottom:0; } /* forms */ .form_box,.form_box_xl { background-color: #222; border-top: 6px solid #D49086; padding: 3% 5%; display: block; float: none; width: 90%; max-width: 340px; margin-left: auto; margin-right: auto; } .form_box_xl { max-width: 460px; } .blog_form_box_xl { background-color: #222; border-top: 6px solid #D49086; padding: 3% 5%; display: block; float: none; width: 90%; max-width: 800px; min-height: 500px; margin-left: auto; margin-right: auto; } .b_listing_title { height: 30px; width: 100%; padding: 0px; background-color: #86D4B1; text-transform:capitalize; text-decoration: none; #border-radius: 4px; } .b_listing_title > a { text-decoration: none; } .b_list_owner { height: 100px; width: 100%; padding: 0em; margin-right: auto; background-color: #DDA0DD; #border-radius: 4px; text-transform: capitalize; } .b_list_des { text-align:justify; } .edit_box { border-top: 6px dashed #D49086 } /*.form_field_input input,*/ .form_field_input textarea { width: 100%; } .blog_form_field_input input, .blog_form_field_input textarea { width: 100%; } .form_field_input { margin-bottom: 10px; } .form_field_label { margin-bottom: 4px; } .form_field_label { font-size:1.125em; } .form_field_description { font-style: italic; } .form_field_error { background-color: #87453b; color: #fff; border: none; padding: 9px; margin-top: 8px; margin-bottom: 8px; } .form_submit_buttons { text-align: right; } .subform { margin: 2em; } #password_boolean { margin-top: 4px; width: 20px; } .boolean { margin-bottom: 8px; } textarea#description, textarea#bio { resize: vertical; height: 100px; } .delete { margin-top: 36px; display: block; text-align: center; } /* comments */ .comment_wrapper, .report_wrapper { margin-top: 20px; margin-bottom: 20px; } .comment_wrapper p, .report_wrapper p { margin-bottom: 2px; } .comment_author, .report_author { padding-top: 4px; font-size: 0.9em; } a.comment_authorlink, a.report_authorlink { text-decoration: none; padding-right: 5px; font-weight: bold; padding-left: 2px; } a.comment_authorlink:hover, a.report_authorlink:hover { text-decoration: underline; } a.comment_whenlink, a.report_whenlink { text-decoration: none; } a.comment_whenlink:hover, a.report_whenlink:hover { text-decoration: underline; } .comment_content, .report_content { margin-left: 8px; margin-top: 8px; } .comment_active { box-shadow: 0px 0px 15px 15px #378566; background: #378566; color: #f7f7f7; } textarea#comment_content { resize: vertical; width: 100%; height: 90px; border: none; background-color: #f1f1f1; padding: 3px; } #form_comment .form_field_input { padding-right: 6px; } a.report_authorlink, a.report_whenlink { color: #D486B1; } ul#action_to_resolve {list-style:none; margin-left:10px;} /* media galleries */ .media_thumbnail { float: left; padding: 0px; width: 180px; overflow: hidden; margin: 0px 3px 10px; text-align: center; font-size: 0.875em; background-color: #222; border-radius: 0 0 5px 5px; padding: 0 0 6px; text-overflow: ellipsis; white-space: nowrap; overflow: hidden; border-color: #0D0D0D; border-style: solid; border-width: 1px 1px 2px; position: relative; } .media_thumbnail a { color: #eee; text-decoration: none; display: block; } .media_thumbnail a.remove { color: #86D4B1; text-decoration: underline; } a.thumb_entry_title { padding: 8px; } .entry_type_icon { position: absolute; top: 2px; left: 2px; } .thumb_entry_last { margin-right: 0px; } /* media detail */ h2.media_title { margin-bottom: 0px; display: inline-block; } p.context { display: inline-block; padding-top: 4px; } p.media_specs { font-size: 0.9em; border-top: 1px solid #222; padding: 10px 0px; color: #888; } .no_html5 { background: black; color: white; text-align: center; height: 160px; padding: 130px 10px 20px 10px; } a img.media_image { cursor: -webkit-zoom-in; cursor: -moz-zoom-in; cursor: zoom-in; } /* icons */ img.media_icon { margin: 0 4px; vertical-align: sub; } /* EXIF information */ #exif_content { padding-bottom: 20px; } #exif_camera_information { margin-bottom: 20px; margin-left: 8px; } #exif_additional_info_button { margin-left: 8px; } #exif_additional_info { display: none; margin-left: 8px; } #exif_additional_info table { font-size: 11px; margin-top: 10px; } #exif_additional_info td { vertical-align: top; padding-bottom: 5px; } #exif_content .col1 { padding-right: 20px; } #exif_additional_info table tr { margin-bottom: 10px; } /* navigation */ .navigation { } .navigation_button { width: 48%; display: inline-block; text-align: center; background-color: #1d1d1d; border: 1px solid; border-color: #2c2c2c #232323 #1a1a1a; border-radius: 4px; text-decoration: none; padding: 4px 0 8px; margin: 0 0 6px; } .navigation_left { margin-right: 3px; } /* messages */ ul.mediagoblin_messages { list-style: none inside; color: #f7f7f7; padding: 0; } .mediagoblin_messages li { margin: 5px 0; padding: 8px; text-align: center; } .message_success { background-color: #378566; } .message_warning { background-color: #87453b; } .message_error { background-color: #87453b; } .message_info { background-color: #378566; } .message_debug { background-color: #f7f7f7; color: #272727; } ul.mediaentry_tags { list-style-type: none; } ul.mediaentry_tags li { display: inline; margin: 0px 5px 0px 0px; padding: 0px; } /* media processing panel */ table.media_panel { width: 100%; } table.media_panel th { font-weight: bold; padding-bottom: 4px; text-align: left; } .thumb-overlay-status { position: absolute; margin: auto; top: 0; bottom: 0; left: 0; right: 0; width: 180px; height: 20px; display: inline; text-align: center; background-color: rgba(255, 255, 255, 0.8); } .thumb-processing { color: black; font-weight: bold; } .thumb-failed { color: red; font-weight: bold; } .thumb-wrapper { position: relative; /* for proportional thumb resizing */ width: auto; height: auto; display: inline-block; } .thumb-wrapper img { max-height: 180px; max-width: 180px; } .media_panel td { vertical-align: middle; } /* moderator panels */ table.admin_panel { width: 100% } table.admin_side_panel { width: 90%; margin-bottom: 10px; } table.admin_panel th, table.admin_side_panel th { font-weight: bold; padding-bottom: 4px; text-align: left; color: #fff; } table td.user_with_privilege { font-weight: bold; color: #86D4B1; } table td.user_without_privilege { font-weight: bold; color: #D486B1; } .return_to_panel { text-align:right; float: right; font-size:1.2em } /* Delete panel */ .delete_checkbox_box { margin-top: 10px; margin-left: 10px; } /* code of conduct */ #code_of_conduct_list { margin-left:25px; margin-bottom: 10px; } #code_of_conduct_list li { margin:5px 0 15px 25px; } #code_of_conduct_list strong{ color:#fff; } .nested_sublist { margin: 5px 0 10px 25px; font-size:80%; } .nested_sublist li { margin-bottom: 10px; } /* ASCII art and code */ @font-face { font-family: Inconsolata; src: local('Inconsolata'), url('../fonts/Inconsolata.otf') format('opentype') } pre, code { font-family: Inconsolata, monospace; line-height: 1em; } pre { overflow: auto; margin-bottom: 20px; } .comment_wrapper pre { margin-bottom: 2px; } .ascii-wrapper pre { /* but it should not affect the ASCII art */ margin: 0; } /* Media queries and other responsivisivity */ /* initial GMG max 940 */ @media screen and (max-width: 960px) { img.media_image { max-width: 100%; /* display: inline;*/ } .media_thumbnail { /* width: 21%;*/ } .profile_sidebar { width: 100%; margin: 0px; } .profile_showcase { width: 100%; margin: 0px; } .navigation { float: none; } .navigation_button { float: right; padding: 10px 0 14px; } .navigation_left { margin-right: 0; float: left; } .button_action, .button_action_highlight, .button_form { padding: 5px 14px; margin-bottom: 0.5em; } } /* desktop resolutions */ @media screen and (min-width: 960px) { .container .three.columns.media_thumbnail { width:180px; margin-left:3px; margin-right:3px; } #thingy_view { width:640px; height:640px; } } /* Tablet Portrait size to standard 960 (devices and browsers) */ @media only screen and (min-width: 768px) and (max-width: 959px) { .container .three.columns.media_thumbnail { width:147px; margin-left:2px; margin-right:2px; } .media_thumbnail.thumb_entry img { max-width:100%; } .thumb_gallery { margin-left: 0; margin-right: 0; } .navigation_button { } #thingy_view { width:508px; height:508px; } } /* All Mobile Sizes (devices and browser) */ @media screen and (max-width: 767px) { .thumb_row { margin-bottom: 0; } .thumb_gallery { margin-left: 0; margin-right: 0; } h1,h2,h3,p { margin-bottom: 10px !important; } header { text-align: center; } .header_right { text-align: center; } .welcomeimage { float: none; display: inherit; margin-left: auto; margin-right: auto; margin-top: 1em; } .media_sidebar { border-left: none; padding-left: 0; padding-top: 1em; margin-top: 1em; } .media_comments { border-bottom: 1px solid #333333; } } /* Mobile Landscape Size to Tablet Portrait (devices and browsers) */ @media only screen and (min-width: 480px) and (max-width: 767px) { #thingy_view { width:420px; height:420px; } } /* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */ @media only screen and (max-width: 479px) { #thingy_view { width:300px; height:300px; } } p.verifier { text-align:center; font-size:50px; none repeat scroll 0% 0% rgb(221, 221, 221); padding: 1em 0px; } /* for the media metadata editing table */ table.metadata_editor { margin: 10px auto; width: 800px; } table.metadata_editor tr td { width:350px; } table.metadata_editor tr td.form_field_input input { width:350px; } .application { min-height: 30px; margin-left: 70px; } .application-icon { position: absolute; left: 12px; width: 50px; height: 50px; } .application-button { float: right; } .media_thumbnail{ white-space: normal; }
mediagoblin/static/css/base.css
@font-face { font-family: 'Lato'; font-style: normal; font-weight: 700; src: local('Lato Bold'), local('Lato-Bold'), url('../fonts/Lato-Bold.ttf') format('truetype'); } @font-face { font-family: 'Lato'; font-style: italic; font-weight: 400; src: local('Lato Italic'), local('Lato-Italic'), url('../fonts/Lato-Italic.ttf') format('truetype'); } @font-face { font-family: 'Lato'; font-style: italic; font-weight: 700; src: local('Lato Bold Italic'), local('Lato-BoldItalic'), url('../fonts/Lato-BoldItalic.ttf') format('truetype'); } @font-face { font-family: 'Lato'; font-style: normal; font-weight: 400; src: local('Lato Regular'), local('Lato-Regular'), url('../fonts/Lato-Regular.ttf') format('truetype'); } html, body { background-color: #161616; color: #C3C3C3; padding: 0; margin: 0px; height: 100%; font: 16px 'Lato', 'Helvetica Neue', Arial, 'Liberation Sans', FreeSans, sans-serif; } form { margin: 0px; padding: 0px; } /* text styles */ h1,h2,h3,p { margin-bottom: 20px; } h1,h2,h3 { font-weight: bold; } h1 { margin-top: 15px; color: #fff; font-size: 1.875em; } h2 { font-size: 1.375em; margin-top: 20px; color: #fff; } h3 { border-bottom: 1px solid #333; font-size: 1.125em; } p { margin-top: 0px; } a { color: #86D4B1; } a.highlight { color: #fff; } .header_right a { text-decoration: none; color: #fff; } em { font-style: italic; } strong { font-weight: bold; } ul { list-style: disc inside; } ol { list-style: decimal inside; } label { font-weight: normal; } input, textarea { font-size:1em; font-family:'Lato', sans-serif; } /* website structure */ #wrap { min-height: 100%; height: auto; /* This must be equal to the footer height + 5px */ margin-bottom: -35px; } #wrap:after { content: ""; display: block; } footer, #wrap:after { height: 30px; } header { width: 100%; padding: 0; margin-bottom: 42px; border-bottom: 1px solid #333; } .header_left { width: 47%; margin: 0 0 0 8px; display: inline-block; } .header_right { width: 47%; margin: 8px 8px 4px 0; display: inline-block; float: right; text-align: right; line-height: 1.6em; } #header_dropdown { margin-bottom: 20px; padding: 0px 10px 0px 10px; } #header_dropdown li { margin: 4px 0; list-style: none; } #header_dropdown p { margin-top: 12px; margin-bottom: 10px; } .dropdown_title { font-size: 20px; } a.logo { color: #fff; font-weight: bold; text-decoration: none; } .status_icon { border-radius: 2px; padding: 4px; margin: 0px 4px; } .num_queued { background: #56446F; } .num_failed { background: #87453B; } .status_icon a { display: inline-block; color: #C3C3C3; } .logo img { vertical-align: middle; margin: 6px 8px 6px 0; } .welcomeimage { float: right; } .fine_print { font-size: 0.8em; } .mediagoblin_content { width: 100%; padding-bottom: 74px; } footer { width: 100%; border-top: 1px solid #333; padding: 8px 0; text-align: center; font-size: 0.875em; clear: both; } .thumb_gallery { margin-left: 10px; margin-right: 10px; } .profile_showcase .thumb_gallery { margin-left: 0; margin-right: 0; } .media_image_container { } .media_image { display: block; margin-left: auto; margin-right: auto; max-width: 100%; } .media_other_container { display: flex; justify-content: center; } .media_pane { /* in place for possible future wide view */ /* border-bottom: 1px solid #333333;*/ } .media_sidebar { /* in place for possible future wide view */ /* border-left: 1px solid #333333;*/ /* padding-left: 1em;*/ /* padding-top: 1em;*/ } .media_comments { padding-top: 1em; } /* common website elements */ .button_action, .button_action_highlight, .button_form { display: inline-block; color: #c3c3c3; background-color: #363636; border: 1px solid; border-color: #464646 #2B2B2B #252525; border-radius: 4px; padding: 3px 8px; font-size: 16px; text-decoration: none; font-style: normal; font-weight: bold; cursor: pointer; } .button_action_highlight, .button_form { background-color: #86D4B1; border-color: #A2DEC3 #6CAA8E #5C9179; color: #283F35; } .button_info { background-color: #508BB5; border-color: #5899C7 #437699 #427496; color: #C3C3C3; } .button_warning { background-color: #8A2D2D; border-color: #913030 #451717 #431212; color: #C3C3C3; } .button_form { min-width: 99px; margin: 10px 0px 10px 15px; text-align: center; font-family: 'Lato', sans-serif; } .pagination { text-align: center; } .pagination_arrow { margin: 5px; } .empty_space { background-image: url("../images/empty_back.png"); font-style: italic; text-align: center; height: 160px; padding-top: 70px; } .no_background { background-image: none; height: 0; padding-top: 0; display: inline-block; } .right_align { float: right; } .left_align { float: right; } .pull-right { float: right !important; } .pull-left { float: left !important; } .clear { clear: both; display: block; overflow: hidden; visibility: hidden; width: 0; height: 0; } .hidden { display: none; } .media_sidebar h3 { font-size: 1em; margin: 0 0 5px; border: none; } .media_sidebar p { margin-left: 8px; } .alpha { margin-left:0; } .omega { margin-right:0; } .head { margin-top:0; } .foot { margin-bottom:0; } /* forms */ .form_box,.form_box_xl { background-color: #222; border-top: 6px solid #D49086; padding: 3% 5%; display: block; float: none; width: 90%; max-width: 340px; margin-left: auto; margin-right: auto; } .form_box_xl { max-width: 460px; } .blog_form_box_xl { background-color: #222; border-top: 6px solid #D49086; padding: 3% 5%; display: block; float: none; width: 90%; max-width: 800px; min-height: 500px; margin-left: auto; margin-right: auto; } .b_listing_title { height: 30px; width: 100%; padding: 0px; background-color: #86D4B1; text-transform:capitalize; text-decoration: none; #border-radius: 4px; } .b_listing_title > a { text-decoration: none; } .b_list_owner { height: 100px; width: 100%; padding: 0em; margin-right: auto; background-color: #DDA0DD; #border-radius: 4px; text-transform: capitalize; } .b_list_des { text-align:justify; } .edit_box { border-top: 6px dashed #D49086 } /*.form_field_input input,*/ .form_field_input textarea { width: 100%; } .blog_form_field_input input, .blog_form_field_input textarea { width: 100%; } .form_field_input { margin-bottom: 10px; } .form_field_label { margin-bottom: 4px; } .form_field_label { font-size:1.125em; } .form_field_description { font-style: italic; } .form_field_error { background-color: #87453b; color: #fff; border: none; padding: 9px; margin-top: 8px; margin-bottom: 8px; } .form_submit_buttons { text-align: right; } .subform { margin: 2em; } #password_boolean { margin-top: 4px; width: 20px; } .boolean { margin-bottom: 8px; } textarea#description, textarea#bio { resize: vertical; height: 100px; } .delete { margin-top: 36px; display: block; text-align: center; } /* comments */ .comment_wrapper, .report_wrapper { margin-top: 20px; margin-bottom: 20px; } .comment_wrapper p, .report_wrapper p { margin-bottom: 2px; } .comment_author, .report_author { padding-top: 4px; font-size: 0.9em; } a.comment_authorlink, a.report_authorlink { text-decoration: none; padding-right: 5px; font-weight: bold; padding-left: 2px; } a.comment_authorlink:hover, a.report_authorlink:hover { text-decoration: underline; } a.comment_whenlink, a.report_whenlink { text-decoration: none; } a.comment_whenlink:hover, a.report_whenlink:hover { text-decoration: underline; } .comment_content, .report_content { margin-left: 8px; margin-top: 8px; } .comment_active { box-shadow: 0px 0px 15px 15px #378566; background: #378566; color: #f7f7f7; } textarea#comment_content { resize: vertical; width: 100%; height: 90px; border: none; background-color: #f1f1f1; padding: 3px; } #form_comment .form_field_input { padding-right: 6px; } a.report_authorlink, a.report_whenlink { color: #D486B1; } ul#action_to_resolve {list-style:none; margin-left:10px;} /* media galleries */ .media_thumbnail { float: left; padding: 0px; width: 180px; overflow: hidden; margin: 0px 3px 10px; text-align: center; font-size: 0.875em; background-color: #222; border-radius: 0 0 5px 5px; padding: 0 0 6px; text-overflow: ellipsis; white-space: nowrap; overflow: hidden; border-color: #0D0D0D; border-style: solid; border-width: 1px 1px 2px; position: relative; } .media_thumbnail a { color: #eee; text-decoration: none; display: block; } .media_thumbnail a.remove { color: #86D4B1; text-decoration: underline; } a.thumb_entry_title { padding: 8px; } .entry_type_icon { position: absolute; top: 2px; left: 2px; } .thumb_entry_last { margin-right: 0px; } /* media detail */ h2.media_title { margin-bottom: 0px; display: inline-block; } p.context { display: inline-block; padding-top: 4px; } p.media_specs { font-size: 0.9em; border-top: 1px solid #222; padding: 10px 0px; color: #888; } .no_html5 { background: black; color: white; text-align: center; height: 160px; padding: 130px 10px 20px 10px; } a img.media_image { cursor: -webkit-zoom-in; cursor: -moz-zoom-in; cursor: zoom-in; } /* icons */ img.media_icon { margin: 0 4px; vertical-align: sub; } /* EXIF information */ #exif_content { padding-bottom: 20px; } #exif_camera_information { margin-bottom: 20px; margin-left: 8px; } #exif_additional_info_button { margin-left: 8px; } #exif_additional_info { display: none; margin-left: 8px; } #exif_additional_info table { font-size: 11px; margin-top: 10px; } #exif_additional_info td { vertical-align: top; padding-bottom: 5px; } #exif_content .col1 { padding-right: 20px; } #exif_additional_info table tr { margin-bottom: 10px; } /* navigation */ .navigation { } .navigation_button { width: 48%; display: inline-block; text-align: center; background-color: #1d1d1d; border: 1px solid; border-color: #2c2c2c #232323 #1a1a1a; border-radius: 4px; text-decoration: none; padding: 4px 0 8px; margin: 0 0 6px; } .navigation_left { margin-right: 3px; } /* messages */ ul.mediagoblin_messages { list-style: none inside; color: #f7f7f7; padding: 0; } .mediagoblin_messages li { margin: 5px 0; padding: 8px; text-align: center; } .message_success { background-color: #378566; } .message_warning { background-color: #87453b; } .message_error { background-color: #87453b; } .message_info { background-color: #378566; } .message_debug { background-color: #f7f7f7; color: #272727; } ul.mediaentry_tags { list-style-type: none; } ul.mediaentry_tags li { display: inline; margin: 0px 5px 0px 0px; padding: 0px; } /* media processing panel */ table.media_panel { width: 100%; } table.media_panel th { font-weight: bold; padding-bottom: 4px; text-align: left; } .thumb-overlay-status { position: absolute; margin: auto; top: 0; bottom: 0; left: 0; right: 0; width: 180px; height: 20px; display: inline; text-align: center; background-color: rgba(255, 255, 255, 0.8); } .thumb-processing { color: black; font-weight: bold; } .thumb-failed { color: red; font-weight: bold; } .thumb-wrapper { position: relative; /* for proportional thumb resizing */ width: auto; height: auto; display: inline-block; } .thumb-wrapper img { max-height: 180px; max-width: 180px; } .media_panel td { vertical-align: middle; } /* moderator panels */ table.admin_panel { width: 100% } table.admin_side_panel { width: 90%; margin-bottom: 10px; } table.admin_panel th, table.admin_side_panel th { font-weight: bold; padding-bottom: 4px; text-align: left; color: #fff; } table td.user_with_privilege { font-weight: bold; color: #86D4B1; } table td.user_without_privilege { font-weight: bold; color: #D486B1; } .return_to_panel { text-align:right; float: right; font-size:1.2em } /* Delete panel */ .delete_checkbox_box { margin-top: 10px; margin-left: 10px; } /* code of conduct */ #code_of_conduct_list { margin-left:25px; margin-bottom: 10px; } #code_of_conduct_list li { margin:5px 0 15px 25px; } #code_of_conduct_list strong{ color:#fff; } .nested_sublist { margin: 5px 0 10px 25px; font-size:80%; } .nested_sublist li { margin-bottom: 10px; } /* ASCII art and code */ @font-face { font-family: Inconsolata; src: local('Inconsolata'), url('../fonts/Inconsolata.otf') format('opentype') } pre, code { font-family: Inconsolata, monospace; line-height: 1em; } pre { overflow: auto; margin-bottom: 20px; } .comment_wrapper pre { margin-bottom: 2px; } .ascii-wrapper pre { /* but it should not affect the ASCII art */ margin: 0; } /* Media queries and other responsivisivity */ /* initial GMG max 940 */ @media screen and (max-width: 960px) { img.media_image { max-width: 100%; /* display: inline;*/ } .media_thumbnail { /* width: 21%;*/ } .profile_sidebar { width: 100%; margin: 0px; } .profile_showcase { width: 100%; margin: 0px; } .navigation { float: none; } .navigation_button { float: right; padding: 10px 0 14px; } .navigation_left { margin-right: 0; float: left; } .button_action, .button_action_highlight, .button_form { padding: 5px 14px; margin-bottom: 0.5em; } } /* desktop resolutions */ @media screen and (min-width: 960px) { .container .three.columns.media_thumbnail { width:180px; margin-left:3px; margin-right:3px; } #thingy_view { width:640px; height:640px; } } /* Tablet Portrait size to standard 960 (devices and browsers) */ @media only screen and (min-width: 768px) and (max-width: 959px) { .container .three.columns.media_thumbnail { width:147px; margin-left:2px; margin-right:2px; } .media_thumbnail.thumb_entry img { max-width:100%; } .thumb_gallery { margin-left: 0; margin-right: 0; } .navigation_button { } #thingy_view { width:508px; height:508px; } } /* All Mobile Sizes (devices and browser) */ @media screen and (max-width: 767px) { .thumb_row { margin-bottom: 0; } .thumb_gallery { margin-left: 0; margin-right: 0; } h1,h2,h3,p { margin-bottom: 10px !important; } header { text-align: center; } .header_right { text-align: center; } .welcomeimage { float: none; display: inherit; margin-left: auto; margin-right: auto; margin-top: 1em; } .media_sidebar { border-left: none; padding-left: 0; padding-top: 1em; margin-top: 1em; } .media_comments { border-bottom: 1px solid #333333; } } /* Mobile Landscape Size to Tablet Portrait (devices and browsers) */ @media only screen and (min-width: 480px) and (max-width: 767px) { #thingy_view { width:420px; height:420px; } } /* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */ @media only screen and (max-width: 479px) { #thingy_view { width:300px; height:300px; } } p.verifier { text-align:center; font-size:50px; none repeat scroll 0% 0% rgb(221, 221, 221); padding: 1em 0px; } /* for the media metadata editing table */ table.metadata_editor { margin: 10px auto; width: 800px; } table.metadata_editor tr td { width:350px; } table.metadata_editor tr td.form_field_input input { width:350px; } .application { min-height: 30px; margin-left: 70px; } .application-icon { position: absolute; left: 12px; width: 50px; height: 50px; } .application-button { float: right; } .media_thumbnail{ white-space: normal; }
0.232571
0.067824
@import 'assets/icofont.min.css'; body { overflow: hidden; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background-color: #000; color: #fff; } .hidden { opacity: 0; pointer-events: none; } .main { position: relative; width: 100%; height: 100%; transition: opacity 250ms ease; } .track { position: absolute; left: calc(50% - 512px); top: calc(50% - 512px); width: 1024px; /* ajuster aux dimensions de la map */ height: 1024px; } .track-star5 { background: bottom/100% no-repeat url("assets/SuperMarioKartMapStarCup5.png"); } .track-mushroom2 { background: bottom/100% no-repeat url("assets/SuperMarioKartMapMushroomCup2.png"); } .track-flower5 { background: bottom/100% no-repeat url("assets/SuperMarioKartMapFlowerCup5.png"); } .car, .tires { position: absolute; background: center no-repeat; transition: opacity 300ms ease; } .car-icon { display: inline-block; background: center no-repeat; padding: 3px; } .car-icon:not(.car-selected) { opacity: 0.8; } .car-red { width: 23px; height: 46px; left: -11.5px; top: -23px; background-image: url("assets/car-red.png"); } .car-green { width: 23px; height: 46px; left: -11.5px; top: -23px; background-image: url("assets/car-green.png"); } .car-blue { width: 23px; height: 46px; left: -11.5px; top: -23px; background-image: url("assets/car-blue.png"); } .car-yellow { width: 23px; height: 46px; left: -11.5px; top: -23px; background-image: url("assets/car-yellow.png"); } .car-orange { width: 23px; height: 46px; left: -11.5px; top: -23px; background-image: url("assets/car-orange.png"); } .car-redf1 { width: 25px; height: 59px; left: -12.5px; top: -29.5px; background-image: url("assets/f1-red.png"); } .car-red-tires { width: 23px; height: 46px; left: -11.5px; top: -23px; background-image: url("assets/car-red-tires.png"); } .car-dead { opacity: 0.25 } .car-selected { outline: 1px solid lightgreen; } .ai .car-debug { border: 1px solid black; } .osd { width: 10em; right: -11em; transition: opacity 250ms ease; } /* .osd:hover { opacity: 0.2; } */ .osd-speed { text-align: right; margin-right: 1em; } #speed-int { font-size: 2em; font-style: italic;; } .osd-table { width: 100%; } .osd-table td+td { text-align: right; } .ai .gen-controls { display: block !important; } .gen-controls { left: 0; width: 12em; text-align: center; } .gen-controls-title { padding-bottom: 0.3em; } .gen-controls > i { font-size: 1.5em; color: lightgray; transition: color 250ms ease; padding: 0.1em; } .gen-controls > i:not(.disabled) { cursor: pointer; } .gen-controls > i:not(.disabled):hover { color: white; } .disabled { opacity: 0.5; } .rays { position: absolute; top: 50%; left: 50%; width: 0; } .ray { position: absolute; width: 30px; height: 1px; background-color: yellow; transform-origin: left; } #track-image-data { position: absolute; top: 0; left: 6em; pointer-events: none; } .dialog.hidden { opacity: 0; } .dialog { position: absolute; width: 400px; height: 180px; top: 50%; left: 50%; margin-top: -120px; margin-left: -200px; border: 1px solid white; background-color: rgba(0, 0, 0, 0.75); display: flex; flex-direction: column; justify-content: center; align-items: center; font-size: 30px; transition: opacity 500ms ease; } #dialog-counter { font-size: 50px; } .dialog-tip { font-size: 13px; margin-top: 20px; } :is(.practice, .pvai) .dialog-tip { display: none; }
src/race.css
@import 'assets/icofont.min.css'; body { overflow: hidden; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background-color: #000; color: #fff; } .hidden { opacity: 0; pointer-events: none; } .main { position: relative; width: 100%; height: 100%; transition: opacity 250ms ease; } .track { position: absolute; left: calc(50% - 512px); top: calc(50% - 512px); width: 1024px; /* ajuster aux dimensions de la map */ height: 1024px; } .track-star5 { background: bottom/100% no-repeat url("assets/SuperMarioKartMapStarCup5.png"); } .track-mushroom2 { background: bottom/100% no-repeat url("assets/SuperMarioKartMapMushroomCup2.png"); } .track-flower5 { background: bottom/100% no-repeat url("assets/SuperMarioKartMapFlowerCup5.png"); } .car, .tires { position: absolute; background: center no-repeat; transition: opacity 300ms ease; } .car-icon { display: inline-block; background: center no-repeat; padding: 3px; } .car-icon:not(.car-selected) { opacity: 0.8; } .car-red { width: 23px; height: 46px; left: -11.5px; top: -23px; background-image: url("assets/car-red.png"); } .car-green { width: 23px; height: 46px; left: -11.5px; top: -23px; background-image: url("assets/car-green.png"); } .car-blue { width: 23px; height: 46px; left: -11.5px; top: -23px; background-image: url("assets/car-blue.png"); } .car-yellow { width: 23px; height: 46px; left: -11.5px; top: -23px; background-image: url("assets/car-yellow.png"); } .car-orange { width: 23px; height: 46px; left: -11.5px; top: -23px; background-image: url("assets/car-orange.png"); } .car-redf1 { width: 25px; height: 59px; left: -12.5px; top: -29.5px; background-image: url("assets/f1-red.png"); } .car-red-tires { width: 23px; height: 46px; left: -11.5px; top: -23px; background-image: url("assets/car-red-tires.png"); } .car-dead { opacity: 0.25 } .car-selected { outline: 1px solid lightgreen; } .ai .car-debug { border: 1px solid black; } .osd { width: 10em; right: -11em; transition: opacity 250ms ease; } /* .osd:hover { opacity: 0.2; } */ .osd-speed { text-align: right; margin-right: 1em; } #speed-int { font-size: 2em; font-style: italic;; } .osd-table { width: 100%; } .osd-table td+td { text-align: right; } .ai .gen-controls { display: block !important; } .gen-controls { left: 0; width: 12em; text-align: center; } .gen-controls-title { padding-bottom: 0.3em; } .gen-controls > i { font-size: 1.5em; color: lightgray; transition: color 250ms ease; padding: 0.1em; } .gen-controls > i:not(.disabled) { cursor: pointer; } .gen-controls > i:not(.disabled):hover { color: white; } .disabled { opacity: 0.5; } .rays { position: absolute; top: 50%; left: 50%; width: 0; } .ray { position: absolute; width: 30px; height: 1px; background-color: yellow; transform-origin: left; } #track-image-data { position: absolute; top: 0; left: 6em; pointer-events: none; } .dialog.hidden { opacity: 0; } .dialog { position: absolute; width: 400px; height: 180px; top: 50%; left: 50%; margin-top: -120px; margin-left: -200px; border: 1px solid white; background-color: rgba(0, 0, 0, 0.75); display: flex; flex-direction: column; justify-content: center; align-items: center; font-size: 30px; transition: opacity 500ms ease; } #dialog-counter { font-size: 50px; } .dialog-tip { font-size: 13px; margin-top: 20px; } :is(.practice, .pvai) .dialog-tip { display: none; }
0.527073
0.138113
html { width: 100%; height: 100%; overflow: hidden; } body { width: 100%; height: 100%; overflow: hidden; font-family: helvetica, arial, "sans-serif"; font-size: 8pt; background: black; color: rgb(255,240,220); } a { color: rgb(255,160,40); text-decoration: none; } h1 { font-weight: bold; } .unselectable { -moz-user-select: none; -khtml-user-select: none; -webkit-user-select: none; user-select: none; } .grabbing { cursor: move !important; cursor: -moz-grabbing !important; } .clear { clear: both; } table { border-collapse: collapse; } th { text-align: left; font-weight: bold; padding: 5px 0px 2px 5px; } th:first-child { padding: 5px 0px 2px 0px; } td { text-align: left; padding: 5px 0px 0px 5px; } td:first-child { padding: 5px 0px 0px 0px; } tr.headerrow { text-align: center; border-bottom: solid 1px rgb(255,240,220); } tr.headerrow th { text-align: center; } table.datalist th { text-align: left; padding: 0px 10px 5px 0px; } table.datalist td { padding: 0px 0px 5px 0px; } ul.normal_list li { list-style-type: disc; margin-left: 20px; } #terkep { position: absolute; left: 0; top: 0; width: 100%; height: 100%; background: url(../img/map_background.jpg) repeat 0px 0px; } #terkep_eger_reteg { width: 100%; height: 100%; cursor: move; cursor: -moz-grab; } #terkep_hexak li { position: absolute; width: 286px; height: 248px; background-repeat: no-repeat; overflow: visible; } #terkep_hexak li div { position: absolute; top: -2px; left: -2px; width: 290px; height: 252px; background-repeat: no-repeat; overflow: visible; } #terkep_bolygok li { position: absolute; } .bolygo_klikk_terulet { cursor: pointer; } #terkep_flottak li { position: absolute; cursor: pointer; } #miniterkep { position: absolute; bottom: 0px; height: 176px; width: 100%; } #miniterkep_koordi { position: absolute; top: 0px; height: 16px; left: 5px; right: 5px; padding-left: 2px; overflow: hidden; white-space: nowrap; font-size: 8pt; } #miniterkep_belso { position: absolute; top: 21px; bottom: 5px; left: 5px; right: 5px; background: black url(../img/s8_map_150_40k.png) center center; overflow: hidden; } #miniterkep_jelolo { position: absolute; border: solid 1px rgb(255,0,0); border: solid 1px rgba(255,0,0,0.5); background: rgba(255,0,0,0.2); } #miniterkep_jelolo_x { position: absolute; background: rgb(255,0,0); background: rgba(255,0,0,0.5); width: 1px; height: 100%; } #miniterkep_jelolo_y { position: absolute; background: rgb(255,0,0); background: rgba(255,0,0,0.5); width: 100%; height: 1px; } .ablak { position: absolute; z-index: 20; border-color: rgb(27,62,68); border-style: solid; border-width: 1px; background: transparent url(../img/zanda_background.png) repeat; overflow: hidden; } .ablak_fejlec { background: rgb(27,62,68); border-style: solid; border-width: 1px; border-color: rgb(32,75,81) rgb(14,31,34) rgb(14,31,34) rgb(32,75,81); height: 20px; padding: 1px 4px; font-weight: bold; font-size: 11pt; } .ablak_fejlec .close_icon { position: absolute; top: 2px; right: 2px; width: 16px; height: 16px; background: transparent url(../img/zanda_close_icon.png); cursor: pointer; } .ablak_fejlec_menu { float: right; height: 16px; } .ablak_tartalom { position: absolute; top: 30px; bottom: 0px; left: 0px; right: 0px; padding: 5px; overflow: auto; overflow-x: hidden; } #bolygo_profil { left: -800px; width: 800px; top: 40px; bottom: 0px; display: none; } #bolygo_profil_felso_resz { height: 110px; } #bolygo_alap_adatok { position: absolute; left: 5px; width: 400px; top: 5px; } #bolygo_kep { position: absolute; left: 440px; width: 100px; top: 10px; height: 100px; color: rgb(255,240,220); font-weight: bold; } #bolygo_gala_kis { position: absolute; left: 550px; width: 100px; top: 10px; height: 100px; color: rgb(255,240,220); font-weight: bold; } #bolygo_gala_nagy { position: absolute; left: 660px; width: 100px; top: 10px; height: 100px; color: rgb(255,240,220); font-weight: bold; } .gyar_nev { font-weight: bold; width: 130px; } .gyar_aktiv { text-align: right; width: 75px; } .gyar_inaktiv { text-align: right; width: 75px; } .eroforras_nev { font-weight: bold; width: 80px; } .eroforras_keszlet { text-align: right; width: 100px; } .eroforras_delta { text-align: right; width: 100px; } .eroforras_netto { text-align: right; width: 100px; } .menu { border-color: rgb(27,62,68); background: transparent url(../img/zanda_background.png) repeat; z-index: 10; } .menu_section { background: transparent url(../img/zanda_50_black_1px.png) repeat; border-style: solid; border-width: 1px; border-color: rgb(14,31,34) rgb(32,75,81) rgb(32,75,81) rgb(14,31,34); } .menu button { margin-top: 5px; height: 29px; margin-left: 5px; margin-right: 0px; } #felso_menu { position: absolute; left: 150px; right: 0px; top: 0px; height: 40px; } #zanda_logo { position: absolute; top: 0px; right: 0px; width: 160px; height: 40px; background: transparent url(../img/zanda_logo_160x40.png); } #bal_menu { position: absolute; left: 0px; width: 150px; top: 0px; bottom: 0px; } #esemenyek { position: absolute; top: 5px; height: 150px; left: 5px; right: 5px; padding: 5px; } #bolygo_lista { position: absolute; top: 172px; bottom: 170px; left: 5px; right: 5px; overflow: hidden; padding: 5px 15px 5px 5px; } #bolygo_lista ul li { padding-left: 18px; padding-top: 2px; padding-bottom: 4px; } #minichat { position: absolute; bottom: 5px; height: 150px; left: 5px; right: 5px; padding: 5px; } #jobb_menu { position: absolute; right: 0px; width: 160px; top: 40px; bottom: 0px; } #flotta_lista { position: absolute; left: 5px; right: 5px; top: 0px; bottom: 391px; overflow: hidden; padding: 5px 15px 5px 5px; } #aktiv_flotta { position: absolute; bottom: 306px; height: 80px; left: 5px; right: 5px; } #kivalasztott_flotta { position: absolute; bottom: 181px; height: 120px; left: 5px; right: 5px; } #context_menu { position: absolute; display: none; z-index: 999; } .context_menu_item { position: absolute; background: transparent url(../img/context_menu_hexa.png); width: 64px; height: 48px; padding-top: 16px; text-align: center; cursor: pointer; font-size: 20pt; font-weight: bold; } #context_menu_item_a { left: 0px; top: 0px; } #context_menu_item_b { left: 0px; top: -70px; } #context_menu_item_c { left: -60px; top: -34px; } #context_menu_item_d { left: 60px; top: -34px; } #context_menu_item_e { left: -60px; top: 34px; } #context_menu_item_f { left: 60px; top: 34px; } #context_menu_item_g { left: 0px; top: 70px; } #tooltip { position: absolute; display: none; z-index: 10000; background: rgb(27,62,68); border: solid 1px rgb(32,75,81); -moz-box-shadow: 4px 4px 5px rgb(0,0,0); -webkit-box-shadow: 4px 4px 5px rgb(0,0,0); box-shadow: 4px 4px 5px rgb(0,0,0); padding: 10px; } #tooltips { display: none; } #loading { position: absolute; left: 50%; top: 50%; margin-left: -16px; margin-top: -16px; width: 32px; height: 32px; background: transparent url(../img/zanda_ze_32.png); display: none; z-index: 20000; } #loading_ajax { position: absolute; left: 8px; top: 8px; width: 16px; height: 16px; background: transparent url(../img/ajax-loader.gif); } .tab_list { /*width: 100%;*/ /*overflow: hidden;*/ height: 30px; border-bottom: solid 1px rgb(32,75,81); margin-top: 10px; margin-bottom: 10px; } .tab_list li { float: left; cursor: pointer; color: rgb(255,160,40); border-style: solid solid none solid; border-width: 1px 1px 0px 1px; border-color: rgb(32,75,81); padding: 5px; height: 19px; font-size: 10pt; font-weight: bold; background: rgb(27,62,68); margin-left: 5px; margin-right: 5px; } .tab_content { display: none; } .active_tab_content { display: block !important; } .active_tab { color: rgb(255,200,100) !important; padding-bottom: 6px !important; } button, .button { width: auto; margin: 0px; padding: 3px 5px; font-weight: bold; cursor: pointer; color: rgb(255,240,220); border: 1px solid rgb(32,75,81); border-radius: 3px; box-shadow: 0 1px 0 0 rgba(255,255,255,0.2) inset; background-clip: padding-box; background: rgb(26,60,66); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#33767f, endColorstr=#12282d); background: -webkit-gradient(linear, left top, left bottom, from(rgb(51,118,127)), to(rgb(18,40,45))); background: -moz-linear-gradient(top, rgb(51,118,127), rgb(18,40,45)); background: -o-linear-gradient(top, rgb(51,118,127), rgb(18,40,45)); background: linear-gradient(to bottom, rgb(51,118,127), rgb(18,40,45)); } button:hover, .button:hover, button:focus, .button:focus { background: rgb(33,76,82); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#3a868f, endColorstr=#19383d); background: -webkit-gradient(linear, left top, left bottom, from(rgb(58,134,143)), to(rgb(25,56,61))); background: -moz-linear-gradient(top, rgb(58,134,143), rgb(25,56,61)); background: -o-linear-gradient(top, rgb(58,134,143), rgb(25,56,61)); background: linear-gradient(to bottom, rgb(58,134,143), rgb(25,56,61)); text-decoration: none; } button:active, .button:active { background: rgb(39,91,99); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#19383d, endColorstr=#2c666f); background: -webkit-gradient(linear, left top, left bottom, from(rgb(25,56,61)), to(rgb(44,102,111))); background: -moz-linear-gradient(top, rgb(25,56,61), rgb(44,102,111)); background: -o-linear-gradient(top, rgb(25,56,61), rgb(44,102,111)); background: linear-gradient(to bottom, rgb(25,56,61), rgb(44,102,111)); }
www/gui2/css/style.css
html { width: 100%; height: 100%; overflow: hidden; } body { width: 100%; height: 100%; overflow: hidden; font-family: helvetica, arial, "sans-serif"; font-size: 8pt; background: black; color: rgb(255,240,220); } a { color: rgb(255,160,40); text-decoration: none; } h1 { font-weight: bold; } .unselectable { -moz-user-select: none; -khtml-user-select: none; -webkit-user-select: none; user-select: none; } .grabbing { cursor: move !important; cursor: -moz-grabbing !important; } .clear { clear: both; } table { border-collapse: collapse; } th { text-align: left; font-weight: bold; padding: 5px 0px 2px 5px; } th:first-child { padding: 5px 0px 2px 0px; } td { text-align: left; padding: 5px 0px 0px 5px; } td:first-child { padding: 5px 0px 0px 0px; } tr.headerrow { text-align: center; border-bottom: solid 1px rgb(255,240,220); } tr.headerrow th { text-align: center; } table.datalist th { text-align: left; padding: 0px 10px 5px 0px; } table.datalist td { padding: 0px 0px 5px 0px; } ul.normal_list li { list-style-type: disc; margin-left: 20px; } #terkep { position: absolute; left: 0; top: 0; width: 100%; height: 100%; background: url(../img/map_background.jpg) repeat 0px 0px; } #terkep_eger_reteg { width: 100%; height: 100%; cursor: move; cursor: -moz-grab; } #terkep_hexak li { position: absolute; width: 286px; height: 248px; background-repeat: no-repeat; overflow: visible; } #terkep_hexak li div { position: absolute; top: -2px; left: -2px; width: 290px; height: 252px; background-repeat: no-repeat; overflow: visible; } #terkep_bolygok li { position: absolute; } .bolygo_klikk_terulet { cursor: pointer; } #terkep_flottak li { position: absolute; cursor: pointer; } #miniterkep { position: absolute; bottom: 0px; height: 176px; width: 100%; } #miniterkep_koordi { position: absolute; top: 0px; height: 16px; left: 5px; right: 5px; padding-left: 2px; overflow: hidden; white-space: nowrap; font-size: 8pt; } #miniterkep_belso { position: absolute; top: 21px; bottom: 5px; left: 5px; right: 5px; background: black url(../img/s8_map_150_40k.png) center center; overflow: hidden; } #miniterkep_jelolo { position: absolute; border: solid 1px rgb(255,0,0); border: solid 1px rgba(255,0,0,0.5); background: rgba(255,0,0,0.2); } #miniterkep_jelolo_x { position: absolute; background: rgb(255,0,0); background: rgba(255,0,0,0.5); width: 1px; height: 100%; } #miniterkep_jelolo_y { position: absolute; background: rgb(255,0,0); background: rgba(255,0,0,0.5); width: 100%; height: 1px; } .ablak { position: absolute; z-index: 20; border-color: rgb(27,62,68); border-style: solid; border-width: 1px; background: transparent url(../img/zanda_background.png) repeat; overflow: hidden; } .ablak_fejlec { background: rgb(27,62,68); border-style: solid; border-width: 1px; border-color: rgb(32,75,81) rgb(14,31,34) rgb(14,31,34) rgb(32,75,81); height: 20px; padding: 1px 4px; font-weight: bold; font-size: 11pt; } .ablak_fejlec .close_icon { position: absolute; top: 2px; right: 2px; width: 16px; height: 16px; background: transparent url(../img/zanda_close_icon.png); cursor: pointer; } .ablak_fejlec_menu { float: right; height: 16px; } .ablak_tartalom { position: absolute; top: 30px; bottom: 0px; left: 0px; right: 0px; padding: 5px; overflow: auto; overflow-x: hidden; } #bolygo_profil { left: -800px; width: 800px; top: 40px; bottom: 0px; display: none; } #bolygo_profil_felso_resz { height: 110px; } #bolygo_alap_adatok { position: absolute; left: 5px; width: 400px; top: 5px; } #bolygo_kep { position: absolute; left: 440px; width: 100px; top: 10px; height: 100px; color: rgb(255,240,220); font-weight: bold; } #bolygo_gala_kis { position: absolute; left: 550px; width: 100px; top: 10px; height: 100px; color: rgb(255,240,220); font-weight: bold; } #bolygo_gala_nagy { position: absolute; left: 660px; width: 100px; top: 10px; height: 100px; color: rgb(255,240,220); font-weight: bold; } .gyar_nev { font-weight: bold; width: 130px; } .gyar_aktiv { text-align: right; width: 75px; } .gyar_inaktiv { text-align: right; width: 75px; } .eroforras_nev { font-weight: bold; width: 80px; } .eroforras_keszlet { text-align: right; width: 100px; } .eroforras_delta { text-align: right; width: 100px; } .eroforras_netto { text-align: right; width: 100px; } .menu { border-color: rgb(27,62,68); background: transparent url(../img/zanda_background.png) repeat; z-index: 10; } .menu_section { background: transparent url(../img/zanda_50_black_1px.png) repeat; border-style: solid; border-width: 1px; border-color: rgb(14,31,34) rgb(32,75,81) rgb(32,75,81) rgb(14,31,34); } .menu button { margin-top: 5px; height: 29px; margin-left: 5px; margin-right: 0px; } #felso_menu { position: absolute; left: 150px; right: 0px; top: 0px; height: 40px; } #zanda_logo { position: absolute; top: 0px; right: 0px; width: 160px; height: 40px; background: transparent url(../img/zanda_logo_160x40.png); } #bal_menu { position: absolute; left: 0px; width: 150px; top: 0px; bottom: 0px; } #esemenyek { position: absolute; top: 5px; height: 150px; left: 5px; right: 5px; padding: 5px; } #bolygo_lista { position: absolute; top: 172px; bottom: 170px; left: 5px; right: 5px; overflow: hidden; padding: 5px 15px 5px 5px; } #bolygo_lista ul li { padding-left: 18px; padding-top: 2px; padding-bottom: 4px; } #minichat { position: absolute; bottom: 5px; height: 150px; left: 5px; right: 5px; padding: 5px; } #jobb_menu { position: absolute; right: 0px; width: 160px; top: 40px; bottom: 0px; } #flotta_lista { position: absolute; left: 5px; right: 5px; top: 0px; bottom: 391px; overflow: hidden; padding: 5px 15px 5px 5px; } #aktiv_flotta { position: absolute; bottom: 306px; height: 80px; left: 5px; right: 5px; } #kivalasztott_flotta { position: absolute; bottom: 181px; height: 120px; left: 5px; right: 5px; } #context_menu { position: absolute; display: none; z-index: 999; } .context_menu_item { position: absolute; background: transparent url(../img/context_menu_hexa.png); width: 64px; height: 48px; padding-top: 16px; text-align: center; cursor: pointer; font-size: 20pt; font-weight: bold; } #context_menu_item_a { left: 0px; top: 0px; } #context_menu_item_b { left: 0px; top: -70px; } #context_menu_item_c { left: -60px; top: -34px; } #context_menu_item_d { left: 60px; top: -34px; } #context_menu_item_e { left: -60px; top: 34px; } #context_menu_item_f { left: 60px; top: 34px; } #context_menu_item_g { left: 0px; top: 70px; } #tooltip { position: absolute; display: none; z-index: 10000; background: rgb(27,62,68); border: solid 1px rgb(32,75,81); -moz-box-shadow: 4px 4px 5px rgb(0,0,0); -webkit-box-shadow: 4px 4px 5px rgb(0,0,0); box-shadow: 4px 4px 5px rgb(0,0,0); padding: 10px; } #tooltips { display: none; } #loading { position: absolute; left: 50%; top: 50%; margin-left: -16px; margin-top: -16px; width: 32px; height: 32px; background: transparent url(../img/zanda_ze_32.png); display: none; z-index: 20000; } #loading_ajax { position: absolute; left: 8px; top: 8px; width: 16px; height: 16px; background: transparent url(../img/ajax-loader.gif); } .tab_list { /*width: 100%;*/ /*overflow: hidden;*/ height: 30px; border-bottom: solid 1px rgb(32,75,81); margin-top: 10px; margin-bottom: 10px; } .tab_list li { float: left; cursor: pointer; color: rgb(255,160,40); border-style: solid solid none solid; border-width: 1px 1px 0px 1px; border-color: rgb(32,75,81); padding: 5px; height: 19px; font-size: 10pt; font-weight: bold; background: rgb(27,62,68); margin-left: 5px; margin-right: 5px; } .tab_content { display: none; } .active_tab_content { display: block !important; } .active_tab { color: rgb(255,200,100) !important; padding-bottom: 6px !important; } button, .button { width: auto; margin: 0px; padding: 3px 5px; font-weight: bold; cursor: pointer; color: rgb(255,240,220); border: 1px solid rgb(32,75,81); border-radius: 3px; box-shadow: 0 1px 0 0 rgba(255,255,255,0.2) inset; background-clip: padding-box; background: rgb(26,60,66); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#33767f, endColorstr=#12282d); background: -webkit-gradient(linear, left top, left bottom, from(rgb(51,118,127)), to(rgb(18,40,45))); background: -moz-linear-gradient(top, rgb(51,118,127), rgb(18,40,45)); background: -o-linear-gradient(top, rgb(51,118,127), rgb(18,40,45)); background: linear-gradient(to bottom, rgb(51,118,127), rgb(18,40,45)); } button:hover, .button:hover, button:focus, .button:focus { background: rgb(33,76,82); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#3a868f, endColorstr=#19383d); background: -webkit-gradient(linear, left top, left bottom, from(rgb(58,134,143)), to(rgb(25,56,61))); background: -moz-linear-gradient(top, rgb(58,134,143), rgb(25,56,61)); background: -o-linear-gradient(top, rgb(58,134,143), rgb(25,56,61)); background: linear-gradient(to bottom, rgb(58,134,143), rgb(25,56,61)); text-decoration: none; } button:active, .button:active { background: rgb(39,91,99); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#19383d, endColorstr=#2c666f); background: -webkit-gradient(linear, left top, left bottom, from(rgb(25,56,61)), to(rgb(44,102,111))); background: -moz-linear-gradient(top, rgb(25,56,61), rgb(44,102,111)); background: -o-linear-gradient(top, rgb(25,56,61), rgb(44,102,111)); background: linear-gradient(to bottom, rgb(25,56,61), rgb(44,102,111)); }
0.321993
0.100834
* { margin: 0; padding: 0; } .container { height: 100%; width: 80%; margin: 0 auto; display: flex; flex-direction: column; } .box { margin: 15px 5px; } header { width: 100%; } main { flex-grow: 1; background-color: #FBFCFC; } footer { background-color: #D7DBDD; border-top: 3px solid #566573; width: 100%; } *{ margin: 0; padding: 0; text-decoration: none; list-style-type: none; } .centro{ text-align: center; } p{ font-family: Arial, sans-serif; font-size: 18px; } h1 { color:#101E3F ; } body{ font-family: Arial, Verdana, sans-serif; } fieldset{ border-bottom: 2px solid white; border-color: white; text-align: justify; margin: 10px; padding: 10px; } fieldset.codigo{ background: rgb(50,150,230); padding: 20px; } .img-card { width: 1200px; height: 1300px; margin: 0 auto 10px; display: block; } h2{ color: azure; font: bold; font-size: 14px; font-family: monospace ; } #container { width: 760px; text-align: left; margin: auto; } #header1 h1 { width: 204px; height: 21px; } #header1 h1 span { display: none; } #header2 h1 { width: 204px; height: 120px; } #linkList { position: absolute; top: 0; width: 555px; height: 21px; margin-left: 205px; } .container{ padding: 1px; width: 95%; margin: 25px ; display: flex; flex-direction: column; } .corner-all { border-radius: 5px; -webkit-border-radius: 5px; -moz-border-radius: 5px; -o-border-radius: 5px; -ms-border-radius: 5px; /* definindo o raio das bordas para todos os motores de navegadores */ } #sidebar-menu { margin-left:0px; /* definição da margem esquerda do menu */ } .menu-item { display: block; /* não permite que outros elementos da página sobreponham o nosso menu */ /*float: left;*/ width: 69.4em; /* largura do menu principal */ padding: 0em; /* espaçamento interno do menu principal */ background-color:rgb(100,180,230);/*#101E3F; /* cor de fundo para o menu principal */ /*border: 0.1em solid #FFFFFF; /* borda branca para destacar em fundos coloridos */ text-align: center; /* alinhamento do texto */ } .menu-item:hover .submenu { display: block; /* explicado acima */ padding: 0em; /* explicado acima */ } .menu-item span { font-size: 1.4em; /* tamanho da fonte do menu principal */ color: #FFFFFF; /* cor da fonte do menu principal */ font-family: cursive; /* tipo da fonte do menu principal */ font-weight: bold; /* negritando a fonte do menu principal */ } .submenu { position: relative; /* define que a posição do submenu vai ser relativa a sua tag pai */ display: none; /* não vai ser visivel por padrão */ background-color: #63b6f9; /* cor de fundo */ list-style: none; /* remove os marcadores padrão das listas */ } #linkList li { display: inline; } #linkList li a { width: 61px; height: 21px; } #headerFlash { position: absolute; top: 21px; width: 550px; margin-left: 204px; } .post-css footer { background-color: #2da0c3; }
EscolaApp_20190702/css/escola.css
* { margin: 0; padding: 0; } .container { height: 100%; width: 80%; margin: 0 auto; display: flex; flex-direction: column; } .box { margin: 15px 5px; } header { width: 100%; } main { flex-grow: 1; background-color: #FBFCFC; } footer { background-color: #D7DBDD; border-top: 3px solid #566573; width: 100%; } *{ margin: 0; padding: 0; text-decoration: none; list-style-type: none; } .centro{ text-align: center; } p{ font-family: Arial, sans-serif; font-size: 18px; } h1 { color:#101E3F ; } body{ font-family: Arial, Verdana, sans-serif; } fieldset{ border-bottom: 2px solid white; border-color: white; text-align: justify; margin: 10px; padding: 10px; } fieldset.codigo{ background: rgb(50,150,230); padding: 20px; } .img-card { width: 1200px; height: 1300px; margin: 0 auto 10px; display: block; } h2{ color: azure; font: bold; font-size: 14px; font-family: monospace ; } #container { width: 760px; text-align: left; margin: auto; } #header1 h1 { width: 204px; height: 21px; } #header1 h1 span { display: none; } #header2 h1 { width: 204px; height: 120px; } #linkList { position: absolute; top: 0; width: 555px; height: 21px; margin-left: 205px; } .container{ padding: 1px; width: 95%; margin: 25px ; display: flex; flex-direction: column; } .corner-all { border-radius: 5px; -webkit-border-radius: 5px; -moz-border-radius: 5px; -o-border-radius: 5px; -ms-border-radius: 5px; /* definindo o raio das bordas para todos os motores de navegadores */ } #sidebar-menu { margin-left:0px; /* definição da margem esquerda do menu */ } .menu-item { display: block; /* não permite que outros elementos da página sobreponham o nosso menu */ /*float: left;*/ width: 69.4em; /* largura do menu principal */ padding: 0em; /* espaçamento interno do menu principal */ background-color:rgb(100,180,230);/*#101E3F; /* cor de fundo para o menu principal */ /*border: 0.1em solid #FFFFFF; /* borda branca para destacar em fundos coloridos */ text-align: center; /* alinhamento do texto */ } .menu-item:hover .submenu { display: block; /* explicado acima */ padding: 0em; /* explicado acima */ } .menu-item span { font-size: 1.4em; /* tamanho da fonte do menu principal */ color: #FFFFFF; /* cor da fonte do menu principal */ font-family: cursive; /* tipo da fonte do menu principal */ font-weight: bold; /* negritando a fonte do menu principal */ } .submenu { position: relative; /* define que a posição do submenu vai ser relativa a sua tag pai */ display: none; /* não vai ser visivel por padrão */ background-color: #63b6f9; /* cor de fundo */ list-style: none; /* remove os marcadores padrão das listas */ } #linkList li { display: inline; } #linkList li a { width: 61px; height: 21px; } #headerFlash { position: absolute; top: 21px; width: 550px; margin-left: 204px; } .post-css footer { background-color: #2da0c3; }
0.372391
0.110136
.hm-t-container{ display: none; } .ft-wrap{ margin-top: 70px; width: 100%; border-top: 1px solid #eeeff2; background: #fff; } .ft-main-box{ width: 1240px; margin: 0 auto; overflow: hidden; } .ft-main{ margin: 35px 0; overflow: hidden; } .ft-main strong{ font-size: 14px; line-height: 30px; } .ft-main li{ width: 148px; height: 142px; padding-left: 20px; border-right: 1px solid #eeeff2; } .ft-main li.col-1{ padding-left: 0; } .main-wrap .ft-main li{ width: 148px; } .main-wrap .ft-main .ft-mobile{ padding-left: 23px; } .ft-main a{ display: block; line-height: 28px; font-size: 13px; color: #71767a; } .ft-main a.app-h5{ text-decoration: underline; color: #fff; } .ft-main a.ft-btn{ width: 105px; height: 30px; line-height: 28px; border-radius:3px; text-align: center; color: #fff; } .ft-main a.app{ background-color: #b9c1c7; border: 1px solid #abb4bd; } .ft-main a.app:hover{ background-color: #cad1d7; border: 1px solid #b8c1cb; } .ft-main a.app-ios{ margin-bottom: 10px; } .ft-main a.app-android{ margin-bottom: 10px; } .ft-main .ft-mobile{ width: 192px; border-right: 0; padding-left: 40px; } .ft-main .ft-mobile strong{ font-size: 24px; } .ft-main .ft-mobile p{ margin-bottom: 12px; } .ft-main .ft-customer { background-color: #e94643; border: 1px solid #e94643; } .ft-main .ft-customer:hover { background-color: #ff6c69; border: 1px solid #ff7673; } .ft-copyright{ width: 100%; padding-top: 15px; border-top: 1px solid #eeeff2; margin-bottom: 15px; overflow: hidden; } .ft-copyright a{ color: #525558; } .ft-safety{ overflow: hidden; width:548px; margin:24px auto; } .footer-info{ text-align: center; line-height: 22px; } .ft-safety li{ display: block; float: left; height: 44px; width: 125px; margin:0 6px; } .ft-safety li a{ display: block; width: 125px; height: 44px; } .ft-safety .safety-1 a{ background: url(../../images/footer_03.png) no-repeat right center; } .ft-safety .safety-2 a{ background: url(../../images/footer_05.png) no-repeat right center; } .ft-safety .safety-3 a{ background: url(../../images/footer_07.png) no-repeat right center; } .ft-safety .safety-4 a{ background: url(../../images/footer_09.png) no-repeat right center; } .icon-uniE615,.icon-uniE60C,.icon-uniE617,.icon-uniE60F,.icon-uniE61C { font-size: 26px; margin-top:12px; margin-left:15px; } .icon-iconfont-ios,.icon-iconfont-android { font-size:21px; margin-top:3px; margin-left:-5px; margin-right:7px; } .loading{ display: inline-block; height: 25px; color: #00bdd5; margin-right: 20px; } .loading i{ display: inline-block; width: 20px; height: 20px; overflow: hidden; background: url(../../images/load.gif) no-repeat; margin: 0 5px; }
public/home/css/app/footer.css
.hm-t-container{ display: none; } .ft-wrap{ margin-top: 70px; width: 100%; border-top: 1px solid #eeeff2; background: #fff; } .ft-main-box{ width: 1240px; margin: 0 auto; overflow: hidden; } .ft-main{ margin: 35px 0; overflow: hidden; } .ft-main strong{ font-size: 14px; line-height: 30px; } .ft-main li{ width: 148px; height: 142px; padding-left: 20px; border-right: 1px solid #eeeff2; } .ft-main li.col-1{ padding-left: 0; } .main-wrap .ft-main li{ width: 148px; } .main-wrap .ft-main .ft-mobile{ padding-left: 23px; } .ft-main a{ display: block; line-height: 28px; font-size: 13px; color: #71767a; } .ft-main a.app-h5{ text-decoration: underline; color: #fff; } .ft-main a.ft-btn{ width: 105px; height: 30px; line-height: 28px; border-radius:3px; text-align: center; color: #fff; } .ft-main a.app{ background-color: #b9c1c7; border: 1px solid #abb4bd; } .ft-main a.app:hover{ background-color: #cad1d7; border: 1px solid #b8c1cb; } .ft-main a.app-ios{ margin-bottom: 10px; } .ft-main a.app-android{ margin-bottom: 10px; } .ft-main .ft-mobile{ width: 192px; border-right: 0; padding-left: 40px; } .ft-main .ft-mobile strong{ font-size: 24px; } .ft-main .ft-mobile p{ margin-bottom: 12px; } .ft-main .ft-customer { background-color: #e94643; border: 1px solid #e94643; } .ft-main .ft-customer:hover { background-color: #ff6c69; border: 1px solid #ff7673; } .ft-copyright{ width: 100%; padding-top: 15px; border-top: 1px solid #eeeff2; margin-bottom: 15px; overflow: hidden; } .ft-copyright a{ color: #525558; } .ft-safety{ overflow: hidden; width:548px; margin:24px auto; } .footer-info{ text-align: center; line-height: 22px; } .ft-safety li{ display: block; float: left; height: 44px; width: 125px; margin:0 6px; } .ft-safety li a{ display: block; width: 125px; height: 44px; } .ft-safety .safety-1 a{ background: url(../../images/footer_03.png) no-repeat right center; } .ft-safety .safety-2 a{ background: url(../../images/footer_05.png) no-repeat right center; } .ft-safety .safety-3 a{ background: url(../../images/footer_07.png) no-repeat right center; } .ft-safety .safety-4 a{ background: url(../../images/footer_09.png) no-repeat right center; } .icon-uniE615,.icon-uniE60C,.icon-uniE617,.icon-uniE60F,.icon-uniE61C { font-size: 26px; margin-top:12px; margin-left:15px; } .icon-iconfont-ios,.icon-iconfont-android { font-size:21px; margin-top:3px; margin-left:-5px; margin-right:7px; } .loading{ display: inline-block; height: 25px; color: #00bdd5; margin-right: 20px; } .loading i{ display: inline-block; width: 20px; height: 20px; overflow: hidden; background: url(../../images/load.gif) no-repeat; margin: 0 5px; }
0.295636
0.105763
.goscale-plugins-videos { } h1 { font-family:Georgia; font-size: 22px; color:#2F2F2F; height:2.5em; margin: 20px auto 0 auto; width: 100%; } .videoListContainer { width: 100%; height: 146px; position: relative; padding: 20px 40px; box-sizing: border-box; } .videoListContainer .arrow { position: absolute; width: 27px; height: 27px; top: 60px; cursor: pointer; } .videoListContainer .arrow.disabled { visibility: hidden; } .videoListContainer .arrow.PrevScroll { background: url('../img/left.png') center center no-repeat; left: 0; } .videoListContainer .arrow.NextScroll { background: url('../img/right.png') center center no-repeat; right: 0; } .videoListContainer .videos { position: relative; width: 100%; height: 106px; overflow: hidden; } .videoListContainer .videos .VideosList { position: absolute; width: 20000em; height: 106px; } .videoListContainer .videos .VideosList .VideoItem { display: inline-block; padding: 0 5px; } .videoListContainer .videos .VideosList .VideoContainer { position: relative; width: 128px; height: 96px; border: 5px solid #444; cursor: pointer; } .videoListContainer .videos .VideosList .VideoContainer.selected { border-color: #bbb; } .videoListContainer .videos .VideosList .VideoContainer .VideoImage img { width: 128px; height: 96px; } .videoListContainer .videos .VideosList .VideoContainer .VideoTitle { position: absolute; left: 0; bottom: 0; width: 122px; height: auto; padding: 3px; background: url('../img/title-bg.png') left top repeat; font-weight: bold; text-align: left; color: #444; } .goscale-plugins-videos .video-content .selectedVideoContainer, .goscale-plugins-videos .video-content .selectedVideoInformation { width: 425px; margin: 0 auto; } .goscale-plugins-videos .video-content .selectedVideoInformation .VideoRating .rating-icon { display: inline-block; margin: 0; padding: 0; width: 60px; height: 12px; background: left top no-repeat; } .goscale-plugins-videos .video-content .selectedVideoInformation .VideoRating .rating-icon.icon-0 { background-image: url('../img/rating/0.gif'); } .goscale-plugins-videos .video-content .selectedVideoInformation .VideoRating .rating-icon.icon-5 { background-image: url('../img/rating/5.gif'); } .goscale-plugins-videos .video-content .selectedVideoInformation .VideoRating .rating-icon.icon-10 { background-image: url('../img/rating/10.gif'); } .goscale-plugins-videos .video-content .selectedVideoInformation .VideoRating .rating-icon.icon-15 { background-image: url('../img/rating/15.gif'); } .goscale-plugins-videos .video-content .selectedVideoInformation .VideoRating .rating-icon.icon-20 { background-image: url('../img/rating/20.gif'); } .goscale-plugins-videos .video-content .selectedVideoInformation .VideoRating .rating-icon.icon-25 { background-image: url('../img/rating/25.gif'); } .goscale-plugins-videos .video-content .selectedVideoInformation .VideoRating .rating-icon.icon-30 { background-image: url('../img/rating/30.gif'); } .goscale-plugins-videos .video-content .selectedVideoInformation .VideoRating .rating-icon.icon-35 { background-image: url('../img/rating/35.gif'); } .goscale-plugins-videos .video-content .selectedVideoInformation .VideoRating .rating-icon.icon-40 { background-image: url('../img/rating/40.gif'); } .goscale-plugins-videos .video-content .selectedVideoInformation .VideoRating .rating-icon.icon-45 { background-image: url('../img/rating/45.gif'); } .goscale-plugins-videos .video-content .selectedVideoInformation .VideoRating .rating-icon.icon-50 { background-image: url('../img/rating/50.gif'); } /* lightbox style */ .video-lb-container { display: none; } .selectedVideoContainer { min-height: 344px; min-width: 425px; } /* IE fixes */ body.ie .videoListContainer .videos .VideosList .VideoItem { *display: inline; } body.ie #sideBar .box-sidebar .boxcontent .boxbottom { *float: left; }
goscale/static/goscale/css/goscale.plugins.videos.css
.goscale-plugins-videos { } h1 { font-family:Georgia; font-size: 22px; color:#2F2F2F; height:2.5em; margin: 20px auto 0 auto; width: 100%; } .videoListContainer { width: 100%; height: 146px; position: relative; padding: 20px 40px; box-sizing: border-box; } .videoListContainer .arrow { position: absolute; width: 27px; height: 27px; top: 60px; cursor: pointer; } .videoListContainer .arrow.disabled { visibility: hidden; } .videoListContainer .arrow.PrevScroll { background: url('../img/left.png') center center no-repeat; left: 0; } .videoListContainer .arrow.NextScroll { background: url('../img/right.png') center center no-repeat; right: 0; } .videoListContainer .videos { position: relative; width: 100%; height: 106px; overflow: hidden; } .videoListContainer .videos .VideosList { position: absolute; width: 20000em; height: 106px; } .videoListContainer .videos .VideosList .VideoItem { display: inline-block; padding: 0 5px; } .videoListContainer .videos .VideosList .VideoContainer { position: relative; width: 128px; height: 96px; border: 5px solid #444; cursor: pointer; } .videoListContainer .videos .VideosList .VideoContainer.selected { border-color: #bbb; } .videoListContainer .videos .VideosList .VideoContainer .VideoImage img { width: 128px; height: 96px; } .videoListContainer .videos .VideosList .VideoContainer .VideoTitle { position: absolute; left: 0; bottom: 0; width: 122px; height: auto; padding: 3px; background: url('../img/title-bg.png') left top repeat; font-weight: bold; text-align: left; color: #444; } .goscale-plugins-videos .video-content .selectedVideoContainer, .goscale-plugins-videos .video-content .selectedVideoInformation { width: 425px; margin: 0 auto; } .goscale-plugins-videos .video-content .selectedVideoInformation .VideoRating .rating-icon { display: inline-block; margin: 0; padding: 0; width: 60px; height: 12px; background: left top no-repeat; } .goscale-plugins-videos .video-content .selectedVideoInformation .VideoRating .rating-icon.icon-0 { background-image: url('../img/rating/0.gif'); } .goscale-plugins-videos .video-content .selectedVideoInformation .VideoRating .rating-icon.icon-5 { background-image: url('../img/rating/5.gif'); } .goscale-plugins-videos .video-content .selectedVideoInformation .VideoRating .rating-icon.icon-10 { background-image: url('../img/rating/10.gif'); } .goscale-plugins-videos .video-content .selectedVideoInformation .VideoRating .rating-icon.icon-15 { background-image: url('../img/rating/15.gif'); } .goscale-plugins-videos .video-content .selectedVideoInformation .VideoRating .rating-icon.icon-20 { background-image: url('../img/rating/20.gif'); } .goscale-plugins-videos .video-content .selectedVideoInformation .VideoRating .rating-icon.icon-25 { background-image: url('../img/rating/25.gif'); } .goscale-plugins-videos .video-content .selectedVideoInformation .VideoRating .rating-icon.icon-30 { background-image: url('../img/rating/30.gif'); } .goscale-plugins-videos .video-content .selectedVideoInformation .VideoRating .rating-icon.icon-35 { background-image: url('../img/rating/35.gif'); } .goscale-plugins-videos .video-content .selectedVideoInformation .VideoRating .rating-icon.icon-40 { background-image: url('../img/rating/40.gif'); } .goscale-plugins-videos .video-content .selectedVideoInformation .VideoRating .rating-icon.icon-45 { background-image: url('../img/rating/45.gif'); } .goscale-plugins-videos .video-content .selectedVideoInformation .VideoRating .rating-icon.icon-50 { background-image: url('../img/rating/50.gif'); } /* lightbox style */ .video-lb-container { display: none; } .selectedVideoContainer { min-height: 344px; min-width: 425px; } /* IE fixes */ body.ie .videoListContainer .videos .VideosList .VideoItem { *display: inline; } body.ie #sideBar .box-sidebar .boxcontent .boxbottom { *float: left; }
0.310172
0.09782
body{ margin:0; padding:0; box-sizing: border-box; background-color: #eee; font-family: 'Lato', sans-serif; } #Header { display: flex; flex-direction: column; align-items: center; padding: 15px 15px 5px 15px; position: fixed; width:93vw; top:0; right:0; left:0; background-color: #eee; } #logo > img{ max-width: 300px; margin-bottom: 12px; margin-right: 35px; } #topnav > a{ display: block; text-align: center; text-decoration: none; color: #000; font-weight: 400; font-size: 1em; margin-bottom: 5px; } @media screen and (min-width: 576px){ #Header { flex-direction: row; } #logo{ width: 65vw; } #topnav{ width: 35vw; } } @media screen and (min-width: 650px){ #topnav{ display: flex; flex-direction: row; justify-content: space-between; } #topnav > a{ margin-right: 15px; white-space: nowrap; } section{ margin-top: 70px !important; } } section{ margin-top: 147px; } #contact{ text-align:center; display: flex; flex-direction: column; align-items: center; } #email{ min-width: 265px; padding: 5px; margin-bottom: 15px; } button{ display: block; border: 0; background-color: #f1c40f; cursor: pointer; font-size: 16px; } #submit{ font-weight: bold; padding: 6px 17px 6px 17px; } #features{ display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; margin-top: 60px !important; max-width: 1000px !important; width: 100%; margin: auto; } .icon{ display:none; } .grid{ width: 100%; margin-bottom: 68px; } .desc h2, .desc p { margin: 0; } @media screen and (min-width:551px){ .grid{ display: flex; margin-bottom: 9px; } .icon{ display: flex; align-items: center; justify-content: center; height: 125px; width: 20vw; color: darkorange; } .desc{ display: flex; flex-direction: column; justify-content: center; height: 125px; width: 80vw; text-align: left; } #features{ margin-top: 80px !important; } } #videoPlayer{ display: flex; justify-content: center; } #video{ max-width: 560px; width: 100%; } #product{ margin-top: 60px; display: flex; align-items: center; flex-direction: column; justify-content: center; } .product{ display: flex; flex-direction: column; align-items: center; text-align: center; border: 1px solid #000; border-radius: 3px; max-width: 300px; width: 100%; margin: 0 auto; margin-bottom: 10px; } @media screen and (min-width: 800px){ #product{ flex-direction: row; } .product{ width: calc(100% / 3); margin: 10px; } } .type{ background-color: #ddd; color: black; padding: 15px 0; width: 100%; text-transform: uppercase; font-weight: 700; } .product > p { padding: 5px 0; margin: 0; } .product > button { margin: 30px 0 15px 0; padding: 0 20px; height: 40px; font-size: 1em; border-radius: 2px; } #footer{ max-width: 1000px; width: 100%; margin: 0 auto; } footer { margin-top: 30px; background-color: #ddd; padding: 20px; } footer > ul { display: flex; justify-content: flex-end; margin: 0 auto; } footer > ul > li { padding: 0 10px; } li { list-style: none; } a:link { color: inherit; text-decoration: none; } footer > span { margin-top: 5px; display: flex; justify-content: flex-end; font-size: 0.9em; color: #444; }
index.css
body{ margin:0; padding:0; box-sizing: border-box; background-color: #eee; font-family: 'Lato', sans-serif; } #Header { display: flex; flex-direction: column; align-items: center; padding: 15px 15px 5px 15px; position: fixed; width:93vw; top:0; right:0; left:0; background-color: #eee; } #logo > img{ max-width: 300px; margin-bottom: 12px; margin-right: 35px; } #topnav > a{ display: block; text-align: center; text-decoration: none; color: #000; font-weight: 400; font-size: 1em; margin-bottom: 5px; } @media screen and (min-width: 576px){ #Header { flex-direction: row; } #logo{ width: 65vw; } #topnav{ width: 35vw; } } @media screen and (min-width: 650px){ #topnav{ display: flex; flex-direction: row; justify-content: space-between; } #topnav > a{ margin-right: 15px; white-space: nowrap; } section{ margin-top: 70px !important; } } section{ margin-top: 147px; } #contact{ text-align:center; display: flex; flex-direction: column; align-items: center; } #email{ min-width: 265px; padding: 5px; margin-bottom: 15px; } button{ display: block; border: 0; background-color: #f1c40f; cursor: pointer; font-size: 16px; } #submit{ font-weight: bold; padding: 6px 17px 6px 17px; } #features{ display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; margin-top: 60px !important; max-width: 1000px !important; width: 100%; margin: auto; } .icon{ display:none; } .grid{ width: 100%; margin-bottom: 68px; } .desc h2, .desc p { margin: 0; } @media screen and (min-width:551px){ .grid{ display: flex; margin-bottom: 9px; } .icon{ display: flex; align-items: center; justify-content: center; height: 125px; width: 20vw; color: darkorange; } .desc{ display: flex; flex-direction: column; justify-content: center; height: 125px; width: 80vw; text-align: left; } #features{ margin-top: 80px !important; } } #videoPlayer{ display: flex; justify-content: center; } #video{ max-width: 560px; width: 100%; } #product{ margin-top: 60px; display: flex; align-items: center; flex-direction: column; justify-content: center; } .product{ display: flex; flex-direction: column; align-items: center; text-align: center; border: 1px solid #000; border-radius: 3px; max-width: 300px; width: 100%; margin: 0 auto; margin-bottom: 10px; } @media screen and (min-width: 800px){ #product{ flex-direction: row; } .product{ width: calc(100% / 3); margin: 10px; } } .type{ background-color: #ddd; color: black; padding: 15px 0; width: 100%; text-transform: uppercase; font-weight: 700; } .product > p { padding: 5px 0; margin: 0; } .product > button { margin: 30px 0 15px 0; padding: 0 20px; height: 40px; font-size: 1em; border-radius: 2px; } #footer{ max-width: 1000px; width: 100%; margin: 0 auto; } footer { margin-top: 30px; background-color: #ddd; padding: 20px; } footer > ul { display: flex; justify-content: flex-end; margin: 0 auto; } footer > ul > li { padding: 0 10px; } li { list-style: none; } a:link { color: inherit; text-decoration: none; } footer > span { margin-top: 5px; display: flex; justify-content: flex-end; font-size: 0.9em; color: #444; }
0.233881
0.063308
.native-js { visibility: hidden; transition: all .25s ease-in-out; opacity: 0; flex-flow: column nowrap; transform: translateY(calc(100% - 35px)); } .native-show { visibility: visible; position: fixed; width: 100%; bottom: 0; box-shadow: 0 -1px 4px 1px hsla(0, 0%, 0%, .15); opacity: 1; z-index: 10; } .native-show:hover { transform: translateY(0); } .native-img { margin-right: 20px; max-height: 50px; border-radius: 3px; width: auto; } .native-sponsor { margin: 10px 20px; text-align: center; text-transform: uppercase; transform-origin: left; letter-spacing: .5px; transition: all .3s ease-in-out; font-size: 12px; } .native-show:hover .native-sponsor { transform: scaleY(0); margin: 0 20px; opacity: 0; } .native-flex { display: flex; padding: 20px 20px 40px; text-decoration: none; flex-flow: row nowrap; justify-content: space-between; align-items: center; } .native-main { display: flex; flex-flow: row nowrap; align-items: center; } .native-details { display: flex; margin-right: 30px; flex-flow: column nowrap; } .native-company { margin-bottom: 4px; text-transform: uppercase; letter-spacing: 2px; font-size: 10px; } .native-desc { letter-spacing: 1px; font-weight: 300; line-height: 1.4; } .native-cta { padding: 10px 14px; border-radius: 3px; box-shadow: 0 6px 13px 0 hsla(0, 0%, 0%, .15); text-transform: uppercase; white-space: nowrap; letter-spacing: 1px; font-weight: 400; font-size: 12px; transition: all .3s ease-in-out; transform: translateY(-1px); } .native-cta:hover { box-shadow: none; transform: translateY(1px); } @media only screen and (min-width: 320px) and (max-width: 759px) { .native-flex { flex-wrap: wrap; flex-direction: column; } .native-img { margin: 0; } .native-details { margin: 0; } .native-main { margin-bottom: 20px; flex-wrap: wrap; flex-direction: column; text-align: center; align-content: center; } }
docs/css/flexcpc.css
.native-js { visibility: hidden; transition: all .25s ease-in-out; opacity: 0; flex-flow: column nowrap; transform: translateY(calc(100% - 35px)); } .native-show { visibility: visible; position: fixed; width: 100%; bottom: 0; box-shadow: 0 -1px 4px 1px hsla(0, 0%, 0%, .15); opacity: 1; z-index: 10; } .native-show:hover { transform: translateY(0); } .native-img { margin-right: 20px; max-height: 50px; border-radius: 3px; width: auto; } .native-sponsor { margin: 10px 20px; text-align: center; text-transform: uppercase; transform-origin: left; letter-spacing: .5px; transition: all .3s ease-in-out; font-size: 12px; } .native-show:hover .native-sponsor { transform: scaleY(0); margin: 0 20px; opacity: 0; } .native-flex { display: flex; padding: 20px 20px 40px; text-decoration: none; flex-flow: row nowrap; justify-content: space-between; align-items: center; } .native-main { display: flex; flex-flow: row nowrap; align-items: center; } .native-details { display: flex; margin-right: 30px; flex-flow: column nowrap; } .native-company { margin-bottom: 4px; text-transform: uppercase; letter-spacing: 2px; font-size: 10px; } .native-desc { letter-spacing: 1px; font-weight: 300; line-height: 1.4; } .native-cta { padding: 10px 14px; border-radius: 3px; box-shadow: 0 6px 13px 0 hsla(0, 0%, 0%, .15); text-transform: uppercase; white-space: nowrap; letter-spacing: 1px; font-weight: 400; font-size: 12px; transition: all .3s ease-in-out; transform: translateY(-1px); } .native-cta:hover { box-shadow: none; transform: translateY(1px); } @media only screen and (min-width: 320px) and (max-width: 759px) { .native-flex { flex-wrap: wrap; flex-direction: column; } .native-img { margin: 0; } .native-details { margin: 0; } .native-main { margin-bottom: 20px; flex-wrap: wrap; flex-direction: column; text-align: center; align-content: center; } }
0.615781
0.08152
@-moz-document domain("www.theguardian.com") { .content-footer--pillar-news:not(.paid-content) ._underline_1lj47_3, .content-footer--pillar-news:not(.paid-content) .d-show-more-replies__button, .content-footer--pillar-news:not(.paid-content) .d-comment__action, .content-footer--pillar-news:not(.paid-content) .d-comment__author a[href], .content-footer--pillar-news:not(.paid-content) .d-comment__reply-to-author, .content-footer--pillar-news:not(.paid-content) .js-discussion-author-link, .content-footer--pillar-news ._underline_1lj47_3, .content-footer--pillar-news .d-show-more-replies__button, .content-footer--pillar-news .d-comment__action, .content-footer--pillar-news .d-comment__author a[href], .content-footer--pillar-news .d-comment__reply-to-author, .content-footer--pillar-news .js-discussion-author-link, .paid-content ._underline_1lj47_3, .paid-content .d-show-more-replies__button, .paid-content .d-comment__action, .paid-content .d-comment__author a[href], .paid-content .d-comment__reply-to-author, .paid-content .js-discussion-author-link { color: #08b; } .content--pillar-news:not(.paid-content) .byline, .content--pillar-news:not(.paid-content) .content--media .content__headline, .content--pillar-news:not(.paid-content) .old-article-message, .content--pillar-news:not(.paid-content) .pullquote-cite, .content--pillar-news:not(.paid-content) .content__section-label__link, .content--pillar-news:not(.paid-content) a, .content--pillar-news:not(.paid-content) .drop-cap, .content--pillar-news:not(.paid-content) .element-pullquote p, .content--pillar-news.content--type-feature:not(.paid-content) .content__headline, .content--pillar-news.content--type-review:not(.paid-content) .content__headline, .content--pillar-news:not(.paid-content) .u-underline, .content--pillar-news .byline, .content--pillar-news .content--media .content__headline, .content--pillar-news .old-article-message, .content--pillar-news .pullquote-cite, .content--pillar-news .content__section-label__link, .content--pillar-news a, .paid-content .byline, .paid-content .content--media .content__headline, .paid-content .old-article-message, .paid-content .pullquote-cite, .paid-content .content__section-label__link, .paid-content a, .content--pillar-news .button--secondary, .content--pillar-news .drop-cap, .content--pillar-news .element-pullquote p, .content--pillar-news.content--type-feature .content__headline, .content--pillar-news.content--type-review .content__headline, .content--pillar-news .u-underline, .paid-content .button--secondary, .paid-content .drop-cap, .paid-content .element-pullquote p, .paid-content.content--type-feature .content__headline, .paid-content.content--type-review .content__headline, .paid-content .u-underline { color: #08b; } .fc-item--pillar-news .fc-item__kicker { color: #08b; } .fc-today .fc-today__sub, .fc-sublink--pillar-news .fc-sublink__kicker{ color: #08b; } .fc-item--pillar-news .inline-icon { fill: #08b; } .pillar-link.pillar-link--News:after { border-color:#005; } .fc-item--type-interview.fc-item--pillar-news .fc-item__headline, .fc-item--pillar-news.fc-item--type-feature .fc-item__headline { color:#005 ; } .content-footer--pillar-news:not(.paid-content) .button--primary, .button--primary:hover, .button--primary:focus, .button--primary:active { background-color: #08b; border-color: #08b; } .content--liveblog.content--pillar-news .tonal__standfirst, .content--liveblog.content--pillar-news .content__header, .fc-item--live.fc-item--type-matchreport.fc-item--pillar-news, .fc-item--type-live.fc-item--pillar-news { background: #08b; } body .fc-item--pillar-news .fc-item__container:before { background: #068; } .new-header { background: #38a; color: white; } .veggie-burger { background: antiquewhite; color: black; } svg.inline-the-guardian-logo__svg.inline-logo__svg path { fill: antiquewhite; } .pillars a.pillar-link { color: antiqueWhite; } .content--liveblog .content__standfirst, .content--media .content__standfirst, .content--type-analysis .content__standfirst, .content--type-article .content__standfirst, .content--type-comment .content__standfirst, .content--type-feature .content__standfirst, .content--type-guardianview .content__standfirst, .content--type-immersive .content__standfirst, .content--type-interview .content__standfirst, .content--type-live .content__standfirst, .content--type-matchreport .content__standfirst, .content--type-media .content__standfirst, .content--type-review .content__standfirst, .content--type-quiz .content__standfirst { font-weight: normal; font-style: italic; } .new-header:not(.new-header--slim):after { background: none; height: 0.05rem; } .fc-item--type-comment .fc-item__container>.fc-item__meta { background: none; } }
data/usercss/154284.user.css
@-moz-document domain("www.theguardian.com") { .content-footer--pillar-news:not(.paid-content) ._underline_1lj47_3, .content-footer--pillar-news:not(.paid-content) .d-show-more-replies__button, .content-footer--pillar-news:not(.paid-content) .d-comment__action, .content-footer--pillar-news:not(.paid-content) .d-comment__author a[href], .content-footer--pillar-news:not(.paid-content) .d-comment__reply-to-author, .content-footer--pillar-news:not(.paid-content) .js-discussion-author-link, .content-footer--pillar-news ._underline_1lj47_3, .content-footer--pillar-news .d-show-more-replies__button, .content-footer--pillar-news .d-comment__action, .content-footer--pillar-news .d-comment__author a[href], .content-footer--pillar-news .d-comment__reply-to-author, .content-footer--pillar-news .js-discussion-author-link, .paid-content ._underline_1lj47_3, .paid-content .d-show-more-replies__button, .paid-content .d-comment__action, .paid-content .d-comment__author a[href], .paid-content .d-comment__reply-to-author, .paid-content .js-discussion-author-link { color: #08b; } .content--pillar-news:not(.paid-content) .byline, .content--pillar-news:not(.paid-content) .content--media .content__headline, .content--pillar-news:not(.paid-content) .old-article-message, .content--pillar-news:not(.paid-content) .pullquote-cite, .content--pillar-news:not(.paid-content) .content__section-label__link, .content--pillar-news:not(.paid-content) a, .content--pillar-news:not(.paid-content) .drop-cap, .content--pillar-news:not(.paid-content) .element-pullquote p, .content--pillar-news.content--type-feature:not(.paid-content) .content__headline, .content--pillar-news.content--type-review:not(.paid-content) .content__headline, .content--pillar-news:not(.paid-content) .u-underline, .content--pillar-news .byline, .content--pillar-news .content--media .content__headline, .content--pillar-news .old-article-message, .content--pillar-news .pullquote-cite, .content--pillar-news .content__section-label__link, .content--pillar-news a, .paid-content .byline, .paid-content .content--media .content__headline, .paid-content .old-article-message, .paid-content .pullquote-cite, .paid-content .content__section-label__link, .paid-content a, .content--pillar-news .button--secondary, .content--pillar-news .drop-cap, .content--pillar-news .element-pullquote p, .content--pillar-news.content--type-feature .content__headline, .content--pillar-news.content--type-review .content__headline, .content--pillar-news .u-underline, .paid-content .button--secondary, .paid-content .drop-cap, .paid-content .element-pullquote p, .paid-content.content--type-feature .content__headline, .paid-content.content--type-review .content__headline, .paid-content .u-underline { color: #08b; } .fc-item--pillar-news .fc-item__kicker { color: #08b; } .fc-today .fc-today__sub, .fc-sublink--pillar-news .fc-sublink__kicker{ color: #08b; } .fc-item--pillar-news .inline-icon { fill: #08b; } .pillar-link.pillar-link--News:after { border-color:#005; } .fc-item--type-interview.fc-item--pillar-news .fc-item__headline, .fc-item--pillar-news.fc-item--type-feature .fc-item__headline { color:#005 ; } .content-footer--pillar-news:not(.paid-content) .button--primary, .button--primary:hover, .button--primary:focus, .button--primary:active { background-color: #08b; border-color: #08b; } .content--liveblog.content--pillar-news .tonal__standfirst, .content--liveblog.content--pillar-news .content__header, .fc-item--live.fc-item--type-matchreport.fc-item--pillar-news, .fc-item--type-live.fc-item--pillar-news { background: #08b; } body .fc-item--pillar-news .fc-item__container:before { background: #068; } .new-header { background: #38a; color: white; } .veggie-burger { background: antiquewhite; color: black; } svg.inline-the-guardian-logo__svg.inline-logo__svg path { fill: antiquewhite; } .pillars a.pillar-link { color: antiqueWhite; } .content--liveblog .content__standfirst, .content--media .content__standfirst, .content--type-analysis .content__standfirst, .content--type-article .content__standfirst, .content--type-comment .content__standfirst, .content--type-feature .content__standfirst, .content--type-guardianview .content__standfirst, .content--type-immersive .content__standfirst, .content--type-interview .content__standfirst, .content--type-live .content__standfirst, .content--type-matchreport .content__standfirst, .content--type-media .content__standfirst, .content--type-review .content__standfirst, .content--type-quiz .content__standfirst { font-weight: normal; font-style: italic; } .new-header:not(.new-header--slim):after { background: none; height: 0.05rem; } .fc-item--type-comment .fc-item__container>.fc-item__meta { background: none; } }
0.139572
0.055592
body { background-color: #f8f8f8; } .loader { position: absolute; left: 50%; top: 50%; z-index: 1; width: 50px; height: 50px; margin: -25px 0 0 -25px; -webkit-animation: spin 2s linear infinite; animation: spin 1s linear infinite; border: 5px solid #f3f3f3; border-top: 5px solid #555; border-radius: 50%; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } .content{ font-weight: bold; color: black; } .welcomeHead{ color: red; font-family: 'Open Sans', sans-serif; text-align: center; } .Next { -moz-box-shadow:inset 0px 1px 0px 0px #bbdaf7; -webkit-box-shadow:inset 0px 1px 0px 0px #bbdaf7; box-shadow:inset 0px 1px 0px 0px #bbdaf7; background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #ff6666), color-stop(1, #ff0000)); background:-moz-linear-gradient(top, #ff6666 5%, #ff0000 100%); background:-webkit-linear-gradient(top, #ff6666 5%, #ff0000 100%); background:-o-linear-gradient(top, #ff6666 5%, #ff0000 100%); background:-ms-linear-gradient(top, #ff6666 5%, #ff0000 100%); background:linear-gradient(to bottom, #ff6666 5%, #ff0000 100%); filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#79bbff', endColorstr='#378de5',GradientType=0); background-color:#ff6666; -moz-border-radius:6px; -webkit-border-radius:6px; border-radius:6px; border:1px solid #ff6666; display:inline-block; cursor:pointer; color:#ffffff; font-family: 'Open Sans Condensed', sans-serif; font-size:20px; font-weight:bold; padding:6px; text-decoration:none; text-shadow:0px 1px 0px #ff6666; top: 100px; right: 0px; left: 0px; width: 300px; height: 30px; text-align: center; } .Next:hover { background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #ff0000), color-stop(1, #ff6666)); background:-moz-linear-gradient(top, #ff0000 5%, #ff6666 100%); background:-webkit-linear-gradient(top, #ff0000 5%, #ff6666 100%); background:-o-linear-gradient(top, #ff0000 5%, #ff6666 100%); background:-ms-linear-gradient(top, #ff0000 5%, #ff6666 100%); background:linear-gradient(to bottom, #ff0000 5%, #ff6666 100%); filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#378de5', endColorstr='#79bbff',GradientType=0); background-color:#ff6666; } .Next:active { position:relative; top:1px; } .dropDown{ width: 250px; text-align: center; font-size: 16px; height: 35px; }
src/styles.css
body { background-color: #f8f8f8; } .loader { position: absolute; left: 50%; top: 50%; z-index: 1; width: 50px; height: 50px; margin: -25px 0 0 -25px; -webkit-animation: spin 2s linear infinite; animation: spin 1s linear infinite; border: 5px solid #f3f3f3; border-top: 5px solid #555; border-radius: 50%; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } .content{ font-weight: bold; color: black; } .welcomeHead{ color: red; font-family: 'Open Sans', sans-serif; text-align: center; } .Next { -moz-box-shadow:inset 0px 1px 0px 0px #bbdaf7; -webkit-box-shadow:inset 0px 1px 0px 0px #bbdaf7; box-shadow:inset 0px 1px 0px 0px #bbdaf7; background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #ff6666), color-stop(1, #ff0000)); background:-moz-linear-gradient(top, #ff6666 5%, #ff0000 100%); background:-webkit-linear-gradient(top, #ff6666 5%, #ff0000 100%); background:-o-linear-gradient(top, #ff6666 5%, #ff0000 100%); background:-ms-linear-gradient(top, #ff6666 5%, #ff0000 100%); background:linear-gradient(to bottom, #ff6666 5%, #ff0000 100%); filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#79bbff', endColorstr='#378de5',GradientType=0); background-color:#ff6666; -moz-border-radius:6px; -webkit-border-radius:6px; border-radius:6px; border:1px solid #ff6666; display:inline-block; cursor:pointer; color:#ffffff; font-family: 'Open Sans Condensed', sans-serif; font-size:20px; font-weight:bold; padding:6px; text-decoration:none; text-shadow:0px 1px 0px #ff6666; top: 100px; right: 0px; left: 0px; width: 300px; height: 30px; text-align: center; } .Next:hover { background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #ff0000), color-stop(1, #ff6666)); background:-moz-linear-gradient(top, #ff0000 5%, #ff6666 100%); background:-webkit-linear-gradient(top, #ff0000 5%, #ff6666 100%); background:-o-linear-gradient(top, #ff0000 5%, #ff6666 100%); background:-ms-linear-gradient(top, #ff0000 5%, #ff6666 100%); background:linear-gradient(to bottom, #ff0000 5%, #ff6666 100%); filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#378de5', endColorstr='#79bbff',GradientType=0); background-color:#ff6666; } .Next:active { position:relative; top:1px; } .dropDown{ width: 250px; text-align: center; font-size: 16px; height: 35px; }
0.422147
0.103115
body { background: #5099be url(../img/bg-wall-blue.jpg) repeat-x center top; margin: 0; padding: 0; color: #333; } h1, h2, h3, h4 { font-family: 'Play', sans-serif; } a { color: #fff; } a:hover { color: #fff; } a:active, a:focus { outline: 0; } textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input { border-color: rgba(0, 0, 0, 0.3); -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3) inset, 0px 0px 0px rgba(0, 0, 0, 0.4); -moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3) inset, 0px 0px 0px rgba(0, 0, 0, 0.4); box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3) inset, 0px 0px 0px rgba(0, 0, 0, 0.4); } textarea:focus, input[type="text"]:focus, input[type="password"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, input[type="number"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="color"]:focus, .uneditable-input:focus { outline: 0; border-color: rgba(0, 0, 0, 0.6); -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3) inset, 0px 0px 0px rgba(0, 0, 0, 0.4); -moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3) inset, 0px 0px 0px rgba(0, 0, 0, 0.4); box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3) inset, 0px 0px 8px rgba(0, 0, 0, 0.4); } .btn { font-family: 'Play', sans-serif; } .btn:active, .btn:focus { outline: 0; } /* * * * * * * * * * * * * * Custom container * * * * * * * * * * * * * */ .container-narrow { margin: 0 auto; max-width: 900px; } /* * * * * * * * * * * * * * Shadow Background * * * * * * * * * * * * * */ .bg-container-left { background: url(../img/bg-topleft.png) no-repeat top left; } .bg-container-right { background: url(../img/bg-topright.png) no-repeat top right; padding-top: 60px; } /* * * * * * * * * * * * * * Logo * * * * * * * * * * * * * */ .masthead h1.logo { margin: 0; padding: 0; padding-bottom: 20px; font-family: 'Play', sans-serif; font-size: 72px; letter-spacing: -2px; white-space: nowrap; color: #e5e5e5 !important; text-shadow: 0 3px 2px rgba(0, 0, 0, 0.4); } .masthead h1.logo a { color: #e5e5e5 !important; } .masthead h1.logo a:hover { text-decoration: none; } /* * * * * * * * * * * * * * Social Icons List * * * * * * * * * * * * * */ .masthead ul.social { padding: 0; margin: 0; list-style: none; text-align: right; } .masthead ul.social li { float: none; padding: 0; margin: 0; margin-top: 15px; padding-right: 0px; display: inline-block; text-align: center; } .masthead ul.social li a { width: 32px; height: 32px; display: inline-block; padding: 0; margin: 0; -o-transition: all .3s; -moz-transition: all .3s; -webkit-transition: all .3s; -ms-transition: all .3s; } .masthead ul.social li a:hover { background-position: top center; } /* * * * * * * * * * * * * * Social Icons * * * * * * * * * * * * * */ .facebook { background: url(../img/icons/facebook.png) no-repeat bottom center; } .twitter { background: url(../img/icons/twitter.png) no-repeat bottom center; } .tumblr { background: url(../img/icons/tumblr.png) no-repeat bottom center; } .dribbble { background: url(../img/icons/dribbble.png) no-repeat bottom center; } .behance { background: url(../img/icons/behance.png) no-repeat bottom center; } .linkedin { background: url(../img/icons/linkedin.png) no-repeat bottom center; } .rss { background: url(../img/icons/rss.png) no-repeat bottom center; } .delicious { background: url(../img/icons/delicious.png) no-repeat bottom center; } .deviantart { background: url(../img/icons/deviantart.png) no-repeat bottom center; } .digg { background: url(../img/icons/digg.png) no-repeat bottom center; } .flickr { background: url(../img/icons/flickr.png) no-repeat bottom center; } .lastfm { background: url(../img/icons/lastfm.png) no-repeat bottom center; } .myspace { background: url(../img/icons/myspace.png) no-repeat bottom center; } .picasa { background: url(../img/icons/picasa.png) no-repeat bottom center; } .sharethis { background: url(../img/icons/sharethis.png) no-repeat bottom center; } .skype { background: url(../img/icons/skype.png) no-repeat bottom center; } .vimeo { background: url(../img/icons/vimeo.png) no-repeat bottom center; } .yahoo { background: url(../img/icons/yahoo.png) no-repeat bottom center; } .wordpress { background: url(../img/icons/wordpress.png) no-repeat bottom center; } .blogger { background: url(../img/icons/blogger.png) no-repeat bottom center; } .email { background: url(../img/icons/email.png) no-repeat bottom center; } .youtube { background: url(../img/icons/youtube.png) no-repeat bottom center; } .pinterest { background: url(../img/icons/pinterest.png) no-repeat bottom center; } .github { background: url(../img/icons/github.png) no-repeat bottom center; } .stumbleupon { background: url(../img/icons/stumbleupon.png) no-repeat bottom center; } .instagram { background: url(../img/icons/instagram.png) no-repeat bottom center; } .spotify { background: url(../img/icons/spotify.png) no-repeat bottom center; } .reddit { background: url(../img/icons/reddit.png) no-repeat bottom center; } .googleplus { background: url(../img/icons/googleplus.png) no-repeat bottom center; } .paypal { background: url(../img/icons/paypal.png) no-repeat bottom center; } /* * * * * * * * * * * * * * Main content * * * * * * * * * * * * * */ .main { margin: 60px 0 60px 0; text-align: center; } .main .countdown-split { display: inline-block; } .main h1 { margin-top: 40px; margin-bottom: 5px; font-family: 'Play', sans-serif; font-size: 60px; letter-spacing: -3px; line-height: 1; color: #333 !important; } .main .lead { color: #333; margin-bottom: 10px; } /* * * * * * * * * * * * * * Countdown Buttons * * * * * * * * * * * * * */ .btn-custom { margin: 7px 5px; text-align: left; min-width: 120px; height: 100px; cursor: default; } .btn-custom { -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px; -webkit-box-shadow: inset 0 2px 10px rgba(0,0,0,.3), 0 4px 6px rgba(0,0,0,.6); -moz-box-shadow: inset 0 2px 10px rgba(0,0,0,.3), 0 4px 6px rgba(0,0,0,.6); box-shadow: inset 0 2px 10px rgba(0,0,0,.3), 0 4px 6px rgba(0,0,0,.6); -webkit-transition: none; -moz-transition: none; transition: none; } .btn-custom:hover { background-position: 0px -25px; -webkit-box-shadow: inset 0 2px 10px rgba(0,0,0,.3), 0 4px 6px rgba(0,0,0,.6); -moz-box-shadow: inset 0 2px 10px rgba(0,0,0,.3), 0 4px 6px rgba(0,0,0,.6); box-shadow: inset 0 2px 10px rgba(0,0,0,.3), 0 4px 6px rgba(0,0,0,.6); } .btn-custom:active { outline: 0; -webkit-box-shadow: inset 0 2px 10px rgba(0,0,0,.3), 0 4px 6px rgba(0,0,0,.6); -moz-box-shadow: inset 0 2px 10px rgba(0,0,0,.3), 0 4px 6px rgba(0,0,0,.6); box-shadow: inset 0 2px 10px rgba(0,0,0,.3), 0 4px 6px rgba(0,0,0,.6); } .btn-custom, .btn-custom:active { background-color: hsl(138, 0%, 56%) !important; background-image: -khtml-gradient(linear, left top, left bottom, from(#ffffff), to(#8e8e8e)); background-image: -moz-linear-gradient(top, #ffffff, #8e8e8e); background-image: -ms-linear-gradient(top, #ffffff, #8e8e8e); background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #8e8e8e)); background-image: -webkit-linear-gradient(top, #ffffff, #8e8e8e); background-image: -o-linear-gradient(top, #ffffff, #8e8e8e); background-image: linear-gradient(#ffffff, #8e8e8e); -pie-background: linear-gradient(#ffffff, #8e8e8e); /*PIE*/ border-color: #e6e6e6 #e6e6e6 #bfbfbf; border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); border-top-color: #a2a2a2; border-bottom-color: #a2a2a2; color: #333 !important; text-shadow: 0 1px 1px rgba(255, 255, 255, 0.6); } /* * * * * * * * * * * * * * Countdown Text * * * * * * * * * * * * * */ .btn-custom span.cname { display: block; width: 85px; position: relative; left: -47px; top: 30px; text-align: right; font-family: 'Play', sans-serif; font-size: 18px; font-weight: bold; transform: rotate(-90deg); -ms-transform: rotate(-90deg); -moz-transform: rotate(-90deg); -webkit-transform: rotate(-90deg); -o-transform: rotate(-90deg); } .btn-custom span.cnumber { display: block; position: relative; left: 0px; top: 18px; padding-left: 5px; padding-right: 5px; text-align: center; font-family: 'Play', sans-serif; font-weight: bold; font-size: 110px; letter-spacing: -7px; } /* * * * * * * * * * * * * * Subscription Form * * * * * * * * * * * * * */ .subscribe-frm { margin-top: 10px; margin-bottom: 5px; } .subscribe-btn { padding: 8px; margin-left: 2px; } .subscribe-input .add-on { position: relative; z-index: 5; height: 26px; vertical-align: middle; padding: 6px 8px 4px 8px; background: #e5e5e5; color: #333; border-top: 0; border-bottom: 0; border-left: 0; font-weight: bold; } .subscribe-input input { height: 20px; margin: 0 0 0 -33px; padding: 8px 8px 8px 40px; -webkit-border-radius: 4px 4px 4px 4px; -moz-border-radius: 4px 4px 4px 4px; border-radius: 4px 4px 4px 4px; } .subscribe-input input.error-input { border-color: rgba(0, 0, 0, 0.6); -webkit-box-shadow: 0px 0px 20px rgba(255, 0, 0, 0.3) inset, 0px 0px 0px rgba(0, 0, 0, 0.5); -moz-box-shadow: 0px 0px 20px rgba(255, 0, 0, 0.3) inset, 0px 0px 0px rgba(0, 0, 0, 0.5); box-shadow: 0px 0px 20px rgba(255, 0, 0, 0.3) inset, 0px 0px 8px rgba(0, 0, 0, 0.5); } #success, #error { display:none; color:#fff; } #error { height:20px; padding: 0; margin: 0; margin-bottom: -30px; } /* * * * * * * * * * * * * * Services * * * * * * * * * * * * * */ .services { margin: 20px 0 80px 0; text-align: center; } .services p + h3 { margin-top: 28px; } .services p { color: #333; } .services h3 { font-size: 180%; margin: 0; padding: 0; color: #333; } .services [class*="span"] i { color: #333; opacity: .3; cursor: default; text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3); -o-transition: all .3s; -moz-transition: all .3s; -webkit-transition: all .3s; -ms-transition: all .3s; } .services [class*="span"] i:hover { color: #333; opacity: 1; } /* * * * * * * * * * * * * * Footer * * * * * * * * * * * * * */ #footer { background: url(../img/bg-footer.png) repeat-x center top; position: fixed; z-index: 10; width: 100%; padding-bottom: 20px; } #footer .handle { padding: 20px 0 10px 0; text-align: center; font-family: 'Play', sans-serif; font-size: 120%; } #footer .handle a { display: inline-block; color: #fff; margin: 5px 0 4px 0; font-weight: bold; text-decoration: none; -o-transition: all .3s; -moz-transition: all .3s; -webkit-transition: all .3s; -ms-transition: all .3s; } #footer .handle a:hover { color: #5099be; } #footer .handle .custom-icon { display: inline-block; width: 18px; margin-top: 5px; padding-right: 3px; } #footer .handle .custom-icon-bar { display: block; width: 18px; height: 2px; margin-top: 3px; background-color: #fff; -webkit-border-radius: 1px 1px 1px 1px; -moz-border-radius: 1px 1px 1px 1px; border-radius: 1px 1px 1px 1px; -webkit-box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.25); -moz-box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.25); box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.25); } #footer h3 { font-size: 160%; padding: 0; padding-bottom: 5px; margin: 0; } #footer .thumbnails { margin-bottom: 0; text-align: center; } #footer .thumbnails [class*="span"] { float: none; display: inline-block; margin: 5px; background: #000; } #footer a.thumbnail { opacity: .4; border-color: #fff; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; -o-transition: all .3s; -moz-transition: all .3s; -webkit-transition: all .3s; -ms-transition: all .3s; } #footer a.thumbnail:hover { opacity: 1; border-color: #5099be; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } #footer .copyright { margin-top: 10px; padding-top: 10px; border-top: 1px solid #555; text-align: right; } #footer .copyright p { margin-right: 20px; } /* * * * * * * * * * * * * * Nanoscroller * * * * * * * * * * * * * */ #footer .nano { color: white; width: 100%; height: 300px; } #footer .nano .content { padding: 10px 20px 0 20px; } #footer .nano .content:focus { outline: 0; } #footer .nano .content .overthrow-enabled .overthrow { overflow: auto; -webkit-overflow-scrolling: touch; } #footer .nano .content a { color: #5099be; } #footer .nano .pane { background: #888; margin: 10px; margin-bottom: 0; } #footer .nano .slider { background: #111; } /* * * * * * * * * * * * * * Twitter Feed * * * * * * * * * * * * * */ #footer .tweet, #footer .query { color: #fff; } #footer .tweet_list { list-style: none; margin: 0; padding: 0; } #footer .tweet_list li { padding-bottom: 10px; list-style-type: none; } #footer .tweet_list li a { color: #5099be; } #footer .tweet_list .tweet_avatar { float: left; padding-right: .5em; } #footer .tweet_list .tweet_avatar img { vertical-align: middle; } #footer .tweet_time a { margin: 0; padding: 0; list-style: square inside none; display: list-item; text-decoration: underline; } /* * * * * * * * * * * * * * Static Footer * * * * * * * * * * * * * */ #footer.static { position: static; background: #000; height: auto; margin-top: -30px; padding-bottom: 5px; border-top: 1px solid #666; -webkit-box-shadow: 0 0 12px rgba(0,0,0,.7); -moz-box-shadow: 0 0 12px rgba(0,0,0,.7); box-shadow: 0 0 12px rgba(0,0,0,.7); } #footer.static h3 { margin-top: 20px; } #footer.static .handle { display: none; } #footer.static .nano { position: static; height: auto; margin-top: -10px; padding-bottom: 0; } #footer.static .nano .content { position: static; height: auto; overflow: auto; padding-bottom: 0; } /* Static Footer ends */ /* * * * * * * * * * * * * * Custom Responsive * * * * * * * * * * * * * */ @media (max-width: 980px) { /* Breakpoint: 768px up to 980px */ body { padding-right: 0; padding-left: 0; } .container-narrow { padding-right: 20px; padding-left: 20px; } } @media (max-width: 767px) { /* Breakpoint: 767px and below */ /* Center align for Logo and Social Icons */ .masthead h1.logo { display: block; float: none; margin-bottom: 0px; padding-bottom: 0px; text-align: center; } .masthead ul.social { float: none; margin-top: 0px; padding-top: 0px; text-align: center; } /* Split Countdown */ .main { margin: 50px 0 50px 0; } .main .countdown-split { display: block; } /* Center align for Subscription Form */ .subscribe-input { display: block; width: 100%; padding: 0; } .subscribe-input input { width: 80%; padding: 8px 8px 8px 40px; height: 38px; } .subscribe-btn { width: 80%; padding: 8px; margin-top: 10px; margin-left: 0px; } /* Full width Thumbnails */ #footer .thumbnails [class*="span"] { display: inline-block; width: auto; max-width: 80%; margin: 15px 25px; } } @media (max-width: 480px) { /* Breakpoint: 480px and below */ /* Hide shadow background */ .bg-container-left { background: none; } .bg-container-right { background: none; } /* Static Footer default enabled for small displays */ #footer { position: static; background: #000; height: auto; margin-top: -30px; padding-bottom: 5px; border-top: 1px solid #666; -webkit-box-shadow: 0 0 12px rgba(0,0,0,.7); -moz-box-shadow: 0 0 12px rgba(0,0,0,.7); box-shadow: 0 0 12px rgba(0,0,0,.7); } #footer h3 { margin-top: 20px; } #footer .handle { display: none; } #footer .nano { position: static; height: auto; margin-top: -20px; padding-bottom: 0; } #footer .nano .content { position: static; height: auto; overflow: auto; padding-bottom: 0; } /* Static Footer ends */ }
assets/bakim/css/style-blue.css
body { background: #5099be url(../img/bg-wall-blue.jpg) repeat-x center top; margin: 0; padding: 0; color: #333; } h1, h2, h3, h4 { font-family: 'Play', sans-serif; } a { color: #fff; } a:hover { color: #fff; } a:active, a:focus { outline: 0; } textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input { border-color: rgba(0, 0, 0, 0.3); -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3) inset, 0px 0px 0px rgba(0, 0, 0, 0.4); -moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3) inset, 0px 0px 0px rgba(0, 0, 0, 0.4); box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3) inset, 0px 0px 0px rgba(0, 0, 0, 0.4); } textarea:focus, input[type="text"]:focus, input[type="password"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, input[type="number"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="color"]:focus, .uneditable-input:focus { outline: 0; border-color: rgba(0, 0, 0, 0.6); -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3) inset, 0px 0px 0px rgba(0, 0, 0, 0.4); -moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3) inset, 0px 0px 0px rgba(0, 0, 0, 0.4); box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3) inset, 0px 0px 8px rgba(0, 0, 0, 0.4); } .btn { font-family: 'Play', sans-serif; } .btn:active, .btn:focus { outline: 0; } /* * * * * * * * * * * * * * Custom container * * * * * * * * * * * * * */ .container-narrow { margin: 0 auto; max-width: 900px; } /* * * * * * * * * * * * * * Shadow Background * * * * * * * * * * * * * */ .bg-container-left { background: url(../img/bg-topleft.png) no-repeat top left; } .bg-container-right { background: url(../img/bg-topright.png) no-repeat top right; padding-top: 60px; } /* * * * * * * * * * * * * * Logo * * * * * * * * * * * * * */ .masthead h1.logo { margin: 0; padding: 0; padding-bottom: 20px; font-family: 'Play', sans-serif; font-size: 72px; letter-spacing: -2px; white-space: nowrap; color: #e5e5e5 !important; text-shadow: 0 3px 2px rgba(0, 0, 0, 0.4); } .masthead h1.logo a { color: #e5e5e5 !important; } .masthead h1.logo a:hover { text-decoration: none; } /* * * * * * * * * * * * * * Social Icons List * * * * * * * * * * * * * */ .masthead ul.social { padding: 0; margin: 0; list-style: none; text-align: right; } .masthead ul.social li { float: none; padding: 0; margin: 0; margin-top: 15px; padding-right: 0px; display: inline-block; text-align: center; } .masthead ul.social li a { width: 32px; height: 32px; display: inline-block; padding: 0; margin: 0; -o-transition: all .3s; -moz-transition: all .3s; -webkit-transition: all .3s; -ms-transition: all .3s; } .masthead ul.social li a:hover { background-position: top center; } /* * * * * * * * * * * * * * Social Icons * * * * * * * * * * * * * */ .facebook { background: url(../img/icons/facebook.png) no-repeat bottom center; } .twitter { background: url(../img/icons/twitter.png) no-repeat bottom center; } .tumblr { background: url(../img/icons/tumblr.png) no-repeat bottom center; } .dribbble { background: url(../img/icons/dribbble.png) no-repeat bottom center; } .behance { background: url(../img/icons/behance.png) no-repeat bottom center; } .linkedin { background: url(../img/icons/linkedin.png) no-repeat bottom center; } .rss { background: url(../img/icons/rss.png) no-repeat bottom center; } .delicious { background: url(../img/icons/delicious.png) no-repeat bottom center; } .deviantart { background: url(../img/icons/deviantart.png) no-repeat bottom center; } .digg { background: url(../img/icons/digg.png) no-repeat bottom center; } .flickr { background: url(../img/icons/flickr.png) no-repeat bottom center; } .lastfm { background: url(../img/icons/lastfm.png) no-repeat bottom center; } .myspace { background: url(../img/icons/myspace.png) no-repeat bottom center; } .picasa { background: url(../img/icons/picasa.png) no-repeat bottom center; } .sharethis { background: url(../img/icons/sharethis.png) no-repeat bottom center; } .skype { background: url(../img/icons/skype.png) no-repeat bottom center; } .vimeo { background: url(../img/icons/vimeo.png) no-repeat bottom center; } .yahoo { background: url(../img/icons/yahoo.png) no-repeat bottom center; } .wordpress { background: url(../img/icons/wordpress.png) no-repeat bottom center; } .blogger { background: url(../img/icons/blogger.png) no-repeat bottom center; } .email { background: url(../img/icons/email.png) no-repeat bottom center; } .youtube { background: url(../img/icons/youtube.png) no-repeat bottom center; } .pinterest { background: url(../img/icons/pinterest.png) no-repeat bottom center; } .github { background: url(../img/icons/github.png) no-repeat bottom center; } .stumbleupon { background: url(../img/icons/stumbleupon.png) no-repeat bottom center; } .instagram { background: url(../img/icons/instagram.png) no-repeat bottom center; } .spotify { background: url(../img/icons/spotify.png) no-repeat bottom center; } .reddit { background: url(../img/icons/reddit.png) no-repeat bottom center; } .googleplus { background: url(../img/icons/googleplus.png) no-repeat bottom center; } .paypal { background: url(../img/icons/paypal.png) no-repeat bottom center; } /* * * * * * * * * * * * * * Main content * * * * * * * * * * * * * */ .main { margin: 60px 0 60px 0; text-align: center; } .main .countdown-split { display: inline-block; } .main h1 { margin-top: 40px; margin-bottom: 5px; font-family: 'Play', sans-serif; font-size: 60px; letter-spacing: -3px; line-height: 1; color: #333 !important; } .main .lead { color: #333; margin-bottom: 10px; } /* * * * * * * * * * * * * * Countdown Buttons * * * * * * * * * * * * * */ .btn-custom { margin: 7px 5px; text-align: left; min-width: 120px; height: 100px; cursor: default; } .btn-custom { -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px; -webkit-box-shadow: inset 0 2px 10px rgba(0,0,0,.3), 0 4px 6px rgba(0,0,0,.6); -moz-box-shadow: inset 0 2px 10px rgba(0,0,0,.3), 0 4px 6px rgba(0,0,0,.6); box-shadow: inset 0 2px 10px rgba(0,0,0,.3), 0 4px 6px rgba(0,0,0,.6); -webkit-transition: none; -moz-transition: none; transition: none; } .btn-custom:hover { background-position: 0px -25px; -webkit-box-shadow: inset 0 2px 10px rgba(0,0,0,.3), 0 4px 6px rgba(0,0,0,.6); -moz-box-shadow: inset 0 2px 10px rgba(0,0,0,.3), 0 4px 6px rgba(0,0,0,.6); box-shadow: inset 0 2px 10px rgba(0,0,0,.3), 0 4px 6px rgba(0,0,0,.6); } .btn-custom:active { outline: 0; -webkit-box-shadow: inset 0 2px 10px rgba(0,0,0,.3), 0 4px 6px rgba(0,0,0,.6); -moz-box-shadow: inset 0 2px 10px rgba(0,0,0,.3), 0 4px 6px rgba(0,0,0,.6); box-shadow: inset 0 2px 10px rgba(0,0,0,.3), 0 4px 6px rgba(0,0,0,.6); } .btn-custom, .btn-custom:active { background-color: hsl(138, 0%, 56%) !important; background-image: -khtml-gradient(linear, left top, left bottom, from(#ffffff), to(#8e8e8e)); background-image: -moz-linear-gradient(top, #ffffff, #8e8e8e); background-image: -ms-linear-gradient(top, #ffffff, #8e8e8e); background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #8e8e8e)); background-image: -webkit-linear-gradient(top, #ffffff, #8e8e8e); background-image: -o-linear-gradient(top, #ffffff, #8e8e8e); background-image: linear-gradient(#ffffff, #8e8e8e); -pie-background: linear-gradient(#ffffff, #8e8e8e); /*PIE*/ border-color: #e6e6e6 #e6e6e6 #bfbfbf; border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); border-top-color: #a2a2a2; border-bottom-color: #a2a2a2; color: #333 !important; text-shadow: 0 1px 1px rgba(255, 255, 255, 0.6); } /* * * * * * * * * * * * * * Countdown Text * * * * * * * * * * * * * */ .btn-custom span.cname { display: block; width: 85px; position: relative; left: -47px; top: 30px; text-align: right; font-family: 'Play', sans-serif; font-size: 18px; font-weight: bold; transform: rotate(-90deg); -ms-transform: rotate(-90deg); -moz-transform: rotate(-90deg); -webkit-transform: rotate(-90deg); -o-transform: rotate(-90deg); } .btn-custom span.cnumber { display: block; position: relative; left: 0px; top: 18px; padding-left: 5px; padding-right: 5px; text-align: center; font-family: 'Play', sans-serif; font-weight: bold; font-size: 110px; letter-spacing: -7px; } /* * * * * * * * * * * * * * Subscription Form * * * * * * * * * * * * * */ .subscribe-frm { margin-top: 10px; margin-bottom: 5px; } .subscribe-btn { padding: 8px; margin-left: 2px; } .subscribe-input .add-on { position: relative; z-index: 5; height: 26px; vertical-align: middle; padding: 6px 8px 4px 8px; background: #e5e5e5; color: #333; border-top: 0; border-bottom: 0; border-left: 0; font-weight: bold; } .subscribe-input input { height: 20px; margin: 0 0 0 -33px; padding: 8px 8px 8px 40px; -webkit-border-radius: 4px 4px 4px 4px; -moz-border-radius: 4px 4px 4px 4px; border-radius: 4px 4px 4px 4px; } .subscribe-input input.error-input { border-color: rgba(0, 0, 0, 0.6); -webkit-box-shadow: 0px 0px 20px rgba(255, 0, 0, 0.3) inset, 0px 0px 0px rgba(0, 0, 0, 0.5); -moz-box-shadow: 0px 0px 20px rgba(255, 0, 0, 0.3) inset, 0px 0px 0px rgba(0, 0, 0, 0.5); box-shadow: 0px 0px 20px rgba(255, 0, 0, 0.3) inset, 0px 0px 8px rgba(0, 0, 0, 0.5); } #success, #error { display:none; color:#fff; } #error { height:20px; padding: 0; margin: 0; margin-bottom: -30px; } /* * * * * * * * * * * * * * Services * * * * * * * * * * * * * */ .services { margin: 20px 0 80px 0; text-align: center; } .services p + h3 { margin-top: 28px; } .services p { color: #333; } .services h3 { font-size: 180%; margin: 0; padding: 0; color: #333; } .services [class*="span"] i { color: #333; opacity: .3; cursor: default; text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3); -o-transition: all .3s; -moz-transition: all .3s; -webkit-transition: all .3s; -ms-transition: all .3s; } .services [class*="span"] i:hover { color: #333; opacity: 1; } /* * * * * * * * * * * * * * Footer * * * * * * * * * * * * * */ #footer { background: url(../img/bg-footer.png) repeat-x center top; position: fixed; z-index: 10; width: 100%; padding-bottom: 20px; } #footer .handle { padding: 20px 0 10px 0; text-align: center; font-family: 'Play', sans-serif; font-size: 120%; } #footer .handle a { display: inline-block; color: #fff; margin: 5px 0 4px 0; font-weight: bold; text-decoration: none; -o-transition: all .3s; -moz-transition: all .3s; -webkit-transition: all .3s; -ms-transition: all .3s; } #footer .handle a:hover { color: #5099be; } #footer .handle .custom-icon { display: inline-block; width: 18px; margin-top: 5px; padding-right: 3px; } #footer .handle .custom-icon-bar { display: block; width: 18px; height: 2px; margin-top: 3px; background-color: #fff; -webkit-border-radius: 1px 1px 1px 1px; -moz-border-radius: 1px 1px 1px 1px; border-radius: 1px 1px 1px 1px; -webkit-box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.25); -moz-box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.25); box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.25); } #footer h3 { font-size: 160%; padding: 0; padding-bottom: 5px; margin: 0; } #footer .thumbnails { margin-bottom: 0; text-align: center; } #footer .thumbnails [class*="span"] { float: none; display: inline-block; margin: 5px; background: #000; } #footer a.thumbnail { opacity: .4; border-color: #fff; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; -o-transition: all .3s; -moz-transition: all .3s; -webkit-transition: all .3s; -ms-transition: all .3s; } #footer a.thumbnail:hover { opacity: 1; border-color: #5099be; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } #footer .copyright { margin-top: 10px; padding-top: 10px; border-top: 1px solid #555; text-align: right; } #footer .copyright p { margin-right: 20px; } /* * * * * * * * * * * * * * Nanoscroller * * * * * * * * * * * * * */ #footer .nano { color: white; width: 100%; height: 300px; } #footer .nano .content { padding: 10px 20px 0 20px; } #footer .nano .content:focus { outline: 0; } #footer .nano .content .overthrow-enabled .overthrow { overflow: auto; -webkit-overflow-scrolling: touch; } #footer .nano .content a { color: #5099be; } #footer .nano .pane { background: #888; margin: 10px; margin-bottom: 0; } #footer .nano .slider { background: #111; } /* * * * * * * * * * * * * * Twitter Feed * * * * * * * * * * * * * */ #footer .tweet, #footer .query { color: #fff; } #footer .tweet_list { list-style: none; margin: 0; padding: 0; } #footer .tweet_list li { padding-bottom: 10px; list-style-type: none; } #footer .tweet_list li a { color: #5099be; } #footer .tweet_list .tweet_avatar { float: left; padding-right: .5em; } #footer .tweet_list .tweet_avatar img { vertical-align: middle; } #footer .tweet_time a { margin: 0; padding: 0; list-style: square inside none; display: list-item; text-decoration: underline; } /* * * * * * * * * * * * * * Static Footer * * * * * * * * * * * * * */ #footer.static { position: static; background: #000; height: auto; margin-top: -30px; padding-bottom: 5px; border-top: 1px solid #666; -webkit-box-shadow: 0 0 12px rgba(0,0,0,.7); -moz-box-shadow: 0 0 12px rgba(0,0,0,.7); box-shadow: 0 0 12px rgba(0,0,0,.7); } #footer.static h3 { margin-top: 20px; } #footer.static .handle { display: none; } #footer.static .nano { position: static; height: auto; margin-top: -10px; padding-bottom: 0; } #footer.static .nano .content { position: static; height: auto; overflow: auto; padding-bottom: 0; } /* Static Footer ends */ /* * * * * * * * * * * * * * Custom Responsive * * * * * * * * * * * * * */ @media (max-width: 980px) { /* Breakpoint: 768px up to 980px */ body { padding-right: 0; padding-left: 0; } .container-narrow { padding-right: 20px; padding-left: 20px; } } @media (max-width: 767px) { /* Breakpoint: 767px and below */ /* Center align for Logo and Social Icons */ .masthead h1.logo { display: block; float: none; margin-bottom: 0px; padding-bottom: 0px; text-align: center; } .masthead ul.social { float: none; margin-top: 0px; padding-top: 0px; text-align: center; } /* Split Countdown */ .main { margin: 50px 0 50px 0; } .main .countdown-split { display: block; } /* Center align for Subscription Form */ .subscribe-input { display: block; width: 100%; padding: 0; } .subscribe-input input { width: 80%; padding: 8px 8px 8px 40px; height: 38px; } .subscribe-btn { width: 80%; padding: 8px; margin-top: 10px; margin-left: 0px; } /* Full width Thumbnails */ #footer .thumbnails [class*="span"] { display: inline-block; width: auto; max-width: 80%; margin: 15px 25px; } } @media (max-width: 480px) { /* Breakpoint: 480px and below */ /* Hide shadow background */ .bg-container-left { background: none; } .bg-container-right { background: none; } /* Static Footer default enabled for small displays */ #footer { position: static; background: #000; height: auto; margin-top: -30px; padding-bottom: 5px; border-top: 1px solid #666; -webkit-box-shadow: 0 0 12px rgba(0,0,0,.7); -moz-box-shadow: 0 0 12px rgba(0,0,0,.7); box-shadow: 0 0 12px rgba(0,0,0,.7); } #footer h3 { margin-top: 20px; } #footer .handle { display: none; } #footer .nano { position: static; height: auto; margin-top: -20px; padding-bottom: 0; } #footer .nano .content { position: static; height: auto; overflow: auto; padding-bottom: 0; } /* Static Footer ends */ }
0.266548
0.140425
width: 100%; height: 100%; z-index: 99999; top: 0; left: 0; position: fixed; z-index: 999999; margin: 0 auto; display: none; } .loader-wrapper { position: absolute; margin: 0 auto; float: left; margin-top: 64px; margin-left: 46%; } .loader { position:absolute; top:0; background-color:#000000; width:12px; height:12px; -moz-animation-name:bounce_loader; -moz-animation-duration:1s; -moz-animation-iteration-count:infinite; -moz-animation-direction:linear; -moz-transform:scale(.3); -moz-border-radius:8px; -webkit-animation-name:bounce_loader; -webkit-animation-duration:1s; -webkit-animation-iteration-count:infinite; -webkit-animation-direction:linear; -webkit-transform:scale(.3); -webkit-border-radius:8px; -ms-animation-name:bounce_loader; -ms-animation-duration:1s; -ms-animation-iteration-count:infinite; -ms-animation-direction:linear; -ms-transform:scale(.3); -ms-border-radius:8px; animation-name:bounce_loader; animation-duration:1s; animation-iteration-count:infinite; animation-direction:linear; transform:scale(.3); border-radius:8px; } #loader_1 { left:0; -moz-animation-delay:0.4s; -webkit-animation-delay:0.4s; -ms-animation-delay:0.4s; animation-delay:0.4s; } #loader_2 { left:12px; -moz-animation-delay:0.5s; -webkit-animation-delay:0.5s; -ms-animation-delay:0.5s; animation-delay:0.5s; } #loader_3 { left:25px; -moz-animation-delay:0.6s; -webkit-animation-delay:0.6s; -ms-animation-delay:0.6s; animation-delay:0.6s; } #loader_4 { left:37px; -moz-animation-delay:0.7s; -webkit-animation-delay:0.7s; -ms-animation-delay:0.7s; animation-delay:0.7s; } #loader_5 { left:50px; -moz-animation-delay:0.8s; -webkit-animation-delay:0.8s; -ms-animation-delay:0.8s; animation-delay:0.8s; } #loader_6 { left:62px; -moz-animation-delay:0.9s; -webkit-animation-delay:0.9s; -ms-animation-delay:0.9s; animation-delay:0.9s; } #loader_7 { left:74px; -moz-animation-delay:1s; -webkit-animation-delay:1s; -ms-animation-delay:1s; animation-delay:1s; } #loader_8 { left:87px; -moz-animation-delay:1.1s; -webkit-animation-delay:1.1s; -ms-animation-delay:1.1s; animation-delay:1.1s; } @-moz-keyframes bounce_loader{ 0%{ -moz-transform:scale(1); background-color:#000000; } 100%{ -moz-transform:scale(.3); background-color:#FFFFFF; } } @-webkit-keyframes bounce_loader{ 0%{ -webkit-transform:scale(1); background-color:#000000; } 100%{ -webkit-transform:scale(.3); background-color:#FFFFFF; } } @-ms-keyframes bounce_loader{ 0%{ -ms-transform:scale(1); background-color:#000000; } 100%{ -ms-transform:scale(.3); background-color:#FFFFFF; } } @keyframes bounce_loader{ 0%{ transform:scale(1); background-color:#000000; } 100%{ transform:scale(.3); background-color:#FFFFFF; } }
public/Layout/css/Loader.css
width: 100%; height: 100%; z-index: 99999; top: 0; left: 0; position: fixed; z-index: 999999; margin: 0 auto; display: none; } .loader-wrapper { position: absolute; margin: 0 auto; float: left; margin-top: 64px; margin-left: 46%; } .loader { position:absolute; top:0; background-color:#000000; width:12px; height:12px; -moz-animation-name:bounce_loader; -moz-animation-duration:1s; -moz-animation-iteration-count:infinite; -moz-animation-direction:linear; -moz-transform:scale(.3); -moz-border-radius:8px; -webkit-animation-name:bounce_loader; -webkit-animation-duration:1s; -webkit-animation-iteration-count:infinite; -webkit-animation-direction:linear; -webkit-transform:scale(.3); -webkit-border-radius:8px; -ms-animation-name:bounce_loader; -ms-animation-duration:1s; -ms-animation-iteration-count:infinite; -ms-animation-direction:linear; -ms-transform:scale(.3); -ms-border-radius:8px; animation-name:bounce_loader; animation-duration:1s; animation-iteration-count:infinite; animation-direction:linear; transform:scale(.3); border-radius:8px; } #loader_1 { left:0; -moz-animation-delay:0.4s; -webkit-animation-delay:0.4s; -ms-animation-delay:0.4s; animation-delay:0.4s; } #loader_2 { left:12px; -moz-animation-delay:0.5s; -webkit-animation-delay:0.5s; -ms-animation-delay:0.5s; animation-delay:0.5s; } #loader_3 { left:25px; -moz-animation-delay:0.6s; -webkit-animation-delay:0.6s; -ms-animation-delay:0.6s; animation-delay:0.6s; } #loader_4 { left:37px; -moz-animation-delay:0.7s; -webkit-animation-delay:0.7s; -ms-animation-delay:0.7s; animation-delay:0.7s; } #loader_5 { left:50px; -moz-animation-delay:0.8s; -webkit-animation-delay:0.8s; -ms-animation-delay:0.8s; animation-delay:0.8s; } #loader_6 { left:62px; -moz-animation-delay:0.9s; -webkit-animation-delay:0.9s; -ms-animation-delay:0.9s; animation-delay:0.9s; } #loader_7 { left:74px; -moz-animation-delay:1s; -webkit-animation-delay:1s; -ms-animation-delay:1s; animation-delay:1s; } #loader_8 { left:87px; -moz-animation-delay:1.1s; -webkit-animation-delay:1.1s; -ms-animation-delay:1.1s; animation-delay:1.1s; } @-moz-keyframes bounce_loader{ 0%{ -moz-transform:scale(1); background-color:#000000; } 100%{ -moz-transform:scale(.3); background-color:#FFFFFF; } } @-webkit-keyframes bounce_loader{ 0%{ -webkit-transform:scale(1); background-color:#000000; } 100%{ -webkit-transform:scale(.3); background-color:#FFFFFF; } } @-ms-keyframes bounce_loader{ 0%{ -ms-transform:scale(1); background-color:#000000; } 100%{ -ms-transform:scale(.3); background-color:#FFFFFF; } } @keyframes bounce_loader{ 0%{ transform:scale(1); background-color:#000000; } 100%{ transform:scale(.3); background-color:#FFFFFF; } }
0.601242
0.067424
:link { color: rgb(110, 0, 110) } :visited { color: rgb(110, 0, 110) } hr { color: rgb(45,0,45); height: 3px; } body { margin-left: 4%; font-family: arial, sans-serif; background: white; margin-right: 2%; } th { font-family: arial, sans-serif; } td { font-family: arial, sans-serif; } div.banner { text-align: center; margin-left: -4%; font-size: 150%; } .center { text-align: center; } div.version { margin-left: -4%; margin-top: 0em; margin-bottom: 0em; font-size: 75%; font-weight: bold; text-align: right ; color: rgb(232, 232, 232) ; background: rgb(45,0,45); height: 20px; } h1 { margin-left: -4%; margin-bottom: 0em; font-size: 150%; color: rgb(232, 232, 232) ; background: rgb(45,0,45); padding: 0.3em; height: 45px; } h2 { margin-left: -2%; font-size: 125%; background: rgb(166,172,255); padding: 0.3em; } h3 { font-size: 115%; background: rgb(175,175,175); padding: 0.2em; } h4 { font-size: 100% ; background: white; padding: 0.125em; margin-left: 1.5em ; } p { margin-left: 1.5em ; margin-right: 0.5em ; text-align:justify } blockquote { border: solid; border-width: thin; background: rgb(250,250,220); padding: 1em; } code { font-family: monospace; font-size: 120%; } pre { margin-left: 2em; background: rgb(225,225,225); font-family: monospace; padding: 1em; margin-right: 1em; } p.question { margin-left: 2em ; font-style: italic ; font-weight: bold ; } .screenshot { text-align: center ; } .figure { text-align: center ! important ; } DIV.figure P { text-align: center ! important ; } .figure-number { font-variant: small-caps; text-align: center; } .t-above { font-variant: small-caps; } .smaller { font-size: 80% ; } .license { background-color: #ffc; padding: 2em; border-style: solid; border-width: 1pt; font-family: courier; font-size: 80%; } .alert { color: rgb(232, 0, 0) ; } .info { color: rgb(0, 192, 64) ; } .warning { color: rgb(255, 128, 0) ; } td.rightalign {vertical-align: top; text-align: right;} td.centeralign {vertical-align: top; text-align: center;} table.matrix { text-align: center; margin-left: 4% } ol { list-style-type: decimal; } ol > ol { list-style-type: lower-alpha; } ol > li > ol { list-style-type: lower-alpha; } ol > ol > ol { list-style-type: lower-roman; } ol > li > ol > ol { list-style-type: lower-roman; } ol > ol > li > ol { list-style-type: lower-roman; } ol > li > ol > li > ol { list-style-type: lower-roman; }
ioda/doc/Netlogo-Style.css
:link { color: rgb(110, 0, 110) } :visited { color: rgb(110, 0, 110) } hr { color: rgb(45,0,45); height: 3px; } body { margin-left: 4%; font-family: arial, sans-serif; background: white; margin-right: 2%; } th { font-family: arial, sans-serif; } td { font-family: arial, sans-serif; } div.banner { text-align: center; margin-left: -4%; font-size: 150%; } .center { text-align: center; } div.version { margin-left: -4%; margin-top: 0em; margin-bottom: 0em; font-size: 75%; font-weight: bold; text-align: right ; color: rgb(232, 232, 232) ; background: rgb(45,0,45); height: 20px; } h1 { margin-left: -4%; margin-bottom: 0em; font-size: 150%; color: rgb(232, 232, 232) ; background: rgb(45,0,45); padding: 0.3em; height: 45px; } h2 { margin-left: -2%; font-size: 125%; background: rgb(166,172,255); padding: 0.3em; } h3 { font-size: 115%; background: rgb(175,175,175); padding: 0.2em; } h4 { font-size: 100% ; background: white; padding: 0.125em; margin-left: 1.5em ; } p { margin-left: 1.5em ; margin-right: 0.5em ; text-align:justify } blockquote { border: solid; border-width: thin; background: rgb(250,250,220); padding: 1em; } code { font-family: monospace; font-size: 120%; } pre { margin-left: 2em; background: rgb(225,225,225); font-family: monospace; padding: 1em; margin-right: 1em; } p.question { margin-left: 2em ; font-style: italic ; font-weight: bold ; } .screenshot { text-align: center ; } .figure { text-align: center ! important ; } DIV.figure P { text-align: center ! important ; } .figure-number { font-variant: small-caps; text-align: center; } .t-above { font-variant: small-caps; } .smaller { font-size: 80% ; } .license { background-color: #ffc; padding: 2em; border-style: solid; border-width: 1pt; font-family: courier; font-size: 80%; } .alert { color: rgb(232, 0, 0) ; } .info { color: rgb(0, 192, 64) ; } .warning { color: rgb(255, 128, 0) ; } td.rightalign {vertical-align: top; text-align: right;} td.centeralign {vertical-align: top; text-align: center;} table.matrix { text-align: center; margin-left: 4% } ol { list-style-type: decimal; } ol > ol { list-style-type: lower-alpha; } ol > li > ol { list-style-type: lower-alpha; } ol > ol > ol { list-style-type: lower-roman; } ol > li > ol > ol { list-style-type: lower-roman; } ol > ol > li > ol { list-style-type: lower-roman; } ol > li > ol > li > ol { list-style-type: lower-roman; }
0.666605
0.269824
@import url("https://fonts.googleapis.com/css?family=Lilita+One|Poppins&display=swap"); ul { list-style-type: none; } body { overflow: scroll; padding: 15%; padding-top: -20%; color: white; background: #FF3501; font-family: "Lilita One", cursive; } body::-webkit-scrollbar { width: 0em; display: none; } body::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px #00333F; } body::-webkit-scrollbar-thumb { background-color: #002C53; outline: 1px solid #00333F; border-radius: 10px; } h4, p, h3 { /* mix-blend-mode: difference; */ color: #EDF5e1; } h4, h3 { font-size: 60px; text-decoration: bold; font-family: "Lilita One", cursive; } h5 { position: relative; margin: auto; text-decoration: bold; font-family: "Lilita One", cursive; } p { font-size: 1vw; width: 100%; font-family: "Poppins", sans-serif; } text { font-family: "Lilita One", cursive; } a { text-decoration: none; color: white; transition: 0.5s; } /*-------------------------------------------------------------- # Splash Screen --------------------------------------------------------------*/ #load { background: #333333; position: absolute; bottom: 0; width: 100%; height: 100%; text-align: center; margin: auto; -webkit-animation: disappear 10s forwards; animation: disappear 10s forwards; vertical-align: middle; text-align: center; padding: 10%; z-index:50; opacity:1; -webkit-opacity: 1; display:block; } /* Safari */ @-webkit-keyframes disappear { 0% { -webkit-opacity: 1; height: 100%; bottom: 0; z-index: 50; display:block; } 90% { -webkit-opacity: 1; height: 100%; bottom: 0; z-index: 50; display:block; } 99.999% { -webkit-opacity: 0; height: 100%; bottom: -100%; z-index: 50; display:none; } 100% { -webkit-opacity: 0; height: 100%; bottom: -100%; z-index: -10; display: none; } } @keyframes disappear { 0% { opacity: 1; height: 100%; bottom: 0; z-index: 50; display:block; } 90% { opacity: 1; height: 100%; bottom: 0; z-index: 50; display:block; } 99.999% { opacity: 0; height: 100%; bottom: -100%; z-index: 50; display:block; } 100% { opacity: 0; height: 100%; bottom: -100%; z-index: -10; display: none; } } .intro-img { width: 100%; float: none; margin: 0 auto 25px auto; font-family: "Poppins", sans-serif; } /*-------------------------------------------------------------- # Sections --------------------------------------------------------------*/ .section { padding: 5%; overflow: hidden; padding-left: 15%; } .colorTheme { color: #00AEE0; color: #FF3501; color: #00333F; color: #FCB900; color: #F7FCFF; color: #FE3808; color: #002C53; } /*-------------------------------------------------------------- # Map Font --------------------------------------------------------------*/ .lb-caption { font-size: 30px !important; color: #00AEE0 !important; } /*-------------------------------------------------------------- # Blob Control --------------------------------------------------------------*/ svg { width: 100%; } .filled-heading { text-transform: uppercase; font-family: "Source Sans Pro", sans-serif; font-size: 5em; line-height: 0.9; } #background path { animation: pulse 4s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite; transform-origin: 50% 50%; transform-box: fill-box; } #textClip text { display: none; } #textClip text:nth-of-type(n + 1):nth-of-type(-n + 3) { display: inline; } @keyframes pulse { 0%, 100% { transform: scale(0) rotate(33deg); } 35%, 65% { transform: scale(1) rotate(0deg); } } .container { position: absolute; left: 5%; bottom: 10%; width: 100%; margin: 0; } /*-------------------------------------------------------------- # Listening Icon --------------------------------------------------------------*/ #listen { position: relative; margin: auto; height: 100px; width: 100px; } .box { position: relative; margin-top: 100px; } .object { display: flex; flex: 0 1 100%; justify-content: center; align-items: center; align-content: stretch; } .outline { width: 60px; height: 60px; border-radius: 50%; border: 8px solid #B5A4A4; animation: pulse 3s; animation-timing-function: ease-out; animation-iteration-count: infinite; position: absolute; } .button { width: 120px; height: 120px; border-radius: 50%; background: #50CDDD; box-shadow: 0px 0px 80px #0084F9; position: absolute; } @keyframes pulse { 0% { transform: scale(0); opacity: 0; border: 65px solid #0B3082; } 50% { border: solid #A3FFC2; opacity: 0.8; } 90% { transform: scale(3.2); opacity: 0.2; border: 3px solid #2E3CFF; } 100% { transform: scale(3.3); opacity: 0; border: 1px solid #7A89FF; } } #delayed { animation-delay: 1.5s; } #circlein { width: 100px; height: 100px; border-radius: 50%; background: #6BD6E1; box-shadow: 0px -2px 15px #E0FF94; position: absolute; } .mic-icon { height: 60px; position: absolute; margin-top: 20px; } /*-------------------------------------------------------------- # Header --------------------------------------------------------------*/ .navbar { cursor: pointer; overflow: hidden; background: rgba(0, 0, 0, 0); position: fixed; top: 0; left:0; z-index:10; width: 10%; transition: .2s; } .navbar a h4 { mix-blend-mode: difference; transition: .2s; color:white; } .navbar a { float: left; display: block; mix-blend-mode: difference; text-align: center; padding: 14px 16px; text-decoration: none; font-size: 17px; } .navbar a h4:hover { color: #FCB900; text-decoration: underline; } /*-------------------------------------------------------------- # Inventory --------------------------------------------------------------*/ #myUL { background: #FF3501; z-index: 0; } .no_item { position: relative; margin: 1%; font-size: 30px; width: 40%; text-align: center; background: #002C53; border-radius: 50px; padding: 10px; box-shadow: 5px 8px 1px rgba(0, 0, 0, 0.5); transition: 0.5s; border: 5px dashed white; } .no_item:hover { padding: 10px; box-shadow: 15px 20px 4px rgba(0, 0, 0, 0.5); } .no_item a:hover { text-decoration: none; color: white; } #inventory { vertical-align: right; } #requests { vertical-align: right; } h1 { margin-top: 200px; } #myInput { background-image: url("/css/searchicon.png"); /* Add a search icon to input */ background-position: 10px 12px; /* Position the search icon */ background-repeat: no-repeat; /* Do not repeat the icon image */ width: 50%; /* Full-width */ font-size: 16px; /* Increase font-size */ padding: 12px 20px 12px 40px; /* Add some padding */ border: 1px solid #ddd; /* Add a grey border */ margin-top: 12px; /* Add some space below the input */ border-radius: 50px; } #myUL { /* Remove default list styling */ list-style-type: none; padding: 0; margin: 0; position: relative; } li a { color: transparent; font-size: 0; } li{ transition:0.5s; } .element-item-hide{ transition:0.3s; animation:shrink 2s forwards; } .element-item-show{ transition:0.3s; animation:shrink 2s reverse; } /* Safari */ @-webkit-keyframes shrink { 0% { opacity: 1; width: 1000px; display:block; } 99.999% { opacity: 1; width: 1000px; display:block; } 100% { opacity: 1; width: 0px; display:none; } } @keyframes shrink { 0% { opacity: 1; width: 1000px; display:block; } 99.999% { opacity: 1; width: 1000px; display:block; } 100% { opacity: 1; width: 0px; display:none; } } .dbitem { background: none; border: none; box-shadow: 5px 8px 1px rgba(0, 0, 0, 0.5); transition: 0.3s; border-radius: 20px; border: 5px dashed white; cursor:pointer; margin:10px; } .dbitem:hover { box-shadow: 15px 20px 4px rgba(0, 0, 0, 0.5); } .col-md-4 { float: left; /* border:none; */ } .card-body { background: #FCB900; border: none; color: #00333F; border-radius: 20px; padding:39px; vertical-align: center; text-align: center; } .crafts { background: #FCB900; } .tech { background: #00333F; color: white; } .tech ul li:hover{ border: 3px dashed black } .tech .modal_words a button{ border: 3px dashed white; } .software { background: #00AEE0; } .card-text { font-size: 70px; vertical-align: center; } /*-------------------------------------------------------------- # Modals --------------------------------------------------------------*/ .pop-row { position: absolute; width: 100%; } #pagepiling { opacity: 1; } #modals { z-index:50; } .card { /* background:#002C53; */ width: 80%; height: 60%; top: 10%; vertical-align: middle; padding: 5%; position: absolute; right: 0; left: 0; margin: auto; opacity: 0; /* border:10px dashed #F7FCFF; box-shadow: 15px 20px 4px rgba(0, 0, 0, .5); */ } .test:hover { box-shadow: 15px 20px 4px rgba(0, 0, 0, 0.5); } /* .random_cards{ top:60%; position:absolute; width:100%; height:100%; } .random_cards div{ position:absolute; top:60%; margin: 5%; width: 390px; height:570px; box-shadow: 0 22px 46px 0 rgba(0, 0, 0, 0.5); border-radius:15px; transition:0.5s; } */ /* .random_cards:hover { box-shadow: 15px 20px 4px rgba(0, 0, 0, 0.5); } .random_cards div:nth-child(1) { background: #FF3501; right:-10%; transform: rotate(40deg) } .random_cards div:nth-child(2) { background: #FF3501; right:10%; transform: rotate(50deg) } .random_cards div:nth-child(3) { background: #FF3501; right:-5%; transform: rotate(10deg) } .random_cards div:nth-child(4) { background: #FF3501; right:5%; transform: rotate(70deg) } */ .modal-words h4{ font-size:45px; color:#333333; } .tech .modal-words a div button { background: #FCB900; } .tech .modal-words h4 { color:#FCB900; } .crafts .modal-words a div button { background: #00AEE0; } .tech .modal-controls div i { color:#FCB900; } .crafts .modal-controls div i{ color:#00AEE0; } .software .modal-controls div i { color:#00333F; } .texts { padding: 10%; } .navbutton { width: 100%; height: 100%; font-size: 30px; } .card div { margin-top: 3%; } .modal { padding:5%; transition: 0.4s; background:#221f1fd5; } .modal-content{ width:100%; height:100%; background:none; } .modal-dialog{ width:100%; height:100%; background:none; } .modal_body { position:relative; margin-left:10%; width:100%; height:80%; box-shadow: 0 22px 46px 0 rgba(0, 0, 0, 0.5); border-radius:15px; transition:0.5s; /*border: 4px dashed white;*/ } .item-images { position:absolute; left:-30%; width: 80%; height:100%; border-radius: 15px 0px 0px 15px; margin: 0 auto; } .image { display: block; position: absolute; left:0; top:0; height:100%; width:600px; text-align:center; overflow:hidden; border-radius: 15px 0px 0px 15px; /* background:white; */ } .image_inner { display: block; position: relataive; height: 100%; } @media only screen and (min-width: 2000px) { .modal-words h4{ font-size:55px; } .modal-words h5{ font-size:75px; } .image { width:800px; } .modal_body { height:70%; width:130%; } } .toMap{ border:3px dashed #ffffff; box-shadow:none; } .toMap:hover{ border:3px white dashed; } .modal-words { padding-top:7%; padding:10%; right:0; position:absolute; bottom:0; width:60%; font:30px; } .modal-words h5{ font-size:20px; margin:10px; } .modal-controls{ position:absolute; height:20%; width:40%; right:30px; top:2%; } .modal-controls div i{ position: relative; background: none; cursor: pointer; font-size: 20px; padding:20px; float:right; z-index:10; transition:0.3s; } .modal-controls div i:hover { color:white; } /*-------------------------------------------------------------- # Admin --------------------------------------------------------------*/ .admin_input { /* border:3px dashed white;*/ position:relative; background: #002C53; border-top:#FF3501 5px solid; box-shadow: 5px 8px 1px rgba(0, 0, 0, 0.5); padding-top: 2%; padding-left: 2%; padding-right: 2%; padding-bottom:2%; width:80%; margin:auto; border-radius: 0px; } #image_input{ position:relative; height:400px; width:35%; right:10%; float:right; top:20%; } #main_inputs{ position:relative; width:60%; padding-top:2%; float:left; left:10%; top:20%; } #main_inputs div input,select{ width:70%; } #main_inputs div select{ width:70%; } #file_label{ position:absolute; vertical-align: middle; width: 100%; padding-top:50%; padding-bottom:50%; text-align:center; z-index: 1; } #imgTest { width: 100%; height: 80%; border: 4px dashed white; overflow:hidden; text-align:center; border-radius: 5px; padding:5px; } #imgTest img { width: 100%; height: 100%; border-radius: 15px; } .admin-images { position: relative; margin: auto; height: 400px; width: vheight; border-radius: 10px; border: 8px dashed #F7FCFF; } input { background-position: 10px 12px; /* Position the search icon */ background-repeat: no-repeat; /* Do not repeat the icon image */ width: 50%; /* Full-width */ font-size: 16px; /* Increase font-size */ padding: 12px 20px 12px 40px; /* Add some padding */ border: 1px solid #ddd; /* Add a grey border */ margin-top: 12px; /* Add some space below the input */ border-radius: 50px; } .select { background-position: 10px 12px; /* Position the search icon */ background-repeat: no-repeat; /* Do not repeat the icon image */ width: 50%; /* Full-width */ font-size: 16px; /* Increase font-size */ padding: 12px 20px 12px 40px; /* Add some padding */ border: 1px solid #ddd; /* Add a grey border */ margin-top: 12px; /* Add some space below the input */ border-radius: 50px; } button { margin-top: 12px; /* Add some space below the input */ background: #002C53; color: white; width: 50%; top: 10%; vertical-align: middle; padding: 12px 20px 12px 40px; /* Add some padding */ position: relative; border-radius: 40px; border: 5px dashed #F7FCFF; box-shadow: 5px 8px 1px rgba(0, 0, 0, 0.5); cursor: pointer; transition: 0.7s; } button:hover { border: 5px dashed #F7FCFF; box-shadow: 15px 20px 4px rgba(0, 0, 0, 0.5); } #searchButton { box-shadow: none; margin-top: 0px; padding: 13px; border: none; width: 100px; margin-left: -100px; background: #002C53; vertical-align: middle; border-radius: 0px 40px 40px 0px; } #searchButton:hover { background: #00AEE0; box-shadow: none; } input[type="submit"] { margin-top: 12px; /* Add some space below the input */ background: #002C53; color: white; width: 50%; top: 10%; vertical-align: middle; padding: 12px 20px 12px 40px; /* Add some padding */ position: relative; opacity: 1; border-radius: 40px; border: 4px dashed #F7FCFF; box-shadow: 5px 8px 1px rgba(0, 0, 0, 0.5); cursor: pointer; transition: 0.7s; } input[type="submit"] :hover { border: 4px dashed #F7FCFF; box-shadow: 15px 20px 4px rgba(0, 0, 0, 0.5); } textarea { background-image: url("/css/searchicon.png"); /* Add a search icon to input */ background-position: 10px 12px; /* Position the search icon */ background-repeat: no-repeat; /* Do not repeat the icon image */ width: 50%; /* Full-width */ font-size: 16px; /* Increase font-size */ padding: 12px 20px 12px 40px; /* Add some padding */ border: 1px solid #ddd; /* Add a grey border */ margin-top: 12px; /* Add some space below the input */ border-radius: 50px; } table { position: relative; width: 100%; height: 100%; } .table-item { color: white; margin: 30px; padding: 30px; padding: 20px; height: 50px; border-radius: 50px; margin-bottom: 20px; background: #002C53; transition: 1s; background: #002C53; color: white; } tr { padding: 3%; margin: 3%; color: white; margin: 30px; padding: 30px; border-bottom: 10px solid rgb(8, 30, 49); height: 50px; border-radius: 5px; background: #002C53; transition: 1s; } .close { border: 3px dashed white; padding: 10%; border-radius: 50px; } th { color: black; margin: 30px; padding: 30px; height: 50px; background: white; box-shadow: 5px 8px 1px rgba(0, 0, 0, 0.5); font-size: 20px; border-top:4px solid #FF3501; } td { padding: 10px; } /*-------------------------------------------------------------- # Full Screen Navigation --------------------------------------------------------------*/ .overlay { height: 100%; width: 0; position: fixed; top: 0; left: 0; z-index:10; background-color: rgba(0, 175, 224, 0.589); overflow-x: hidden; transition: 0.5s; } .overlay-content { position: relative; top: 5%; width: 100%; text-align: left; padding: 10%; margin-top: 10px; } .overlay a { padding: 8px; text-decoration: none; font-size: 60px; color: white; display: block; transition: 0.3s; } .overlay a:hover, .overlay a:focus { color: #FF3501; border: none; text-decoration: underline; } .overlay .closebtn { position: absolute; top: 20px; right: 45px; font-size: 60px; } @media screen and (max-height: 450px) { .overlay a { font-size: 20px; } .overlay .closebtn { font-size: 40px; top: 15px; right: 35px; } } /*-------------------------------------------------------------- # Admin Side Bar --------------------------------------------------------------*/ .colorTheme { color: #00AEE0; color: #FF3501; color: #00333F; color: #FCB900; color: #F7FCFF; color: #FE3808; color: #002C53; } #sidebar { display:none; z-index:10; margin: 0; padding: 0; width: 100px; background-color: #002C53; position: fixed; height: 100%; overflow: auto; text-align:center; } #sidebar li{ cursor:pointer; display: block; color:#e1e1e1; padding: 2px; padding-top:16px; text-decoration: none; } #sidebar li p{ margin-top:10px; font-size:10px; } #sidebar li.active { background-color: rgb(8, 30, 49); color: white; border-left:3px white solid; } #sidebar li:hover:not(.active) { background-color: rgb(8, 30, 49); color: white; } /*-------------------------------------------------------------- # Admin Dashboard --------------------------------------------------------------*/ #graphs{ width: 100%; text-align: center; } .graph { width: 47%; float: left; margin:1%; overflow:hidden; text-align: center; background: #002C53; box-shadow: 5px 8px 1px rgba(0, 0, 0, 0.5); border-top:#FF3501 5px solid; border-radius: 5px; } #metrics { width: 100%; text-align: center; } .metric { width: 25%; float: left; padding: 1%; text-align: center; transition: 0.5s; } .metric h1 { vertical-align: middle; } .metric_part { color:#00AEE0; float: left; width: 50%; height: 100%; padding:15px; padding-top:25px; background: #002C53; box-shadow: 5px 8px 1px rgba(0, 0, 0, 0.5); border-top:#FF3501 5px solid; } .mpart_right { border-radius: 0 5px 5px 0; } .mpart_left { border-radius: 5px 0 0 5px; } /*-------------------------------------------------------------- # Request Section --------------------------------------------------------------*/ #close_request{ transition:0.3s; opacity:0; position:absolute; top:2%; font-size:40px; left:20%; color:white; z-index:10; cursor:pointer; padding:30px; } #toStaff{ display:none; width:50%; position:relative; } #contactNav { height: 100%; width: 0; position: fixed; top: 0; left: 0; background-color: rgb(2, 30, 36); overflow-x: hidden; transition: 0.5s; text-align: center; padding-top: 7%; } .contact-content { vertical-align: middle; position: relative; top: 5%; width: 100%; text-align: center; margin-left: 2%; margin-top: 10%; } #contactNav a { padding: 8px; text-decoration: none; font-size: 60px; color: white; display: block; transition: 0.3s; } #contactNav a:hover, .overlay a:focus { color: #FF3501; border: none; } #contactNav .closebtn { position: absolute; top: 20px; right: 45px; font-size: 60px; } @media screen and (max-height: 450px) { .overlay a { font-size: 20px; } .overlay .closebtn { font-size: 40px; top: 15px; right: 35px; } } /*-------------------------------------------------------------- # Prevent Mobile Use for now --------------------------------------------------------------*/ #switch{ position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); font-size:9px; color:white; } @media only screen and (max-width: 768px) { #pagepiling{ display:none; } .navbar{ display:none; opacity:0; } #load{ display:none; opacity:0; } } @media only screen and (min-width: 768px) { #switch{ display:none; } } /*-------------------------------------------------------------- # admin divs --------------------------------------------------------------*/ #login_div, #user_div{ position:absolute; width:100%; height:100%; } #login_div{ background:#FE3808; } #user_div{ background:rgb(8, 30, 49); }
vue_tests/style.css
@import url("https://fonts.googleapis.com/css?family=Lilita+One|Poppins&display=swap"); ul { list-style-type: none; } body { overflow: scroll; padding: 15%; padding-top: -20%; color: white; background: #FF3501; font-family: "Lilita One", cursive; } body::-webkit-scrollbar { width: 0em; display: none; } body::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px #00333F; } body::-webkit-scrollbar-thumb { background-color: #002C53; outline: 1px solid #00333F; border-radius: 10px; } h4, p, h3 { /* mix-blend-mode: difference; */ color: #EDF5e1; } h4, h3 { font-size: 60px; text-decoration: bold; font-family: "Lilita One", cursive; } h5 { position: relative; margin: auto; text-decoration: bold; font-family: "Lilita One", cursive; } p { font-size: 1vw; width: 100%; font-family: "Poppins", sans-serif; } text { font-family: "Lilita One", cursive; } a { text-decoration: none; color: white; transition: 0.5s; } /*-------------------------------------------------------------- # Splash Screen --------------------------------------------------------------*/ #load { background: #333333; position: absolute; bottom: 0; width: 100%; height: 100%; text-align: center; margin: auto; -webkit-animation: disappear 10s forwards; animation: disappear 10s forwards; vertical-align: middle; text-align: center; padding: 10%; z-index:50; opacity:1; -webkit-opacity: 1; display:block; } /* Safari */ @-webkit-keyframes disappear { 0% { -webkit-opacity: 1; height: 100%; bottom: 0; z-index: 50; display:block; } 90% { -webkit-opacity: 1; height: 100%; bottom: 0; z-index: 50; display:block; } 99.999% { -webkit-opacity: 0; height: 100%; bottom: -100%; z-index: 50; display:none; } 100% { -webkit-opacity: 0; height: 100%; bottom: -100%; z-index: -10; display: none; } } @keyframes disappear { 0% { opacity: 1; height: 100%; bottom: 0; z-index: 50; display:block; } 90% { opacity: 1; height: 100%; bottom: 0; z-index: 50; display:block; } 99.999% { opacity: 0; height: 100%; bottom: -100%; z-index: 50; display:block; } 100% { opacity: 0; height: 100%; bottom: -100%; z-index: -10; display: none; } } .intro-img { width: 100%; float: none; margin: 0 auto 25px auto; font-family: "Poppins", sans-serif; } /*-------------------------------------------------------------- # Sections --------------------------------------------------------------*/ .section { padding: 5%; overflow: hidden; padding-left: 15%; } .colorTheme { color: #00AEE0; color: #FF3501; color: #00333F; color: #FCB900; color: #F7FCFF; color: #FE3808; color: #002C53; } /*-------------------------------------------------------------- # Map Font --------------------------------------------------------------*/ .lb-caption { font-size: 30px !important; color: #00AEE0 !important; } /*-------------------------------------------------------------- # Blob Control --------------------------------------------------------------*/ svg { width: 100%; } .filled-heading { text-transform: uppercase; font-family: "Source Sans Pro", sans-serif; font-size: 5em; line-height: 0.9; } #background path { animation: pulse 4s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite; transform-origin: 50% 50%; transform-box: fill-box; } #textClip text { display: none; } #textClip text:nth-of-type(n + 1):nth-of-type(-n + 3) { display: inline; } @keyframes pulse { 0%, 100% { transform: scale(0) rotate(33deg); } 35%, 65% { transform: scale(1) rotate(0deg); } } .container { position: absolute; left: 5%; bottom: 10%; width: 100%; margin: 0; } /*-------------------------------------------------------------- # Listening Icon --------------------------------------------------------------*/ #listen { position: relative; margin: auto; height: 100px; width: 100px; } .box { position: relative; margin-top: 100px; } .object { display: flex; flex: 0 1 100%; justify-content: center; align-items: center; align-content: stretch; } .outline { width: 60px; height: 60px; border-radius: 50%; border: 8px solid #B5A4A4; animation: pulse 3s; animation-timing-function: ease-out; animation-iteration-count: infinite; position: absolute; } .button { width: 120px; height: 120px; border-radius: 50%; background: #50CDDD; box-shadow: 0px 0px 80px #0084F9; position: absolute; } @keyframes pulse { 0% { transform: scale(0); opacity: 0; border: 65px solid #0B3082; } 50% { border: solid #A3FFC2; opacity: 0.8; } 90% { transform: scale(3.2); opacity: 0.2; border: 3px solid #2E3CFF; } 100% { transform: scale(3.3); opacity: 0; border: 1px solid #7A89FF; } } #delayed { animation-delay: 1.5s; } #circlein { width: 100px; height: 100px; border-radius: 50%; background: #6BD6E1; box-shadow: 0px -2px 15px #E0FF94; position: absolute; } .mic-icon { height: 60px; position: absolute; margin-top: 20px; } /*-------------------------------------------------------------- # Header --------------------------------------------------------------*/ .navbar { cursor: pointer; overflow: hidden; background: rgba(0, 0, 0, 0); position: fixed; top: 0; left:0; z-index:10; width: 10%; transition: .2s; } .navbar a h4 { mix-blend-mode: difference; transition: .2s; color:white; } .navbar a { float: left; display: block; mix-blend-mode: difference; text-align: center; padding: 14px 16px; text-decoration: none; font-size: 17px; } .navbar a h4:hover { color: #FCB900; text-decoration: underline; } /*-------------------------------------------------------------- # Inventory --------------------------------------------------------------*/ #myUL { background: #FF3501; z-index: 0; } .no_item { position: relative; margin: 1%; font-size: 30px; width: 40%; text-align: center; background: #002C53; border-radius: 50px; padding: 10px; box-shadow: 5px 8px 1px rgba(0, 0, 0, 0.5); transition: 0.5s; border: 5px dashed white; } .no_item:hover { padding: 10px; box-shadow: 15px 20px 4px rgba(0, 0, 0, 0.5); } .no_item a:hover { text-decoration: none; color: white; } #inventory { vertical-align: right; } #requests { vertical-align: right; } h1 { margin-top: 200px; } #myInput { background-image: url("/css/searchicon.png"); /* Add a search icon to input */ background-position: 10px 12px; /* Position the search icon */ background-repeat: no-repeat; /* Do not repeat the icon image */ width: 50%; /* Full-width */ font-size: 16px; /* Increase font-size */ padding: 12px 20px 12px 40px; /* Add some padding */ border: 1px solid #ddd; /* Add a grey border */ margin-top: 12px; /* Add some space below the input */ border-radius: 50px; } #myUL { /* Remove default list styling */ list-style-type: none; padding: 0; margin: 0; position: relative; } li a { color: transparent; font-size: 0; } li{ transition:0.5s; } .element-item-hide{ transition:0.3s; animation:shrink 2s forwards; } .element-item-show{ transition:0.3s; animation:shrink 2s reverse; } /* Safari */ @-webkit-keyframes shrink { 0% { opacity: 1; width: 1000px; display:block; } 99.999% { opacity: 1; width: 1000px; display:block; } 100% { opacity: 1; width: 0px; display:none; } } @keyframes shrink { 0% { opacity: 1; width: 1000px; display:block; } 99.999% { opacity: 1; width: 1000px; display:block; } 100% { opacity: 1; width: 0px; display:none; } } .dbitem { background: none; border: none; box-shadow: 5px 8px 1px rgba(0, 0, 0, 0.5); transition: 0.3s; border-radius: 20px; border: 5px dashed white; cursor:pointer; margin:10px; } .dbitem:hover { box-shadow: 15px 20px 4px rgba(0, 0, 0, 0.5); } .col-md-4 { float: left; /* border:none; */ } .card-body { background: #FCB900; border: none; color: #00333F; border-radius: 20px; padding:39px; vertical-align: center; text-align: center; } .crafts { background: #FCB900; } .tech { background: #00333F; color: white; } .tech ul li:hover{ border: 3px dashed black } .tech .modal_words a button{ border: 3px dashed white; } .software { background: #00AEE0; } .card-text { font-size: 70px; vertical-align: center; } /*-------------------------------------------------------------- # Modals --------------------------------------------------------------*/ .pop-row { position: absolute; width: 100%; } #pagepiling { opacity: 1; } #modals { z-index:50; } .card { /* background:#002C53; */ width: 80%; height: 60%; top: 10%; vertical-align: middle; padding: 5%; position: absolute; right: 0; left: 0; margin: auto; opacity: 0; /* border:10px dashed #F7FCFF; box-shadow: 15px 20px 4px rgba(0, 0, 0, .5); */ } .test:hover { box-shadow: 15px 20px 4px rgba(0, 0, 0, 0.5); } /* .random_cards{ top:60%; position:absolute; width:100%; height:100%; } .random_cards div{ position:absolute; top:60%; margin: 5%; width: 390px; height:570px; box-shadow: 0 22px 46px 0 rgba(0, 0, 0, 0.5); border-radius:15px; transition:0.5s; } */ /* .random_cards:hover { box-shadow: 15px 20px 4px rgba(0, 0, 0, 0.5); } .random_cards div:nth-child(1) { background: #FF3501; right:-10%; transform: rotate(40deg) } .random_cards div:nth-child(2) { background: #FF3501; right:10%; transform: rotate(50deg) } .random_cards div:nth-child(3) { background: #FF3501; right:-5%; transform: rotate(10deg) } .random_cards div:nth-child(4) { background: #FF3501; right:5%; transform: rotate(70deg) } */ .modal-words h4{ font-size:45px; color:#333333; } .tech .modal-words a div button { background: #FCB900; } .tech .modal-words h4 { color:#FCB900; } .crafts .modal-words a div button { background: #00AEE0; } .tech .modal-controls div i { color:#FCB900; } .crafts .modal-controls div i{ color:#00AEE0; } .software .modal-controls div i { color:#00333F; } .texts { padding: 10%; } .navbutton { width: 100%; height: 100%; font-size: 30px; } .card div { margin-top: 3%; } .modal { padding:5%; transition: 0.4s; background:#221f1fd5; } .modal-content{ width:100%; height:100%; background:none; } .modal-dialog{ width:100%; height:100%; background:none; } .modal_body { position:relative; margin-left:10%; width:100%; height:80%; box-shadow: 0 22px 46px 0 rgba(0, 0, 0, 0.5); border-radius:15px; transition:0.5s; /*border: 4px dashed white;*/ } .item-images { position:absolute; left:-30%; width: 80%; height:100%; border-radius: 15px 0px 0px 15px; margin: 0 auto; } .image { display: block; position: absolute; left:0; top:0; height:100%; width:600px; text-align:center; overflow:hidden; border-radius: 15px 0px 0px 15px; /* background:white; */ } .image_inner { display: block; position: relataive; height: 100%; } @media only screen and (min-width: 2000px) { .modal-words h4{ font-size:55px; } .modal-words h5{ font-size:75px; } .image { width:800px; } .modal_body { height:70%; width:130%; } } .toMap{ border:3px dashed #ffffff; box-shadow:none; } .toMap:hover{ border:3px white dashed; } .modal-words { padding-top:7%; padding:10%; right:0; position:absolute; bottom:0; width:60%; font:30px; } .modal-words h5{ font-size:20px; margin:10px; } .modal-controls{ position:absolute; height:20%; width:40%; right:30px; top:2%; } .modal-controls div i{ position: relative; background: none; cursor: pointer; font-size: 20px; padding:20px; float:right; z-index:10; transition:0.3s; } .modal-controls div i:hover { color:white; } /*-------------------------------------------------------------- # Admin --------------------------------------------------------------*/ .admin_input { /* border:3px dashed white;*/ position:relative; background: #002C53; border-top:#FF3501 5px solid; box-shadow: 5px 8px 1px rgba(0, 0, 0, 0.5); padding-top: 2%; padding-left: 2%; padding-right: 2%; padding-bottom:2%; width:80%; margin:auto; border-radius: 0px; } #image_input{ position:relative; height:400px; width:35%; right:10%; float:right; top:20%; } #main_inputs{ position:relative; width:60%; padding-top:2%; float:left; left:10%; top:20%; } #main_inputs div input,select{ width:70%; } #main_inputs div select{ width:70%; } #file_label{ position:absolute; vertical-align: middle; width: 100%; padding-top:50%; padding-bottom:50%; text-align:center; z-index: 1; } #imgTest { width: 100%; height: 80%; border: 4px dashed white; overflow:hidden; text-align:center; border-radius: 5px; padding:5px; } #imgTest img { width: 100%; height: 100%; border-radius: 15px; } .admin-images { position: relative; margin: auto; height: 400px; width: vheight; border-radius: 10px; border: 8px dashed #F7FCFF; } input { background-position: 10px 12px; /* Position the search icon */ background-repeat: no-repeat; /* Do not repeat the icon image */ width: 50%; /* Full-width */ font-size: 16px; /* Increase font-size */ padding: 12px 20px 12px 40px; /* Add some padding */ border: 1px solid #ddd; /* Add a grey border */ margin-top: 12px; /* Add some space below the input */ border-radius: 50px; } .select { background-position: 10px 12px; /* Position the search icon */ background-repeat: no-repeat; /* Do not repeat the icon image */ width: 50%; /* Full-width */ font-size: 16px; /* Increase font-size */ padding: 12px 20px 12px 40px; /* Add some padding */ border: 1px solid #ddd; /* Add a grey border */ margin-top: 12px; /* Add some space below the input */ border-radius: 50px; } button { margin-top: 12px; /* Add some space below the input */ background: #002C53; color: white; width: 50%; top: 10%; vertical-align: middle; padding: 12px 20px 12px 40px; /* Add some padding */ position: relative; border-radius: 40px; border: 5px dashed #F7FCFF; box-shadow: 5px 8px 1px rgba(0, 0, 0, 0.5); cursor: pointer; transition: 0.7s; } button:hover { border: 5px dashed #F7FCFF; box-shadow: 15px 20px 4px rgba(0, 0, 0, 0.5); } #searchButton { box-shadow: none; margin-top: 0px; padding: 13px; border: none; width: 100px; margin-left: -100px; background: #002C53; vertical-align: middle; border-radius: 0px 40px 40px 0px; } #searchButton:hover { background: #00AEE0; box-shadow: none; } input[type="submit"] { margin-top: 12px; /* Add some space below the input */ background: #002C53; color: white; width: 50%; top: 10%; vertical-align: middle; padding: 12px 20px 12px 40px; /* Add some padding */ position: relative; opacity: 1; border-radius: 40px; border: 4px dashed #F7FCFF; box-shadow: 5px 8px 1px rgba(0, 0, 0, 0.5); cursor: pointer; transition: 0.7s; } input[type="submit"] :hover { border: 4px dashed #F7FCFF; box-shadow: 15px 20px 4px rgba(0, 0, 0, 0.5); } textarea { background-image: url("/css/searchicon.png"); /* Add a search icon to input */ background-position: 10px 12px; /* Position the search icon */ background-repeat: no-repeat; /* Do not repeat the icon image */ width: 50%; /* Full-width */ font-size: 16px; /* Increase font-size */ padding: 12px 20px 12px 40px; /* Add some padding */ border: 1px solid #ddd; /* Add a grey border */ margin-top: 12px; /* Add some space below the input */ border-radius: 50px; } table { position: relative; width: 100%; height: 100%; } .table-item { color: white; margin: 30px; padding: 30px; padding: 20px; height: 50px; border-radius: 50px; margin-bottom: 20px; background: #002C53; transition: 1s; background: #002C53; color: white; } tr { padding: 3%; margin: 3%; color: white; margin: 30px; padding: 30px; border-bottom: 10px solid rgb(8, 30, 49); height: 50px; border-radius: 5px; background: #002C53; transition: 1s; } .close { border: 3px dashed white; padding: 10%; border-radius: 50px; } th { color: black; margin: 30px; padding: 30px; height: 50px; background: white; box-shadow: 5px 8px 1px rgba(0, 0, 0, 0.5); font-size: 20px; border-top:4px solid #FF3501; } td { padding: 10px; } /*-------------------------------------------------------------- # Full Screen Navigation --------------------------------------------------------------*/ .overlay { height: 100%; width: 0; position: fixed; top: 0; left: 0; z-index:10; background-color: rgba(0, 175, 224, 0.589); overflow-x: hidden; transition: 0.5s; } .overlay-content { position: relative; top: 5%; width: 100%; text-align: left; padding: 10%; margin-top: 10px; } .overlay a { padding: 8px; text-decoration: none; font-size: 60px; color: white; display: block; transition: 0.3s; } .overlay a:hover, .overlay a:focus { color: #FF3501; border: none; text-decoration: underline; } .overlay .closebtn { position: absolute; top: 20px; right: 45px; font-size: 60px; } @media screen and (max-height: 450px) { .overlay a { font-size: 20px; } .overlay .closebtn { font-size: 40px; top: 15px; right: 35px; } } /*-------------------------------------------------------------- # Admin Side Bar --------------------------------------------------------------*/ .colorTheme { color: #00AEE0; color: #FF3501; color: #00333F; color: #FCB900; color: #F7FCFF; color: #FE3808; color: #002C53; } #sidebar { display:none; z-index:10; margin: 0; padding: 0; width: 100px; background-color: #002C53; position: fixed; height: 100%; overflow: auto; text-align:center; } #sidebar li{ cursor:pointer; display: block; color:#e1e1e1; padding: 2px; padding-top:16px; text-decoration: none; } #sidebar li p{ margin-top:10px; font-size:10px; } #sidebar li.active { background-color: rgb(8, 30, 49); color: white; border-left:3px white solid; } #sidebar li:hover:not(.active) { background-color: rgb(8, 30, 49); color: white; } /*-------------------------------------------------------------- # Admin Dashboard --------------------------------------------------------------*/ #graphs{ width: 100%; text-align: center; } .graph { width: 47%; float: left; margin:1%; overflow:hidden; text-align: center; background: #002C53; box-shadow: 5px 8px 1px rgba(0, 0, 0, 0.5); border-top:#FF3501 5px solid; border-radius: 5px; } #metrics { width: 100%; text-align: center; } .metric { width: 25%; float: left; padding: 1%; text-align: center; transition: 0.5s; } .metric h1 { vertical-align: middle; } .metric_part { color:#00AEE0; float: left; width: 50%; height: 100%; padding:15px; padding-top:25px; background: #002C53; box-shadow: 5px 8px 1px rgba(0, 0, 0, 0.5); border-top:#FF3501 5px solid; } .mpart_right { border-radius: 0 5px 5px 0; } .mpart_left { border-radius: 5px 0 0 5px; } /*-------------------------------------------------------------- # Request Section --------------------------------------------------------------*/ #close_request{ transition:0.3s; opacity:0; position:absolute; top:2%; font-size:40px; left:20%; color:white; z-index:10; cursor:pointer; padding:30px; } #toStaff{ display:none; width:50%; position:relative; } #contactNav { height: 100%; width: 0; position: fixed; top: 0; left: 0; background-color: rgb(2, 30, 36); overflow-x: hidden; transition: 0.5s; text-align: center; padding-top: 7%; } .contact-content { vertical-align: middle; position: relative; top: 5%; width: 100%; text-align: center; margin-left: 2%; margin-top: 10%; } #contactNav a { padding: 8px; text-decoration: none; font-size: 60px; color: white; display: block; transition: 0.3s; } #contactNav a:hover, .overlay a:focus { color: #FF3501; border: none; } #contactNav .closebtn { position: absolute; top: 20px; right: 45px; font-size: 60px; } @media screen and (max-height: 450px) { .overlay a { font-size: 20px; } .overlay .closebtn { font-size: 40px; top: 15px; right: 35px; } } /*-------------------------------------------------------------- # Prevent Mobile Use for now --------------------------------------------------------------*/ #switch{ position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); font-size:9px; color:white; } @media only screen and (max-width: 768px) { #pagepiling{ display:none; } .navbar{ display:none; opacity:0; } #load{ display:none; opacity:0; } } @media only screen and (min-width: 768px) { #switch{ display:none; } } /*-------------------------------------------------------------- # admin divs --------------------------------------------------------------*/ #login_div, #user_div{ position:absolute; width:100%; height:100%; } #login_div{ background:#FE3808; } #user_div{ background:rgb(8, 30, 49); }
0.33546
0.070017
.mega-dropdown { position: static !important; } .mega-dropdown-menu { padding: 100px; width: 100%; box-shadow: none; -webkit-box-shadow: none; } .mega-dropdown-menu > li > ul { padding: 0; margin: 0; } .mega-dropdown-menu > li > ul > li { list-style: none; } .mega-dropdown-menu > li > ul > li > a { display: block; color: #222; padding: 3px 5px; } .mega-dropdown-menu > li ul > li > a:hover, .mega-dropdown-menu > li ul > li > a:focus { text-decoration: none; } .mega-dropdown-menu .dropdown-header { font-size: 18px; color: #ff3546; padding: 5px 60px 5px 5px; line-height: 30px; } .carousel-control { width: 30px; height: 30px; top: -35px; } .left.carousel-control { right: 30px; left: inherit; } .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right { font-size: 12px; background-color: #fff; line-height: 30px; text-shadow: none; color: #333; border: 1px solid #ddd; } /* .social-container{ position: fixed; z-index: 99; left: 10px; top: 0; bottom: 0; display: flex; flex-direction: column; justify-content: center; } .social-button{ position: relative; z-index: 99; padding: .5rem; border-radius: 100%; display: flex; justify-content: center; align-items: center; font-size: 1.5rem; color: #fff; margin-bottom: .5rem; width: 50px; height: 50px; border: solid 1px #000; } .social-button:hover{ color: #fff; } .social-button.fb{ background-color: blue; } .social-button.wa{ background-color: green; } */ .social { /* Bajamos la barra 200px de arriba a abajo */ position: fixed; z-index: 99; top: 0; bottom: 0; display: flex; flex-direction: column; justify-content: center; /* Utilizamos la propiedad z-index para que no se superponga algún otro elemento como sliders, galerías, etc */ } .social ul { list-style: none; } .social ul li a { display: inline-block; color:#fff; background: #000; padding: 10px 15px; text-decoration: none; -webkit-transition:all 500ms ease; -o-transition:all 500ms ease; transition:all 500ms ease; /* Establecemos una transición a todas las propiedades */ } .social ul li .fa-facebook-fa-square {background:#3b5998;} /* Establecemos los colores de cada red social, aprovechando su class */ .social ul li .fa-whatsapp-wa{background: green;} .social ul li .fa-linkedin-inn {background: #81838d;} .social ul li .fa-envelope-em{background: #ae181f;} .social ul li a:hover { background: #000; /* Cambiamos el fondo cuando el usuario pase el mouse */ padding: 10px 30px; /* Hacemos mas grande el espacio cuando el usuario pase el mouse */ } img.zoom-out{ transition: all .5s ease; } img.zoom-out:hover{ transform: scale(1.08); }
public/css/custom.css
.mega-dropdown { position: static !important; } .mega-dropdown-menu { padding: 100px; width: 100%; box-shadow: none; -webkit-box-shadow: none; } .mega-dropdown-menu > li > ul { padding: 0; margin: 0; } .mega-dropdown-menu > li > ul > li { list-style: none; } .mega-dropdown-menu > li > ul > li > a { display: block; color: #222; padding: 3px 5px; } .mega-dropdown-menu > li ul > li > a:hover, .mega-dropdown-menu > li ul > li > a:focus { text-decoration: none; } .mega-dropdown-menu .dropdown-header { font-size: 18px; color: #ff3546; padding: 5px 60px 5px 5px; line-height: 30px; } .carousel-control { width: 30px; height: 30px; top: -35px; } .left.carousel-control { right: 30px; left: inherit; } .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right { font-size: 12px; background-color: #fff; line-height: 30px; text-shadow: none; color: #333; border: 1px solid #ddd; } /* .social-container{ position: fixed; z-index: 99; left: 10px; top: 0; bottom: 0; display: flex; flex-direction: column; justify-content: center; } .social-button{ position: relative; z-index: 99; padding: .5rem; border-radius: 100%; display: flex; justify-content: center; align-items: center; font-size: 1.5rem; color: #fff; margin-bottom: .5rem; width: 50px; height: 50px; border: solid 1px #000; } .social-button:hover{ color: #fff; } .social-button.fb{ background-color: blue; } .social-button.wa{ background-color: green; } */ .social { /* Bajamos la barra 200px de arriba a abajo */ position: fixed; z-index: 99; top: 0; bottom: 0; display: flex; flex-direction: column; justify-content: center; /* Utilizamos la propiedad z-index para que no se superponga algún otro elemento como sliders, galerías, etc */ } .social ul { list-style: none; } .social ul li a { display: inline-block; color:#fff; background: #000; padding: 10px 15px; text-decoration: none; -webkit-transition:all 500ms ease; -o-transition:all 500ms ease; transition:all 500ms ease; /* Establecemos una transición a todas las propiedades */ } .social ul li .fa-facebook-fa-square {background:#3b5998;} /* Establecemos los colores de cada red social, aprovechando su class */ .social ul li .fa-whatsapp-wa{background: green;} .social ul li .fa-linkedin-inn {background: #81838d;} .social ul li .fa-envelope-em{background: #ae181f;} .social ul li a:hover { background: #000; /* Cambiamos el fondo cuando el usuario pase el mouse */ padding: 10px 30px; /* Hacemos mas grande el espacio cuando el usuario pase el mouse */ } img.zoom-out{ transition: all .5s ease; } img.zoom-out:hover{ transform: scale(1.08); }
0.350866
0.076684
@namespace url(http://www.w3.org/1999/xhtml); /* Website Colour Scheme #121414 Basic Background #101010 Border Darkening #202020 Bodrer Highlight #1d1d1d Secondary Background; Information Border Highlight #242424 Secondary Highlight #121212 Thirdary Background #3399ff Hyperlink _1 #66bbff Hyperlink _2 #080808 Information Primary #050505 Information Border Darkening #646464 Basic Font Colour for Site #545454 Header Font Colour #182020 MISC Colour? */ /* Other Information that could be important http://www.mylionking.com/fan/art/resources/images/report.png http://www.mylionking.com/fan/art/resources/images/photos.png http://www.mylionking.com/fan/art/resources/images/book.png http://www.mylionking.com/fan/art/resources/images/world.png http://www.mylionking.com/fan/art/resources/images/favorite.png http://www.mylionking.com/fan/art/resources/images/chart_bar.png Any place with the URL ".http://needstobeinvalid.com/." is a placeholder an image I don't want displayed since it looked bad. That dead, bogus link is intentional, and based by it's name, shows it is very delibrate. So please. Don't fix that. */ @-moz-document url-prefix("http://www.mylionking.com/fan/art/") { /* Gives the FAA portion of the web-site a darker appearance with higher contrast text for less strain on the eye */ body{ max-width:1920px; min-width:950px; margin:0 auto; font:100% "Trebuchet MS",Verdana,Arial,sans-serif; color:#646464!important; } /* This is the core layout size for the web-site; Default Values: width=950px margin=0 auto padding: 0 10px 10px 10px font:100.01% "Trebuchet MS",Verdana,Arial,Sans-serif color:#121212 //standard font colour !important */ a, a:link, a:visited { text-decoration:none; color:#3399ff!important; } /* Hyperlink Unhighlighted Default Values: text-decoration:none color:#7b3c1b !important */ a:active, a:hover, a:visited:hover { text-decoration:none; color:#66bbff!important; } /* Hyperlink Highlighted Default Values: text-decoration:underline color:#b3642e !important */ p { margin:0; padding:0; } /* Paragraph Wrapping */ span.small { font-size:75%; } /* sub-script font on page */ span.supasmall { font-size:60%; } /* supersub-script font on page */ img { border:0; } /* border around an image. Unsure what image(s) though could not locate what image(s) */ .fanart_content { margin:0; background:#121414; text-align:left; border-top:0px solid #202020; /* Turns off the Border across the top of the page and across the Main Section */ border-bottom:4px solid #101010; border-left:2px solid #202020; border-right:4px solid #101010; -webkit-border-bottom-left-radius:6px; -webkit-border-bottom-right-radius:6px; } /* Primary Page Background Default Values: margin:0; background:#f0e6d1; text-align:left; border-bottom:1px solid #f0e6d1; border-left:1px solid #f0e6d1; border-right:1px solid #f0e6d1; -moz-border-radius-bottomleft:6px; -moz-border-radius-bottomright:6px; -webkit-border-bottom-left-radius:6px; -webkit-border-bottom-right-radius:6px; */ #fanart_header { background-position:top center!important; } .fanart_content_left { margin:0; background:#080808; border-left:2px solid #1d1d1d; border-top:2px solid #1d1d1d; border-bottom:4px solid #050505; border-right:0px solid #050505; -webkit-border-bottom-left-radius:6px; -webkit-border-bottom-right-radius:6px; float:left; width:30%; /* If page size is too narrow, this can cause some wrap issues with Artists' Gallery Page */ text-align:left; } /* Selection Menus in the Gallery Tab of Profiles Default Values: margin:0; background:#d2bba1; border-left:1px solid #d2bba1; border-bottom:1px solid #d2bba1; -moz-border-radius-bottomleft:6px; -webkit-border-bottom-left-radius:6px; -moz-border-radius-bottomright:6px; -webkit-border-bottom-right-radius:6px; float:left; width:247px; text-align:left; */ .fanart_content_right { margin:0; background: #121414; border-left:0 solid #202020; border-top:0px solid #202020; /* Turns off border across to of Artist's Page */ border-right:4px solid #101010; border-bottom:4px solid #101010; -webkit-border-bottom-left-radius:6px; -webkit-border-bottom-right-radius:6px; float:right; width:69.51%; text-align:left; } /* Artwork Tab within Gallery Tab of Profile Default Values: margin:0; background: #f0e6d1; border-left:1px solid #f0e6d1; border-right:1px solid #f0e6d1; border-bottom:1px solid #f0e6d1; -moz-border-radius-bottomleft:6px; -webkit-border-bottom-left-radius:6px; -moz-border-radius-bottomright:6px; -webkit-border-bottom-right-radius:6px; float:right; width:700px; text-align:left; */ .fanart_content div.text { margin:0 15px; padding:5px 0 5px 0; clear:both; } /* Top of site selections Wrap Default Values: margin:0 15px; padding:5px 0 4px 0; clear:both; */ .fanart_content_left div.text { margin:-2px -4px 0 3px; padding:0 0 9px 0; } /* Default Values: margin:-2px -4px 0 3px; padding:0 0 9px 0; */ .fanart_content_right div.text { margin:0 15px; padding:5px 0 4px 0; } /* Deafult Values: margin:0 15px; padding:5px 0 4px 0; */ .fanart_content div.left { float:left; width:50%; } /* Left Column of Profile Page Default Values: float:left; width:56%; */ .fanart_content div.right { float:right; width:46%; margin:11px 0; } /* Right Coloumn of Profile Page Default Values: float:right; width:40%; margin:11px 0; */ .fanart_content div.boxfilled { background:#1d1d1d; padding:8px; margin:6px; } /* Default Values: background:#edc17d; padding:8px; margin:6px; */ .fanart_content div.boxfilledclean { background:#1d1d1d; padding:4px; } /* Default Values: background:#edc17d; padding:4px; */ .fanart_content div.boxbordered { border:3px solid #1d1d1d; padding:8px; margin:6px; } /* Default Values: border:3px solid #edc17d; padding:8px; margin:6px; */ .cboxElement > IMG { min-width:auto!important; min-height:auto!important; max-width:100%!important; max-height:1080px!important; width:inherit!important; height:inherit!important; } h1,h2,h3,h4,h5,div#text p{ font:100% "Trebuchet MS","Verdana","Arial","sans-serif"; margin:0.3em; padding:0; color:#545454; } /* Header Basic Information Default Values: font:100.01% "Trebuchet MS",Verdana,Arial,sans-serif; margin:0.3em; //Affects some wrap? padding:0; color:#121212; */ h1{ font-size:200%; /* Default */ } h2{ font-size:150%; text-shadow:0 0 0 rgba(0, 0, 0, 0); } /* Header 2 Information Default Values: font-size:150%; text-shadow:0 1px 0 rgba(255, 255, 255, 0.6); */ h3{ font-size:150%; width:100%; margin-bottom:0.5em; padding-bottom:2px; /* Affects Journal Wrap */ border-bottom:0 solid #121414; color:#545454; /* Header 3 Font Colour */ text-shadow:0 0 0 rgba(0, 0, 0, 0); } /* Header 3 Information Default Values: font-size:150%; width:100%; margin-bottom:0.5em; padding-bottom:2px; border-bottom:1px solid #d3bfa7; color:#291f14; text-shadow:0 1px 0 rgba(255, 255, 255, 0.6); */ h4{ font-size:120%; } h5{ font-size:100%; } hr { margin:8px 0; height:1px; border:1px #1d1d1d solid!important; } .fanart_content p { padding-bottom:1em; margin-left:0.5em; } ol,ul{ margin:0.3em 0.3em 0.3em 1.3em; } #fanart_header { height:140px; display:block; margin:-10px 5px 0 5px; padding:0 0 0 5px; text-align:left; } #fanart_header h1 { background:url("http://puu.sh/oNKWo/bf418ce79f.png") no-repeat left top; /* Custom Link to show who made Theme */ display:block; width:100%; /* was 244px */ height:92px; /* Cannot change; breaks entire layout*/ text-indent:-9000em; opacity: 0.0 !important; -moz-transition: .5s ease-in; -moz-transition: .5s ease-out; } #fanart_header h1:hover { background:url("http://puu.sh/oNKWo/bf418ce79f.png") no-repeat left top; /* Custom Link to show who made Theme */ display:block; width:100%; /* was 244px */ height:92px; /* Cannot change; breaks entire layout*/ text-indent:-9000em; opacity: 1.0 !important; -moz-transition: .5s ease-in; -moz-transition: .5s ease-out; } ul#fanart-menu{ list-style-type:none; height:27px; font-size:13px; font-weight:bold; margin:0; padding:12px 0 0 0; text-shadow:0 0 0 rgba(0, 0, 0, 0); } ul#fanart-menu li.left{ margin:0; } ul#fanart-menu li{ display:block; float:left; margin:0 0 0 5px; height:27px; } ul#fanart-menu li a{ display:block; float:left; color:#121414; background:#121414; line-height:27px; text-decoration:none; padding:0 17px 0 18px; height:27px; } /* FFA Menu Related Default Values: display:block; float:left; color:#7b3c1b; background:#f0e6d1; line-height:27px; text-decoration:none; padding:0 17px 0 18px; height:27px; */ ul#fanart-menu li a.current{ background:#1d1d1d; /* default #d2bba1 */ } .fanart_content_header { background:#1d1d1d; text-align:left; border-top:2px solid #202020; border-left:2px solid #202020; border-right:4px solid #101010; -webkit-border-top-left-radius:6px; -webkit-border-top-right-radius:6px; } /* Information Header-Trim Default Values: background:#d2bba1; text-align:left; border-top:1px solid #d2bba1; border-left:1px solid #d2bba1; border-right:1px solid #d2bba1; -moz-border-radius-topleft:6px; -moz-border-radius-topright:6px; -webkit-border-top-left-radius:6px; -webkit-border-top-right-radius:6px; */ .fanart_content_header div#topper { background:#1d1d1d; /* Default #d2bba1 */ min-height:70px; max-height:70px; margin:0 0 0 0; } .fanart_content_header div#fanart-title-container { float:left; display:block; width:42%; } .fanart_content_header div#fanart-title { } .fanart_content_header div#fanart-title h2 { margin:8px 0 0 8px; } .fanart_content_header div#fanart-title p { margin:0 0 0 8px; } ul#fanart-tabs{ clear:none; list-style-type:none; height:27px; font-size:13px; font-weight:bold; padding:0; float:right; margin:42px 5px 0 0; text-shadow:0 0 0 rgba(0, 0, 0, 0); /* Default: 0 1px 0 rgba(255, 255, 255, 0.6 */ } ul#fanart-tabs li{ display:block; float:right; margin:0 0 0 5px; height:27px; } ul#fanart-tabs li.left{ margin:0; } ul#fanart-tabs li a{ display:block; float:left; color:#121414; line-height:27px; text-decoration:none; padding:0 12px 0 13px; height:27px; border-top:2px solid #202020; border-left:2px solid #202020; border-right:4px solid #101010; } /* Secondary Tabs in FAA Album Default Values: display:block; float:left; color:#7b3c1b; line-height:27px; text-decoration:none; padding:0 12px 0 13px; height:27px; border-top:1px solid #d2bba1; border-left:1px solid #d2bba1; border-right:1px solid #d2bba1; */ ul#fanart-tabs li a:hover, li a.active{ } ul#fanart-tabs li a.current{ background:#121414; border-top:2px solid #202020; border-left:2px solid #202020; border-right:4px solid #101010; -webkit-border-top-left-radius:6px; -webkit-border-top-right-radius:6px; } /* Default Values: background:#f0e6d1; border-top:1px solid #f0e6d1; border-left:1px solid #f0e6d1; border-right:1px solid #f0e6d1; -moz-border-radius-topleft:6px; -moz-border-radius-topright:6px; -webkit-border-top-left-radius:6px; -webkit-border-top-right-radius:6px; */ ul#fanart-album-tabs{ clear:none; list-style-type:none; height:27px; font-size:13px; font-weight:bold; padding:0; float:right; margin:42px 5px 0 0; text-shadow:0 0 0 rgba(0, 0, 0, 0); /* Default: 0 1px 0 rgba(255, 255, 255, 0.6 */ } ul#fanart-album-tabs li{ display:block; float:right; margin:0 0 0 5px; height:27px; } ul#fanart-album-tabs li.left{ margin:0; } ul#fanart-album-tabs li a{ display:block; float:left; color:#121414; line-height:27px; text-decoration:none; padding:0 12px 0 29px; height:27px; border-top:2px solid #202020; border-left:2px solid #202020; border-right:4px solid #101010; } /* Third Tab Set FAA Default Values: display:block; float:left; color:#7b3c1b; line-height:27px; text-decoration:none; padding:0 12px 0 29px; height:27px; border-top:1px solid #d2bba1; border-left:1px solid #d2bba1; border-right:1px solid #d2bba1; */ ul#fanart-album-tabs li a:hover, li a.active{ } ul#fanart-album-tabs li a.current{ border-top:2px solid #202020; border-left:2px solid #202020; border-right:4px solid #101010; -webkit-border-top-left-radius:6px; -webkit-border-top-right-radius:6px; } /* Active 3rd Tab Set Trim Default Values: border-top:1px solid #f0e6d1; border-left:1px solid #f0e6d1; border-right:1px solid #f0e6d1; -moz-border-radius-topleft:6px; -moz-border-radius-topright:6px; -webkit-border-top-left-radius:6px; -webkit-border-top-right-radius:6px; */ ul#fanart-album-tabs li.profile a, ul#fanart-tabs li.profile a:link, ul#fanart-tabs li.profile a:visited { background:transparent url("http://www.mylionking.com/fan/art/resources/images/report.png") no-repeat 7px 6px } ul#fanart-album-tabs li.profile a.current { background:#121414 url("http://www.mylionking.com/fan/art/resources/images/report.png") no-repeat 7px 6px; } ul#fanart-album-tabs li.gallery a, ul#fanart-tabs li.gallery a:link, ul#fanart-tabs li.gallery a:visited { background:transparent url("http://www.mylionking.com/fan/art/resources/images/photos.png") no-repeat 7px 6px; } ul#fanart-album-tabs li.gallery a.current { background:#121414 url("http://www.mylionking.com/fan/art/resources/images/photos.png") no-repeat 7px 6px; } ul#fanart-album-tabs li.journal a, ul#fanart-tabs li.journal a:link, ul#fanart-tabs li.journal a:visited { background:transparent url("http://www.mylionking.com/fan/art/resources/images/book.png") no-repeat 7px 6px; } ul#fanart-album-tabs li.journal a.current { background:#121414 url("http://www.mylionking.com/fan/art/resources/images/book.png") no-repeat 7px 6px; } ul#fanart-album-tabs li.characters a, ul#fanart-tabs li.characters a:link, ul#fanart-tabs li.characters a:visited { background:transparent url("http://www.mylionking.com/fan/art/resources/images/world.png") no-repeat 7px 6px; } ul#fanart-album-tabs li.characters a.current { background:#121414 url("http://www.mylionking.com/fan/art/resources/images/world.png") no-repeat 7px 6px; } ul#fanart-album-tabs li.favorites a, ul#fanart-tabs li.favorites a:link, ul#fanart-tabs li.favorites a:visited { background:transparent url("http://www.mylionking.com/fan/art/resources/images/favorite.png") no-repeat 7px 6px; } ul#fanart-album-tabs li.favorites a.current { background:#121414 url("http://www.mylionking.com/fan/art/resources/images/favorite.png") no-repeat 7px 6px; } ul#fanart-album-tabs li.stats a, ul#fanart-tabs li.stats a:link, ul#fanart-tabs li.stats a:visited { background:transparent url("http://www.mylionking.com/fan/art/resources/images/chart_bar.png") no-repeat 7px 6px; } ul#fanart-album-tabs li.stats a.current { background:#121414 url("http://www.mylionking.com/fan/art/resources/images/chart_bar.png") no-repeat 7px 6px; } .fanart_content div#fanart-status { border-bottom:5px solid #1d1d1d; margin:0 0 10px 0; padding:10px 10px 0 10px; } .fanart_content span.left { float:left; width:50%; } .fanart_content span.right { float:right; width:40%; } #fanart_footer { margin-left:30px; text-align:center; clear:both; } #fanart_footer p { margin-top:5px; color:#6f6f6f; font:65% "Verdana", "Arial", "Helvetica", "sans-serif"; } #menu { margin:7px 0 0 0; padding:0; } #menu li { float:left; list-style:none; font-size:13px; font-weight:bold; } #menu li a { display:block; background:#121414; /* Default: #f0e6d1 */ padding:2px 12px; text-decoration:none; border-right:4px solid #121414; /* Default: #c7b298 */ white-space:nowrap; } #menu li a:hover { text-shadow:0 0 0 rgba(0, 0, 0, 0); /* Default: 0 1px 0 rgba(255, 255, 255, 0.6) */ } #menu li ul { margin:5px 0 0 0; padding:0; position:absolute; visibility:hidden; } #menu li ul li { float:none; display:inline; } #menu li ul li a { width:auto; background:#1d1d1d; /* Default: #f0e6d1 */ border-bottom:0 solid #121414; /* Deafult: #c7b298 */ } #menu li ul li a:hover { } .incomment-btn { padding:1px 8px 1px 0px; letter-spacing:-1px; } .journal-btn-edit, .journal-btn-delete, .journal-btn-new, .journal-btn-comment, .journal-btn-comments { padding:0 5px 0 20px; letter-spacing:-1px; } span.allowed, span.not_allowed { padding:0 20px 0 5px; } span.forum_profile, span.email, span.personal_message, .comment_edit, .comment_delete, .comment_add, .artwork_edit, .artwork_delete, .favorite_add, .favorite_remove, .flag, .tag, .tag_add, .tag_remove { padding:0 0 0 20px; } span.light { color:#242424; } .journal-btn-edit { background:transparent url("http://www.mylionking.com/fan/art/resources/images/book_edit.png") no-repeat left top; } .journal-btn-delete { background:transparent url("http://www.mylionking.com/fan/art/resources/images/book_delete.png") no-repeat left top; } .journal-btn-new { background:transparent url("http://www.mylionking.com/fan/art/resources/images/book_add.png") no-repeat left top; } .journal-btn-comment { background:transparent url("http://www.mylionking.com/fan/art/resources/images/comment.png") no-repeat left top; } .journal-btn-comments { background:transparent url("http://www.mylionking.com/fan/art/resources/images/comments.png") no-repeat left top; } span.allowed { background:transparent url("http://www.mylionking.com/fan/art/resources/images/allowed.png") no-repeat right top; } span.not_allowed { background:transparent url("http://www.mylionking.com/fan/art/resources/images/not_allowed.png") no-repeat right top; } span.email { background:transparent url("http://www.mylionking.com/fan/art/resources/images/email.png") no-repeat left center; } span.personal_message { background:transparent url("http://www.mylionking.com/fan/art/resources/images/group.png") no-repeat left center; } span.forum_profile { background:transparent url("http://www.mylionking.com/fan/art/resources/images/user.png") no-repeat left center; } .comment_edit { background:transparent url("http://www.mylionking.com/fan/art/resources/images/comment_edit.png") no-repeat left center; } .comment_delete { background:transparent url("http://www.mylionking.com/fan/art/resources/images/comment_delete.png") no-repeat left center; } .comment_add { cursor:pointer; background:transparent url("http://www.mylionking.com/fan/art/resources/images/comment_add.png") no-repeat left center; } .artwork_edit { background:transparent url("http://www.mylionking.com/fan/art/resources/images/photo_edit.png") no-repeat left center; } .artwork_delete { background:transparent url("http://www.mylionking.com/fan/art/resources/images/photo_delete.png") no-repeat left center; } .flag { background:transparent url("http://www.mylionking.com/fan/art/resources/images/flag_red.png") no-repeat left center; } .star{ cursor:pointer; } .favorite_add { background:transparent url("http://www.mylionking.com/fan/art/resources/images/favorite_add.png") no-repeat left center; } .favorite_remove { background:transparent url("http://www.mylionking.com/fan/art/resources/images/favorite_remove.png") no-repeat left center; } .tag { background:transparent url("http://www.mylionking.com/fan/art/resources/images/tag_blue.png") no-repeat left center; } .tag_add { background:transparent url("http://www.mylionking.com/fan/art/resources/images/tag_blue_add.png") no-repeat left center; } .tag_remove { background:transparent url("http://www.mylionking.com/fan/art/resources/images/tag_blue_delete.png") no-repeat left center; } tr.rola{ background-color:#242424; /* Default: white */ } td.rolb{ cursor:pointer; text-align:center; border:solid 2px #545454; background-color:#646464; } /* Default Values: cursor:pointer; text-align:center; border:solid 1px #f1f1f1; background-color:#ffffff; */ .indent1 { margin-left:10px; } .indent2 { margin-left:20px; } .indent3 { margin-left:30px; } .indent4 { margin-left:40px; } .indent5 { margin-left:50px; } .indent6 { margin-left:60px; } .indent7 { margin-left:70px; } .indent8 { margin-left:80px; } .indent9 { margin-left:90px; } .indent10 { margin-left:100px; } .artwork { clear:both; text-align:center; margin:0 auto; } .artwork_thumbs { margin:0 0; width:100%; height:100%; } .thumb { background:url("http://needstobeinvalid.com/images/shadow1.png") no-repeat bottom right; position:relative; float:left; } .thumb div { background:url("http://needstobeinvalid.com/images/shadow2.png") no-repeat left top; padding:0 5px 6px 0; } .thumb img { width:inherit!important; } .cboxElement > IMG { min-width: auto !important; min-height: auto !important; max-width: 100% !important; max-height: 1080px !important; width: inherit !important; height: inherit !important; } .announcementbox { background:#1d1d1d; border-top:2px solid #202020; border-bottom:4px solid #101010; padding:3px 7px; } /* Journal and Announcment Boxes on FAA Home_1 Default Values: background:#e5bbbb; border-top:1px solid #ab7d7b; border-bottom:1px solid #ab7d7b; padding:3px 7px; */ .prettybox { background:#121414 linear-gradient( #1d1d1d , #121414 )!important;; border:0px solid #121414; } /* Journal and Announcement Boxes on FAA Home_2 Default Values: background:#e6dcc6; border-top:1px solid #ab937b; border-bottom:1px solid #ab937b; */ .prettybox span.left, .announcementbox span.left { float:left; text-shadow:0 0 0 rgba(0, 0, 0, 0); /* Default: 0 1px 0 rgba(255, 255, 255, 0.6) */ text-align:left; /* New Information */ } .prettybox span.right { float:right; text-shadow:0 0 0 rgba(0, 0, 0, 0); /* Default: 0 1px 0 rgba(255, 255, 255, 0.6) */ text-align:right; } div.condensed_container { max-width:100%; /* Default: 860px */ margin:0 auto; background: #151717; /* New Custom Script */ } td[style="background:#e6dcc6;"] { background:#202020 linear-gradient( #242424 , #121414 )!important; } td[align="right"] { text-align:left!important; } td[width="600"] { min-width:100px!important; max-width:100px!important; width:inherit!important; } div.journal_header { border-top:2px solid #202020; border-left:2px solid #202020; border-right:4px solid #101010; background:#1d1d1d linear-gradient(#242424,#121414)!important;; -webkit-border-top-left-radius:5px; -webkit-border-top-right-radius:5px; padding:10px; margin:0 0 0 10px; } /* Journal Header Information Default Values: border-top:1px solid #c7b298; border-left:1px solid #c7b298; border-right:1px solid #c7b298; background-color:#d3bfa7; -moz-border-radius-topleft:5px; -moz-border-radius-topright:5px; -webkit-border-top-left-radius:5px; -webkit-border-top-right-radius:5px; padding:10px; margin:0 0 0 10px; */ div.journal_container { border-left:2px solid #202020; border-right:4px solid #101010; border-bottom:4px solid #101010; background-color:#161818; -webkit-border-bottom-left-radius:5px; -webkit-border-bottom-right-radius:5px; padding:0 10px 5px 10px; margin:0 0 7px 10px; } /* Journal Bounding Box Information Default Values: border-left:1px solid #e5dac1; border-right:1px solid #e5dac1; border-bottom:1px solid #e5dac1; background-color:#f5eddc; -moz-border-radius-bottomleft:5px; -moz-border-radius-bottomright:5px; -webkit-border-bottom-left-radius:5px; -webkit-border-bottom-right-radius:5px; padding:0 10px 5px 10px; margin:0 0 7px 10px; */ div.journal_container img { max-width: 100%; } div.comment_container { border-top:0 solid #202020; /* Altered */ border-left:0 solid #202020; /* New Information */ border-right:0 solid #101010; /* New Information */ border-bottom: 0 solid #101010; /*New Information */ background-color:#151717; -webkit-border-radius:5px; } /* Comment Section: Default Values: border:1px solid #d3bfa7; background-color:#e6dcc6; -moz-border-radius:5px; -webkit-border-radius:5px; */ div.infobox_container { border-top:3px solid #323838; /* Altered */ border-left:3px solid #242626; /* New Information */ border-right:4px solid #101212; /* New Information */ border-bottom:4px solid #101212; /*New Information */ background-color:#151717; -webkit-border-radius:5px; } div.comment_container { padding:2px; margin:0 0 7px 10px; } div.infobox_container { padding:4px 10px 7px 10px; margin:0 0 7px 10px; } div.textbubble { width:100%; margin:13px 0 0 0; } div.textbubble blockquote { border-left:4px solid #202020!important; /* Default: 1px solid #c9c2c1 */ border-top:3px solid #161818!important; border-bottom:2px solid #121414!important; border-right:1px solid #161818!important; background:#151717 linear-gradient(to right,#202020,#151717)!important; /* Default: #fff */ padding:3px 10px; } div.textbubble div.cite { position:relative; display:block; width:10px; height:10px; margin:0 0 -23px -9px; padding:0; background:transparent url("http://needstobeinvalid.com/images/tip.gif") no-repeat 0 0; } div.textbubble div.rounded { border:1px solid #151717!important; /* Default: 1px solid #cacaca */ background-color:#151717!important; /* Default: #fff */ -webkit-border-radius:5px; } div.textbubble div.rounded blockquote { border:0; background-color:transparent; } div.textbubble div.rounded blockquote p { margin:0px 10px; } div.line { height:0; /* Default: 1px */ width:100%; background:#1d1d1d; margin:2px 0 0 0; } .autocomplete-w1 { position:absolute; top:0px; left:0px; margin:6px 0 0 6px; /* IE6 fix: */ _background:none; _margin:1px 0 0 0; } .autocomplete { font-size:13px; border:1px solid #202020; background:#1d1d1d; cursor:default; text-align:left; max-height:350px; overflow:auto; margin:-6px 6px 6px -6px; /* IE6 specific: */ _height:350px; _margin:0; _overflow-x:hidden; } .autocomplete .selected { background:#1d1d1d; } .autocomplete div { padding:2px 5px; white-space:nowrap; overflow:hidden; } .autocomplete strong { font-weight:normal; color:#1d1d1d; } .treeTable tr td { padding: 0 0 0 23px; max-width:175px; word-wrap:break-word; } .treeTable tr td .expander { background-position:left center; background-repeat:no-repeat; cursor:pointer; padding:0; } .treeTable tr.on td { background-color:#1d1d1d; border-left:2px solid #242424; border-top:2px solid #242424; border-bottom:4px solid #101010; border-right:4px solid #101010; -webkit-border-top-left-radius:4px; -webkit-border-bottom-left-radius:4px; } /* Artists' Selection Current on Gallery Page Default Values: background-color:#f0e6d1; border:1px solid #f0e6d1; -moz-border-radius-topleft:4px; -moz-border-radius-bottomleft:4px; -webkit-border-top-left-radius:4px; webkit-border-bottom-left-radius:4px; */ .treeTable tr.collapsed td .expander, .treeTable tr.collapsed.selected td .expander, .treeTable tr.collapsed.accept td .expander { background-image:url("http://www.mylionking.com/fan/art/resources/images/toggle-expand-dark.png"); } .treeTable tr.expanded td .expander, .treeTable tr.expanded.selected td .expander, .treeTable tr.expanded.accept td .expander { background-image:url("http://www.mylionking.com/fan/art/resources/images/toggle-collapse-dark.png"); } .treeTable th, .treeTable tr.selected, .treeTable tr.accept { background-color:#1d1d1d; } .treeTable th { padding:5px; } .treeTable .ui-draggable-dragging { color:#1d1d1d; z-index:1; } .treeTable span.album, .treeTable span.folder, .treeTable span.file { background-position:center left; background-repeat:no-repeat; padding:.2em 0 .2em 1.5em; } .treeTable span.album { background-image: url("http://www.mylionking.com/fan/art/resources/images/photos.png"); } .treeTable span.folder { background-image: url("http://www.mylionking.com/fan/art/resources/images/folder.png"); } .treeTable span.file { background-image:url("http://www.mylionking.com/fan/art/resources/images/photo.png"); } #allowed li { background: url('http://www.mylionking.com/fan/art/resources/images/accept.png') no-repeat left 5px; padding: 0 0 3px 22px; } #unacceptable li { background: url('http://www.mylionking.com/fan/art/resources/images/cross.png') no-repeat left 5px; padding: 0 0 3px 22px; } textarea.elastic { max-height: 215px; } table.darkheader th, td.darkened { background:#1d1d1d; } table.darkheader th, table.darkheader td { padding:5px; } .lightened { background: #1d1d1d; } .h3_text_right { float:right; margin:16px 0; font-size:75%; } .btn_emphasis { padding: 0 4px; -webkit-border-radius:5px; } a.btn_emphasis, a.btn_emphasis:link, a.btn_emphasis:visited { background: #1d1d1d; border: 1px solid #1d1d1d; } a.btn_emphasis:hover, a.btn_emphasis:active { background: #1d1d1d; border: 1px solid #1d1d1d; text-decoration: none; } #update-messages img { max-width:450px; } }
data/usercss/127760.user.css
@namespace url(http://www.w3.org/1999/xhtml); /* Website Colour Scheme #121414 Basic Background #101010 Border Darkening #202020 Bodrer Highlight #1d1d1d Secondary Background; Information Border Highlight #242424 Secondary Highlight #121212 Thirdary Background #3399ff Hyperlink _1 #66bbff Hyperlink _2 #080808 Information Primary #050505 Information Border Darkening #646464 Basic Font Colour for Site #545454 Header Font Colour #182020 MISC Colour? */ /* Other Information that could be important http://www.mylionking.com/fan/art/resources/images/report.png http://www.mylionking.com/fan/art/resources/images/photos.png http://www.mylionking.com/fan/art/resources/images/book.png http://www.mylionking.com/fan/art/resources/images/world.png http://www.mylionking.com/fan/art/resources/images/favorite.png http://www.mylionking.com/fan/art/resources/images/chart_bar.png Any place with the URL ".http://needstobeinvalid.com/." is a placeholder an image I don't want displayed since it looked bad. That dead, bogus link is intentional, and based by it's name, shows it is very delibrate. So please. Don't fix that. */ @-moz-document url-prefix("http://www.mylionking.com/fan/art/") { /* Gives the FAA portion of the web-site a darker appearance with higher contrast text for less strain on the eye */ body{ max-width:1920px; min-width:950px; margin:0 auto; font:100% "Trebuchet MS",Verdana,Arial,sans-serif; color:#646464!important; } /* This is the core layout size for the web-site; Default Values: width=950px margin=0 auto padding: 0 10px 10px 10px font:100.01% "Trebuchet MS",Verdana,Arial,Sans-serif color:#121212 //standard font colour !important */ a, a:link, a:visited { text-decoration:none; color:#3399ff!important; } /* Hyperlink Unhighlighted Default Values: text-decoration:none color:#7b3c1b !important */ a:active, a:hover, a:visited:hover { text-decoration:none; color:#66bbff!important; } /* Hyperlink Highlighted Default Values: text-decoration:underline color:#b3642e !important */ p { margin:0; padding:0; } /* Paragraph Wrapping */ span.small { font-size:75%; } /* sub-script font on page */ span.supasmall { font-size:60%; } /* supersub-script font on page */ img { border:0; } /* border around an image. Unsure what image(s) though could not locate what image(s) */ .fanart_content { margin:0; background:#121414; text-align:left; border-top:0px solid #202020; /* Turns off the Border across the top of the page and across the Main Section */ border-bottom:4px solid #101010; border-left:2px solid #202020; border-right:4px solid #101010; -webkit-border-bottom-left-radius:6px; -webkit-border-bottom-right-radius:6px; } /* Primary Page Background Default Values: margin:0; background:#f0e6d1; text-align:left; border-bottom:1px solid #f0e6d1; border-left:1px solid #f0e6d1; border-right:1px solid #f0e6d1; -moz-border-radius-bottomleft:6px; -moz-border-radius-bottomright:6px; -webkit-border-bottom-left-radius:6px; -webkit-border-bottom-right-radius:6px; */ #fanart_header { background-position:top center!important; } .fanart_content_left { margin:0; background:#080808; border-left:2px solid #1d1d1d; border-top:2px solid #1d1d1d; border-bottom:4px solid #050505; border-right:0px solid #050505; -webkit-border-bottom-left-radius:6px; -webkit-border-bottom-right-radius:6px; float:left; width:30%; /* If page size is too narrow, this can cause some wrap issues with Artists' Gallery Page */ text-align:left; } /* Selection Menus in the Gallery Tab of Profiles Default Values: margin:0; background:#d2bba1; border-left:1px solid #d2bba1; border-bottom:1px solid #d2bba1; -moz-border-radius-bottomleft:6px; -webkit-border-bottom-left-radius:6px; -moz-border-radius-bottomright:6px; -webkit-border-bottom-right-radius:6px; float:left; width:247px; text-align:left; */ .fanart_content_right { margin:0; background: #121414; border-left:0 solid #202020; border-top:0px solid #202020; /* Turns off border across to of Artist's Page */ border-right:4px solid #101010; border-bottom:4px solid #101010; -webkit-border-bottom-left-radius:6px; -webkit-border-bottom-right-radius:6px; float:right; width:69.51%; text-align:left; } /* Artwork Tab within Gallery Tab of Profile Default Values: margin:0; background: #f0e6d1; border-left:1px solid #f0e6d1; border-right:1px solid #f0e6d1; border-bottom:1px solid #f0e6d1; -moz-border-radius-bottomleft:6px; -webkit-border-bottom-left-radius:6px; -moz-border-radius-bottomright:6px; -webkit-border-bottom-right-radius:6px; float:right; width:700px; text-align:left; */ .fanart_content div.text { margin:0 15px; padding:5px 0 5px 0; clear:both; } /* Top of site selections Wrap Default Values: margin:0 15px; padding:5px 0 4px 0; clear:both; */ .fanart_content_left div.text { margin:-2px -4px 0 3px; padding:0 0 9px 0; } /* Default Values: margin:-2px -4px 0 3px; padding:0 0 9px 0; */ .fanart_content_right div.text { margin:0 15px; padding:5px 0 4px 0; } /* Deafult Values: margin:0 15px; padding:5px 0 4px 0; */ .fanart_content div.left { float:left; width:50%; } /* Left Column of Profile Page Default Values: float:left; width:56%; */ .fanart_content div.right { float:right; width:46%; margin:11px 0; } /* Right Coloumn of Profile Page Default Values: float:right; width:40%; margin:11px 0; */ .fanart_content div.boxfilled { background:#1d1d1d; padding:8px; margin:6px; } /* Default Values: background:#edc17d; padding:8px; margin:6px; */ .fanart_content div.boxfilledclean { background:#1d1d1d; padding:4px; } /* Default Values: background:#edc17d; padding:4px; */ .fanart_content div.boxbordered { border:3px solid #1d1d1d; padding:8px; margin:6px; } /* Default Values: border:3px solid #edc17d; padding:8px; margin:6px; */ .cboxElement > IMG { min-width:auto!important; min-height:auto!important; max-width:100%!important; max-height:1080px!important; width:inherit!important; height:inherit!important; } h1,h2,h3,h4,h5,div#text p{ font:100% "Trebuchet MS","Verdana","Arial","sans-serif"; margin:0.3em; padding:0; color:#545454; } /* Header Basic Information Default Values: font:100.01% "Trebuchet MS",Verdana,Arial,sans-serif; margin:0.3em; //Affects some wrap? padding:0; color:#121212; */ h1{ font-size:200%; /* Default */ } h2{ font-size:150%; text-shadow:0 0 0 rgba(0, 0, 0, 0); } /* Header 2 Information Default Values: font-size:150%; text-shadow:0 1px 0 rgba(255, 255, 255, 0.6); */ h3{ font-size:150%; width:100%; margin-bottom:0.5em; padding-bottom:2px; /* Affects Journal Wrap */ border-bottom:0 solid #121414; color:#545454; /* Header 3 Font Colour */ text-shadow:0 0 0 rgba(0, 0, 0, 0); } /* Header 3 Information Default Values: font-size:150%; width:100%; margin-bottom:0.5em; padding-bottom:2px; border-bottom:1px solid #d3bfa7; color:#291f14; text-shadow:0 1px 0 rgba(255, 255, 255, 0.6); */ h4{ font-size:120%; } h5{ font-size:100%; } hr { margin:8px 0; height:1px; border:1px #1d1d1d solid!important; } .fanart_content p { padding-bottom:1em; margin-left:0.5em; } ol,ul{ margin:0.3em 0.3em 0.3em 1.3em; } #fanart_header { height:140px; display:block; margin:-10px 5px 0 5px; padding:0 0 0 5px; text-align:left; } #fanart_header h1 { background:url("http://puu.sh/oNKWo/bf418ce79f.png") no-repeat left top; /* Custom Link to show who made Theme */ display:block; width:100%; /* was 244px */ height:92px; /* Cannot change; breaks entire layout*/ text-indent:-9000em; opacity: 0.0 !important; -moz-transition: .5s ease-in; -moz-transition: .5s ease-out; } #fanart_header h1:hover { background:url("http://puu.sh/oNKWo/bf418ce79f.png") no-repeat left top; /* Custom Link to show who made Theme */ display:block; width:100%; /* was 244px */ height:92px; /* Cannot change; breaks entire layout*/ text-indent:-9000em; opacity: 1.0 !important; -moz-transition: .5s ease-in; -moz-transition: .5s ease-out; } ul#fanart-menu{ list-style-type:none; height:27px; font-size:13px; font-weight:bold; margin:0; padding:12px 0 0 0; text-shadow:0 0 0 rgba(0, 0, 0, 0); } ul#fanart-menu li.left{ margin:0; } ul#fanart-menu li{ display:block; float:left; margin:0 0 0 5px; height:27px; } ul#fanart-menu li a{ display:block; float:left; color:#121414; background:#121414; line-height:27px; text-decoration:none; padding:0 17px 0 18px; height:27px; } /* FFA Menu Related Default Values: display:block; float:left; color:#7b3c1b; background:#f0e6d1; line-height:27px; text-decoration:none; padding:0 17px 0 18px; height:27px; */ ul#fanart-menu li a.current{ background:#1d1d1d; /* default #d2bba1 */ } .fanart_content_header { background:#1d1d1d; text-align:left; border-top:2px solid #202020; border-left:2px solid #202020; border-right:4px solid #101010; -webkit-border-top-left-radius:6px; -webkit-border-top-right-radius:6px; } /* Information Header-Trim Default Values: background:#d2bba1; text-align:left; border-top:1px solid #d2bba1; border-left:1px solid #d2bba1; border-right:1px solid #d2bba1; -moz-border-radius-topleft:6px; -moz-border-radius-topright:6px; -webkit-border-top-left-radius:6px; -webkit-border-top-right-radius:6px; */ .fanart_content_header div#topper { background:#1d1d1d; /* Default #d2bba1 */ min-height:70px; max-height:70px; margin:0 0 0 0; } .fanart_content_header div#fanart-title-container { float:left; display:block; width:42%; } .fanart_content_header div#fanart-title { } .fanart_content_header div#fanart-title h2 { margin:8px 0 0 8px; } .fanart_content_header div#fanart-title p { margin:0 0 0 8px; } ul#fanart-tabs{ clear:none; list-style-type:none; height:27px; font-size:13px; font-weight:bold; padding:0; float:right; margin:42px 5px 0 0; text-shadow:0 0 0 rgba(0, 0, 0, 0); /* Default: 0 1px 0 rgba(255, 255, 255, 0.6 */ } ul#fanart-tabs li{ display:block; float:right; margin:0 0 0 5px; height:27px; } ul#fanart-tabs li.left{ margin:0; } ul#fanart-tabs li a{ display:block; float:left; color:#121414; line-height:27px; text-decoration:none; padding:0 12px 0 13px; height:27px; border-top:2px solid #202020; border-left:2px solid #202020; border-right:4px solid #101010; } /* Secondary Tabs in FAA Album Default Values: display:block; float:left; color:#7b3c1b; line-height:27px; text-decoration:none; padding:0 12px 0 13px; height:27px; border-top:1px solid #d2bba1; border-left:1px solid #d2bba1; border-right:1px solid #d2bba1; */ ul#fanart-tabs li a:hover, li a.active{ } ul#fanart-tabs li a.current{ background:#121414; border-top:2px solid #202020; border-left:2px solid #202020; border-right:4px solid #101010; -webkit-border-top-left-radius:6px; -webkit-border-top-right-radius:6px; } /* Default Values: background:#f0e6d1; border-top:1px solid #f0e6d1; border-left:1px solid #f0e6d1; border-right:1px solid #f0e6d1; -moz-border-radius-topleft:6px; -moz-border-radius-topright:6px; -webkit-border-top-left-radius:6px; -webkit-border-top-right-radius:6px; */ ul#fanart-album-tabs{ clear:none; list-style-type:none; height:27px; font-size:13px; font-weight:bold; padding:0; float:right; margin:42px 5px 0 0; text-shadow:0 0 0 rgba(0, 0, 0, 0); /* Default: 0 1px 0 rgba(255, 255, 255, 0.6 */ } ul#fanart-album-tabs li{ display:block; float:right; margin:0 0 0 5px; height:27px; } ul#fanart-album-tabs li.left{ margin:0; } ul#fanart-album-tabs li a{ display:block; float:left; color:#121414; line-height:27px; text-decoration:none; padding:0 12px 0 29px; height:27px; border-top:2px solid #202020; border-left:2px solid #202020; border-right:4px solid #101010; } /* Third Tab Set FAA Default Values: display:block; float:left; color:#7b3c1b; line-height:27px; text-decoration:none; padding:0 12px 0 29px; height:27px; border-top:1px solid #d2bba1; border-left:1px solid #d2bba1; border-right:1px solid #d2bba1; */ ul#fanart-album-tabs li a:hover, li a.active{ } ul#fanart-album-tabs li a.current{ border-top:2px solid #202020; border-left:2px solid #202020; border-right:4px solid #101010; -webkit-border-top-left-radius:6px; -webkit-border-top-right-radius:6px; } /* Active 3rd Tab Set Trim Default Values: border-top:1px solid #f0e6d1; border-left:1px solid #f0e6d1; border-right:1px solid #f0e6d1; -moz-border-radius-topleft:6px; -moz-border-radius-topright:6px; -webkit-border-top-left-radius:6px; -webkit-border-top-right-radius:6px; */ ul#fanart-album-tabs li.profile a, ul#fanart-tabs li.profile a:link, ul#fanart-tabs li.profile a:visited { background:transparent url("http://www.mylionking.com/fan/art/resources/images/report.png") no-repeat 7px 6px } ul#fanart-album-tabs li.profile a.current { background:#121414 url("http://www.mylionking.com/fan/art/resources/images/report.png") no-repeat 7px 6px; } ul#fanart-album-tabs li.gallery a, ul#fanart-tabs li.gallery a:link, ul#fanart-tabs li.gallery a:visited { background:transparent url("http://www.mylionking.com/fan/art/resources/images/photos.png") no-repeat 7px 6px; } ul#fanart-album-tabs li.gallery a.current { background:#121414 url("http://www.mylionking.com/fan/art/resources/images/photos.png") no-repeat 7px 6px; } ul#fanart-album-tabs li.journal a, ul#fanart-tabs li.journal a:link, ul#fanart-tabs li.journal a:visited { background:transparent url("http://www.mylionking.com/fan/art/resources/images/book.png") no-repeat 7px 6px; } ul#fanart-album-tabs li.journal a.current { background:#121414 url("http://www.mylionking.com/fan/art/resources/images/book.png") no-repeat 7px 6px; } ul#fanart-album-tabs li.characters a, ul#fanart-tabs li.characters a:link, ul#fanart-tabs li.characters a:visited { background:transparent url("http://www.mylionking.com/fan/art/resources/images/world.png") no-repeat 7px 6px; } ul#fanart-album-tabs li.characters a.current { background:#121414 url("http://www.mylionking.com/fan/art/resources/images/world.png") no-repeat 7px 6px; } ul#fanart-album-tabs li.favorites a, ul#fanart-tabs li.favorites a:link, ul#fanart-tabs li.favorites a:visited { background:transparent url("http://www.mylionking.com/fan/art/resources/images/favorite.png") no-repeat 7px 6px; } ul#fanart-album-tabs li.favorites a.current { background:#121414 url("http://www.mylionking.com/fan/art/resources/images/favorite.png") no-repeat 7px 6px; } ul#fanart-album-tabs li.stats a, ul#fanart-tabs li.stats a:link, ul#fanart-tabs li.stats a:visited { background:transparent url("http://www.mylionking.com/fan/art/resources/images/chart_bar.png") no-repeat 7px 6px; } ul#fanart-album-tabs li.stats a.current { background:#121414 url("http://www.mylionking.com/fan/art/resources/images/chart_bar.png") no-repeat 7px 6px; } .fanart_content div#fanart-status { border-bottom:5px solid #1d1d1d; margin:0 0 10px 0; padding:10px 10px 0 10px; } .fanart_content span.left { float:left; width:50%; } .fanart_content span.right { float:right; width:40%; } #fanart_footer { margin-left:30px; text-align:center; clear:both; } #fanart_footer p { margin-top:5px; color:#6f6f6f; font:65% "Verdana", "Arial", "Helvetica", "sans-serif"; } #menu { margin:7px 0 0 0; padding:0; } #menu li { float:left; list-style:none; font-size:13px; font-weight:bold; } #menu li a { display:block; background:#121414; /* Default: #f0e6d1 */ padding:2px 12px; text-decoration:none; border-right:4px solid #121414; /* Default: #c7b298 */ white-space:nowrap; } #menu li a:hover { text-shadow:0 0 0 rgba(0, 0, 0, 0); /* Default: 0 1px 0 rgba(255, 255, 255, 0.6) */ } #menu li ul { margin:5px 0 0 0; padding:0; position:absolute; visibility:hidden; } #menu li ul li { float:none; display:inline; } #menu li ul li a { width:auto; background:#1d1d1d; /* Default: #f0e6d1 */ border-bottom:0 solid #121414; /* Deafult: #c7b298 */ } #menu li ul li a:hover { } .incomment-btn { padding:1px 8px 1px 0px; letter-spacing:-1px; } .journal-btn-edit, .journal-btn-delete, .journal-btn-new, .journal-btn-comment, .journal-btn-comments { padding:0 5px 0 20px; letter-spacing:-1px; } span.allowed, span.not_allowed { padding:0 20px 0 5px; } span.forum_profile, span.email, span.personal_message, .comment_edit, .comment_delete, .comment_add, .artwork_edit, .artwork_delete, .favorite_add, .favorite_remove, .flag, .tag, .tag_add, .tag_remove { padding:0 0 0 20px; } span.light { color:#242424; } .journal-btn-edit { background:transparent url("http://www.mylionking.com/fan/art/resources/images/book_edit.png") no-repeat left top; } .journal-btn-delete { background:transparent url("http://www.mylionking.com/fan/art/resources/images/book_delete.png") no-repeat left top; } .journal-btn-new { background:transparent url("http://www.mylionking.com/fan/art/resources/images/book_add.png") no-repeat left top; } .journal-btn-comment { background:transparent url("http://www.mylionking.com/fan/art/resources/images/comment.png") no-repeat left top; } .journal-btn-comments { background:transparent url("http://www.mylionking.com/fan/art/resources/images/comments.png") no-repeat left top; } span.allowed { background:transparent url("http://www.mylionking.com/fan/art/resources/images/allowed.png") no-repeat right top; } span.not_allowed { background:transparent url("http://www.mylionking.com/fan/art/resources/images/not_allowed.png") no-repeat right top; } span.email { background:transparent url("http://www.mylionking.com/fan/art/resources/images/email.png") no-repeat left center; } span.personal_message { background:transparent url("http://www.mylionking.com/fan/art/resources/images/group.png") no-repeat left center; } span.forum_profile { background:transparent url("http://www.mylionking.com/fan/art/resources/images/user.png") no-repeat left center; } .comment_edit { background:transparent url("http://www.mylionking.com/fan/art/resources/images/comment_edit.png") no-repeat left center; } .comment_delete { background:transparent url("http://www.mylionking.com/fan/art/resources/images/comment_delete.png") no-repeat left center; } .comment_add { cursor:pointer; background:transparent url("http://www.mylionking.com/fan/art/resources/images/comment_add.png") no-repeat left center; } .artwork_edit { background:transparent url("http://www.mylionking.com/fan/art/resources/images/photo_edit.png") no-repeat left center; } .artwork_delete { background:transparent url("http://www.mylionking.com/fan/art/resources/images/photo_delete.png") no-repeat left center; } .flag { background:transparent url("http://www.mylionking.com/fan/art/resources/images/flag_red.png") no-repeat left center; } .star{ cursor:pointer; } .favorite_add { background:transparent url("http://www.mylionking.com/fan/art/resources/images/favorite_add.png") no-repeat left center; } .favorite_remove { background:transparent url("http://www.mylionking.com/fan/art/resources/images/favorite_remove.png") no-repeat left center; } .tag { background:transparent url("http://www.mylionking.com/fan/art/resources/images/tag_blue.png") no-repeat left center; } .tag_add { background:transparent url("http://www.mylionking.com/fan/art/resources/images/tag_blue_add.png") no-repeat left center; } .tag_remove { background:transparent url("http://www.mylionking.com/fan/art/resources/images/tag_blue_delete.png") no-repeat left center; } tr.rola{ background-color:#242424; /* Default: white */ } td.rolb{ cursor:pointer; text-align:center; border:solid 2px #545454; background-color:#646464; } /* Default Values: cursor:pointer; text-align:center; border:solid 1px #f1f1f1; background-color:#ffffff; */ .indent1 { margin-left:10px; } .indent2 { margin-left:20px; } .indent3 { margin-left:30px; } .indent4 { margin-left:40px; } .indent5 { margin-left:50px; } .indent6 { margin-left:60px; } .indent7 { margin-left:70px; } .indent8 { margin-left:80px; } .indent9 { margin-left:90px; } .indent10 { margin-left:100px; } .artwork { clear:both; text-align:center; margin:0 auto; } .artwork_thumbs { margin:0 0; width:100%; height:100%; } .thumb { background:url("http://needstobeinvalid.com/images/shadow1.png") no-repeat bottom right; position:relative; float:left; } .thumb div { background:url("http://needstobeinvalid.com/images/shadow2.png") no-repeat left top; padding:0 5px 6px 0; } .thumb img { width:inherit!important; } .cboxElement > IMG { min-width: auto !important; min-height: auto !important; max-width: 100% !important; max-height: 1080px !important; width: inherit !important; height: inherit !important; } .announcementbox { background:#1d1d1d; border-top:2px solid #202020; border-bottom:4px solid #101010; padding:3px 7px; } /* Journal and Announcment Boxes on FAA Home_1 Default Values: background:#e5bbbb; border-top:1px solid #ab7d7b; border-bottom:1px solid #ab7d7b; padding:3px 7px; */ .prettybox { background:#121414 linear-gradient( #1d1d1d , #121414 )!important;; border:0px solid #121414; } /* Journal and Announcement Boxes on FAA Home_2 Default Values: background:#e6dcc6; border-top:1px solid #ab937b; border-bottom:1px solid #ab937b; */ .prettybox span.left, .announcementbox span.left { float:left; text-shadow:0 0 0 rgba(0, 0, 0, 0); /* Default: 0 1px 0 rgba(255, 255, 255, 0.6) */ text-align:left; /* New Information */ } .prettybox span.right { float:right; text-shadow:0 0 0 rgba(0, 0, 0, 0); /* Default: 0 1px 0 rgba(255, 255, 255, 0.6) */ text-align:right; } div.condensed_container { max-width:100%; /* Default: 860px */ margin:0 auto; background: #151717; /* New Custom Script */ } td[style="background:#e6dcc6;"] { background:#202020 linear-gradient( #242424 , #121414 )!important; } td[align="right"] { text-align:left!important; } td[width="600"] { min-width:100px!important; max-width:100px!important; width:inherit!important; } div.journal_header { border-top:2px solid #202020; border-left:2px solid #202020; border-right:4px solid #101010; background:#1d1d1d linear-gradient(#242424,#121414)!important;; -webkit-border-top-left-radius:5px; -webkit-border-top-right-radius:5px; padding:10px; margin:0 0 0 10px; } /* Journal Header Information Default Values: border-top:1px solid #c7b298; border-left:1px solid #c7b298; border-right:1px solid #c7b298; background-color:#d3bfa7; -moz-border-radius-topleft:5px; -moz-border-radius-topright:5px; -webkit-border-top-left-radius:5px; -webkit-border-top-right-radius:5px; padding:10px; margin:0 0 0 10px; */ div.journal_container { border-left:2px solid #202020; border-right:4px solid #101010; border-bottom:4px solid #101010; background-color:#161818; -webkit-border-bottom-left-radius:5px; -webkit-border-bottom-right-radius:5px; padding:0 10px 5px 10px; margin:0 0 7px 10px; } /* Journal Bounding Box Information Default Values: border-left:1px solid #e5dac1; border-right:1px solid #e5dac1; border-bottom:1px solid #e5dac1; background-color:#f5eddc; -moz-border-radius-bottomleft:5px; -moz-border-radius-bottomright:5px; -webkit-border-bottom-left-radius:5px; -webkit-border-bottom-right-radius:5px; padding:0 10px 5px 10px; margin:0 0 7px 10px; */ div.journal_container img { max-width: 100%; } div.comment_container { border-top:0 solid #202020; /* Altered */ border-left:0 solid #202020; /* New Information */ border-right:0 solid #101010; /* New Information */ border-bottom: 0 solid #101010; /*New Information */ background-color:#151717; -webkit-border-radius:5px; } /* Comment Section: Default Values: border:1px solid #d3bfa7; background-color:#e6dcc6; -moz-border-radius:5px; -webkit-border-radius:5px; */ div.infobox_container { border-top:3px solid #323838; /* Altered */ border-left:3px solid #242626; /* New Information */ border-right:4px solid #101212; /* New Information */ border-bottom:4px solid #101212; /*New Information */ background-color:#151717; -webkit-border-radius:5px; } div.comment_container { padding:2px; margin:0 0 7px 10px; } div.infobox_container { padding:4px 10px 7px 10px; margin:0 0 7px 10px; } div.textbubble { width:100%; margin:13px 0 0 0; } div.textbubble blockquote { border-left:4px solid #202020!important; /* Default: 1px solid #c9c2c1 */ border-top:3px solid #161818!important; border-bottom:2px solid #121414!important; border-right:1px solid #161818!important; background:#151717 linear-gradient(to right,#202020,#151717)!important; /* Default: #fff */ padding:3px 10px; } div.textbubble div.cite { position:relative; display:block; width:10px; height:10px; margin:0 0 -23px -9px; padding:0; background:transparent url("http://needstobeinvalid.com/images/tip.gif") no-repeat 0 0; } div.textbubble div.rounded { border:1px solid #151717!important; /* Default: 1px solid #cacaca */ background-color:#151717!important; /* Default: #fff */ -webkit-border-radius:5px; } div.textbubble div.rounded blockquote { border:0; background-color:transparent; } div.textbubble div.rounded blockquote p { margin:0px 10px; } div.line { height:0; /* Default: 1px */ width:100%; background:#1d1d1d; margin:2px 0 0 0; } .autocomplete-w1 { position:absolute; top:0px; left:0px; margin:6px 0 0 6px; /* IE6 fix: */ _background:none; _margin:1px 0 0 0; } .autocomplete { font-size:13px; border:1px solid #202020; background:#1d1d1d; cursor:default; text-align:left; max-height:350px; overflow:auto; margin:-6px 6px 6px -6px; /* IE6 specific: */ _height:350px; _margin:0; _overflow-x:hidden; } .autocomplete .selected { background:#1d1d1d; } .autocomplete div { padding:2px 5px; white-space:nowrap; overflow:hidden; } .autocomplete strong { font-weight:normal; color:#1d1d1d; } .treeTable tr td { padding: 0 0 0 23px; max-width:175px; word-wrap:break-word; } .treeTable tr td .expander { background-position:left center; background-repeat:no-repeat; cursor:pointer; padding:0; } .treeTable tr.on td { background-color:#1d1d1d; border-left:2px solid #242424; border-top:2px solid #242424; border-bottom:4px solid #101010; border-right:4px solid #101010; -webkit-border-top-left-radius:4px; -webkit-border-bottom-left-radius:4px; } /* Artists' Selection Current on Gallery Page Default Values: background-color:#f0e6d1; border:1px solid #f0e6d1; -moz-border-radius-topleft:4px; -moz-border-radius-bottomleft:4px; -webkit-border-top-left-radius:4px; webkit-border-bottom-left-radius:4px; */ .treeTable tr.collapsed td .expander, .treeTable tr.collapsed.selected td .expander, .treeTable tr.collapsed.accept td .expander { background-image:url("http://www.mylionking.com/fan/art/resources/images/toggle-expand-dark.png"); } .treeTable tr.expanded td .expander, .treeTable tr.expanded.selected td .expander, .treeTable tr.expanded.accept td .expander { background-image:url("http://www.mylionking.com/fan/art/resources/images/toggle-collapse-dark.png"); } .treeTable th, .treeTable tr.selected, .treeTable tr.accept { background-color:#1d1d1d; } .treeTable th { padding:5px; } .treeTable .ui-draggable-dragging { color:#1d1d1d; z-index:1; } .treeTable span.album, .treeTable span.folder, .treeTable span.file { background-position:center left; background-repeat:no-repeat; padding:.2em 0 .2em 1.5em; } .treeTable span.album { background-image: url("http://www.mylionking.com/fan/art/resources/images/photos.png"); } .treeTable span.folder { background-image: url("http://www.mylionking.com/fan/art/resources/images/folder.png"); } .treeTable span.file { background-image:url("http://www.mylionking.com/fan/art/resources/images/photo.png"); } #allowed li { background: url('http://www.mylionking.com/fan/art/resources/images/accept.png') no-repeat left 5px; padding: 0 0 3px 22px; } #unacceptable li { background: url('http://www.mylionking.com/fan/art/resources/images/cross.png') no-repeat left 5px; padding: 0 0 3px 22px; } textarea.elastic { max-height: 215px; } table.darkheader th, td.darkened { background:#1d1d1d; } table.darkheader th, table.darkheader td { padding:5px; } .lightened { background: #1d1d1d; } .h3_text_right { float:right; margin:16px 0; font-size:75%; } .btn_emphasis { padding: 0 4px; -webkit-border-radius:5px; } a.btn_emphasis, a.btn_emphasis:link, a.btn_emphasis:visited { background: #1d1d1d; border: 1px solid #1d1d1d; } a.btn_emphasis:hover, a.btn_emphasis:active { background: #1d1d1d; border: 1px solid #1d1d1d; text-decoration: none; } #update-messages img { max-width:450px; } }
0.222954
0.155367
.wrapper-nav { margin: 0 auto; background: transparent } #header { color: #666; font-weight: 400; font-size: 14px; font-family: Work Sans; letter-spacing: 0.1px } #header .nav-header { font-size: 14px; font-weight: 400; position: relative; background: #fafafa; letter-spacing: 0.5px } @media (max-width: 991px) { #header .nav-header { float: none; text-align: center; padding: 5px 0 } } #header .nav-header .header-block { padding: 15px 0; color: #373e4e; text-align: left } @media (max-width: 991px) { #header .nav-header .header-block { text-align: center !important; padding: 4px 0 } } #header .nav-header .header-block .text { font-weight: 400; line-height: 20px; font-size: 14px; font-family: Work Sans; letter-spacing: 0.1px } #header .nav-header .desktop-user-info { text-align: right; padding: 5px 0 } @media (max-width: 991px) { #header .nav-header .desktop-user-info { text-align: center !important; padding: 0 } } #header .nav-header .desktop-user-info .desktop-checkout ul li { position: relative; display: inline-block; vertical-align: middle } #header .nav-header .desktop-user-info .desktop-checkout ul li:last-child:after { display: none } @media (min-width: 992px) { #header .nav-header .desktop-user-info .desktop-checkout ul li:last-child a { padding-right: 0 } } #header .nav-header .desktop-user-info .desktop-checkout ul li:hover a { color: #373e4e } #header .nav-header .desktop-user-info .desktop-checkout ul li:after { content: ''; height: 20px; width: 1px; background: rgba(55, 62, 78, 0.2); position: absolute; right: -3px; top: 10px } @media (max-width: 991px) { #header .nav-header .desktop-user-info .desktop-checkout ul li:after { top: 6px; height: 18px } } #header .nav-header .desktop-user-info .desktop-checkout ul li a { color: #373e4e; font-family: Work Sans; padding: 10px 15px; line-height: 20px; font-size: 14px; font-weight: 400; display: inline-block; vertical-align: middle; position: relative; -webkit-transition: all 0.4s; -moz-transition: all 0.4s; -o-transition: all 0.4s; transition: all 0.4s } @media (max-width: 991px) { #header .nav-header .desktop-user-info .desktop-checkout ul li a { padding: 4px 10px } } #header .header-top { padding: 20px 0; position: relative; text-align: center } @media (max-width: 991px) { #header .header-top { padding: 0 } } @media (min-width: 992px) { #header .header-top>.page-width>.row { display: flex; align-items: center } } #header .header-logo-section { text-align: left; margin: 0 auto } @media (max-width: 991px) { #header .header-logo-section { padding: 25px 15px; text-align: center } } #header .header-logo-section .header__logo { margin: 0 } #header .header-logo-section .header__logo a { display: inline-block; color: #000 } #_desktop_search, #_mobile_search { cursor: pointer; position: relative } @media (max-width: 991px) { #_desktop_search, #_mobile_search { line-height: 0; padding: 5px 0; float: right } } #_desktop_search .search-toggle, #_mobile_search .search-toggle { width: 40px; height: 40px; display: block; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s; cursor: pointer } @media (min-width: 992px) { #_desktop_search .search-toggle, #_mobile_search .search-toggle { display: none } } #_desktop_search .search-toggle svg, #_mobile_search .search-toggle svg { fill: #fff } @media (min-width: 992px) { #_desktop_search .search-info, #_mobile_search .search-info { display: block } } @media (max-width: 991px) { #_desktop_search .search-info, #_mobile_search .search-info { position: absolute; right: 0; top: 50px; z-index: 99 } } #_desktop_search .search-info form, #_mobile_search .search-info form { width: 100%; max-width: 100%; border-radius: 50px; margin: 0 auto } @media (max-width: 991px) { #_desktop_search .search-info form, #_mobile_search .search-info form { border-radius: 0px; background-color: transparent } } @media (max-width: 543px) { #_desktop_search .search-info form, #_mobile_search .search-info form { max-width: 240px } } #_desktop_search .search-info .search__input, #_mobile_search .search-info .search__input { min-width: 280px; width: 100%; border: 2px solid #1a9bdc; height: 44px; padding: 5px 15px; background: #fff; text-transform: capitalize; font-size: 14px; font-weight: 400; border-radius: 0px; letter-spacing: 0.16px; color: #666; padding-right: 45px } @media (max-width: 991px) { #_desktop_search .search-info .search__input, #_mobile_search .search-info .search__input { border: 1px solid #e5e5e5; text-indent: 0; height: 40px } } @media (max-width: 543px) { #_desktop_search .search-info .search__input, #_mobile_search .search-info .search__input { min-width: 240px } } @media (max-width: 375px) { #_desktop_search .search-info .search__input, #_mobile_search .search-info .search__input { min-width: 220px; padding: 5px 10px } } #_desktop_search .search-info .search__input:hover+.btn--link, #_mobile_search .search-info .search__input:hover+.btn--link { opacity: 1 } #_desktop_search .search-info .search__input::placeholder, #_mobile_search .search-info .search__input::placeholder { color: #666; opacity: 1 } #_desktop_search .search-info .search__input:focus, #_mobile_search .search-info .search__input:focus { background: #fff } #_desktop_search .search-info .search-header__submit, #_mobile_search .search-info .search-header__submit { position: absolute; border: none; top: 0px; right: 0px; width: 44px; height: 44px; bottom: 0; background: #1a9bdc; font-size: 14px; font-weight: 400; color: #fff; padding: 0; line-height: 40px; outline: none; border-radius: 0; display: inline-block; vertical-align: middle; -ms-transition: all 0.5s; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } #_desktop_search .search-info .search-header__submit.btn--link:hover, #_desktop_search .search-info .search-header__submit.btn--link:focus, #_mobile_search .search-info .search-header__submit.btn--link:hover, #_mobile_search .search-info .search-header__submit.btn--link:focus { opacity: 1 } @media (max-width: 991px) { #_desktop_search .search-info .search-header__submit, #_mobile_search .search-info .search-header__submit { border-radius: 0; top: 0px; right: 0px; width: 40px; height: 40px; line-height: normal; padding: 0 } } #_desktop_search .search-info .search-header__submit .search-logo i, #_mobile_search .search-info .search-header__submit .search-logo i { font-size: 24px; top: 8px; color: #fff; -ms-transition: all 0.5s; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } @media (max-width: 991px) { #_desktop_search .search-info .search-header__submit .search-logo i, #_mobile_search .search-info .search-header__submit .search-logo i { top: 2px } } #_desktop_search .search-info .search-header__submit .icon__fallback-text, #_mobile_search .search-info .search-header__submit .icon__fallback-text { color: #fff; position: unset !important; margin: 0; width: auto; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s; display: none } #_desktop_search .search-info .search-results li a img, #_mobile_search .search-info .search-results li a img { border: 1px solid #e9e9e9 } #_desktop_search .search-info .search-results li a .price, #_mobile_search .search-info .search-results li a .price { padding-top: 0 } #_desktop_wishlist, #_mobile_wishlist { cursor: pointer; float: right; text-align: right; position: relative; padding: 0; margin-right: 20px; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } @media (max-width: 991px) { #_desktop_wishlist, #_mobile_wishlist { padding: 5px 0; margin: 0 } } #_desktop_wishlist .wishlist-toggle, #_mobile_wishlist .wishlist-toggle { cursor: pointer; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s; cursor: pointer } #_desktop_wishlist .wishlist-toggle .wishlist-logo, #_mobile_wishlist .wishlist-toggle .wishlist-logo { width: 40px; height: 40px; display: block; position: relative; margin: 0 auto } #_desktop_wishlist .wishlist-toggle .wishlist-logo svg, #_mobile_wishlist .wishlist-toggle .wishlist-logo svg { fill: #000; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } @media (max-width: 991px) { #_desktop_wishlist .wishlist-toggle .wishlist-logo svg, #_mobile_wishlist .wishlist-toggle .wishlist-logo svg { fill: #fff } } #_desktop_wishlist .wishlist-toggle .wishlist-logo .wishlist-qty, #_mobile_wishlist .wishlist-toggle .wishlist-logo .wishlist-qty { background-color: #1a9bdc; color: #fff; border-radius: 50%; font-size: 11px; height: 14px; left: auto; right: -10px; top: 0px; line-height: 14px; position: absolute; text-align: center; width: 14px } @media (max-width: 991px) { #_desktop_wishlist .wishlist-toggle .wishlist-logo .wishlist-qty, #_mobile_wishlist .wishlist-toggle .wishlist-logo .wishlist-qty { background-color: #fff; color: #1a9bdc; right: 2px; top: 5px } } #_desktop_wishlist .wishlist-toggle .wishlist-content, #_mobile_wishlist .wishlist-toggle .wishlist-content { text-align: center } #_desktop_wishlist .wishlist-toggle .wishlist-content .wishlist-title, #_mobile_wishlist .wishlist-toggle .wishlist-content .wishlist-title { display: block; color: #373e4e; font-size: 13px; font-weight: 500; line-height: 20px; font-family: Work Sans } #_desktop_user_info, #_mobile_user_info { cursor: pointer; float: right; text-align: right; position: relative; padding: 0 20px 0 0; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } @media (max-width: 991px) { #_desktop_user_info, #_mobile_user_info { padding: 5px 0; margin: 0 } } @media (max-width: 767px) { #_desktop_user_info, #_mobile_user_info { margin: 0 } } #_desktop_user_info .userinfo-toggle, #_mobile_user_info .userinfo-toggle { display: flex; align-items: center } #_desktop_user_info .userinfo-toggle .user-icon, #_mobile_user_info .userinfo-toggle .user-icon { width: 40px; height: 40px; display: block; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s; cursor: pointer } #_desktop_user_info .userinfo-toggle .user-icon svg, #_mobile_user_info .userinfo-toggle .user-icon svg { fill: #000; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } @media (max-width: 991px) { #_desktop_user_info .userinfo-toggle .user-icon svg, #_mobile_user_info .userinfo-toggle .user-icon svg { fill: #fff } } #_desktop_user_info .userinfo-toggle .user-title, #_mobile_user_info .userinfo-toggle .user-title { padding-left: 5px; color: #000; font-size: 16px; font-weight: 700; font-family: Work Sans } #_desktop_cart, #_mobile_cart { text-align: left; white-space: nowrap; position: relative; float: right } @media (max-width: 991px) { #_desktop_cart, #_mobile_cart { padding: 5px; padding-right: 10px } } #_desktop_cart .cart-display .cart-title, #_mobile_cart .cart-display .cart-title { cursor: pointer } #_desktop_cart .cart-display .cart-title .cart-logo, #_mobile_cart .cart-display .cart-title .cart-logo { position: relative; width: 40px; height: 40px; display: block; margin: 0 auto; vertical-align: middle; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } #_desktop_cart .cart-display .cart-title .cart-logo svg, #_mobile_cart .cart-display .cart-title .cart-logo svg { fill: #000; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } @media (max-width: 991px) { #_desktop_cart .cart-display .cart-title .cart-logo svg, #_mobile_cart .cart-display .cart-title .cart-logo svg { fill: #fff } } #_desktop_cart .cart-display .cart-title .cart-logo .cart-qty, #_mobile_cart .cart-display .cart-title .cart-logo .cart-qty { background-color: #1a9bdc; color: #fff; border-radius: 50%; font-size: 11px; height: 14px; left: auto; right: -10px; top: 0px; line-height: 14px; position: absolute; text-align: center; width: 14px } @media (max-width: 991px) { #_desktop_cart .cart-display .cart-title .cart-logo .cart-qty, #_mobile_cart .cart-display .cart-title .cart-logo .cart-qty { background-color: #fff; color: #1a9bdc; right: 5px; top: 5px } } @media (min-width: 992px) { #_desktop_cart .cart-display .cart-title .cart-price, #_mobile_cart .cart-display .cart-title .cart-price { text-align: center; position: relative } } @media (min-width: 992px) { #_desktop_cart .cart-display .cart-title .cart-price .main-title, #_mobile_cart .cart-display .cart-title .cart-price .main-title { color: #373e4e; font-size: 13px; line-height: 20px; font-weight: 500; font-family: Work Sans } } #_desktop_cart .cart-display .cart-dropdown-inner, #_mobile_cart .cart-display .cart-dropdown-inner { position: absolute; z-index: 18; width: 350px; right: 0px; top: 65px; background: #fff none repeat scroll 0 0; border: 1px solid #ebebeb; font-family: Work Sans; left: auto; text-align: left; line-height: 1.25; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } @media (max-width: 991px) { #_desktop_cart .cart-display .cart-dropdown-inner, #_mobile_cart .cart-display .cart-dropdown-inner { top: 50px; right: 15px; width: 300px } } @media (max-width: 543px) { #_desktop_cart .cart-display .cart-dropdown-inner, #_mobile_cart .cart-display .cart-dropdown-inner { width: 280px } } #_desktop_cart .cart-display .cart-dropdown-inner .product-list, #_mobile_cart .cart-display .cart-dropdown-inner .product-list { max-height: 252px; padding: 10px } #_desktop_cart .cart-display .cart-dropdown-inner .product-list .product, #_mobile_cart .cart-display .cart-dropdown-inner .product-list .product { padding-bottom: 10px; position: relative; display: block; overflow: hidden } #_desktop_cart .cart-display .cart-dropdown-inner .product-list .product:last-child, #_mobile_cart .cart-display .cart-dropdown-inner .product-list .product:last-child { padding-bottom: 0 } #_desktop_cart .cart-display .cart-dropdown-inner .product-list .product .product-img, #_mobile_cart .cart-display .cart-dropdown-inner .product-list .product .product-img { width: 85px; display: inline-block; float: left; border: 1px solid #eee } #_desktop_cart .cart-display .cart-dropdown-inner .product-list .product .product-data, #_mobile_cart .cart-display .cart-dropdown-inner .product-list .product .product-data { overflow: hidden; text-align: left; padding: 15px } #_desktop_cart .cart-display .cart-dropdown-inner .product-list .product .product-data span, #_mobile_cart .cart-display .cart-dropdown-inner .product-list .product .product-data span { display: block; cursor: pointer } #_desktop_cart .cart-display .cart-dropdown-inner .product-list .product .product-data .product-title, #_mobile_cart .cart-display .cart-dropdown-inner .product-list .product .product-data .product-title { white-space: normal; display: block; margin-bottom: 5px; font-weight: 400; font-size: 14px; color: #000 } #_desktop_cart .cart-display .cart-dropdown-inner .product-list .product .product-data .product-title:hover, #_mobile_cart .cart-display .cart-dropdown-inner .product-list .product .product-data .product-title:hover { color: #666 } #_desktop_cart .cart-display .cart-dropdown-inner .product-list .product a.remove, #_mobile_cart .cart-display .cart-dropdown-inner .product-list .product a.remove { position: absolute; top: 0; right: 0; cursor: pointer } #_desktop_cart .cart-display .cart-dropdown-inner .product-list .product a.remove i, #_mobile_cart .cart-display .cart-dropdown-inner .product-list .product a.remove i { font-size: 20px; color: #000 } #_desktop_cart .cart-display .cart-dropdown-inner .product-list .product a.remove i:hover, #_mobile_cart .cart-display .cart-dropdown-inner .product-list .product a.remove i:hover { color: #666 } #_desktop_cart .cart-display .cart-dropdown-inner .cart__footer, #_mobile_cart .cart-display .cart-dropdown-inner .cart__footer { padding: 15px; border-top: 1px solid #eee; display: block; position: relative; overflow: hidden } @media (max-width: 543px) { #_desktop_cart .cart-display .cart-dropdown-inner .cart__footer, #_mobile_cart .cart-display .cart-dropdown-inner .cart__footer { padding: 15px 10px } } #_desktop_cart .cart-display .cart-dropdown-inner .cart__footer .grid__item, #_mobile_cart .cart-display .cart-dropdown-inner .cart__footer .grid__item { width: 100%; font-size: 16px; float: left; overflow: hidden } #_desktop_cart .cart-display .cart-dropdown-inner .cart__footer .grid__item .cart-links, #_mobile_cart .cart-display .cart-dropdown-inner .cart__footer .grid__item .cart-links { text-align: center } #_desktop_cart .cart-display .cart-dropdown-inner .cart__footer .grid__item .cart-links .btn, #_mobile_cart .cart-display .cart-dropdown-inner .cart__footer .grid__item .cart-links .btn { -webkit-transition: all 0.4s; -moz-transition: all 0.4s; -o-transition: all 0.4s; transition: all 0.4s } #_desktop_cart .cart-display .cart-dropdown-inner .cart__footer .grid__item .cart-links .btn.view-cart, #_mobile_cart .cart-display .cart-dropdown-inner .cart__footer .grid__item .cart-links .btn.view-cart { background-color: #000; border-color: #000; color: #fff } #_desktop_cart .cart-display .cart-dropdown-inner .cart__footer .grid__item .cart-links .btn.view-cart:hover, #_mobile_cart .cart-display .cart-dropdown-inner .cart__footer .grid__item .cart-links .btn.view-cart:hover { background-color: #1a9bdc; border-color: #1a9bdc; color: #fff } #_desktop_cart .cart-display .cart-dropdown-inner .cart__empty, #_mobile_cart .cart-display .cart-dropdown-inner .cart__empty { padding: 10px; color: #666666 } #ishiheaderlinks_block { position: relative; display: inline-block; vertical-align: middle; float: left; padding: 0px 15px } @media (min-width: 1200px) { #ishiheaderlinks_block { padding: 13px 15px } } @media (max-width: 991px) { #ishiheaderlinks_block { padding: 5px; float: right } } #ishiheaderlinks_block .bullet { margin: 0 } #ishiheaderlinks_block .bullet li { display: inline-block; vertical-align: middle; position: relative } #ishiheaderlinks_block .bullet li a { color: #373e4e; font-size: 15px; line-height: 16px; font-weight: 500; padding: 0 12px; text-decoration: none; -webkit-transition: all 0.3s; -moz-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s } @media (max-width: 991px) { #ishiheaderlinks_block .bullet li a { margin: 0 8px } } #ishiheaderlinks_block .bullet li a:hover { color: #1a9bdc } @media (max-width: 543px) { #ishiheaderlinks_block .bullet li a { font-size: 14px } } #ishiheaderlinks_block .bullet li .viewmore:before { content: '\f0d7'; position: absolute; top: 0px; right: 0; font-family: FontAwesome } #ishiheaderlinks_block .bullet li .headerlink-dropdown { position: absolute; top: 170%; right: 0; visibility: hidden; background: #fff; overflow: hidden; text-align: left; padding: 5px; opacity: 0; z-index: 1; width: 200px; border: 1px solid #ebebeb; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } #ishiheaderlinks_block .bullet li .headerlink-dropdown ul li { line-height: 28px } #ishiheaderlinks_block .bullet li .headerlink-dropdown ul li a { padding: 0 10px } #ishiheaderlinks_block .bullet li:hover .headerlink-dropdown { top: 120%; opacity: 1; visibility: visible } #ishiheaderlinks_block .bullet.small { display: none } @media (max-width: 1199px) { #ishiheaderlinks_block .bullet.small { display: block; visibility: hidden; opacity: 0; padding: 10px; top: 120%; position: absolute; right: auto; left: 0; z-index: 2; background: #fff; border: 1px solid #ebebeb; width: 200px; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } } @media (max-width: 991px) { #ishiheaderlinks_block .bullet.small { top: 140%; right: 0; left: auto } } @media (max-width: 543px) { #ishiheaderlinks_block .bullet.small { width: 170px } } #ishiheaderlinks_block .bullet.small li { display: block; line-height: 28px; text-align: left } #ishiheaderlinks_block .bullet.small li a { padding: 0 10px; margin: 0 } @media (max-width: 543px) { #ishiheaderlinks_block .bullet.small li a { padding: 0 5px } } #ishiheaderlinks_block .header-link { cursor: pointer; position: relative; padding: 3px 0 } @media (max-width: 991px) { #ishiheaderlinks_block .header-link { padding: 0 } } #ishiheaderlinks_block .header-link .link-icon { width: 40px; height: 40px; display: inline-block; vertical-align: middle } #ishiheaderlinks_block .header-link .link-icon svg { fill: #000; display: inline-block; vertical-align: middle } @media (max-width: 991px) { #ishiheaderlinks_block .header-link .link-icon svg { fill: #fff } } #ishiheaderlinks_block .header-link .small-title { margin: 0; padding: 5px; font-size: 15px; font-weight: 500; position: relative; display: inline-block; vertical-align: middle } @media (max-width: 991px) { #ishiheaderlinks_block .header-link .small-title { display: none } } @media (max-width: 1199px) { #ishiheaderlinks_block:hover .header-link .small { top: 100%; opacity: 1; visibility: visible } } @media (max-width: 991px) { #ishiheaderlinks_block:hover .header-link .small { top: 112% } } #shopify-section-Ishi_offer { display: inline-block; float: right; overflow: hidden; text-align: center; min-width: 300px } #ishioffersblock { padding: 9px 15px; background: #fafafa; border: 1px solid #e9e9e9; display: flex; align-items: center } #ishioffersblock .offer-title { margin: 0; float: left } #ishioffersblock .offer-img { width: 26px; height: 26px; margin-right: 10px } #ishioffersblock .offer-img svg { fill: #444 } #ishioffersblock .typed { display: inline-block; vertical-align: middle; position: relative; text-align: left; font-size: 14px; letter-spacing: 0.2px; font-weight: 500 } #ishioffersblock .typed a { color: #444; text-align: center } #ishioffersblock .typed a:hover { color: #444 } .offerstitle { display: none } .navfullwidth { position: relative; background-color: #fff; padding-bottom: 10px } .fixed-header { background-color: #fff; position: fixed !important; top: 0 !important; padding: 0; left: 0; width: 100%; max-width: 100% !important; z-index: 99; right: 0; padding: 0; box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.1); margin: 0 !important; border-radius: 0 !important; animation: slide-down 0.7s; -moz-animation: slide-down 0.7s; -webkit-animation: slide-down 0.7s; -o-animation: slide-down 0.7s; overflow: visible } .fixed-header #shopify-section-Ishi_megamenu { margin: 0 } @keyframes slide-down { 0% { transform: translateY(-100%); -webkit-transform: translateY(-100%); -ms-transform: translateY(-100%); -o-transform: translateY(-100%); -moz-transform: translateY(-100%) } 100% { transform: translateY(0); -webkit-transform: translateY(0); -ms-transform: translateY(0); -o-transform: translateY(0); -moz-transform: translateY(0) } } #mobile_top_menu_wrapper { position: fixed; top: 0; left: 0; width: 300px; bottom: 0; background: white; z-index: 999; overflow-y: auto; overflow-x: auto } #mobile_top_menu_wrapper #top_menu_closer { cursor: pointer; padding: 15px 15px 10px; text-align: right } #mobile_top_menu_wrapper #top_menu_closer i { font-size: 24px; color: #000 } #mobile_top_menu_wrapper #_mobile_top_menu { padding: 0 15px } #mobile_top_menu_wrapper #top-menu { margin-bottom: 0; text-align: left; display: block; padding: 0 } #mobile_top_menu_wrapper .top-menu .collapse-icons[aria-expanded="true"] .add { display: none } #mobile_top_menu_wrapper .top-menu .collapse-icons[aria-expanded="true"] .remove { display: block } #mobile_top_menu_wrapper .top-menu .collapse-icons .remove { display: none } #mobile_top_menu_wrapper .top-menu .navbar-toggler { display: inline-block; padding: 0; position: absolute; right: 0; cursor: pointer; color: #333 } #mobile_top_menu_wrapper .top-menu .navbar-toggler i { font-size: 24px } #mobile_top_menu_wrapper .top-menu a { padding: 0; margin: 0 } #mobile_top_menu_wrapper .top-menu .collapse { display: none } #mobile_top_menu_wrapper .top-menu .collapse.in { display: block } #mobile_top_menu_wrapper .top-menu .sub-menu { box-shadow: none; z-index: inherit; display: block; position: static; overflow: hidden; margin-left: 0; width: 100%; min-width: 100%; border: none } #mobile_top_menu_wrapper .top-menu .sub-menu.collapse { display: none } #mobile_top_menu_wrapper .top-menu .sub-menu.collapse.in { display: block } #mobile_top_menu_wrapper .top-menu .sub-menu ul { margin: 0; padding: 0 } #mobile_top_menu_wrapper .top-menu .sub-menu ul>li { float: none; margin: 0 } #mobile_top_menu_wrapper .top-menu .sub-menu ul>li a { text-transform: none } #mobile_top_menu_wrapper .top-menu .sub-menu ul { padding: 10px 0 0 15px } #mobile_top_menu_wrapper .top-menu .sub-menu .mainmenu-dropdown li a { display: inline-block } #mobile_top_menu_wrapper .top-menu .sub-menu .mainmenu-dropdown .sub-category .top-menu .category { padding: 10px 0 5px } #mobile_top_menu_wrapper .top-menu .sub-menu .mainmenu-dropdown .sub-category .top-menu .category a { font-size: 14px } #mobile_top_menu_wrapper .top-menu .popover { border-radius: 0 } .mobile-menu-overlay { background-color: rgba(0, 0, 0, 0.5); height: 100%; left: 0; opacity: 0; position: fixed; top: 0; transition: opacity 200ms, visibility 0ms 200ms; visibility: hidden; width: 100%; z-index: 998 } .mobile-menu-overlay.active { opacity: 1; visibility: visible } .mobile-width { width: 100% !important } @media (max-width: 991px) { .mobile-width { background-color: #1a9bdc } } .mobile-width .mobile_search { padding: 0 !important } .mobile-width .mobile-width-left { float: left; padding: 5px } .mobile-width .mobile-width-left #menu-icon { cursor: pointer; width: 40px; height: 40px } .mobile-width .mobile-width-left #menu-icon svg { fill: #fff } .mobile-width .mobile-width-right { float: right } .mobile-width .mobile-width-right>div { float: right !important } #_desktop_top_menu { position: relative; margin: 0; float: left; display: inline-block; vertical-align: middle } #_desktop_top_menu .home-title { background-color: #1a9bdc; color: #fff; font-size: 15px; font-weight: 500; text-align: left; padding: 15px 45px 15px 15px; margin: 0; text-transform: unset; font-family: Work Sans; width: 269px; line-height: 16px; letter-spacing: 0px; cursor: pointer; border: 0; background-image: none; position: relative } #_desktop_top_menu .home-title:after { display: none } #_desktop_top_menu .wrapper-menu { width: 18px; height: 14px; display: flex; position: absolute; top: 16px; right: 15px; flex-direction: column; justify-content: space-between; cursor: pointer; transition: transform 330ms ease-out } #_desktop_top_menu .wrapper-menu.open { transform: rotate(-45deg) } #_desktop_top_menu .wrapper-menu.open .line-menu.start { transform: rotate(-90deg) translateX(3px) } #_desktop_top_menu .wrapper-menu.open .line-menu.end { transform: rotate(-90deg) translateX(-3px) } #_desktop_top_menu .wrapper-menu .line-menu { background-color: #fff; border-radius: 5px; width: 100%; height: 2px } #_desktop_top_menu .wrapper-menu .line-menu:after { content: ''; position: absolute; left: 0; width: 0; height: 2px; border-radius: 5px; background: #fff; transition: all 0.3s; transition-delay: 0.1s } #_desktop_top_menu .wrapper-menu .line-menu:nth-child(2n+1):after { transition-delay: 0.2s } #_desktop_top_menu .wrapper-menu .line-menu:nth-child(2n+2):after { transition-delay: 0.3s } #_desktop_top_menu .wrapper-menu .line-menu:nth-child(2n+3):after { transition-delay: 0.4s; right: 0; left: auto } #_desktop_top_menu .wrapper-menu .line-menu.half { width: 50% } #_desktop_top_menu .wrapper-menu .line-menu.start { transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57); transform-origin: right } #_desktop_top_menu .wrapper-menu .line-menu.end { align-self: flex-end; transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57); transform-origin: left } #_desktop_top_menu:hover .wrapper-menu.open .line-menu:after { display: none } #_desktop_top_menu:hover .wrapper-menu .line-menu:nth-child(2n+1):after { width: 50% } #_desktop_top_menu:hover .wrapper-menu .line-menu:nth-child(2n+2):after { width: 100% } #_desktop_top_menu:hover .wrapper-menu .line-menu:nth-child(2n+3):after { width: 50% } #_desktop_top_menu #top-menu .sub-menu { top: 5px; left: 115%; border: none; width: auto; z-index: 18; overflow: hidden; padding: 15px 0; border-radius: 0; visibility: hidden; -webkit-transition: all 0.3s; -moz-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; text-align: center } #_desktop_top_menu #top-menu .sub-menu.collapse { opacity: 0; -webkit-transition: opacity .4s, left .4s, right .4s, visibility .4s; -o-transition: opacity .4s, left .4s, right .4s, visibility .4s; transition: opacity .4s, left .4s, right .4s, visibility .4s; box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1) } @media screen and (min-width: 992px) and (max-width: 1199px) { #_desktop_top_menu #top-menu .sub-menu { left: 38% } } #_desktop_top_menu #top-menu>li:hover .sub-menu { left: 100%; opacity: 1; visibility: visible } @media screen and (min-width: 992px) and (max-width: 1199px) { #_desktop_top_menu #top-menu>li:hover .sub-menu { left: 38% } } #_desktop_top_menu #top-menu>li:hover .sub-menu.collapse { opacity: 1 } @media (min-width: 992px) { #top-menu { position: absolute; top: 46px; left: 0px; right: 0px; z-index: 9; display: none; background-color: #fff; border: 1px solid #e8eef6 } } #top-menu h3 { position: relative; -webkit-transition: all 0.3s; -moz-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; margin: 0; letter-spacing: 0.5px; font-family: Work Sans; font-size: 15px } @media (min-width: 992px) { #top-menu h3 { font-weight: 500; font-size: 16px } } #top-menu>li { display: block; text-align: left; position: relative } @media (min-width: 992px) { #top-menu>li { border-bottom: 1px solid #e8eef6 } } #top-menu>li:last-child { border-bottom: 0 } @media (max-width: 991px) { #top-menu>li { display: block; padding: 15px 0; border-bottom: 1px solid #eee } #top-menu>li:last-child { border-bottom: none } } #top-menu>li .dropdown-item { white-space: normal } #top-menu>li>a { display: block; padding: 15px; position: relative; overflow: hidden } @media (max-width: 991px) { #top-menu>li>a { display: inline-block; vertical-align: middle } } #top-menu>li>a .title { color: #373e4e; display: inline-block; vertical-align: middle; text-transform: capitalize; font-weight: 400; font-size: 15px; font-family: Work Sans; -webkit-transition: all 0.3s; -moz-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s } @media (max-width: 991px) { #top-menu>li>a .title { float: left; color: #000; line-height: 20px; font-weight: 400; font-size: 16px } } #top-menu>li>a i { float: right; line-height: 16px; color: #373e4e } #top-menu>li>a span { background: #ff0000 none repeat scroll 0 0; border-radius: 2px; font-size: 9px; font-weight: 500; left: -3px; padding: 1px 6px; position: relative; top: -14px; text-transform: unset; letter-spacing: 0.5px; color: #fff } @media (max-width: 991px) { #top-menu>li>a span { padding: 0 3px; top: 0px; float: right; left: auto; right: 0; position: relative; margin: 0 6px; display: none } } #top-menu>li>a span:before { width: 0; height: 0; content: ""; position: absolute; bottom: -3px; left: 0; border: 3px solid; border-top-color: currentcolor; border-right-color: currentcolor; border-bottom-color: currentcolor; border-left-color: currentcolor; border-color: #ff0000 transparent transparent #ff0000 } #top-menu>li>a span.new { background: #000 none repeat scroll 0 0 } #top-menu>li>a span.new:before { border-color: #000 transparent transparent #000 } @media (min-width: 992px) { #top-menu>li>a span.new:before { border-top: 5px solid #000 } } #top-menu>li>a span.sale { background: #7fbc1e none repeat scroll 0 0 } #top-menu>li>a span.sale:before { border-color: #7fbc1e transparent transparent #7fbc1e } @media (min-width: 992px) { #top-menu>li>a span.sale:before { border-top: 5px solid #7fbc1e } } @media (min-width: 992px) { #top-menu>li>a:hover .title { color: #1a9bdc } } .top-menu.mainmenu-dropdown { display: block; overflow: hidden } .top-menu.mainmenu-dropdown .sub-category { text-align: left; float: left; margin-left: 20px; min-width: 182px } @media (max-width: 991px) { .top-menu.mainmenu-dropdown .sub-category { padding: 10px 0 } } .top-menu.mainmenu-dropdown .sub-category>a { padding-bottom: 4px; margin-bottom: 17px; position: relative } .top-menu.mainmenu-dropdown .sub-category>a:before { border-top: 1px solid #ddd; bottom: -7px; content: ""; position: absolute; left: 0; width: 50% } @media (max-width: 991px) { .top-menu.mainmenu-dropdown .sub-category>a:before { display: none } } .top-menu.mainmenu-dropdown .sub-category>a h3 { color: #000; display: block; text-transform: unset; font-weight: 400; font-size: 14px } @media (min-width: 992px) { .top-menu.mainmenu-dropdown .sub-category>a h3 { font-size: 15px } } .top-menu.mainmenu-dropdown .sub-category ul .category:last-child a { padding-bottom: 0 } .top-menu.mainmenu-dropdown li a { font-family: Work Sans; padding-bottom: 12px; font-size: 14px; display: block; color: #373e4e; font-weight: 400; letter-spacing: 0.5px; -webkit-transition: all 0.3s; -moz-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s } @media (max-width: 991px) { .top-menu.mainmenu-dropdown li a { color: #000 } } @media (min-width: 992px) { .top-menu.mainmenu-dropdown li a:hover { color: #000 } } .top-menu .collapse { display: inherit } .top-menu .popover { max-width: inherit } .img-container { clear: both; margin-top: 20px } @media (max-width: 991px) { .img-container { display: none } } .grid__item--Ishi_megamenu { padding: 0 } .grid__item--Ishi_megamenu .grid-view-item__image-container { position: relative; width: 100%; overflow: hidden; display: block } .grid__item--Ishi_megamenu .grid-view-item__image-container .grid-view-item__image-wrapper { width: 130px; margin: 0 } .grid__item--Ishi_megamenu .grid-view-item__image-container .grid-view-item__image-wrapper a { padding: 0 } .grid__item--Ishi_megamenu .grid-view-item__image-container .grid-view-item__image-wrapper a img { border: 1px solid #e9e9e9; position: relative } .grid__item--Ishi_megamenu .grid-view-item__image-container .product-description { text-align: left; margin-top: 5px } .grid__item--Ishi_megamenu .grid-view-item__image-container .product-description a { padding-bottom: 2px } .grid__item--Ishi_megamenu .grid-view-item__image-container .product-description .product-detail .grid-view-item__title { display: block; color: #525d70; font-size: 15px; font-weight: 400; margin-bottom: 3px } .grid__item--Ishi_megamenu .grid-view-item__image-container .product-description .grid-view-item__meta { font-family: Work Sans; font-size: 14px; font-weight: 400 } .grid__item--Ishi_megamenu .grid-view-item__image-container .product-description .grid-view-item__meta .regular { color: #878e9e; font-size: 14px; font-weight: 400 } .grid__item--Ishi_megamenu .grid-view-item__image-container .product-description .grid-view-item__meta .is-bold { font-size: 16px; font-weight: 500; color: #373e4e } .grid__item--Ishi_megamenu .grid-view-item__image-container .product-description .grid-view-item__meta .discount-percentage { margin: 0 4px; color: #1a9bdc; display: none } .grid__item--Ishi_megamenu .grid-view-item__image-container .product-description .grid-view-item__meta .discount-percentage span { display: none } .grid__item--Ishi_megamenu .grid-view-item__image-container .product-description .grid-view-item__meta .visually-hidden, .grid__item--Ishi_megamenu .grid-view-item__image-container .product-description .grid-view-item__meta .product-price__sold-out { display: none } .ishi-slider-section { overflow: hidden } #ishislideshow-carousel { position: relative } #ishislideshow-carousel .owl-nav { margin-bottom: 0; margin-top: 0 } @media (max-width: 767px) { #ishislideshow-carousel .owl-nav { display: none } } #ishislideshow-carousel .owl-nav .owl-prev, #ishislideshow-carousel .owl-nav .owl-next { position: absolute; padding: 0; top: 45%; margin: 0px; left: 20px; right: auto; display: inline-block; width: 40px; height: 40px; opacity: 0; background-color: #1a9bdc; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -ms-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s; -moz-transform: translateX(-100px); -webkit-transform: translateX(-100px); -o-transform: translateX(-100px); -ms-transform: translateX(-100px) } #ishislideshow-carousel .owl-nav .owl-prev i, #ishislideshow-carousel .owl-nav .owl-next i { width: 40px; height: 40px } #ishislideshow-carousel .owl-nav .owl-prev i:before, #ishislideshow-carousel .owl-nav .owl-next i:before { color: #fff; width: 40px; height: 40px; line-height: 40px; font-size: 26px } #ishislideshow-carousel .owl-nav .owl-prev:hover, #ishislideshow-carousel .owl-nav .owl-next:hover { background-color: #000; border-color: #000 } #ishislideshow-carousel .owl-nav .owl-prev:hover i:before, #ishislideshow-carousel .owl-nav .owl-next:hover i:before { color: #fff } #ishislideshow-carousel .owl-nav .owl-next { right: 20px; left: auto; -moz-transform: translateX(100px); -webkit-transform: translateX(100px); -o-transform: translateX(100px); -ms-transform: translateX(100px) } #ishislideshow-carousel .owl-dots { position: absolute; bottom: 10px; right: 0; left: 0; margin: 0 auto; text-align: center; -webkit-transition: all 0.3s; -moz-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s } #ishislideshow-carousel .owl-dots .owl-dot { display: inline-block; vertical-align: middle } #ishislideshow-carousel .owl-dots .owl-dot span { margin: 0 5px; cursor: pointer; width: 12px; height: 12px; background-color: #000; border-radius: 0; display: block } #ishislideshow-carousel .owl-dots .owl-dot.active span, #ishislideshow-carousel .owl-dots .owl-dot:hover span { background-color: #1a9bdc } #ishislideshow-carousel:hover .owl-nav .owl-prev, #ishislideshow-carousel:hover .owl-nav .owl-next { opacity: 1; -moz-transform: translate(0); -webkit-transform: translate(0); -o-transform: translate(0); -ms-transform: translate(0) } .ishi-product-block-section .ishiproduct-block { overflow: hidden } @media (max-width: 991px) { .ishi-product-block-section .ishiproduct-block { padding: 40px 0 !important } } .ishi-product-block-section .ishiproduct-block.productbgimage { background-size: cover; background-repeat: no-repeat; background-position: center } .ishi-product-block-section .ishiproduct-block.product-bgcolor { display: block; position: relative; width: 100% } @media (min-width: 992px) { .ishi-product-block-section .ishiproduct-block .owl-nav { margin-top: 15px } } @media (max-width: 543px) { .ishi-product-block-section .ishiproduct-block .owl-nav { margin-top: 25px } } .ishi-product-block-section .products-tab { border: none; text-align: center; position: relative; display: block; margin-bottom: 0; font-size: 0 } @media (max-width: 543px) { .ishi-product-block-section .products-tab { margin-bottom: 10px } } .ishi-product-block-section .products-tab .nav-item { display: inline-block; vertical-align: middle; float: none; margin: 0 10px 15px; border: none; padding: 0; border-radius: 0 } @media (max-width: 543px) { .ishi-product-block-section .products-tab .nav-item { display: block; margin-bottom: 7px } } .ishi-product-block-section .products-tab .nav-item .nav-link { background: #fff none repeat scroll 0 0; border: 1px solid #e8eef6; display: inline-block; vertical-align: middle; font-family: Work Sans; color: #525d70; font-weight: 400; font-size: 16px; letter-spacing: 0px; margin: 0; border-radius: 0px; outline: medium none; padding: 10px 20px; line-height: 18px; position: relative; transition: all 400ms ease-in-out 0s; -webkit-transition: all 400ms ease-in-out 0s; -ms-transition: all 400ms ease-in-out 0s; -moz-transition: all 400ms ease-in-out 0s; -o-transition: all 400ms ease-in-out 0s } .ishi-product-block-section .products-tab .nav-item .nav-link:before { position: absolute; content: ""; height: 8px; width: 8px; background: #fff; left: 16px; top: 0; bottom: 0; text-align: center; margin: auto; border-radius: 50%; display: none } .ishi-product-block-section .products-tab .nav-item .nav-link:hover { background: #1a9bdc; border-color: #1a9bdc; color: #fff } .ishi-product-block-section .products-tab .nav-item.active .nav-link { background: #1a9bdc; color: #fff; border-color: #1a9bdc; padding-left: 30px } .ishi-product-block-section .products-tab .nav-item.active .nav-link:before { display: block } .products-display a:hover { color: #000 } .products-display .product-desc { display: none } @media (max-width: 543px) { .products-display { padding: 0 5px } } .products-display .grid__item, .products-display .list__item { -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -ms-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s; padding: 15px } @media (max-width: 543px) { .products-display .grid__item, .products-display .list__item { padding: 5px 5px } } .products-display .grid__item .grid-view-item, .products-display .list__item .grid-view-item { overflow: hidden; background: #fff; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -ms-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } .products-display .grid__item .grid-view-item.grid-view-item--sold-out .grid-view-item__image-container .grid-view-item__image-wrapper .outstock-overlay, .products-display .list__item .grid-view-item.grid-view-item--sold-out .grid-view-item__image-container .grid-view-item__image-wrapper .outstock-overlay { position: absolute; background: #c92c2c; text-align: center; padding: 7px; width: auto; color: #ffffff; display: block; font-size: 9px; font-weight: 600; border-radius: 4px; top: 10px; right: 10px; line-height: 10px; -webkit-transition: all .5s ease-in-out; -moz-transition: all .5s ease-in-out; -o-transition: all .5s ease-in-out; transition: all .5s ease-in-out } @media (max-width: 543px) { .products-display .grid__item .grid-view-item.grid-view-item--sold-out .grid-view-item__image-container .grid-view-item__image-wrapper .outstock-overlay, .products-display .list__item .grid-view-item.grid-view-item--sold-out .grid-view-item__image-container .grid-view-item__image-wrapper .outstock-overlay { display: none } } .products-display .grid__item .grid-view-item .grid-view-item__image-container, .products-display .list__item .grid-view-item .grid-view-item__image-container { -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -ms-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper, .products-display .list__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper { overflow: hidden; position: relative; margin: 0 } .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .grid-view-item__image, .products-display .list__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .grid-view-item__image { position: relative; top: 0 } .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .spr-badge, .products-display .list__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .spr-badge { position: absolute; left: 0; right: 0; text-align: center; margin: 0 auto; bottom: 10px; -webkit-transition: all .5s; -moz-transition: all .5s; -o-transition: all .5s; transition: all .5s; transition-delay: 0.4s } @media (max-width: 349px) { .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .spr-badge, .products-display .list__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .spr-badge { bottom: 5px } } .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .outstock-overlay, .products-display .list__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .outstock-overlay { display: none } .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper a, .products-display .list__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper a { display: block; position: relative } .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper a .image-inner, .products-display .list__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper a .image-inner { background: #fff } .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description { background: #fff; padding: 12px 3px 14px; text-align: center; position: relative; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -ms-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description:before, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description:before { position: absolute; content: ""; top: 0; right: 15px; left: 15px; width: auto; height: 1px; background: #f3f6fa } .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .product-detail, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .product-detail { margin-bottom: 12px } .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .product-detail .grid-view-item__title, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .product-detail .grid-view-item__title { font-family: Work Sans; color: #525d70; font-size: 16px; text-decoration: none; font-weight: 400; letter-spacing: 0.1px; margin-bottom: 0; text-transform: capitalize } @media (max-width: 543px) { .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .product-detail .grid-view-item__title, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .product-detail .grid-view-item__title { font-size: 14px } } .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta { font-family: Work Sans; color: #000; font-size: 15px; font-weight: 400; margin-bottom: 12px; -webkit-transition: all .5s; -moz-transition: all .5s; -o-transition: all .5s; transition: all .5s } @media (max-width: 543px) { .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta { font-size: 14px } } .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .regular, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .regular { position: relative; color: #878e9e; font-size: 15px; font-weight: 400; display: inline-block; vertical-align: middle } @media (max-width: 543px) { .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .regular, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .regular { font-size: 14px } } @media (max-width: 349px) { .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .regular, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .regular { font-size: 13px } } .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .discount-percentage, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .discount-percentage { color: #1a9bdc; margin: 0 5px; font-size: 15px; font-weight: 400; display: none } @media (max-width: 543px) { .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .discount-percentage, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .discount-percentage { margin: 0 3px; font-size: 14px } } @media (max-width: 349px) { .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .discount-percentage, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .discount-percentage { font-size: 13px; margin: 0 1px } } .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .discount-percentage span, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .discount-percentage span { display: none } .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .product-price__sale, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .product-price__sale { display: inline-block; vertical-align: middle } .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .is-bold, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .is-bold { font-size: 18px; font-weight: 500; color: #373e4e } @media (max-width: 543px) { .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .is-bold, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .is-bold { font-size: 16px } } @media (max-width: 349px) { .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .is-bold, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .is-bold { font-size: 14px } } .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .is-bold .money, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .is-bold .money { text-decoration: none } .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .product-price__sold-out, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .product-price__sold-out { display: none } @media (min-width: 768px) { .products-display .grid__item .grid-view-item:hover .extra-img, .products-display .list__item .grid-view-item:hover .extra-img { opacity: 1; -moz-transform: scale(1, 1); -webkit-transform: scale(1, 1); -o-transform: scale(1, 1); -ms-transform: scale(1, 1); transform: scale(1, 1); -webkit-transition: all 0.7s; -moz-transition: all 0.7s; -ms-transition: all 0.7s; -o-transition: all 0.7s; transition: all 0.7s } } .products-display .grid__item .spr-badge, .products-display .list__item .spr-badge { margin-bottom: 0px } .products-display .grid__item .spr-badge i, .products-display .list__item .spr-badge i { position: relative; opacity: 1; height: 16px; width: 16px; display: inline-block; top: 0px; vertical-align: top; font-style: normal } .products-display .grid__item .spr-badge i.spr-icon:after, .products-display .list__item .spr-badge i.spr-icon:after { content: "\F005"; font-family: "FontAwesome"; color: #ccc; font-size: 14px; -webkit-transition: all 0.7s; -moz-transition: all 0.7s; -ms-transition: all 0.7s; -o-transition: all 0.7s; transition: all 0.7s } .products-display .grid__item .spr-badge i.spr-icon-star-empty:before, .products-display .list__item .spr-badge i.spr-icon-star-empty:before { display: none !important } .products-display .grid__item .spr-badge i.spr-icon-star:before, .products-display .grid__item .spr-badge i.spr-icon-star-half-alt:before, .products-display .list__item .spr-badge i.spr-icon-star:before, .products-display .list__item .spr-badge i.spr-icon-star-half-alt:before { display: none !important; content: '\F005'; font-family: "FontAwesome"; color: #f5cb0c; position: absolute; left: 0; right: 0; top: 30px; font-size: 14px; -webkit-transition: all 0.7s; -moz-transition: all 0.7s; -ms-transition: all 0.7s; -o-transition: all 0.7s; transition: all 0.7s } .products-display .grid__item .spr-badge i.spr-icon-star:after, .products-display .grid__item .spr-badge i.spr-icon-star-half-alt:after, .products-display .list__item .spr-badge i.spr-icon-star:after, .products-display .list__item .spr-badge i.spr-icon-star-half-alt:after { content: "\F005"; font-family: "FontAwesome"; color: #f5cb0c; font-size: 14px; -webkit-transition: all 0.7s; -moz-transition: all 0.7s; -ms-transition: all 0.7s; -o-transition: all 0.7s; transition: all 0.7s } .products-display .grid__item .spr-badge i.spr-icon-star:nth-child(2n+1):before, .products-display .grid__item .spr-badge i.spr-icon-star-half-alt:nth-child(2n+1):before, .products-display .list__item .spr-badge i.spr-icon-star:nth-child(2n+1):before, .products-display .list__item .spr-badge i.spr-icon-star-half-alt:nth-child(2n+1):before { -webkit-transition: all .2s ease-in-out; -moz-transition: all .2s ease-in-out; -o-transition: all .2s ease-in-out; transition: all .2s ease-in-out } .products-display .grid__item .spr-badge i.spr-icon-star:nth-child(2n+2):before, .products-display .grid__item .spr-badge i.spr-icon-star-half-alt:nth-child(2n+2):before, .products-display .list__item .spr-badge i.spr-icon-star:nth-child(2n+2):before, .products-display .list__item .spr-badge i.spr-icon-star-half-alt:nth-child(2n+2):before { -webkit-transition: all .4s ease-in-out; -moz-transition: all .4s ease-in-out; -o-transition: all .4s ease-in-out; transition: all .4s ease-in-out } .products-display .grid__item .spr-badge i.spr-icon-star:nth-child(2n+3):before, .products-display .grid__item .spr-badge i.spr-icon-star-half-alt:nth-child(2n+3):before, .products-display .list__item .spr-badge i.spr-icon-star:nth-child(2n+3):before, .products-display .list__item .spr-badge i.spr-icon-star-half-alt:nth-child(2n+3):before { -webkit-transition: all .6s ease-in-out; -moz-transition: all .6s ease-in-out; -o-transition: all .6s ease-in-out; transition: all .6s ease-in-out } .products-display .grid__item .spr-badge i.spr-icon-star:nth-child(2n+4):before, .products-display .grid__item .spr-badge i.spr-icon-star-half-alt:nth-child(2n+4):before, .products-display .list__item .spr-badge i.spr-icon-star:nth-child(2n+4):before, .products-display .list__item .spr-badge i.spr-icon-star-half-alt:nth-child(2n+4):before { -webkit-transition: all .8s ease-in-out; -moz-transition: all .8s ease-in-out; -o-transition: all .8s ease-in-out; transition: all .8s ease-in-out } .products-display .grid__item .spr-badge i.spr-icon-star:nth-child(2n+5):before, .products-display .grid__item .spr-badge i.spr-icon-star-half-alt:nth-child(2n+5):before, .products-display .list__item .spr-badge i.spr-icon-star:nth-child(2n+5):before, .products-display .list__item .spr-badge i.spr-icon-star-half-alt:nth-child(2n+5):before { -webkit-transition: all 1.2s ease-in-out; -moz-transition: all 1.2s ease-in-out; -o-transition: all 1.2s ease-in-out; transition: all 1.2s ease-in-out } .products-display .grid__item .spr-badge i.spr-icon-star-half-alt:before, .products-display .list__item .spr-badge i.spr-icon-star-half-alt:before { content: '\f123' } .products-display .grid__item .spr-badge i.spr-icon-star-half-alt:after, .products-display .list__item .spr-badge i.spr-icon-star-half-alt:after { content: "\f123" } .products-display .grid__item .thumbnail-buttons, .products-display .list__item .thumbnail-buttons { display: block; text-align: center; -webkit-transition: all .5s; -moz-transition: all .5s; -o-transition: all .5s; transition: all .5s } .products-display .grid__item .thumbnail-buttons .quick-view, .products-display .grid__item .thumbnail-buttons .add-to-wishlist, .products-display .grid__item .thumbnail-buttons .product-block-hover, .products-display .list__item .thumbnail-buttons .quick-view, .products-display .list__item .thumbnail-buttons .add-to-wishlist, .products-display .list__item .thumbnail-buttons .product-block-hover { display: inline-block; vertical-align: middle } .products-display .grid__item .thumbnail-buttons .quick-view a, .products-display .grid__item .thumbnail-buttons .quick-view button, .products-display .grid__item .thumbnail-buttons .add-to-wishlist a, .products-display .grid__item .thumbnail-buttons .add-to-wishlist button, .products-display .grid__item .thumbnail-buttons .product-block-hover a, .products-display .grid__item .thumbnail-buttons .product-block-hover button, .products-display .list__item .thumbnail-buttons .quick-view a, .products-display .list__item .thumbnail-buttons .quick-view button, .products-display .list__item .thumbnail-buttons .add-to-wishlist a, .products-display .list__item .thumbnail-buttons .add-to-wishlist button, .products-display .list__item .thumbnail-buttons .product-block-hover a, .products-display .list__item .thumbnail-buttons .product-block-hover button { width: 34px; display: inline-block; vertical-align: middle; height: 34px; box-shadow: none; position: relative; background: #fbfafd; -webkit-transition: all .5s; -moz-transition: all .5s; -o-transition: all .5s; transition: all .5s; border: none; padding: 0 } .products-display .grid__item .thumbnail-buttons .quick-view a svg, .products-display .grid__item .thumbnail-buttons .quick-view button svg, .products-display .grid__item .thumbnail-buttons .add-to-wishlist a svg, .products-display .grid__item .thumbnail-buttons .add-to-wishlist button svg, .products-display .grid__item .thumbnail-buttons .product-block-hover a svg, .products-display .grid__item .thumbnail-buttons .product-block-hover button svg, .products-display .list__item .thumbnail-buttons .quick-view a svg, .products-display .list__item .thumbnail-buttons .quick-view button svg, .products-display .list__item .thumbnail-buttons .add-to-wishlist a svg, .products-display .list__item .thumbnail-buttons .add-to-wishlist button svg, .products-display .list__item .thumbnail-buttons .product-block-hover a svg, .products-display .list__item .thumbnail-buttons .product-block-hover button svg { fill: #373e4e } .products-display .grid__item .thumbnail-buttons .quick-view a span, .products-display .grid__item .thumbnail-buttons .quick-view button span, .products-display .grid__item .thumbnail-buttons .add-to-wishlist a span, .products-display .grid__item .thumbnail-buttons .add-to-wishlist button span, .products-display .grid__item .thumbnail-buttons .product-block-hover a span, .products-display .grid__item .thumbnail-buttons .product-block-hover button span, .products-display .list__item .thumbnail-buttons .quick-view a span, .products-display .list__item .thumbnail-buttons .quick-view button span, .products-display .list__item .thumbnail-buttons .add-to-wishlist a span, .products-display .list__item .thumbnail-buttons .add-to-wishlist button span, .products-display .list__item .thumbnail-buttons .product-block-hover a span, .products-display .list__item .thumbnail-buttons .product-block-hover button span { display: none; color: #373e4e; -webkit-transition: all .5s; -moz-transition: all .5s; -o-transition: all .5s; transition: all .5s } .products-display .grid__item .thumbnail-buttons .quick-view:hover button, .products-display .grid__item .thumbnail-buttons .quick-view:hover a, .products-display .grid__item .thumbnail-buttons .add-to-wishlist:hover button, .products-display .grid__item .thumbnail-buttons .add-to-wishlist:hover a, .products-display .grid__item .thumbnail-buttons .product-block-hover:hover button, .products-display .grid__item .thumbnail-buttons .product-block-hover:hover a, .products-display .list__item .thumbnail-buttons .quick-view:hover button, .products-display .list__item .thumbnail-buttons .quick-view:hover a, .products-display .list__item .thumbnail-buttons .add-to-wishlist:hover button, .products-display .list__item .thumbnail-buttons .add-to-wishlist:hover a, .products-display .list__item .thumbnail-buttons .product-block-hover:hover button, .products-display .list__item .thumbnail-buttons .product-block-hover:hover a { background-color: #1a9bdc } .products-display .grid__item .thumbnail-buttons .quick-view:hover button svg, .products-display .grid__item .thumbnail-buttons .quick-view:hover a svg, .products-display .grid__item .thumbnail-buttons .add-to-wishlist:hover button svg, .products-display .grid__item .thumbnail-buttons .add-to-wishlist:hover a svg, .products-display .grid__item .thumbnail-buttons .product-block-hover:hover button svg, .products-display .grid__item .thumbnail-buttons .product-block-hover:hover a svg, .products-display .list__item .thumbnail-buttons .quick-view:hover button svg, .products-display .list__item .thumbnail-buttons .quick-view:hover a svg, .products-display .list__item .thumbnail-buttons .add-to-wishlist:hover button svg, .products-display .list__item .thumbnail-buttons .add-to-wishlist:hover a svg, .products-display .list__item .thumbnail-buttons .product-block-hover:hover button svg, .products-display .list__item .thumbnail-buttons .product-block-hover:hover a svg { fill: #fff } .products-display .grid__item .thumbnail-buttons .quick-view:hover button span, .products-display .grid__item .thumbnail-buttons .quick-view:hover a span, .products-display .grid__item .thumbnail-buttons .add-to-wishlist:hover button span, .products-display .grid__item .thumbnail-buttons .add-to-wishlist:hover a span, .products-display .grid__item .thumbnail-buttons .product-block-hover:hover button span, .products-display .grid__item .thumbnail-buttons .product-block-hover:hover a span, .products-display .list__item .thumbnail-buttons .quick-view:hover button span, .products-display .list__item .thumbnail-buttons .quick-view:hover a span, .products-display .list__item .thumbnail-buttons .add-to-wishlist:hover button span, .products-display .list__item .thumbnail-buttons .add-to-wishlist:hover a span, .products-display .list__item .thumbnail-buttons .product-block-hover:hover button span, .products-display .list__item .thumbnail-buttons .product-block-hover:hover a span { color: #fff } .products-display .grid__item .thumbnail-buttons .add-to-wishlist .tooltip-label, .products-display .list__item .thumbnail-buttons .add-to-wishlist .tooltip-label { display: none } .products-display .grid__item .thumbnail-buttons .add-to-wishlist .loader-btn, .products-display .list__item .thumbnail-buttons .add-to-wishlist .loader-btn { height: 34px; width: 34px; background-color: transparent; border: none; padding: 0 } .products-display .grid__item .thumbnail-buttons .add-to-wishlist .loader-btn a, .products-display .list__item .thumbnail-buttons .add-to-wishlist .loader-btn a { display: block; background: #1a9bdc } .products-display .grid__item .thumbnail-buttons .add-to-wishlist .loader-btn a:after, .products-display .list__item .thumbnail-buttons .add-to-wishlist .loader-btn a:after { display: none } .products-display .grid__item .thumbnail-buttons .add-to-wishlist .loader-btn i, .products-display .list__item .thumbnail-buttons .add-to-wishlist .loader-btn i { display: block; position: relative; color: #fff; top: 0px; left: 0px } .products-display .grid__item .thumbnail-buttons .add-to-wishlist .loader-btn i:before, .products-display .list__item .thumbnail-buttons .add-to-wishlist .loader-btn i:before { top: 0; line-height: 34px } .products-display .grid__item .thumbnail-buttons .add-to-wishlist i, .products-display .list__item .thumbnail-buttons .add-to-wishlist i { display: none } .products-display .grid__item .thumbnail-buttons .product-block-hover .add-to-cart .addToCart, .products-display .list__item .thumbnail-buttons .product-block-hover .add-to-cart .addToCart { padding: 0; border: none; width: auto } @media (max-width: 543px) { .products-display .grid__item .thumbnail-buttons .product-block-hover .add-to-cart .addToCart, .products-display .list__item .thumbnail-buttons .product-block-hover .add-to-cart .addToCart { width: 34px } } .products-display .grid__item .thumbnail-buttons .product-block-hover .add-to-cart .addToCart .value, .products-display .list__item .thumbnail-buttons .product-block-hover .add-to-cart .addToCart .value { display: block; padding: 7px 15px } @media (max-width: 543px) { .products-display .grid__item .thumbnail-buttons .product-block-hover .add-to-cart .addToCart .value, .products-display .list__item .thumbnail-buttons .product-block-hover .add-to-cart .addToCart .value { display: none } } .products-display .grid__item .thumbnail-buttons .product-block-hover .add-to-cart .addToCart .plus, .products-display .list__item .thumbnail-buttons .product-block-hover .add-to-cart .addToCart .plus { display: none } .products-display .grid__item .thumbnail-buttons .product-block-hover .add-to-cart .addToCart svg, .products-display .list__item .thumbnail-buttons .product-block-hover .add-to-cart .addToCart svg { display: none } @media (max-width: 543px) { .products-display .grid__item .thumbnail-buttons .product-block-hover .add-to-cart .addToCart svg, .products-display .list__item .thumbnail-buttons .product-block-hover .add-to-cart .addToCart svg { display: block } } .products-display .grid__item .thumbnail-buttons .product-block-hover .nm-cartmain .nm-addToCart.adding, .products-display .list__item .thumbnail-buttons .product-block-hover .nm-cartmain .nm-addToCart.adding { background: #1a9bdc; z-index: 1 } .products-display .grid__item .thumbnail-buttons .product-block-hover .nm-cartmain .nm-addToCart.adding .value, .products-display .list__item .thumbnail-buttons .product-block-hover .nm-cartmain .nm-addToCart.adding .value { opacity: 0 } .products-display .grid__item .thumbnail-buttons .product-block-hover .nm-cartmain .nm-addToCart.adding:before, .products-display .list__item .thumbnail-buttons .product-block-hover .nm-cartmain .nm-addToCart.adding:before { position: absolute; content: "\f1ce"; font-family: "FontAwesome"; color: #fff; width: 34px; height: 34px; line-height: 34px; font-weight: 400; left: 0; right: 0; margin: 0 auto; -webkit-animation: spin 2s infinite linear; -moz-animation: spin 2s infinite linear; -o-animation: spin 2s infinite linear; animation: spin 2s infinite linear } .products-display .grid__item .thumbnail-buttons .product-block-hover .nm-cartmain .nm-addToCart.adding svg, .products-display .list__item .thumbnail-buttons .product-block-hover .nm-cartmain .nm-addToCart.adding svg { opacity: 0 } .products-display .grid__item .thumbnail-buttons .product-block-hover .product-form, .products-display .list__item .thumbnail-buttons .product-block-hover .product-form { margin: 0 } .products-display .grid__item .thumbnail-buttons .product-block-hover .add_to_cart_main .add-to-cart .product-form__item--quantity, .products-display .grid__item .thumbnail-buttons .product-block-hover .add_to_cart_main .add-to-cart .product-selector, .products-display .list__item .thumbnail-buttons .product-block-hover .add_to_cart_main .add-to-cart .product-form__item--quantity, .products-display .list__item .thumbnail-buttons .product-block-hover .add_to_cart_main .add-to-cart .product-selector { display: none } .products-display .grid__item .thumbnail-buttons .product-block-hover .product-form__input, .products-display .list__item .thumbnail-buttons .product-block-hover .product-form__input { display: none } .products-display .grid__item .thumbnail-buttons .product-block-hover .product-form__item, .products-display .list__item .thumbnail-buttons .product-block-hover .product-form__item { padding: 0; margin: 0 } .products-display .grid__item .product-flags, .products-display .list__item .product-flags { position: absolute; top: 0px; left: 0; right: 0; width: 100% } .products-display .grid__item .product-flags .flag, .products-display .list__item .product-flags .flag { font-size: 12px; font-weight: 500; color: #1a9bdc; position: absolute } .products-display .grid__item .product-flags .sale, .products-display .list__item .product-flags .sale { position: absolute; left: 10px; top: 10px; color: #fff; height: 40px; width: 40px; left: 10px; border-radius: 50%; background: #7fbc1e; text-align: center; font-size: 10px; font-weight: 600; padding: 12px 4px; -webkit-transition: all 05s; -moz-transition: all 0.5s; -ms-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } @media (max-width: 543px) { .products-display .grid__item .product-flags .sale, .products-display .list__item .product-flags .sale { height: 20px; width: 35px; padding: 4px 4px; line-height: 12px; font-size: 9px; border-radius: 4px } } .products-display .grid__item .main-img, .products-display .list__item .main-img { -webkit-transition: all 0.7s; -moz-transition: all 0.7s; -ms-transition: all 0.7s; -o-transition: all 0.7s; transition: all 0.7s } .products-display .grid__item .extra-img, .products-display .list__item .extra-img { left: 0; position: absolute; right: 0; top: 0; opacity: 0; width: 100%; -moz-transform: scale(0, 1); -webkit-transform: scale(0, 1); -o-transform: scale(0, 1); -ms-transform: scale(0, 1); transform: scale(0, 1); -webkit-transition: all 0.7s; -moz-transition: all 0.7s; -ms-transition: all 0.7s; -o-transition: all 0.7s; transition: all 0.7s } .products-display .list__item { margin-bottom: 0px; padding: 15px } .products-display .list__item .grid-view-item { border: 0 } .products-display .list__item .grid-view-item .grid-view-item__image-container { margin-bottom: 0; border-radius: 0 } .products-display .list__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper { padding: 0; border: 1px solid #e8eef6 } @media (min-width: 544px) { .products-display .list__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper { margin-bottom: 0 } } .products-display .list__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .image-inner { border: none; overflow: hidden; position: relative } .products-display .list__item .grid-view-item .grid-view-item__image-container .product-title-review { background: transparent; border-bottom: 0; text-align: left } @media (max-width: 767px) { .products-display .list__item .grid-view-item .grid-view-item__image-container .product-title-review { text-align: center } } .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description { text-align: left; padding: 0; margin: 0; background: transparent; border: none } @media (min-width: 768px) { .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description { padding-left: 25px } } @media (max-width: 767px) { .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description { text-align: center; padding-bottom: 0; margin-bottom: 5px; padding-top: 10px } } .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description:before { display: none } .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta { margin-bottom: 10px } .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .product-desc { margin-bottom: 10px; color: #666666; font-size: 14px; letter-spacing: .8px; line-height: 22px } .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .spr-badge { margin-bottom: 8px } .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons { position: unset; opacity: 1; margin-bottom: 0px; text-align: left } @media (max-width: 767px) { .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons { text-align: center } } .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .quick-view, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .add-to-wishlist, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .product-block-hover { opacity: 1; display: inline-block; vertical-align: middle } @media (min-width: 544px) { .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .quick-view, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .add-to-wishlist, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .product-block-hover { -moz-transform: none; -webkit-transform: none; -o-transform: none; -ms-transform: none; transform: none } } @media (max-width: 543px) { .template-collection .products-display .grid__item { width: 50% !important } } .template-collection .products-display .grid__item:nth-child(3n+1) { clear: left } @media (max-width: 1199px) { .template-collection .products-display .grid__item:nth-child(3n+1) { clear: none } .template-collection .products-display .grid__item:nth-child(2n+1) { clear: left } } .template-collection .products-display .grid__item .grid-view-item { border: 1px solid #e8eef6 } @media screen and (min-width: 750px) and (max-width: 767px) { .template-collection .products-display .medium-up--one-third { width: 50% } } .template-collection .normal_main_content { margin-bottom: 20px } .template-collection .normal_main_content .product_empty { padding-left: 15px; margin-bottom: 20px } @media (max-width: 991px) { .ishi_collection_section .ishi_collection_block { padding: 40px 0 !important } } .ishi_collection_section .ishi_collection_block.collectionbgimage { background-size: cover; background-repeat: no-repeat; background-position: center } .ishi_collection_section .ishi_collection_block.collection-bgcolor { display: block; position: relative; width: 100% } .ishi_collection_section .collection-block { text-align: center; padding: 0 15px; position: relative } @media (max-width: 991px) { .ishi_collection_section .collection-block { margin-bottom: 30px } .ishi_collection_section .collection-block:nth-child(3), .ishi_collection_section .collection-block:last-child { margin-bottom: 0 } } .ishi_collection_section .collection-block .section-header>h2 { text-align: left; margin-bottom: 20px; font-size: 22px; line-height: 24px; position: relative; padding: 3px 0 } .ishi_collection_section .collection-block .owl-theme .owl-nav { display: block; position: absolute; top: -50px; right: 0px; margin: 0 } .ishi_collection_section .collection-block .owl-theme .owl-nav .owl-prev, .ishi_collection_section .collection-block .owl-theme .owl-nav .owl-next { height: 30px; width: 30px } .ishi_collection_section .collection-block .owl-theme .owl-nav .owl-prev i, .ishi_collection_section .collection-block .owl-theme .owl-nav .owl-next i { width: 30px; height: 30px } .ishi_collection_section .collection-block .owl-theme .owl-nav .owl-prev i:before, .ishi_collection_section .collection-block .owl-theme .owl-nav .owl-next i:before { width: 30px; height: 30px; line-height: 30px; font-size: 18px } .ishi_collection_section .collection-block .products-display { padding: 0 } .ishi_collection_section .collection-block .products-display .multilevel-item .grid__item:last-child { padding-bottom: 0 } .ishi_collection_section .collection-block .products-display .grid__item { padding: 0; padding-bottom: 15px; float: none } .ishi_collection_section .collection-block .products-display .grid-view-item { border: 0; background: transparent } .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container { margin-bottom: 0px; display: flex; align-items: center } @media (max-width: 767px) { .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container { margin: 0; max-width: 100% } } .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper { padding-left: 0 } .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper a { border: 1px solid #e8eef6 } @media (min-width: 768px) { .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container:hover .product-description .thumbnail-buttons .quick-view, .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container:hover .product-description .thumbnail-buttons .product-block-hover, .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container:hover .product-description .thumbnail-buttons .add-to-wishlist { opacity: 1; transform: translateY(0); -moz-transform: translateY(0); -webkit-transform: translateY(0); -o-transform: translateY(0); -ms-transform: translateY(0) } } .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container:hover .product-description .spr-badge { opacity: 1; -webkit-transition: all .6s; -moz-transition: all .6s; -o-transition: all .6s; transition: all .6s } @media (min-width: 768px) { .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container:hover .product-description .grid-view-item__meta { opacity: 0 } } .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .reveal { position: relative } .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .outstock-overlay { display: none } @media (max-width: 400px) { .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper { width: 50% } } .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description { text-align: left; padding: 0 15px; position: relative; overflow: unset; background: transparent } .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description:before { display: none } @media (max-width: 1199px) { .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description { padding-left: 0 } } @media (max-width: 400px) { .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description { width: 50%; padding-right: 10px } } .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .spr-badge { margin-bottom: 10px } @media (max-width: 543px) { .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .spr-badge { margin-bottom: 5px } } .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .product-detail { display: block; margin-bottom: 10px } @media (max-width: 543px) { .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .product-detail { margin-bottom: 7px } } @media screen and (min-width: 992px) and (max-width: 1199px) { .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .product-detail .grid-view-item__title { font-size: 14px } } .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta { opacity: 1; -webkit-transition: all .6s; -moz-transition: all .6s; -o-transition: all .6s; transition: all .6s; margin-bottom: 10px } @media (max-width: 767px) { .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta { margin-bottom: 15px } } @media (max-width: 543px) { .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta { margin-bottom: 8px } } .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .regular, .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .discount-percentage, .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .is-bold { font-size: 16px } @media screen and (min-width: 992px) and (max-width: 1199px) { .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .discount-percentage { display: none } } .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .product-desc { display: none; color: #666; font-size: 14px; margin-bottom: 10px } .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons { left: 15px; right: 0; bottom: -8px; position: absolute; text-align: left } @media (max-width: 1199px) { .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons { left: 0px } } @media (max-width: 767px) { .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons { position: unset; opacity: 1 } } @media (max-width: 543px) { .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons { margin: 0 } } .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .quick-view, .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .add-to-wishlist, .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .product-block-hover { -webkit-transition: all .3s ease-in-out; -moz-transition: all .3s ease-in-out; -o-transition: all .3s ease-in-out; transition: all .3s ease-in-out } @media (min-width: 768px) { .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .quick-view, .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .add-to-wishlist, .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .product-block-hover { opacity: 0; -moz-transform: translateY(70px); -webkit-transform: translateY(70px); -o-transform: translateY(70px); -ms-transform: translateY(70px); transform: translateY(70px) } } .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .quick-view a, .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .quick-view button, .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .add-to-wishlist a, .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .add-to-wishlist button, .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .product-block-hover a, .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .product-block-hover button { box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.08) } .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .add-to-wishlist { -webkit-transition: all .6s ease-in-out; -moz-transition: all .6s ease-in-out; -o-transition: all .6s ease-in-out; transition: all .6s ease-in-out } .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .product-block-hover { -webkit-transition: all .9s ease-in-out; -moz-transition: all .9s ease-in-out; -o-transition: all .9s ease-in-out; transition: all .9s ease-in-out } .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .product-block-hover a { width: 34px } .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .product-block-hover a svg { display: block } .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .product-block-hover a .value { display: none } .ishi-deal-section { margin-bottom: 30px } .ishi-deal-section .specialdeal-block { position: relative } @media (max-width: 991px) { .ishi-deal-section .specialdeal-block { padding: 40px 0 !important } } .ishi-deal-section .specialdeal-block.dealbgimage { background-size: cover; background-repeat: no-repeat; background-position: center } .ishi-deal-section .specialdeal-block.deal-bgcolor { display: block; position: relative; width: 100% } .ishi-deal-section .specialdeal-block .section-header>h2 { margin-bottom: 10px } @media (max-width: 543px) { .ishi-deal-section .specialdeal-block .section-header>h2 { margin-bottom: 20px } } .ishi-deal-section .specialdeal-block .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .spr-badge { -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -ms-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } @media (min-width: 768px) { .ishi-deal-section .specialdeal-block .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .spr-badge { opacity: 0 } } @media (max-width: 767px) { .ishi-deal-section .specialdeal-block .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .spr-badge { bottom: 45px } } @media (max-width: 349px) { .ishi-deal-section .specialdeal-block .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .spr-badge { bottom: 40px } } .ishi-deal-section .specialdeal-block .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .productcountdown { position: absolute; left: 0; right: 0; bottom: 10px; text-align: center; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -ms-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } @media (max-width: 767px) { .ishi-deal-section .specialdeal-block .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .productcountdown { position: unset; margin: 6px 0 12px } } @media (min-width: 768px) { .ishi-deal-section .specialdeal-block .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .productcountdown { opacity: 1 } } .ishi-deal-section .specialdeal-block .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .productcountdown .countdown { display: inline-block; vertical-align: middle; text-align: center; cursor: pointer; position: relative } .ishi-deal-section .specialdeal-block .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .productcountdown .countdown:after { content: ":"; position: absolute; top: 1px; right: -6px; color: #373e4e } .ishi-deal-section .specialdeal-block .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .productcountdown .countdown:last-child { margin-right: 0 } .ishi-deal-section .specialdeal-block .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .productcountdown .countdown:last-child .data { color: #1a9bdc } .ishi-deal-section .specialdeal-block .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .productcountdown .countdown:last-child:after { display: none } .ishi-deal-section .specialdeal-block .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .productcountdown .countdown.data-large:after { right: -7px } .ishi-deal-section .specialdeal-block .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .productcountdown .countdown .data { font-size: 18px; line-height: 20px; letter-spacing: 0.1px; font-family: Work Sans; font-weight: 400; color: #373e4e; position: relative; width: 40px; height: 20px; line-height: 20px; -webkit-transition: all .6s; -moz-transition: all .6s; -o-transition: all .6s; transition: all .6s } @media (max-width: 543px) { .ishi-deal-section .specialdeal-block .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .productcountdown .countdown .data { font-size: 16px; width: 35px } } @media (max-width: 375px) { .ishi-deal-section .specialdeal-block .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .productcountdown .countdown .data { font-size: 15px; width: 30px } } @media (max-width: 349px) { .ishi-deal-section .specialdeal-block .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .productcountdown .countdown .data { font-size: 14px; width: 28px } } .ishi-deal-section .specialdeal-block .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .productcountdown .countdown .text { display: none } @media (max-width: 767px) { .ishi-deal-section .specialdeal-block .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .productcountdown .data-large:after { right: -6px } } .ishi-deal-section .specialdeal-block .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .product-desc { display: none } @media (min-width: 768px) { .ishi-deal-section .specialdeal-block .products-display .grid__item .grid-view-item:hover .grid-view-item__image-container .grid-view-item__image-wrapper .productcountdown { opacity: 0 } } @media (min-width: 768px) { .ishi-deal-section .specialdeal-block .products-display .grid__item .grid-view-item:hover .grid-view-item__image-container .grid-view-item__image-wrapper .spr-badge { opacity: 1 } } .ishi-deal-section .specialdeal-block .owl-nav { margin-top: 15px } @media (max-width: 991px) { .ishi-deal-section .specialdeal-block .owl-nav { margin-top: 10 } } .ishi-service-section .ishiservices { position: relative; margin: -30px 0; z-index: 1 } @media (max-width: 991px) { .ishi-service-section .ishiservices { margin: 0 0 30px } } .ishi-service-section .ishiservices .ishiservices-content { display: block; position: relative; box-shadow: 4px 6px 5px -2px rgba(0, 0, 0, 0.2); padding: 10px 0; overflow: hidden } .ishi-service-section .ishiservices .service-block { display: block } .ishi-service-section .ishiservices .services { text-align: center; cursor: pointer; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } @media screen and (min-width: 544px) and (max-width: 991px) { .ishi-service-section .ishiservices .services { margin-bottom: 10px } .ishi-service-section .ishiservices .services:nth-child(3), .ishi-service-section .ishiservices .services:last-child { margin-bottom: 0 } } @media (max-width: 543px) { .ishi-service-section .ishiservices .services { width: 100%; margin-bottom: 10px; border: 0 } .ishi-service-section .ishiservices .services:last-child { margin-bottom: 0 } } .ishi-service-section .ishiservices .services a { display: block } .ishi-service-section .ishiservices .services .service-img-outer { display: inline-block; vertical-align: middle; position: relative; background: transparent } .ishi-service-section .ishiservices .services .service-img { position: relative; display: inline-block; vertical-align: middle; margin: 0; text-align: center; height: 40px; width: 40px; overflow: hidden; background-position: center; background-repeat: no-repeat; transition: all 400ms ease; -webkit-transition: all 400ms ease; -moz-transition: all 400ms ease; -ms-transition: all 400ms ease; -o-transition: all 400ms ease; transform: rotate(0); -moz-transform: rotate(0); -webkit-transform: rotate(0); -o-transform: rotate(0); -ms-transform: rotate(0) } .ishi-service-section .ishiservices .services .service-text { display: inline-block; vertical-align: middle; text-align: left; padding-left: 10px; width: 70% } @media screen and (min-width: 992px) and (max-width: 1199px) { .ishi-service-section .ishiservices .services .service-text { width: 72%; padding-left: 5px } } @media (max-width: 767px) { .ishi-service-section .ishiservices .services .service-text { width: 75%; padding-left: 10px } } @media (max-width: 543px) { .ishi-service-section .ishiservices .services .service-text { width: 40% } } @media (max-width: 480px) { .ishi-service-section .ishiservices .services .service-text { width: 50% } } @media (max-width: 400px) { .ishi-service-section .ishiservices .services .service-text { width: 55% } } @media (max-width: 375px) { .ishi-service-section .ishiservices .services .service-text { width: 60% } } @media (max-width: 349px) { .ishi-service-section .ishiservices .services .service-text { width: 65% } } @media (max-width: 330px) { .ishi-service-section .ishiservices .services .service-text { width: 70% } } .ishi-service-section .ishiservices .services .service-text .service-title { font-size: 16px; font-weight: 400; font-family: Work Sans; letter-spacing: 0.3px; transition: all 400ms ease; -webkit-transition: all 400ms ease; -moz-transition: all 400ms ease; -ms-transition: all 400ms ease; -o-transition: all 400ms ease } @media screen and (min-width: 992px) and (max-width: 1199px) { .ishi-service-section .ishiservices .services .service-text .service-title { font-size: 14px } } .ishi-service-section .ishiservices .services .service-text .service-desc { font-weight: 400; font-size: 13px; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } @media (min-width: 768px) { .ishi-service-section .ishiservices .services:hover .service-img { transform: rotate(360deg); -moz-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -ms-transform: rotate(360deg) } .ishi-service-section .ishiservices .services:hover .service-text .service-title { letter-spacing: 0.9px } } .ishi-banner-block .ishibannerblock, .ishi-banner-block .ishitwobannerblock, .ishi-twobanner-block .ishibannerblock, .ishi-twobanner-block .ishitwobannerblock { text-align: center } .ishi-banner-block .ishibannerblock .image-container, .ishi-banner-block .ishitwobannerblock .image-container, .ishi-twobanner-block .ishibannerblock .image-container, .ishi-twobanner-block .ishitwobannerblock .image-container { display: inline-block; vertical-align: middle } .ishi-banner-block .ishibannerblock .image-container img, .ishi-banner-block .ishitwobannerblock .image-container img, .ishi-twobanner-block .ishibannerblock .image-container img, .ishi-twobanner-block .ishitwobannerblock .image-container img { max-width: 100%; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } .ishi-banner-block .ishibannerblock .image-container a, .ishi-banner-block .ishitwobannerblock .image-container a, .ishi-twobanner-block .ishibannerblock .image-container a, .ishi-twobanner-block .ishitwobannerblock .image-container a { display: block; position: relative; overflow: hidden; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } .ishi-banner-block .ishibannerblock .image-container a.lightcolor:before, .ishi-banner-block .ishibannerblock .image-container a.lightcolor:after, .ishi-banner-block .ishitwobannerblock .image-container a.lightcolor:before, .ishi-banner-block .ishitwobannerblock .image-container a.lightcolor:after, .ishi-twobanner-block .ishibannerblock .image-container a.lightcolor:before, .ishi-twobanner-block .ishibannerblock .image-container a.lightcolor:after, .ishi-twobanner-block .ishitwobannerblock .image-container a.lightcolor:before, .ishi-twobanner-block .ishitwobannerblock .image-container a.lightcolor:after { background: rgba(255, 255, 255, 0.1) } .ishi-banner-block .ishibannerblock .image-container a.darkcolor:before, .ishi-banner-block .ishibannerblock .image-container a.darkcolor:after, .ishi-banner-block .ishitwobannerblock .image-container a.darkcolor:before, .ishi-banner-block .ishitwobannerblock .image-container a.darkcolor:after, .ishi-twobanner-block .ishibannerblock .image-container a.darkcolor:before, .ishi-twobanner-block .ishibannerblock .image-container a.darkcolor:after, .ishi-twobanner-block .ishitwobannerblock .image-container a.darkcolor:before, .ishi-twobanner-block .ishitwobannerblock .image-container a.darkcolor:after { background: rgba(0, 0, 0, 0.1) } .ishi-banner-block .ishibannerblock .bannerblock, .ishi-banner-block .ishitwobannerblock .bannerblock, .ishi-twobanner-block .ishibannerblock .bannerblock, .ishi-twobanner-block .ishitwobannerblock .bannerblock { display: inline-block; vertical-align: middle } @media (max-width: 767px) { .ishi-banner-block .ishibannerblock .bannerblock, .ishi-banner-block .ishitwobannerblock .bannerblock, .ishi-twobanner-block .ishibannerblock .bannerblock, .ishi-twobanner-block .ishitwobannerblock .bannerblock { width: 100%; margin-bottom: 30px } .ishi-banner-block .ishibannerblock .bannerblock:last-child, .ishi-banner-block .ishitwobannerblock .bannerblock:last-child, .ishi-twobanner-block .ishibannerblock .bannerblock:last-child, .ishi-twobanner-block .ishitwobannerblock .bannerblock:last-child { margin-bottom: 0 } } @media (max-width: 991px) { .ishitestimonial { margin-bottom: 30px } } .ishitestimonial .testimonialimage { background-position: center; background-repeat: no-repeat; background-size: cover } .ishitestimonial .testimonial-color { display: block; width: 100% } @media (max-width: 991px) { .ishitestimonial .testimonial-block { padding: 40px 0 !important } } .ishitestimonial .testimonial-inner-container { width: 50% } @media (min-width: 768px) and (max-width: 1199px) { .ishitestimonial .testimonial-inner-container { width: 60% } } @media (max-width: 767px) { .ishitestimonial .testimonial-inner-container { width: 100%; float: none } } .ishitestimonial .testimonial-inner-container .ishitestimonials-container { text-align: center } .ishitestimonial .testimonial-inner-container .ishitestimonials-container .quote { border-radius: 50%; width: 65px; height: 65px; line-height: 65px; text-align: center; margin: 10px auto 25px } @media (max-width: 543px) { .ishitestimonial .testimonial-inner-container .ishitestimonials-container .quote { width: 55px; height: 55px; line-height: 55px } } .ishitestimonial .testimonial-inner-container .ishitestimonials-container .user-description { font-size: 14px; line-height: 24px; position: relative; font-weight: 400; font-family: Work Sans; letter-spacing: 0.2px; margin: 0 auto 30px } .ishitestimonial .testimonial-inner-container .ishitestimonials-container .user-info .testimonial-img { border: 1px solid #e8eef6; display: inline-block; vertical-align: middle; position: relative } .ishitestimonial .testimonial-inner-container .ishitestimonials-container .user-info .testimonial-img img { max-width: 100%; width: auto } .ishitestimonial .testimonial-inner-container .ishitestimonials-container .user-info .user-content { display: inline-block; vertical-align: middle; padding-left: 10px; text-align: left } .ishitestimonial .testimonial-inner-container .ishitestimonials-container .user-info .user-content .user-name { display: block; font-size: 24px; font-weight: 500; font-family: Work Sans; letter-spacing: 0; margin: 0 0 7px; line-height: 26px } @media (max-width: 543px) { .ishitestimonial .testimonial-inner-container .ishitestimonials-container .user-info .user-content .user-name { font-size: 20px; margin: 0 0 5px } } .ishitestimonial .testimonial-inner-container .ishitestimonials-container .user-info .user-content .user-designation { display: block; font-size: 13px; font-family: Work Sans; font-weight: 400 } @media (max-width: 991px) { .ishitestimonial .owl-nav { margin-top: 30px } } .ishi-smartblog-section { overflow: hidden } .smartblog .products_block_inner { position: relative } @media (min-width: 992px) { .smartblog .products_block_inner .owl-nav { margin-top: 15px } } .smartblog .products_block_inner .section-header>h2 { margin-bottom: 10px } .smartblog .products_block_inner #smartblog-carousel .sds_blog_post { padding: 15px } .smartblog .products_block_inner #smartblog-carousel .sds_blog_post:hover .blog_post .news_module_image_holder a img { -webkit-transform-style: unset; transform-style: unset; transform: scale(1.26); -webkit-transform: scale(1.26); -ms-transform: scale(1.26); -o-transform: scale(1.26); -moz-transform: scale(1.26); opacity: 0.8 } .smartblog .products_block_inner #smartblog-carousel .sds_blog_post:hover .blog_post .news_module_image_holder .blogicons { opacity: 1 } .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post { position: relative; display: inline-block; vertical-align: middle } @media (min-width: 544px) { .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post { display: flex; align-items: center } } .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .news_module_image_holder { display: block; max-width: 100%; position: relative; margin-bottom: 0px; background: #fff; padding: 0 } @media (max-width: 543px) { .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .news_module_image_holder { width: 100% } } .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .news_module_image_holder a { position: relative; display: block; overflow: hidden } .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .news_module_image_holder img { transition: all 1.5s; -webkit-transition: all 1.5s; -moz-transition: all 1.5s; -ms-transition: all 1.5s; -o-transition: all 1.5s; max-width: 100% } .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content { padding: 0; padding-left: 15px; text-align: left; margin: 0 } @media (max-width: 543px) { .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content { width: 100%; padding: 15px 0 0 } } .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo { background-color: transparent; margin: 0 0 10px; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo .comment, .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo .author, .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo .blog_date { display: block; font-size: 16px; color: #373e4e; letter-spacing: 0.28px; font-weight: 400; margin: 0; margin-bottom: 10px } @media (max-width: 543px) { .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo .comment, .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo .author, .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo .blog_date { font-size: 14px } } .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo .comment i, .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo .author i, .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo .blog_date i { font-size: 15px; margin-right: 3px; color: #1a9bdc; font-weight: 600 } @media (max-width: 543px) { .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo .comment i, .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo .author i, .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo .blog_date i { font-size: 12px } } .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo .comment a, .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo .author a, .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo .blog_date a { color: #373e4e } .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo .blog_date i { font-weight: 300; display: none } .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo .blog_date .date .day_month { display: inline-block; vertical-align: middle; font-weight: 400; font-size: 16px; color: #373e4e } .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo .blog_date .date .day_date { font-size: 24px; color: #1a9bdc; display: inline-block; vertical-align: middle } .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo .blog_date .date .day_year { display: none } .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .sds_post_title { margin-bottom: 15px; line-height: 18px } .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .sds_post_title a { font-size: 18px; font-weight: 600; text-transform: capitalize; font-family: Work Sans; color: #373e4e } @media (max-width: 1199px) { .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .sds_post_title a { font-size: 16px } } .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .desc { margin-bottom: 15px; font-size: 14px; font-weight: 400; color: #525d70; line-height: 22px } .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .article__meta-buttons { display: block } .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .article__meta-buttons a { background: transparent; color: #1a9bdc; padding: 0; border: none; position: relative; letter-spacing: 0.1px; -webkit-transition: all 0.4s; -moz-transition: all 0.4s; -o-transition: all 0.4s; transition: all 0.4s } .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .article__meta-buttons a:before { position: absolute; content: ""; bottom: 0; left: 0; right: 0; width: auto; height: 1px; background: #1a9bdc; -webkit-transition: all 0.4s; -moz-transition: all 0.4s; -o-transition: all 0.4s; transition: all 0.4s } .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .article__meta-buttons a:hover { color: #373e4e } .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .article__meta-buttons a:hover:before { background: #373e4e } .smartblog-container .section-header .article__title { font-size: 22px; text-transform: unset; color: #000; font-weight: 400; font-family: Work Sans; margin-bottom: 20px; letter-spacing: 0.8px } .smartblog-container .section-header>span { font-size: 15px; display: inline-block; margin-right: 20px; position: relative; text-transform: capitalize; color: #777777; margin-bottom: 30px; padding: 0; line-height: normal } .smartblog-container .section-header>span:before { display: none } @media (max-width: 543px) { .smartblog-container .section-header>span { display: block; margin-right: 0; margin-bottom: 20px } } .smartblog-container .section-header>span i { padding-right: 10px; color: #999999 } .smartblog-container .article__grid-image-wrapper { margin-bottom: 30px; display: block; overflow: hidden } .smartblog-container .rte { font-size: 15px; text-align: center; line-height: 25px; letter-spacing: 0.5px; color: #333 } .smartblog-container .share_this_blog { text-align: center } .smartblog-container .share_this_blog a { float: none } .smartblog-container textarea:focus { border-color: #d8dcdc !important } .smartblog-container .comment-form .grid>div { display: block; width: 100% } .smartblog-container .comment-form .grid label { color: #333; font-weight: 500 } .smartblog-container .available-comment { display: block; width: 100% } .smartblog-container .available-comment .h3 { font-size: 18px } .smartblog-container .available-comment #comments { position: relative } .smartblog-container .available-comment #comments li { position: relative } .smartblog-container .available-comment #comments li .comment-img { background: url(//cdn.shopify.com/s/files/1/0267/2073/1222/t/4/assets/comment-blog.jpg?v=7213005309971658303); background-position: 0 0; background-repeat: no-repeat; height: 60px; width: 60px; top: 0; left: 0; overflow: hidden; display: inline-block; float: left; position: relative; margin-right: 20px } .smartblog-container .available-comment #comments li .comment-inner { overflow: hidden; position: relative } .smartblog-container .available-comment #comments .comments { position: relative; display: inline-block } .smartblog-container .available-comment #comments .comments .comment__meta>span { display: block } .smartblog-container .available-comment #comments .comments .comment__meta>span.author { font-weight: 600 } .smartblog-container .available-comment #comments .comments .comment__meta>span.author:before { display: none } .smartblog-container .available-comment #comments .comments .comment__content { text-align: left } @media (min-width: 992px) { .blog--list-view { margin: 0 -15px } } @media (max-width: 991px) { .blog--list-view .pagination { padding: 0 } } .sdsarticleCat { display: block; width: 100%; overflow: hidden; margin-bottom: 30px; text-align: left } @media (max-width: 991px) { .sdsarticleCat { text-align: center } } @media (max-width: 543px) { .sdsarticleCat { text-align: left } } @media (max-width: 991px) { .sdsarticleCat .articleContent, .sdsarticleCat .smartblog-desc { padding: 0 } } .sdsarticleCat .smartblog-desc { position: relative; font-family: Work Sans; font-size: 14px; color: #000; font-weight: 400 } @media (max-width: 991px) { .sdsarticleCat .smartblog-desc { padding: 15px 0px 0 } } .sdsarticleCat .smartblog-desc i { margin-right: 5px; color: #2a2a2a } .sdsarticleCat .smartblog-desc a { color: #2a2a2a } .sdsarticleCat .smartblog-desc .article__author { margin: 0px; letter-spacing: 1px; text-transform: capitalize } .sdsarticleCat .smartblog-desc .article__author i { color: #2a2a2a } .sdsarticleCat .smartblog-desc .article__title { margin: 12px 0; line-height: 17px; text-transform: unset } @media screen and (min-width: 992px) and (max-width: 1199px) { .sdsarticleCat .smartblog-desc .article__title { line-height: 20px; margin: 10px 0 } } .sdsarticleCat .smartblog-desc .article__title a { font-size: 20px; text-transform: unset; font-weight: 400; font-family: Work Sans; text-decoration: none; letter-spacing: .8px; color: #000 } @media screen and (min-width: 992px) and (max-width: 1199px) { .sdsarticleCat .smartblog-desc .article__title a { font-size: 18px } } .sdsarticleCat .smartblog-desc .blog-details { margin-bottom: 10px } .sdsarticleCat .smartblog-desc .blog-details .article__date { margin-bottom: 0 } .sdsarticleCat .smartblog-desc .blog-details span { font-size: 15px; display: inline-block; vertical-align: middle; margin-right: 10px; position: relative; text-transform: capitalize; color: #2a2a2a; line-height: 25px } @media screen and (min-width: 992px) and (max-width: 1199px) { .sdsarticleCat .smartblog-desc .blog-details span { line-height: 20px; font-size: 14px } } .sdsarticleCat .smartblog-desc .blog_description { margin-bottom: 15px; color: #777777; line-height: 24px } @media screen and (min-width: 992px) and (max-width: 1199px) { .sdsarticleCat .smartblog-desc .blog_description { line-height: 20px } } .sdsarticleCat .smartblog-desc .r_more { text-decoration: none; background: #1a9bdc; border-color: #1a9bdc; color: #fff; display: inline-block; vertical-align: middle; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } .sdsarticleCat .smartblog-desc .r_more:hover { background: #000; border-color: #000; color: #fff } .smart-form { background: #fff; padding: 15px 20px 10px } .smart-user { background: #fff; padding: 20px } .manufacture-block #manufacture-carousel { text-align: center } .manufacture-block #manufacture-carousel .logo-bar__item { opacity: 1; cursor: pointer; display: inline-block; vertical-align: middle; -webkit-transition: all 0.8s; -moz-transition: all 0.8s; -o-transition: all 0.8s; transition: all 0.8s } .manufacture-block #manufacture-carousel .logo-bar__item:hover { transform: scale(0.9); opacity: 1 } .manufacture-block #manufacture-carousel .logo-bar__item a .placeholder-svg { width: 130px } .manufacture-block #manufacture-carousel .owl-nav { margin-top: 15px } @media (min-width: 992px) { .template-index .site-footer { margin-top: 20px } } @media (max-width: 991px) { .template-index .site-footer { margin-top: 0px } } .footer-before { display: block } @media (max-width: 991px) { .footer-before { margin-top: 30px } } .site-footer { position: relative; margin-top: 70px; color: #525d70; font-size: 14px; padding-top: 0px } .site-footer.footerimage { background-position: center; background-repeat: no-repeat; background-size: cover } .site-footer.footer-color { background: #fbfafd } @media (max-width: 991px) { .site-footer { margin-top: 30px } } .site-footer a, .site-footer p { font-weight: 400; letter-spacing: 0.2px; font-size: 14px; color: #525d70; margin-bottom: 0; text-decoration: none } .site-footer a { transition: all .4s ease 0s; -webkit-transition: all .4s ease 0s; -moz-transition: all .4s ease 0s; -o-transition: all .4s ease 0s } .site-footer a:hover { color: #1a9bdc } .site-footer .footer-block:last-child .footer-title { margin-bottom: 0px } .site-footer .footer-heading { letter-spacing: 0.1px; font-family: Work Sans; margin-bottom: 18px; text-transform: unset; font-size: 16px; font-weight: 500; color: #373e4e } @media (min-width: 992px) and (max-width: 1199px) { .site-footer .footer-heading { font-size: 15px } } .site-footer .footer-title { display: block; width: 100%; overflow: hidden; cursor: pointer } .site-footer .block-heading { margin-bottom: 12px; font-family: Work Sans; color: #373e4e; font-size: 16px; font-weight: 500; letter-spacing: 0.1px; cursor: pointer } @media (max-width: 991px) { .site-footer .footer-block { padding: 0 15px } } .site-footer .site-footer__linklist-item { margin-bottom: 15px; position: relative } @media (min-width: 992px) { .site-footer .site-footer__linklist-item:last-child { margin-bottom: 0 } } .site-footer .ishistoreinfo-inner { text-align: left } @media (max-width: 991px) { .site-footer .ishistoreinfo-inner { text-align: center; margin-bottom: 25px } } .site-footer .ishistoreinfo-inner .store-img { display: inline-block } .site-footer .ishistoreinfo-inner .store-img .feature-row__item { text-align: left } @media (max-width: 991px) { .site-footer .ishistoreinfo-inner .store-img .feature-row__item { text-align: center } } .site-footer .ishistoreinfo-inner .store-img .feature-row__item a { color: #373e4e; font-family: Work Sans; font-size: 16px; font-weight: 500; cursor: pointer; letter-spacing: 0.1px; margin-bottom: 18px } .site-footer .ishistoreinfo-inner .store-desc { line-height: 24px; font-weight: 400; letter-spacing: 0.2px; font-size: 14px; color: #525d70 } @media (max-width: 991px) { .site-footer .ishistoreinfo-inner .store-desc { width: 70%; margin: 0 auto } } @media (max-width: 767px) { .site-footer .ishistoreinfo-inner .store-desc { width: 85% } } @media (max-width: 543px) { .site-footer .ishistoreinfo-inner .store-desc { width: 100% } } .site-footer .ishistoreinfo-inner .store-desc ul li, .site-footer .ishistoreinfo-inner .store-desc ol li { list-style: unset; margin-left: 15px; margin-bottom: 0px } @media (max-width: 991px) { .site-footer .bottom-link-list { width: 100%; overflow: hidden } } .site-footer .bottom-link-list a { display: block; overflow: hidden; position: relative; letter-spacing: 0.42px; transition: all .4s ease 0s; -webkit-transition: all .4s ease 0s; -moz-transition: all .4s ease 0s; -o-transition: all .4s ease 0s } @media (max-width: 991px) { .site-footer .bottom-link-list a { display: inline-block; vertical-align: middle } } .site-footer .bottom-link-list a:before { content: ""; position: absolute; left: 0; top: 40%; width: 5px; background: #1a9bdc; height: 5px; opacity: 0; border-radius: 50%; transition: all .4s ease 0s; -webkit-transition: all .4s ease 0s; -moz-transition: all .4s ease 0s; -o-transition: all .4s ease 0s } .site-footer .bottom-link-list a:hover { color: #1a9bdc; padding-left: 15px } .site-footer .bottom-link-list a:hover:before { opacity: 1 } @media (max-width: 991px) { .site-footer .bottom-link-list { display: block; width: 100% } } .site-footer .bottom-link-list .site-footer__linklist-item { position: relative } .site-footer .contact-info { text-align: left; display: block; padding: 20px 65px; position: relative; margin-top: -20px; background: #1a9bdc; box-shadow: 4px 6px 5px -2px rgba(0, 0, 0, 0.2) } @media (max-width: 1199px) { .site-footer .contact-info { padding: 20px 15px } } @media (max-width: 991px) { .site-footer .contact-info { margin-top: 0 } } .site-footer .contact-info .contact-info-inner ul { display: flex; align-items: center } @media (max-width: 767px) { .site-footer .contact-info .contact-info-inner ul { display: block } } .site-footer .contact-info .contact-info-inner ul i { height: 50px; width: 50px; border-radius: 50%; line-height: 52px; font-size: 27px; text-align: center; vertical-align: middle; display: inline-block; background: #fff; color: #1a9bdc; transition: all .4s ease 0s; -webkit-transition: all .4s ease 0s; -moz-transition: all .4s ease 0s; -o-transition: all .4s ease 0s } @media (max-width: 991px) { .site-footer .contact-info .contact-info-inner ul i { margin-bottom: 5px } } .site-footer .contact-info .contact-info-inner ul .content { display: inline-block; vertical-align: middle; overflow: hidden; text-align: left; padding-left: 10px; line-height: 25px; width: 80% } @media (max-width: 1199px) { .site-footer .contact-info .contact-info-inner ul .content { width: 75% } } @media (max-width: 991px) { .site-footer .contact-info .contact-info-inner ul .content { display: block; padding: 0; text-align: center; line-height: 20px; width: 100% } } .site-footer .contact-info .contact-info-inner ul .content .title { font-size: 16px; font-family: Work Sans; font-weight: 500; color: #fff } @media (max-width: 991px) { .site-footer .contact-info .contact-info-inner ul .content .title { margin-bottom: 5px } } .site-footer .contact-info .contact-info-inner ul .content a, .site-footer .contact-info .contact-info-inner ul .content p { color: #fff; font-size: 14px; font-weight: 300 } .site-footer .contact-info .contact-info-inner ul .content p { display: inline-block; vertical-align: middle } .site-footer .contact-info .contact-info-inner ul .site-footer__linklist-item { margin: 0; text-align: center; transition: all .4s ease 0s; -webkit-transition: all .4s ease 0s; -moz-transition: all .4s ease 0s; -o-transition: all .4s ease 0s } @media (max-width: 991px) { .site-footer .contact-info .contact-info-inner ul .site-footer__linklist-item { text-align: center } } @media (max-width: 543px) { .site-footer .contact-info .contact-info-inner ul .site-footer__linklist-item { width: 100% } } .site-footer .contact-info .contact-info-inner ul .site-footer__linklist-item:hover i { background: #373e4e; color: #fff } .site-footer .contact-info .contact-info-inner ul .site-footer__linklist-item.shop-email i { font-size: 24px; line-height: 48px } @media (min-width: 992px) { .site-footer .contact-info .contact-info-inner ul .site-footer__linklist-item.full-width .content { width: auto } } @media (max-width: 767px) { .site-footer .contact-info .contact-info-inner ul .site-footer__linklist-item.bottom-space { margin-bottom: 15px } } @media (max-width: 767px) { .site-footer .contact-info .contact-info-inner ul .site-footer__linklist-item:last-child { margin-bottom: 0 } } @media (max-width: 991px) { .site-footer #_mobile_newsletter { clear: both } } @media (max-width: 991px) { .site-footer .newsletter-block { text-align: center; margin-bottom: 25px } } .site-footer .newsletter-block .newsletter_text .sub-heading { font-size: 14px; line-height: 24px; font-weight: 400; color: #525d70; font-family: Work Sans; margin-bottom: 15px } @media (max-width: 991px) { .site-footer .newsletter-block .newsletter_text .sub-heading { width: 70%; margin: 0 auto 20px } } @media (max-width: 767px) { .site-footer .newsletter-block .newsletter_text .sub-heading { width: 85% } } @media (max-width: 543px) { .site-footer .newsletter-block .newsletter_text .sub-heading { width: 100% } } .site-footer .newsletter-block .site-footer__newsletter { margin: 0 } .site-footer .newsletter-block .site-footer__newsletter form { position: relative; text-align: center } @media (max-width: 991px) { .site-footer .newsletter-block .site-footer__newsletter form { width: 65%; margin: 0 auto } } @media (max-width: 767px) { .site-footer .newsletter-block .site-footer__newsletter form { width: 85% } } @media (max-width: 543px) { .site-footer .newsletter-block .site-footer__newsletter form { width: 100% } } .site-footer .newsletter-block .input-group { width: 100%; background: transparent } .site-footer .newsletter-block .input-group .input-group__field { min-width: 200px; width: 100%; height: 40px; padding: 10px 15px; border: 1px solid #e8eef6; background-color: #fff; font-size: 14px; font-weight: 400; letter-spacing: 0.32px; border-radius: 0px; color: #666; padding-right: 55px } .site-footer .newsletter-block .input-group .input-group__field::placeholder { color: #666; opacity: 1 } .site-footer .newsletter-block .input-group .input-group__field::-moz-placeholder { color: #666; opacity: 1 } .site-footer .newsletter-block .input-group .input-group__field:focus { background-color: #fff; color: #666 } .site-footer .newsletter-block .input-group .input-group__btn { border-left: 1px solid #e8eef6 } .site-footer .newsletter-block .input-group .input-group__btn .btn { height: 40px; width: 50px; background: transparent; border: none; font-size: 14px; padding: 0; text-align: center; outline: none; border-radius: 0px; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } .site-footer .newsletter-block .input-group .input-group__btn .btn .icon { height: 40px; width: 50px } .site-footer .newsletter-block .input-group .input-group__btn .btn .icon svg { fill: #1a9bdc; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } .site-footer .newsletter-block .input-group .input-group__btn .btn:hover .icon svg { fill: #525d70 } .site-footer .newsletter-block .input-group .input-group__btn .btn>span { font-size: 14px; font-weight: 400; display: none } .site-footer .newsletter-block .input-group .input-group__btn .btn:after { content: '\f003'; font-family: "FontAwesome"; font-size: 20px; line-height: 18px; text-align: center; margin: 0 auto; display: none } .site-footer .newsletter-block .errors { padding: 0 5px; margin-bottom: 0 } .site-footer .follow-us { display: block; margin-top: 40px; text-align: center; margin-bottom: -50px; z-index: 2 } @media (max-width: 991px) { .site-footer .follow-us { margin-bottom: 0; margin-top: 10px } } .site-footer .follow-us .social-media-blocks .social_text { display: block } .site-footer .follow-us .social-media-blocks .header-social ul { position: relative } .site-footer .follow-us .social-media-blocks .header-social ul:before, .site-footer .follow-us .social-media-blocks .header-social ul:after { content: ""; position: absolute; height: 1px; width: 34%; background: rgba(82, 93, 112, 0.2); right: auto; left: 0; top: 0; bottom: 0; margin: auto } @media (max-width: 1199px) { .site-footer .follow-us .social-media-blocks .header-social ul:before, .site-footer .follow-us .social-media-blocks .header-social ul:after { width: 30% } } @media (max-width: 991px) { .site-footer .follow-us .social-media-blocks .header-social ul:before, .site-footer .follow-us .social-media-blocks .header-social ul:after { width: 22% } } @media (max-width: 767px) { .site-footer .follow-us .social-media-blocks .header-social ul:before, .site-footer .follow-us .social-media-blocks .header-social ul:after { display: none } } .site-footer .follow-us .social-media-blocks .header-social ul:after { right: 0; left: auto } .site-footer .follow-us .social-media-blocks .header-social ul li { cursor: pointer; display: inline-block; vertical-align: middle; margin: 0 2px; text-align: center; position: relative; -webkit-transition: all 0.4s; -moz-transition: all 0.4s; -o-transition: all 0.4s; transition: all 0.4s } @media screen and (min-width: 992px) and (max-width: 1199px) { .site-footer .follow-us .social-media-blocks .header-social ul li { margin: 0 1px } } @media (max-width: 543px) { .site-footer .follow-us .social-media-blocks .header-social ul li { margin: 0 1px } } @media (max-width: 375px) { .site-footer .follow-us .social-media-blocks .header-social ul li { margin: 0 } } .site-footer .follow-us .social-media-blocks .header-social ul li .social-icons__link { display: block; text-align: center; margin: 0 auto; text-decoration: none; padding: 0 } .site-footer .follow-us .social-media-blocks .header-social ul li .social-icons__link:before { display: none } .site-footer .follow-us .social-media-blocks .header-social ul li .social-icons__link .icon__-text { display: none } .site-footer .follow-us .social-media-blocks .header-social ul li .social-icons__link i { display: inline-block; vertical-align: middle; font-family: FontAwesome; font-weight: 400; position: relative; font-size: 16px; width: 36px; line-height: 34px; height: 36px; background-color: #fff; border: 1px solid #e8eef6; box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.1); border-radius: 50%; color: #fff; position: relative; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } .site-footer .follow-us .social-media-blocks .header-social ul li.facebook .social-icons__link i { color: #3b5999 } .site-footer .follow-us .social-media-blocks .header-social ul li.twitter .social-icons__link i { color: #00aced } .site-footer .follow-us .social-media-blocks .header-social ul li.pinterest .social-icons__link i { color: #cb2027 } .site-footer .follow-us .social-media-blocks .header-social ul li.instagram .social-icons__link i { color: #cc2366 } .site-footer .follow-us .social-media-blocks .header-social ul li.tumblr .social-icons__link i { color: #f26522 } .site-footer .follow-us .social-media-blocks .header-social ul li.snapchat .social-icons__link i { color: #fffc00 } .site-footer .follow-us .social-media-blocks .header-social ul li.youtube .social-icons__link i { color: #d12121 } .site-footer .follow-us .social-media-blocks .header-social ul li.vimeo .social-icons__link i { color: #00aced } .site-footer .follow-us .social-media-blocks .header-social ul li.rss .social-icons__link i { color: #f26522 } .site-footer .follow-us .social-media-blocks .header-social ul li:hover .social-icons__link i { color: #fff; background: #1a9bdc; border-color: #1a9bdc } .site-footer .footer-container { display: block; padding: 50px 0 } @media (max-width: 991px) { .site-footer .footer-container { padding: 30px 0 0 } } .site-footer .footer-bottom { display: block; overflow: hidden; padding: 10px 0 15px } @media (max-width: 991px) { .site-footer .footer-bottom { padding: 10px 0 } } .site-footer .footer-bottom.border-top { border-top: 1px solid rgba(82, 93, 112, 0.2); padding: 10px 0 } @media (min-width: 992px) { .site-footer .footer-bottom .page-width .row { display: flex; align-items: center } } .site-footer .footer-bottom .footer-left { text-align: left } @media (max-width: 991px) { .site-footer .footer-bottom .footer-left { text-align: center } } .site-footer .footer-bottom .footer-left .site-footer__copyright--bottom { padding: 7px 0; display: block; overflow: hidden } @media (max-width: 991px) { .site-footer .footer-bottom .footer-left .site-footer__copyright--bottom { display: block } } .site-footer .footer-bottom .footer-left .site-footer__copyright--bottom p { font-size: 14px; color: #525d70; line-height: 19px } .site-footer .footer-bottom .footer-right { text-align: right } @media (max-width: 991px) { .site-footer .footer-bottom .footer-right { text-align: center } } @media (min-width: 992px) { .site-footer .footer-bottom .footer-right.text-center { margin-top: 10px } } .site-footer .footer-bottom .footer-right .payment-icons { display: block; padding: 0 0; margin-bottom: 0px } @media (max-width: 991px) { .site-footer .footer-bottom .footer-right .payment-icons { padding: 8px 0 } } .site-footer .footer-bottom .footer-right .payment-icons .logo-bar__item { display: inline-block; vertical-align: middle } .site-footer .footer-bottom .footer-right .payment-icons .logo-bar__item .logo-bar__link { width: 44px; height: 33px; padding: 0; margin: 0 2px; box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.1) } .site-footer .footer-bottom .footer-right .payment-icons .logo-bar__item .logo-bar__link svg { background: #fff; border-radius: 2px } .site-footer .footer-bottom .footer-right .payment-icons .logo-bar__item .logo-bar__link:hover { color: transparent } .site-footer .footer-bottom .footer-right .payment-icons .logo-bar__item img { cursor: pointer; transition: all 0.25s; max-width: 100% } @media (max-width: 767px) { .site-footer .footer-bottom .footer-right .payment-icons .logo-bar__item img { width: 41px } } #shopify-section-Ishi_sidebar .sidebar-collection .products-display { padding: 10px } #shopify-section-Ishi_sidebar .sidebar-collection .add-to-cart, #shopify-section-Ishi_sidebar .sidebar-collection .sca-qv-button, #shopify-section-Ishi_sidebar .sidebar-collection .flags { display: none !important } #shopify-section-Ishi_sidebar .left-column { display: block; border: 1px solid #e9e9e9; margin-bottom: 30px; background: #fff } @media (max-width: 991px) { #shopify-section-Ishi_sidebar .left-column { display: block; margin-bottom: 20px } } #shopify-section-Ishi_sidebar .left-column.banner { display: block } #shopify-section-Ishi_sidebar .left-column hr { margin: 0 } #shopify-section-Ishi_sidebar .left-column .grid--uniform .grid__item { padding: 0 } #shopify-section-Ishi_sidebar .left-column .products-display { clear: both } #shopify-section-Ishi_sidebar .left-column .products-display .grid__item .grid-view-item { position: relative; overflow: hidden; border: 0; background: transparent } #shopify-section-Ishi_sidebar .left-column .products-display .grid__item .grid-view-item:hover { box-shadow: none } #shopify-section-Ishi_sidebar .left-column .products-display .grid__item .grid-view-item .grid-view-item__image-container { border: none; border-radius: 0 } #shopify-section-Ishi_sidebar .left-column .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper { float: left; margin-right: 10px; padding-bottom: 0; border: 1px solid #e8eef6 } #shopify-section-Ishi_sidebar .left-column .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .discount-percentage { display: none } #shopify-section-Ishi_sidebar .left-column .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description { overflow: hidden; padding: 0; margin: 0; border: 0; text-align: left; background: transparent } #shopify-section-Ishi_sidebar .left-column .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description:before { display: none } #shopify-section-Ishi_sidebar .left-column .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .product-detail { overflow: hidden; display: block; margin-bottom: 7px } #shopify-section-Ishi_sidebar .left-column .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .product-detail .grid-view-item__title { margin-bottom: 0px; line-height: 18px; font-size: 15px; text-transform: capitalize; margin: 0 } @media screen and (min-width: 992px) and (max-width: 1199px) { #shopify-section-Ishi_sidebar .left-column .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .product-detail .grid-view-item__title { font-size: 13px } } #shopify-section-Ishi_sidebar .left-column .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta { margin-bottom: 7px } #shopify-section-Ishi_sidebar .left-column .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .product-price__sold-out { display: none } #shopify-section-Ishi_sidebar .left-column .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .is-bold { font-size: 16px } #shopify-section-Ishi_sidebar .left-column .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .regular { font-size: 14px } @media screen and (min-width: 992px) and (max-width: 1199px) { #shopify-section-Ishi_sidebar .left-column .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .spr-badge { display: none } } @media (min-width: 992px) { #shopify-section-Ishi_sidebar .left-column .left-inner.collapse { display: inherit } } #shopify-section-Ishi_sidebar .left-column .sidebar-title { font-size: 16px; padding: 15px; text-align: left; margin-bottom: 8px; display: block; background: #f5f5f5; color: #000; font-family: Work Sans; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; line-height: 18px } @media screen and (min-width: 992px) and (max-width: 1199px) { #shopify-section-Ishi_sidebar .left-column .sidebar-title { font-size: 13px } } #shopify-section-Ishi_sidebar .left-column .sidebar-title:after, #shopify-section-Ishi_sidebar .left-column .sidebar-title:before { display: none } #shopify-section-Ishi_sidebar .left-column .sidebar-title a { color: #000 } #shopify-section-Ishi_sidebar .left-column .sidebar-title a:hover { color: #000 } #shopify-section-Ishi_sidebar .left-column .grid-view-item__link { margin-bottom: 0 } @media (max-width: 767px) { #shopify-section-Ishi_sidebar .left-column .grid-view-item__link { max-width: 100% } } #shopify-section-Ishi_sidebar .left-column .grid__item--Ishi_sidebar { margin-bottom: 15px } #shopify-section-Ishi_sidebar .left-column .grid__item--Ishi_sidebar:last-child { margin-bottom: 0 } #shopify-section-Ishi_sidebar .left-column .view-all .view-all-btn { background: transparent; color: #7a7a7a; text-transform: capitalize; position: relative; float: right; padding: 10px 31px 15px 0; border: none; letter-spacing: 0em; margin: 0 } #shopify-section-Ishi_sidebar .left-column .view-all .view-all-btn i { top: 8px; position: absolute; right: 5px } #shopify-section-Ishi_sidebar .left-column .block-heading { float: none; vertical-align: middle; color: #000; border: none; font-size: 16px; line-height: 23px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; font-family: Work Sans } #shopify-section-Ishi_sidebar .left-column .block-heading a { color: #000; font-weight: 500 } #shopify-section-Ishi_sidebar .left-column .left-title { padding: 12px 15px; background: #f5f5f5; cursor: pointer; color: #000; line-height: 0 } #shopify-section-Ishi_sidebar .left-column .collapsed .navbar-toggler i.add { display: block } #shopify-section-Ishi_sidebar .left-column .collapsed .navbar-toggler i.remove { display: none } #shopify-section-Ishi_sidebar .left-column .navbar-toggler i.add { display: none } #shopify-section-Ishi_sidebar .left-column .navbar-toggler i.remove { display: block } #shopify-section-Ishi_sidebar .sidebar-categories .categories { padding: 10px 15px; background: transparent } @media (min-width: 992px) { #shopify-section-Ishi_sidebar .sidebar-categories .categories { display: inherit } } #shopify-section-Ishi_sidebar .sidebar-categories .categories .categories-items { padding: 7px 0; background: transparent } #shopify-section-Ishi_sidebar .sidebar-categories .categories .dropdown-submenu { margin-top: 8px } #shopify-section-Ishi_sidebar .sidebar-categories .categories .link-title { width: 100%; font-weight: 400; color: #232323; position: relative; font-size: 14px; -webkit-transition: all 0.3s; -moz-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; margin: 0; letter-spacing: 0.5px; font-family: Work Sans; text-transform: capitalize } #shopify-section-Ishi_sidebar .sidebar-categories .categories .link-title .collapse-icon i { float: right; border: medium none; font-size: 15px; height: 18px; padding: 2px; width: 18px; color: #000 } #shopify-section-Ishi_sidebar .sidebar-categories .categories .link-title .collapsed .add { display: block } #shopify-section-Ishi_sidebar .sidebar-categories .categories .link-title .collapsed .remove { display: none } #shopify-section-Ishi_sidebar .sidebar-categories .categories .link-title .add { display: none } #shopify-section-Ishi_sidebar .sidebar-categories .categories .link-title .remove { display: block } #shopify-section-Ishi_sidebar .sidebar-categories .categories .category_submenu { padding: 3px; padding-left: 15px } #shopify-section-Ishi_sidebar .sidebar-categories .categories .dropdown-item { color: #232323; letter-spacing: 0.5px; font-weight: 400; font-size: 14px; text-decoration: none } #shopify-section-Ishi_sidebar .collection-left .view-all { display: block; overflow: hidden } #shopify-section-Ishi_sidebar .collection-left .grid__item { width: 100% !important } #shopify-section-Ishi_sidebar .banner { border: none } @media (max-width: 991px) { #shopify-section-Ishi_sidebar .banner { text-align: center } } #shopify-section-Ishi_sidebar .banner .feature-row__image-wrapper { margin: 0 auto; overflow: hidden } #shopify-section-Ishi_sidebar .banner .feature-row__image-wrapper a { display: block; position: relative; overflow: hidden; transition: all 0.5s; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -ms-transition: all 0.5s; -o-transition: all 0.5s } @media (max-width: 991px) { #shopify-section-Ishi_sidebar .banner .feature-row__image-wrapper a { display: inline-block } } #shopify-section-Ishi_sidebar .banner .feature-row__image-wrapper a .img-block { display: inline-block; overflow: hidden } #shopify-section-Ishi_sidebar .banner .feature-row__image-wrapper a .feature-row__image { transition: all 0.5s; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -ms-transition: all 0.5s; -o-transition: all 0.5s; width: 100% } #shopify-section-Ishi_sidebar .banner .feature-row__item { text-align: unset } #shopify-section-Ishi_sidebar .tag-filter { width: 100% } #shopify-section-Ishi_sidebar .tag-filter #SortTags a { display: inline-block; font-size: 14px; color: #232323; letter-spacing: 0.5px; vertical-align: top; margin-bottom: 5px } #shopify-section-Ishi_sidebar .tag-filter #SortTags a.selected { font-weight: 600; color: #000 } #shopify-section-Ishi_sidebar .tag-filter #SortTags a.selected .filter-box { position: relative } #shopify-section-Ishi_sidebar .tag-filter #SortTags a.selected .filter-box:after { content: "\f00c"; font-family: fontawesome; font-size: 12px; color: #333; font-weight: 400; top: -3px; left: 1px; position: absolute } #shopify-section-Ishi_sidebar .tag-filter #SortTags a span { margin-right: 5px; margin-top: 0; display: inline-block; vertical-align: middle } #shopify-section-Ishi_sidebar .tag-filter #filter-container { padding: 10px 15px } #shopify-section-Ishi_sidebar .tag-filter #filter-container .clear-all { background: #333; border-color: #333; color: #fff; display: block; position: relative; font-size: 14px; padding: 10px 10px 10px 30px } #shopify-section-Ishi_sidebar .tag-filter #filter-container .clear-all:after { content: '\E5CD'; position: absolute; left: 24%; font-family: 'Material Icons' } @media (max-width: 1199px) { #shopify-section-Ishi_sidebar .tag-filter #filter-container .clear-all:after { left: 10% } } @media (max-width: 991px) { #shopify-section-Ishi_sidebar .tag-filter #filter-container .clear-all:after { left: 39% } } @media (max-width: 767px) { #shopify-section-Ishi_sidebar .tag-filter #filter-container .clear-all:after { left: 36% } } @media (max-width: 543px) { #shopify-section-Ishi_sidebar .tag-filter #filter-container .clear-all:after { left: 23% } } #shopify-section-Ishi_sidebar .tag-filter #filter-container .color li { float: left; margin: 5px 8px 0 0 } #shopify-section-Ishi_sidebar .tag-filter #filter-container .color li .custom-checkbox { display: block } #shopify-section-Ishi_sidebar .tag-filter #filter-container .color li .custom-checkbox a.selected .filter-color { outline: 1px solid #fff !important; outline-offset: -3px; opacity: 1 } #shopify-section-Ishi_sidebar .tag-filter #filter-container .color li .custom-checkbox .filter-color { width: 32px; height: 32px; box-shadow: 5px 5px 5px #e0e0e0; opacity: 0.7; line-height: 41px; text-align: center; display: inline-block; cursor: pointer; margin: 0 } #shopify-section-Ishi_sidebar .tag-filter #filter-container .size li { float: left; margin: 5px 8px 0 0 } #shopify-section-Ishi_sidebar .tag-filter #filter-container .size li .custom-checkbox { display: block } #shopify-section-Ishi_sidebar .tag-filter #filter-container .size li .custom-checkbox a:hover .filter-size, #shopify-section-Ishi_sidebar .tag-filter #filter-container .size li .custom-checkbox a.selected .filter-size { background-color: #1a9bdc; color: #fff; border-color: transparent } #shopify-section-Ishi_sidebar .tag-filter #filter-container .size li .custom-checkbox .filter-size { width: 40px; height: 40px; margin: 0; line-height: 36px; border: 1px solid #ddd; text-align: center; color: #888; transition: 0.2s ease; cursor: pointer } #shopify-section-Ishi_sidebar .tag-filter #filter-container strong { color: #454545; font-weight: 600; text-transform: uppercase; font-size: 14px; line-height: 28px; letter-spacing: 0.5px } #shopify-section-Ishi_sidebar .tag-filter #filter-container ul { padding: 10px 0; display: block; width: 100%; overflow: hidden } #shopify-section-Ishi_sidebar .tag-filter #filter-container ul:first-child { padding-top: 0 } #shopify-section-Ishi_sidebar .tag-filter #filter-container ul li .custom-checkbox .filter-box { margin-right: 3px; display: inline-block; width: 15px; height: 15px; vertical-align: sub; cursor: pointer; border: 1px solid #ddd; background: #fafafa none repeat scroll 0 0 } .collection__main { padding-top: 0px } .size-chart-modal .modal-dialog { max-width: 1100px; top: 10%; width: 100% } @media (max-width: 767px) { .size-chart-modal .modal-dialog { width: unset } } .size-chart-modal .modal-header { padding-bottom: 0; padding-bottom: 0 } .size-chart-modal .modal-header button { color: #333; font-size: 28px; font-weight: 500; opacity: 1 } .size-chart-modal .modal-body { display: block; overflow: hidden; width: 100%; color: #000; font-size: 14px; padding: 35px 30px; padding-top: 20px } @media (min-width: 992px) { .size-chart-modal .modal-body { display: flex; align-items: center } } @media (max-width: 543px) { .size-chart-modal .modal-body { display: inline-block; max-width: 100%; overflow: hidden; margin: 0; padding-left: 10px; padding-right: 10px } } .size-chart-modal .modal-body .modal-img { text-align: center; margin-bottom: 30px } @media (min-width: 992px) { .size-chart-modal .modal-body .modal-text { max-height: 600px; overflow: auto } } @media (max-width: 543px) { .size-chart-modal .modal-body .modal-text { overflow: hidden } } .size-chart-modal .modal-body .modal-text .custom_size_chart_des h4 { font-size: 16px; font-weight: 600; line-height: 26px } .size-chart-modal .modal-body .modal-text .custom_size_chart_des .custom-text-right-table table { border: 1px solid #e9e9e9 } .size-chart-modal .modal-body .modal-text .custom_size_chart_des .custom-text-right-table table thead>tr:first-child { background-color: #f1f1f1; color: #000; font-size: 14px; font-weight: 500; border: none } .size-chart-modal .modal-body .modal-text .custom_size_chart_des .custom-text-right-table table thead tr th { text-align: center; border: none; font-weight: 600 } .size-chart-modal .modal-body .modal-text .custom_size_chart_des .custom-text-right-table table tbody td { text-align: center } @media (max-width: 543px) { .size-chart-modal .modal-body .modal-text .custom_size_chart_des .custom-text-right-table { max-width: 100%; overflow: auto; display: block; margin-bottom: 12px } } .size-chart-modal .modal-body .modal-text .custom_size_chart_des .custom-text-right p { color: #666; font-weight: 400; line-height: 26px; letter-spacing: 0.1px } .size-chart-modal .modal-body .modal-text .custom_size_chart_des .custom-text-right p strong { font-weight: 500; margin-right: 3px; color: #000; font-size: 14px; letter-spacing: 0.4px } .size-chart-modal .modal-header { border: none } .size-chart-modal .modal-footer { padding: 0 } .product-single { color: #777777; font-weight: 400 } .product-single .product-single-left .product-single__title { color: #000; font-weight: 500; text-transform: capitalize; padding-bottom: 0px; font-size: 26px; border-bottom: 0; margin-bottom: 20px; padding-top: 0px; line-height: 26px; letter-spacing: 0.1px; text-align: left; font-family: Work Sans } @media (max-width: 543px) { .product-single .product-single-left .product-single__title { font-size: 22px; line-height: 28px } } .product-single .product-single-left .price-product { text-align: left } .product-single .product-single-left .price-product .product-single__price-product-template { margin-bottom: 20px } .product-single .product-single-left .price-product .product-price__price { color: #000; font-weight: 500; margin: 0 2px; font-size: 20px; text-align: left; vertical-align: middle } .product-single .product-single-left .price-product .regular-price { font-weight: 400; line-height: 20px; color: #666; margin: 0 5px; font-size: 18px } .product-single .product-single-left .single-left { position: relative } .product-single .product-single-left .single-left .product-single__photo { margin: 0 auto; min-height: 1px; width: 100%; height: 100%; position: relative; border: 1px solid #eeeeee } .product-single .product-single-left .zoomImg { cursor: crosshair } .product-single .product-single-right .dynamic-checkout { padding: 0 5px; margin-top: 8px; margin-bottom: 26px } .product-single .product-single-right .dynamic-checkout .shopify-payment-button__button { font-size: 14px; font-weight: 400; padding: 17px 40px; border-radius: 0px; opacity: 1; background-color: #000; border-color: #000; color: #fff; text-transform: uppercase; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } .product-single .product-single-right .dynamic-checkout .shopify-payment-button__button:hover { background-color: #1a9bdc; border-color: #1a9bdc; color: #fff } .product-single .product-single-right .dynamic-checkout .shopify-payment-button__button--hidden { display: none } .product-single .product-single-right .product-single__meta .product-single__title { color: #000000; font-weight: 500; text-transform: capitalize; padding-bottom: 0px; font-size: 30px; border-bottom: 0; margin-bottom: 12px; padding-top: 10px; font-family: Work Sans; line-height: 1.1; letter-spacing: 0.1px } @media (max-width: 1199px) { .product-single .product-single-right .product-single__meta .product-single__title { font-size: 26px } } .product-single .product-single-right .product-single__meta .review { margin-bottom: 16px } @media (max-width: 767px) { .product-single .product-single-right .product-single__meta .review { margin-bottom: 12px } } .product-single .product-single-right .product-single__meta .review .no-review { color: #666; font-weight: 400; margin-left: 6px; vertical-align: middle } .product-single .product-single-right .product-single__meta .review .spr-badge { display: inline-block; vertical-align: middle } .product-single .product-single-right .product-single__meta .review .spr-badge i { position: relative; opacity: 1; height: 14px; width: 16px; display: inline-block; top: 0; vertical-align: top; font-style: normal } .product-single .product-single-right .product-single__meta .review .spr-badge i.spr-icon:after { content: "\F005"; font-family: "FontAwesome"; color: #ccc; font-size: 14px; -webkit-transition: all 0.7s; -moz-transition: all 0.7s; -ms-transition: all 0.7s; -o-transition: all 0.7s; transition: all 0.7s } .product-single .product-single-right .product-single__meta .review .spr-badge i.spr-icon-star-empty:before { display: none !important } .product-single .product-single-right .product-single__meta .review .spr-badge i.spr-icon-star:before, .product-single .product-single-right .product-single__meta .review .spr-badge i.spr-icon-star-half-alt:before { display: none } .product-single .product-single-right .product-single__meta .review .spr-badge i.spr-icon-star:after, .product-single .product-single-right .product-single__meta .review .spr-badge i.spr-icon-star-half-alt:after { content: "\F005"; font-family: "FontAwesome"; color: #fec42d; font-size: 14px; -webkit-transition: all 0.7s; -moz-transition: all 0.7s; -ms-transition: all 0.7s; -o-transition: all 0.7s; transition: all 0.7s } @media (max-width: 767px) { .product-single .product-single-right .product-single__meta .review .spr-badge i.spr-icon-star:after, .product-single .product-single-right .product-single__meta .review .spr-badge i.spr-icon-star-half-alt:after { content: '\F005'; color: #fec42d } } .product-single .product-single-right .product-single__meta .review .write_comment { text-decoration: none; color: #777; margin: 0; font-weight: 500; position: relative; margin-left: 7px; vertical-align: middle } .product-single .product-single-right .product-single__meta .review .write_comment i { font-size: 14px; padding-left: 5px; position: relative; top: 2px; display: none } .product-single .product-single-right .product-single__meta .review .write_comment:after { content: ''; background: url(//cdn.shopify.com/s/files/1/0267/2073/1222/t/4/assets/write-review.png?9682) no-repeat center; height: 10px; width: 10px; position: absolute; right: 0; top: 4px; margin-right: -15px } .product-single .product-single-right .product-single__meta .price-product { margin-bottom: 17px } .product-single .product-single-right .product-single__meta .product-single__price { color: #000000; font-weight: 500; font-size: 24px; margin-bottom: 0px; padding-left: 0; line-height: 23px; display: inline-block; vertical-align: middle } .product-single .product-single-right .product-single__meta .product-single__price.visibility-hidden { display: none } .product-single .product-single-right .product-single__meta .product-single__price .discount-percentage { color: #1a9bdc; font-size: 15px; background: #f3f3f3; padding: 5px 13px; font-weight: 500; line-height: 14px; margin: 0 } .product-single .product-single-right .product-single__meta .product-single__price #ComparePrice-product-template { color: #888; font-size: 18px; vertical-align: bottom } .product-single .product-single-right .product-single__meta .product-single__price #ProductPrice-product-template { color: #000; font-weight: 500; margin: 0px } .product-single .product-single-right .product-single__meta .product-single__price #ProductPrice-product-template.regular-price { font-size: 21px; color: #000 } .product-single .product-single-right .product-single__meta .product-single__price .product-price__sale { color: #000; margin: 0; line-height: 23px } .product-single .product-single-right .product-single__meta .product-single__price .product-price__sale #ComparePrice-product-template { color: #666666; margin: 0 5px } .product-single .product-single-right .product-single__meta .product-single__price .product-price__sale #ProductPrice-product-template { margin: 0; font-weight: 500 } .product-single .product-single-right .product-single__meta .wishlist-chart { margin-bottom: 22px; margin-top: 15px } .product-single .product-single-right .product-single__meta .add-to-wishlist { display: inline-block; vertical-align: middle; line-height: 20px; margin-left: 0px } .product-single .product-single-right .product-single__meta .add-to-wishlist i { font-size: 14px; margin-right: 8px; color: #777 } .product-single .product-single-right .product-single__meta .add-to-wishlist i:before { content: "\f004" } .product-single .product-single-right .product-single__meta .add-to-wishlist .btn { padding: 0px; background-color: transparent; border-color: transparent; box-shadow: none; color: #000 } .product-single .product-single-right .product-single__meta .add-to-wishlist .btn:hover { background-color: transparent; border-color: transparent; color: #666 } .product-single .product-single-right .product-single__meta .add-to-wishlist .btn:active { box-shadow: none } .product-single .product-single-right .product-single__meta .add-to-wishlist span { font-size: 14px; text-transform: capitalize } .product-single .product-single-right .product-single__meta .add-to-wishlist .loader-btn a span { display: inline-block; opacity: 1; color: #000 } .product-single .product-single-right .product-single__meta .add-to-wishlist .loader-btn i { color: #000 } .product-single .product-single-right .product-single__meta .add-to-wishlist .loader-btn i:before { content: "\f1ce" } .product-single .product-single-right .product-single__meta .size-chart { padding: 0; width: auto; border: none; margin-left: 20px; text-transform: capitalize; font-size: 15px; background: none; box-shadow: none; color: #000 } .product-single .product-single-right .product-single__meta .size-chart svg { width: 27px; height: auto; margin-top: -2px; vertical-align: middle; margin-right: 9px } .product-single .product-single-right .product-single__meta .size-chart svg path { fill: #777; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } .product-single .product-single-right .product-single__meta .size-chart:hover, .product-single .product-single-right .product-single__meta .size-chart:focus { background-color: transparent; color: #666 } .product-single .product-single-right .product-single__meta .size-chart:hover svg path, .product-single .product-single-right .product-single__meta .size-chart:focus svg path { fill: #777 } .product-single .product-single-right .product-single__meta .product-single__vendor, .product-single .product-single-right .product-single__meta .available-stock, .product-single .product-single-right .product-single__meta .variant-sku, .product-single .product-single-right .product-single__meta #sold-out { color: #666666; font-size: 14px; text-transform: capitalize; letter-spacing: 0.2px; margin: 0px 0 8px; font-weight: 500 } .product-single .product-single-right .product-single__meta .product-single__vendor span, .product-single .product-single-right .product-single__meta .available-stock span, .product-single .product-single-right .product-single__meta .variant-sku span, .product-single .product-single-right .product-single__meta #sold-out span { font-weight: 400; margin-left: 10px } .product-single .product-single-right .product-single__meta .product-single__vendor { margin-bottom: 5px } .product-single .product-single-right .product-single__meta .product-single__vendor.available { margin-bottom: 17px } .product-single .product-single-right .product-single__meta #sold-out { text-transform: unset; display: block; width: 100%; padding: 20px 0; border-top: 1px solid #dddddd; border-bottom: 1px solid #dddddd; margin-bottom: 22px } .product-single .product-single-right .product-single__meta #sold-out .notify-msg { text-align: left; width: 91%; margin: 0; line-height: 22px; font-weight: 400; font-size: 14px; color: #666 } .product-single .product-single-right .product-single__meta #sold-out .notify-msg.first { margin-bottom: 20px } .product-single .product-single-right .product-single__meta #sold-out .notify-msg .sold-msg { color: #666; font-weight: 600 } .product-single .product-single-right .product-single__meta #sold-out .notify-price { display: block; overflow: hidden; margin-bottom: 15px; text-align: left } .product-single .product-single-right .product-single__meta #sold-out .notify-price #notify-me-wrapper { float: none } .product-single .product-single-right .product-single__meta #sold-out .notify-price #notify-me-wrapper .styled-input { max-width: 250px; border: 1px solid #dddddd; background: #fff; color: #000000; text-align: left; box-shadow: none; font-size: 14px; font-weight: 400; height: 40px; display: inline-block; vertical-align: middle } @media (max-width: 1199px) { .product-single .product-single-right .product-single__meta #sold-out .notify-price #notify-me-wrapper .styled-input { max-width: 200px } } .product-single .product-single-right .product-single__meta #sold-out .notify-price #notify-me-wrapper .styled-input:focus { border-color: #dddddd; background: #fff; box-shadow: none } .product-single .product-single-right .product-single__meta #sold-out .notify-price #notify-me-wrapper .styled-submit { padding: 9px 35px; display: inline-block; vertical-align: middle; font-family: Work Sans; color: #fff; background: #1a9bdc; margin-top: 0px; border: 1px solid #1a9bdc; height: 40px; display: inline-block; vertical-align: middle } @media (max-width: 991px) { .product-single .product-single-right .product-single__meta #sold-out .notify-price #notify-me-wrapper .styled-submit { padding: 9px 24px } } @media (max-width: 350px) { .product-single .product-single-right .product-single__meta #sold-out .notify-price #notify-me-wrapper .styled-submit { padding: 9px 15px } } .product-single .product-single-right .product-single__meta #sold-out .notify-price #notify-me-wrapper .styled-submit:hover { border-color: #000; background: #000; color: #fff } .product-single .product-single-right .product-single__meta #sold-out .notify-price .product-regular, .product-single .product-single-right .product-single__meta #sold-out .notify-price .product-discount { float: right; line-height: 40px } @media (max-width: 1199px) { .product-single .product-single-right .product-single__meta #sold-out .notify-price .product-regular, .product-single .product-single-right .product-single__meta #sold-out .notify-price .product-discount { float: none; text-align: center; line-height: unset } } .product-single .product-single-right .product-single__meta #sold-out .notify-price .product-regular #ProductPrice-product-template, .product-single .product-single-right .product-single__meta #sold-out .notify-price .product-regular #ComparePrice-product-template, .product-single .product-single-right .product-single__meta #sold-out .notify-price .product-regular #Save, .product-single .product-single-right .product-single__meta #sold-out .notify-price .product-discount #ProductPrice-product-template, .product-single .product-single-right .product-single__meta #sold-out .notify-price .product-discount #ComparePrice-product-template, .product-single .product-single-right .product-single__meta #sold-out .notify-price .product-discount #Save { color: #000000; font-weight: 400; font-size: 21px; margin: 0 } .product-single .product-single-right .product-single__meta #sold-out .notify-price .product-regular #ComparePrice-product-template, .product-single .product-single-right .product-single__meta #sold-out .notify-price .product-discount #ComparePrice-product-template { color: #666666; margin-right: 5px } .product-single .product-single-right .product-single__meta #sold-out .notify-price .product-regular #Save, .product-single .product-single-right .product-single__meta #sold-out .notify-price .product-discount #Save { color: #1a9bdc; margin: 0 5px } .product-single .product-single-right .product-single__meta #sold-out .notify-price .product-regular #ProductPrice-product-template { font-size: 24px } .product-single .product-single-right .product-single__meta .available-stock { display: none; position: relative; margin: 10px 0 10px; padding-left: 5px } .product-single .product-single-right .product-single__meta .instock, .product-single .product-single-right .product-single__meta .outstock { display: inline-block; font-weight: 600; vertical-align: middle; color: #232323 } .product-single .product-single-right .product-single__meta .instock i, .product-single .product-single-right .product-single__meta .outstock i { line-height: 22px; display: inline-block; vertical-align: middle } .product-single .product-single-right .product-single__meta .instock { display: none !important } .product-single .product-single-right .product-single__meta .product-available { color: #4cbb6c } .product-single .product-single-right .product-single__meta .product-unavailable { color: #ff9a52 } .product-single .product-single-right .product-single__meta .product-single__description { color: #333; margin-bottom: 15px; color: #323; font-weight: 300; font-size: 14px; letter-spacing: .8px; line-height: 20px } .product-single .product-single-right .product-single__meta .product-form { margin-bottom: 0px } .product-single .product-single-right .product-single__meta .product-form .selector-wrapper { display: none; width: 38.35%; float: left; position: relative } @media (max-width: 1199px) { .product-single .product-single-right .product-single__meta .product-form .selector-wrapper { width: 40% } } @media (max-width: 991px) { .product-single .product-single-right .product-single__meta .product-form .selector-wrapper { width: 50% } } @media (max-width: 375px) { .product-single .product-single-right .product-single__meta .product-form .selector-wrapper { width: 64% } } .product-single .product-single-right .product-single__meta .product-form .selector-wrapper select { height: 45px; width: 100%; background-image: url(//cdn.shopify.com/s/files/1/0267/2073/1222/t/4/assets/dropdown-sprite.png?v=2351638615376241667); background-repeat: no-repeat; background-position: right 18px center; background-color: #fff; text-indent: 0.01px; text-overflow: ''; cursor: pointer; outline: none; color: #888; border: 1px solid #e9e9e9 } .product-single .product-single-right .product-single__meta .product-form .selector-wrapper select .veriant-option { outline: none } .product-single .product-single-right .product-single__meta .product-form .selector-wrapper label { font-size: 16px } .product-single .product-single-right .product-single__meta .product-form label { font-weight: 600 } .product-single .product-single-right .product-single__meta .quantity-cart { display: block; width: 100%; display: inline-flex; align-items: flex-end; margin-bottom: 26px } .product-single .product-single-right .product-single__meta .quantity-cart .product-form__item { margin-bottom: 0px !important } .product-single .product-single-right .product-single__meta .product-selection .product-info { display: inline-block; width: 60%; padding: 0; margin-top: 5px } @media (max-width: 1599px) { .product-single .product-single-right .product-single__meta .product-selection .product-info { width: 50% } } @media (max-width: 1199px) { .product-single .product-single-right .product-single__meta .product-selection .product-info { width: 55% } } @media (max-width: 543px) { .product-single .product-single-right .product-single__meta .product-selection .product-info { width: 53% } } .product-single .product-single-right .product-single__meta .product-selection .product-info.product-soldout { display: none } @media (max-width: 1199px) { .product-single .product-single-right .product-single__meta .product-selection .product-info.product-sale .product-single__price { float: none; line-height: unset; margin-bottom: 20px } } .product-single .product-single-right .product-single__meta .product-selection .product-form__item { margin-bottom: 26px } .product-single .product-single-right .product-single__meta .product-selection .product-form__item label { display: block; font-size: 14px; line-height: 14px; margin-bottom: 10px } .product-single .product-single-right .product-single__meta .product-selection .product-form__item.product-form__item--quantity { display: inline-block; width: auto !important; clear: both } .product-single .product-single-right .product-single__meta .product-selection .item_info { display: block } .product-single .product-single-right .product-single__meta .product-selection .product-form__item--submit, .product-single .product-single-right .product-single__meta .product-selection .available-stock { float: left; width: auto; margin-right: 0px } .product-single .product-single-right .product-single__meta .product-selection .product-form__item--submit { margin-bottom: 0px; width: 100% } .product-single .product-single-right .product-single__meta .product-selection .product-form__item--submit .addToCart { display: inline-block; vertical-align: middle; margin-bottom: 0px } .product-single .product-single-right .product-single__meta .product-selection .product-form__item--submit .addToCart { width: 100% } .product-single .product-single-right .product-single__meta .product-selection .product-form__item--submit .addToCart .btn { margin-right: 10px } .product-single .product-single-right .product-single__meta .product-selection .product-form__item--submit .btn { padding: 9px 16px; height: 50px; font-size: 14px; letter-spacing: 0.5px } .product-single .product-single-right .product-single__meta .trusted-img { margin-bottom: 15px } .product-single .product-single-right .product-single__meta .share_this_btn { margin-bottom: 20px } .product-single .product-single-right .product-single__meta .share_this_btn a { transition: all .3s ease-in-out; transform: translateY(0px) } .product-single .product-single-right .product-single__meta .share_this_btn a>span { height: 25px !important; width: 25px !important } .product-single .product-single-right .product-single__meta .share_this_btn a .at-icon { height: 25px !important; width: 25px !important } .product-single .product-single-right .product-single__meta .share_this_btn a:hover { transform: translateY(-3px) } .product-single .product-single-right .product-single__meta .share_this_btn a.addthis_button_compact:hover { transform: translateY(0px) } .product-single .product-single-right .product-single__meta .share_this_btn .at-icon-wrapper { background-color: transparent !important } .product-single .product-single-right .product-single__meta .share_this_btn .at-icon-wrapper svg { fill: #777 } .product-single .product-single-right .product-single__meta .share_this_btn .addthis_toolbox a { margin-right: 3px; margin-bottom: 0 } .product-single .product-single-right .product-single__meta .block-reassurence-tab { margin-bottom: 20px } .product-single .product-single-right .product-single__meta .block-reassurence-tab li { margin-bottom: 7px } .product-single .product-single-right .product-single__meta .block-reassurence-tab li:last-child { margin-bottom: 0px } .product-single .product-single-right .product-single__meta .block-reassurence-tab li .block-reassurance-item { padding: 20px 30px; border: none; background: #f8f8f8; margin-bottom: 10px; border-radius: 30px } .product-single .product-single-right .product-single__meta .block-reassurence-tab li .block-reassurance-item img { opacity: .9; margin-right: 5px } .product-single .product-single-right .product-single__meta .block-reassurence-tab li .block-reassurance-item .title { text-transform: capitalize; font-size: 15px; color: #000; font-weight: 500; position: relative; padding-right: 10px; margin-right: 5px; font-family: Work Sans } .product-single .product-single-right .product-single__meta .block-reassurence-tab li .block-reassurance-item .title:after { content: ''; height: 1px; width: 7px; background: rgba(0, 0, 0, 0.3); position: absolute; right: -4px; top: 14px } .product-single .product-single-right .product-single__meta .block-reassurence-tab li .block-reassurance-item .sub-title { color: #888; font-weight: 400; font-size: 14px; font-family: Work Sans; font-style: italic } .styled-input { min-width: 200px; padding: 10px 15px } .ishi-product-swatch, .ishi-quickview-swatch { display: block; clear: both; width: 100%; padding-left: 5px } .ishi-product-swatch .ishi-custom-swatch, .ishi-quickview-swatch .ishi-custom-swatch { display: block; clear: both; overflow: hidden; margin-bottom: 15px } .ishi-product-swatch label, .ishi-quickview-swatch label { font-size: 14px; text-transform: capitalize; margin: 0px; font-weight: 600; margin-bottom: 8px } .ishi-product-swatch .option-swatch .custom-swatch, .ishi-quickview-swatch .option-swatch .custom-swatch { margin: 0; border: 1px solid #dddddd; text-align: center; color: #777777; transition: 0.2s ease; cursor: pointer; display: inline-block; vertical-align: middle; margin-right: 6px; margin-bottom: 6px; padding: 8px 16px } .ishi-product-swatch .option-swatch .custom-swatch.color-swatch, .ishi-quickview-swatch .option-swatch .custom-swatch.color-swatch { width: 35px; height: 35px; box-shadow: 2px 2px 4px #e0e0e0; border: 1px solid #dddddd } .ishi-product-swatch .option-swatch .custom-swatch.color-swatch.active, .ishi-quickview-swatch .option-swatch .custom-swatch.color-swatch.active { transform: scale(0.9); border-color: #000000 } .ishi-product-swatch .option-swatch .custom-swatch.active, .ishi-quickview-swatch .option-swatch .custom-swatch.active { border-color: #000000; color: #000000 } .product-tab { margin: 50px auto; text-align: center; background-color: #fff; border: 1px solid #e9e9e9 } @media (max-width: 991px) { .product-tab { margin: 20px auto 40px } } .product-tab>div { padding: 15px; text-align: left; line-height: 26px; color: #787878; margin-bottom: 20px; letter-spacing: .1px; font-weight: 400; font-size: 14px; overflow: hidden } @media (max-width: 543px) { .product-tab>div { margin-bottom: 18px; padding: 5px; line-height: 24px } .product-tab>div .spr-summary { text-align: left } } .product-tab>div p { font-size: 14px !important } .product-tab #desc>h4, .product-tab .custom-desc>h4 { color: #000; font-weight: 600; letter-spacing: 0.2px; margin-bottom: 14px; font-size: 14px } .product-tab #desc>ul, .product-tab #desc>ol, .product-tab .custom-desc>ul, .product-tab .custom-desc>ol { margin-bottom: 18px; padding-left: 26px } .product-tab #desc>ul li, .product-tab #desc>ol li, .product-tab .custom-desc>ul li, .product-tab .custom-desc>ol li { list-style: unset; padding-left: 3px } .product-tab #desc>ul li:marker, .product-tab #desc>ol li:marker, .product-tab .custom-desc>ul li:marker, .product-tab .custom-desc>ol li:marker { line-height: 14px } @media (max-width: 543px) { .product-tab #desc>ul li, .product-tab #desc>ol li, .product-tab .custom-desc>ul li, .product-tab .custom-desc>ol li { margin-bottom: 6px } .product-tab #desc>ul li:last-child, .product-tab #desc>ol li:last-child, .product-tab .custom-desc>ul li:last-child, .product-tab .custom-desc>ol li:last-child { margin-bottom: 0 } } .product-tab #desc blockquote, .product-tab .custom-desc blockquote { text-align: left; line-height: 26px; color: #787878; margin-bottom: 0; letter-spacing: .2px; font-weight: 400; font-size: 13px; border-left: 3px solid #e5e5e5; margin-left: 15px } @media (max-width: 543px) { .product-tab #desc blockquote, .product-tab .custom-desc blockquote { padding: 0; margin-left: 8px; padding-left: 15px } } .product-tab .tabs { border-bottom: none; margin-bottom: 10px; text-align: center; line-height: 40px; position: relative; display: inline-block; margin-top: -1px } .product-tab .tab-id li { display: inline-block; vertical-align: top; margin: -2px 0 0 0; float: none; text-transform: unset; margin-left: 12px } @media (max-width: 1199px) { .product-tab .tab-id li { margin-left: 4px } } @media (max-width: 767px) { .product-tab .tab-id li { margin: 7px 0 0 5px } } @media (max-width: 543px) { .product-tab .tab-id li { display: block; margin: 0; margin-top: 7px; margin-bottom: 7px } } .product-tab .tab-id li:first-child { margin-left: 0px } .product-tab .tab-id li:last-child { margin-bottom: 0px } .product-tab .tab-id li a { color: #000; padding-left: 1px; padding-right: 1px; padding: 8px 12px; border: none; background: #f5f5f5; letter-spacing: 1px; text-decoration: none; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s; font-size: 14px; font-weight: 500; border-radius: 0; position: relative; z-index: 1 } @media (max-width: 1199px) { .product-tab .tab-id li a { padding: 8px 9px; letter-spacing: 0.2px; font-size: 13px } } .product-tab .tab-id li a:after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 0%; z-index: -1; background-color: #000; -webkit-transition: all 0.58s; -moz-transition: all 0.58s; -o-transition: all 0.58s; transition: all 0.58s; transition-delay: 0.08s; transition-timing-function: ease; -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1); transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1) } @media (max-width: 767px) { .product-tab .tab-id li a { font-size: 13px; padding: 8px 10px; letter-spacing: 0.1px } } .product-tab .tab-id li a.active, .product-tab .tab-id li a:hover { border-color: transparent; background: transparent; color: #fff } .product-tab .tab-id li a.active:after, .product-tab .tab-id li a:hover:after { height: 100%; -webkit-transition: all 0.58s; -moz-transition: all 0.58s; -o-transition: all 0.58s; transition: all 0.58s; transition-delay: 0.08s } .product-tab #shopify-product-reviews { margin: 0 } .product-tab #product-review .spr-container .spr-header .spr-header-title, .product-tab #product-review .spr-container .spr-content .spr-header-title { display: none } .product-tab #product-review .spr-container .spr-header .spr-starrating i, .product-tab #product-review .spr-container .spr-header .spr-starratings i, .product-tab #product-review .spr-container .spr-content .spr-starrating i, .product-tab #product-review .spr-container .spr-content .spr-starratings i { opacity: 1 } .product-tab #product-review .spr-container .spr-header .spr-starrating i:before, .product-tab #product-review .spr-container .spr-header .spr-starratings i:before, .product-tab #product-review .spr-container .spr-content .spr-starrating i:before, .product-tab #product-review .spr-container .spr-content .spr-starratings i:before { font-size: 14px; width: 16px; content: "\F005"; font-family: "FontAwesome" } .product-tab #product-review .spr-container .spr-header .spr-starrating .spr-icon-star-empty:before, .product-tab #product-review .spr-container .spr-header .spr-starratings .spr-icon-star-empty:before, .product-tab #product-review .spr-container .spr-content .spr-starrating .spr-icon-star-empty:before, .product-tab #product-review .spr-container .spr-content .spr-starratings .spr-icon-star-empty:before { color: #ccc; content: "\F005"; font-family: "FontAwesome" } @media (max-width: 543px) { .product-tab #product-review .spr-container .spr-header .spr-summary-actions, .product-tab #product-review .spr-container .spr-content .spr-summary-actions { width: 100%; display: inline-block; text-align: left } } .product-tab #product-review .spr-container .spr-header .spr-summary-actions a, .product-tab #product-review .spr-container .spr-content .spr-summary-actions a { -moz-user-select: none; -ms-user-select: none; -webkit-user-select: none; user-select: none; -webkit-appearance: none; -moz-appearance: none; appearance: none; display: inline-block; width: auto; text-decoration: none; text-align: center; vertical-align: middle; cursor: pointer; padding: 10px 18px; background-color: #1a9bdc; color: #fff; border: 1px solid #1a9bdc; border-radius: 0px; text-transform: uppercase; white-space: normal; font-size: 14px; line-height: 20px; letter-spacing: 0px; font-weight: 400; outline: none; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } @media (max-width: 543px) { .product-tab #product-review .spr-container .spr-header .spr-summary-actions a, .product-tab #product-review .spr-container .spr-content .spr-summary-actions a { margin-top: 20px; float: none; display: inline-block } } .product-tab #product-review .spr-container .spr-header .spr-summary-actions a:hover, .product-tab #product-review .spr-container .spr-content .spr-summary-actions a:hover { background-color: #000; color: #fff; border: 1px solid #000 } .product-tab #product-review .spr-container .spr-content .spr-form-review-rating a { opacity: 1; width: 19px } .product-tab #product-review .spr-container .spr-content .spr-form-review-rating a:before { font-size: 14px } .product-tab #product-review .spr-container .spr-content .spr-form-review-rating a.spr-icon-star-empty { color: #ccc !important } .product-tab #product-review .spr-container .spr-content .spr-form-review-rating a.spr-icon-star-hover { color: #fec42d !important } .product-tab #product-review .spr-container .spr-content .spr-form-review-rating a.spr-icon-star-hover:before { color: #fec42d !important } .product-tab #product-review .spr-container .spr-review-reportreview { font-size: 13px; line-height: 16px; color: #777; float: left; font-weight: 600; -webkit-transition: all 0.4s; -moz-transition: all 0.4s; -o-transition: all 0.4s; transition: all 0.4s } .product-tab #product-review .spr-container .spr-review-reportreview:hover { color: #000 } .product-tab #product-review .spr-container .spr-review-header-title { font-size: 15px; font-weight: 500; color: #000; margin-bottom: 7px } .product-tab #product-review .spr-container .spr-review-content { margin: 0 0 20px 0 } .product-tab #product-review .spr-container .spr-review-content .spr-review-content-body { line-height: 24px; word-wrap: break-word } .product-tab #product-review .spr-container .spr-review-header-byline { font-style: normal; font-size: 13px; opacity: 1; color: #787878; font-weight: 500; margin-bottom: 12px } .product-tab #product-review .spr-container .spr-review-header-byline strong { font-weight: 500 } .product-tab #product-review .spr-container { border: none; padding: 0 } .product-tab #product-review .spr-review, .product-tab #product-review .spr-form { border-color: #e3e3e3 } .product-tab #product-review .spr-form form fieldset input { border-radius: 0px; height: 45px } .product-tab #shipping .policy>div { line-height: 20px; margin-bottom: 15px } .product-tab #shipping .policy>div:last-child { margin-bottom: 0 } .product-tab #shipping .title { font-weight: 600; color: #000; font-family: Work Sans; letter-spacing: 1px; font-size: 19px; display: none } .product-tab #shipping .inner-content>h4 { font-size: 15px; font-weight: 600; color: #000 } .product-template__container .related { margin-bottom: 0px } .product-template__container .related .section-header { text-align: center; margin: 0 } .product-template__container .related .section-header h2 { margin-bottom: 10px } @media (max-width: 543px) { .product-template__container .related .section-header h2 { margin-bottom: 20px } } .product-template__container .related .products-display .grid__item .grid-view-item { border: 1px solid #e8eef6 } .template-product .return-link-wrapper a { margin: 0 } #shopify-section-Ishi_relatedproductsblock { margin-top: 50px } @media (max-width: 991px) { #shopify-section-Ishi_relatedproductsblock { margin-bottom: 30px } } @media (min-width: 992px) { #shopify-section-Ishi_relatedproductsblock .owl-nav { margin-top: 15px } } @media (max-width: 543px) { #shopify-section-Ishi_relatedproductsblock .owl-nav { margin-top: 25px } } #slidetop { background: #1a9bdc none repeat scroll 0 0; box-shadow: 0 0 10px 4px rgba(255, 255, 255, 0.2); color: transparent; border-radius: 0px; bottom: 15px; cursor: pointer; height: 40px; overflow: hidden; padding: 6px; position: fixed; right: 15px; text-align: center; width: 40px; z-index: 99; opacity: 1; display: none; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } #slidetop::after { content: '\E5CE'; display: inline-block; color: #fff; font-family: material icons; font-size: 26px; left: 0; position: absolute; right: 0; top: 11px; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } #slidetop:hover { background-color: #000 } #slidetop:hover:after { color: #fff } .manufacture-main { clear: left } @media (max-width: 767px) { #shopify-section-list-collections-template .grid__item { width: 50% } #shopify-section-list-collections-template .grid__item:nth-child(3n+1) { clear: right } } @media (max-width: 543px) { #shopify-section-list-collections-template .grid__item { width: 100% } } #drawer-toggle { position: absolute; opacity: 0 } #drawer-toggle-label { -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; left: 0px; height: 40px; width: 40px; display: block; background: rgba(255, 255, 255, 0); z-index: 1; text-align: center; padding: 8px 0px } #drawer-toggle-label i { color: #333 } #drawer-toggle:checked~#drawer-toggle-label { height: 100% } #drawer-toggle:checked~.navdrawer { right: 0px } @media (max-width: 991px) { #drawer-toggle:checked~.navdrawer { right: auto; left: 0 } } #drawer-toggle:checked~#page-content { margin-left: 300px } .navdrawer #drawer-toggle-label { position: relative !important; height: 30px; display: block; width: 100%; text-align: right } @media (max-width: 991px) { .navdrawer #drawer-toggle-label { text-align: left } } .navdrawer #drawer-toggle-label i { color: #fff; top: 0; left: 5px; font-size: 24px } @media (max-width: 991px) { .navdrawer #drawer-toggle-label i { color: #000 } } .template-article #shopify-section-Ishi_sidebar .tag-filter { display: none } .responsive-sidebar { padding: 0 15px; overflow: hidden } .disabled { opacity: 1 !important } .template-login { width: 100% } .template-login .grid__item { float: none } .template-cart .empty-page-content { padding: 130px 0 } .template-cart .cart__continue-btn { margin: 20px 0 } .template-search .sca-qv-button-wrap .sca-qv-button { display: none !important } #quickviewModal .modal-dialog { max-width: 1100px; top: 10%; width: 100% } @media (max-width: 767px) { #quickviewModal .modal-dialog { width: unset } } #quickviewModal .modal-header { padding-bottom: 0 } #quickviewModal .modal-header button { color: #333; font-size: 28px; opacity: 1 } #quickviewModal .modal-body { display: block; overflow: hidden; width: 100%; color: #000; font-size: 14px } #quickviewModal .modal-body #qv-images-container #qv-product-cover { text-align: center; border: 1px solid #e9e9e9 } #quickviewModal .modal-body #qv-images-container #qv-thumbnails { padding-top: 10px } #quickviewModal .modal-body #qv-images-container #qv-thumbnails .thumb-item { display: inline-block; padding: 10px; vertical-align: middle } #quickviewModal .modal-body #qv-images-container #qv-thumbnails .thumb-item img { border: 1px solid #e9e9e9 } #quickviewModal .modal-body #qv-images-container #qv-thumbnails i { margin-top: 0 !important } #quickviewModal .modal-body #qv-images-container #qv-thumbnails .owl-nav { margin-top: 0 } #quickviewModal .modal-body #qv-images-container #qv-thumbnails .owl-nav .owl-prev, #quickviewModal .modal-body #qv-images-container #qv-thumbnails .owl-nav .owl-next { top: 40%; left: -6px; position: absolute; height: 32px; width: 32px } @media (max-width: 767px) { #quickviewModal .modal-body #qv-images-container #qv-thumbnails .owl-nav .owl-prev, #quickviewModal .modal-body #qv-images-container #qv-thumbnails .owl-nav .owl-next { top: 43% } } @media (max-width: 480px) { #quickviewModal .modal-body #qv-images-container #qv-thumbnails .owl-nav .owl-prev, #quickviewModal .modal-body #qv-images-container #qv-thumbnails .owl-nav .owl-next { top: 40% } } @media (max-width: 349px) { #quickviewModal .modal-body #qv-images-container #qv-thumbnails .owl-nav .owl-prev, #quickviewModal .modal-body #qv-images-container #qv-thumbnails .owl-nav .owl-next { top: 37% } } #quickviewModal .modal-body #qv-images-container #qv-thumbnails .owl-nav .owl-prev i, #quickviewModal .modal-body #qv-images-container #qv-thumbnails .owl-nav .owl-next i { width: 32px; height: 32px } #quickviewModal .modal-body #qv-images-container #qv-thumbnails .owl-nav .owl-prev i:before, #quickviewModal .modal-body #qv-images-container #qv-thumbnails .owl-nav .owl-next i:before { width: 32px; height: 32px; line-height: 32px; font-size: 20px } #quickviewModal .modal-body #qv-images-container #qv-thumbnails .owl-nav .owl-next { right: -6px; left: auto } #quickviewModal .modal-body #qv-images-container #qv-thumbnails .owl-dots { display: none } #quickviewModal .modal-body #qv-text-container>div { letter-spacing: 0.5px; margin-bottom: 10px; font-weight: 300; font-size: 14px; letter-spacing: .8px; line-height: 20px } #quickviewModal .modal-body #qv-text-container #qv-productdescription { text-align: left; line-height: 26px; color: #787878; margin-bottom: 10px; letter-spacing: .1px; font-weight: 500; font-size: 14px; overflow: hidden } @media (max-width: 767px) { #quickviewModal .modal-body #qv-text-container #qv-productdescription { line-height: 24px } #quickviewModal .modal-body #qv-text-container #qv-productdescription .spr-summary { text-align: left } } #quickviewModal .modal-body #qv-text-container #qv-productdescription p { font-size: 14px !important } #quickviewModal .modal-body #qv-text-container #qv-productname { text-transform: capitalize; letter-spacing: 1px; font-size: 26px; font-weight: 500; margin: 0 0 15px; color: #232323; font-family: Work Sans } @media (max-width: 767px) { #quickviewModal .modal-body #qv-text-container #qv-productname { font-size: 22px; line-height: 24px; padding-top: 12px; margin: 0 0 5px } } #quickviewModal .modal-body #qv-text-container #qv-productprice { line-height: 33px; display: inline-block; margin-bottom: 6px } @media (max-width: 767px) { #quickviewModal .modal-body #qv-text-container #qv-productprice { margin-bottom: 3px } } #quickviewModal .modal-body #qv-text-container #qv-productprice .regular { color: #666; font-weight: 400; font-size: 20px; float: right } @media (max-width: 767px) { #quickviewModal .modal-body #qv-text-container #qv-productprice .regular { font-size: 17px } } #quickviewModal .modal-body #qv-text-container #qv-productprice .qv-discountprice { margin-left: 10px; font-size: 17px } #quickviewModal .modal-body #qv-text-container #qv-productprice .qv-regularprice.single-price { line-height: 26px } #quickviewModal .modal-body #qv-text-container #qv-productprice .is-bold { color: #000; font-weight: 500; font-size: 20px } @media (max-width: 767px) { #quickviewModal .modal-body #qv-text-container #qv-productprice .is-bold { font-size: 17px } } #quickviewModal .modal-body #qv-text-container #qv-productprice .discount-percentage { font-weight: 600; background: #f1f1f1; color: #000000; padding: 7px 11px; line-height: 15px; margin: 0 8px; font-size: 14px; margin-bottom: 0px; text-transform: unset; display: none } #quickviewModal .modal-body #qv-text-container #qv-productprice .discount-percentage span { display: inline-block; vertical-align: middle; color: #000000 } #quickviewModal .modal-body #qv-text-container #qv-productprice .product-price__sold-out { display: none } #quickviewModal .modal-body #qv-text-container #qv-spr-badge .spr-starrating { display: inline-block; vertical-align: top } #quickviewModal .modal-body #qv-text-container #qv-spr-badge .spr-starrating i { margin: 0 1px; opacity: 1 } #quickviewModal .modal-body #qv-text-container #qv-spr-badge .spr-starrating i:before { font-size: 14px; width: 16px; content: "\F005"; font-family: "FontAwesome"; color: #ccc !important } #quickviewModal .modal-body #qv-text-container #qv-spr-badge .spr-starrating .spr-icon-star:before, #quickviewModal .modal-body #qv-text-container #qv-spr-badge .spr-starrating .spr-icon-star-half-alt:before { color: #fec42d !important } #quickviewModal .modal-body #qv-text-container #qv-discount { display: inline-block; background-color: #000; color: #fff; padding: 2px 10px } #quickviewModal .modal-body #qv-text-container #qv-quantity { padding-top: 10px } #quickviewModal .modal-body #qv-text-container #qv-quantity .add-to-cart { display: block; width: 100%; overflow: hidden } #quickviewModal .modal-body #qv-text-container #qv-quantity .add-to-cart .product-selector { overflow: hidden } #quickviewModal .modal-body #qv-text-container #qv-quantity .add-to-cart .product-selector .selector-wrapper { display: none; width: 50%; float: left; padding-right: 20px; margin-bottom: 30px; position: relative } #quickviewModal .modal-body #qv-text-container #qv-quantity .add-to-cart .product-selector .selector-wrapper select { width: 100%; background-image: url(//cdn.shopify.com/s/files/1/0267/2073/1222/t/4/assets/dropdown-sprite.png?v=2351638615376241667); background-repeat: no-repeat; background-position: right 18px center; background-color: #fff; text-indent: 0.01px; text-overflow: ''; cursor: pointer; color: #888; border: 1px solid #e9e9e9; outline: none } #quickviewModal .modal-body #qv-text-container #qv-quantity .add-to-cart .product-selector .selector-wrapper select .veriant-option { outline: none } #quickviewModal .modal-body #qv-text-container #qv-quantity .add-to-cart .product-selector .selector-wrapper label { font-size: 16px; font-weight: 500 } #quickviewModal .modal-body #qv-text-container #qv-quantity .add-to-cart .product-form__item--submit { overflow: hidden; display: inline-block; width: 56%; vertical-align: middle } @media (max-width: 543px) { #quickviewModal .modal-body #qv-text-container #qv-quantity .add-to-cart .product-form__item--submit { width: auto; padding: 0 4px } } #quickviewModal .modal-body #qv-text-container #qv-quantity .add-to-cart .product-form__item--submit .qv-addToCart, #quickviewModal .modal-body #qv-text-container #qv-quantity .add-to-cart .product-form__item--submit .addToCart { cursor: not-allowed; pointer-events: none; opacity: 1; padding: 9px 18px 9px } #quickviewModal .modal-body #qv-text-container #qv-quantity .add-to-cart .product-form__item--submit .qv-addToCart.enable, #quickviewModal .modal-body #qv-text-container #qv-quantity .add-to-cart .product-form__item--submit .addToCart.enable { opacity: 1; cursor: pointer; font-weight: 400; pointer-events: unset } #quickviewModal .modal-body #qv-text-container #qv-quantity .add-to-cart .product-form__item--submit .qv-addToCart.sold-out, #quickviewModal .modal-body #qv-text-container #qv-quantity .add-to-cart .product-form__item--submit .addToCart.sold-out { opacity: 1; cursor: unset } #quickviewModal .modal-body #qv-text-container #qv-quantity .product-form__item .addToCart { line-height: 30px; width: 100%; display: inline-block } #quickviewModal .modal-body #qv-text-container #qv-quantity .ishi-quickview-swatch { margin-bottom: 25px } #quickviewModal .modal-header { border: none } #quickviewModal .modal-footer { padding: 0 } .product-form__item--quantity, .cart-qty-btns { float: left; display: inline-block; width: auto; vertical-align: middle; margin-bottom: 20px } .product-form__item--quantity>div, .cart-qty-btns>div { color: #888; background: #fff; display: inline-block; width: 45px; height: 50px; float: left; text-align: center; line-height: 48px; font-size: 23px; border: 1px solid #e9e9e9; cursor: pointer; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } @media screen and (min-width: 768px) and (max-width: 1499px) { .product-form__item--quantity>div, .cart-qty-btns>div { width: 34px } } @media (max-width: 543px) { .product-form__item--quantity>div, .cart-qty-btns>div { width: 33px } } .product-form__item--quantity>div:hover, .product-form__item--quantity>div:focus, .cart-qty-btns>div:hover, .cart-qty-btns>div:focus { color: #000 } .product-form__item--quantity .quantity, .cart-qty-btns .quantity { display: inline-block; vertical-align: middle; float: left; color: #888; background: #fff; border: none; width: 65px; text-align: center; height: 50px; border-top: 1px solid #e9e9e9; border-bottom: 1px solid #e9e9e9; border-radius: 0 } @media screen and (min-width: 768px) and (max-width: 1499px) { .product-form__item--quantity .quantity, .cart-qty-btns .quantity { width: 52px } } @media (max-width: 543px) { .product-form__item--quantity .quantity, .cart-qty-btns .quantity { width: 50px } } .ishi-customhover-fadeinnormal.scale img, .ishi-customhover-fadeinflip.scale img, .ishi-customhover-fadeinrotate.scale img, .ishi-customhover-fadeinrotate3D.scale img, .ishi-customhover-fadeintop.scale img, .ishi-customhover-fadeinbottom.scale img, .ishi-customhover-fadeoutcenter.scale img, .ishi-customhover-fadeinoutcorner.scale img, .ishi-customhover-fadeinoutbordercorner.scale img, .ishi-customhover-doublefadeincenter.scale img, .ishi-customhover-fadeinoutdouble.scale img, .ishi-customhover-fadeinoutsingle.scale img, .ishi-customhover-fadeinoutdoublevertical.scale img, .ishi-customhover-perspective.scale img, .ishi-customhover-fadeinoutrotatevertical.scale img { transform: scale(1); -moz-transform: scale(1); -webkit-transform: scale(1); -o-transform: scale(1); -ms-transform: scale(1); -webkit-transition: all 0.6s ease 0s; -moz-transition: all 0.6s ease 0s; -ms-transition: all 0.6s ease 0s; -o-transition: all 0.6s ease 0s; transition: all 0.6s ease 0s } .ishi-customhover-fadeinnormal:hover.scale img, .ishi-customhover-fadeinflip:hover.scale img, .ishi-customhover-fadeinrotate:hover.scale img, .ishi-customhover-fadeinrotate3D:hover.scale img, .ishi-customhover-fadeintop:hover.scale img, .ishi-customhover-fadeinbottom:hover.scale img, .ishi-customhover-fadeoutcenter:hover.scale img, .ishi-customhover-fadeinoutcorner:hover.scale img, .ishi-customhover-fadeinoutbordercorner:hover.scale img, .ishi-customhover-doublefadeincenter:hover.scale img, .ishi-customhover-fadeinoutdouble:hover.scale img, .ishi-customhover-fadeinoutsingle:hover.scale img, .ishi-customhover-fadeinoutdoublevertical:hover.scale img, .ishi-customhover-perspective:hover.scale img, .ishi-customhover-fadeinoutrotatevertical:hover.scale img { transform: scale(1.1); -moz-transform: scale(1.1); -webkit-transform: scale(1.1); -o-transform: scale(1.1); -ms-transform: scale(1.1) } .ishi-customhover-fadeinoutsingle:before { content: ""; left: 0; opacity: 1; position: absolute; right: 0; top: 0; background: rgba(255, 255, 255, 0.6) none repeat scroll 0 0; height: 0; -webkit-transition: all 900ms ease-in-out 0s; -o-transition: all 900ms ease-in-out 0s; transition: all 900ms ease-in-out 0s; width: 100% } .ishi-customhover-fadeinoutsingle:hover:before { opacity: 0; height: 100% } .ishi-customhover-fadeinoutdouble:before { content: ""; left: 0; opacity: 1; position: absolute; right: 0; top: 0; background: rgba(0, 0, 0, 0.6) none repeat scroll 0 0; height: 0; -webkit-transition: all 900ms ease-in-out 0s; -o-transition: all 900ms ease-in-out 0s; transition: all 900ms ease-in-out 0s; width: 100% } .ishi-customhover-fadeinoutdouble:after { content: ""; left: 0; opacity: 1; position: absolute; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.6) none repeat scroll 0 0; height: 0; -webkit-transition: all 900ms ease-in-out 0s; -o-transition: all 900ms ease-in-out 0s; transition: all 900ms ease-in-out 0s; width: 100% } .ishi-customhover-fadeinoutdouble:hover:before { opacity: 0; height: 85% } .ishi-customhover-fadeinoutdouble:hover:after { opacity: 0; height: 85% } .ishi-customhover-fadeinoutdoublevertical:before { content: ""; left: 0; opacity: 1; position: absolute; top: 0; bottom: 0; background: rgba(255, 255, 255, 0.6) none repeat scroll 0 0; width: 0; -webkit-transition: all 900ms ease-in-out 0s; -o-transition: all 900ms ease-in-out 0s; transition: all 900ms ease-in-out 0s; height: 100% } .ishi-customhover-fadeinoutdoublevertical:after { content: ""; opacity: 1; position: absolute; right: 0; top: 0; bottom: 0; background: rgba(255, 255, 255, 0.6) none repeat scroll 0 0; width: 0; -webkit-transition: all 900ms ease-in-out 0s; -o-transition: all 900ms ease-in-out 0s; transition: all 900ms ease-in-out 0s; height: 100% } .ishi-customhover-fadeinoutdoublevertical:hover:before { opacity: 0; width: 85% } .ishi-customhover-fadeinoutdoublevertical:hover:after { opacity: 0; width: 85% } .ishi-customhover-perspective:before { content: ""; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.1); position: absolute; top: 0; left: 0; border: 15px solid rgba(255, 255, 255, 0); opacity: 0 } .ishi-customhover-perspective:hover:before { animation-name: perspectiveH; animation-duration: 1200ms; animation-iteration-count: 1; animation-timing-function: linear; opacity: 1 } @keyframes perspectiveH { 0% { -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg); transform: perspective(400px) rotate3d(0, 1, 0, 90deg); -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; opacity: 0 } 40% { -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg); transform: perspective(400px) rotate3d(0, 1, 0, -20deg); -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in } 60% { -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg); transform: perspective(400px) rotate3d(0, 1, 0, 10deg); opacity: 1 } 80% { -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg); transform: perspective(400px) rotate3d(0, 1, 0, -5deg) } 100% { -webkit-transform: perspective(400px); transform: perspective(400px) } } .ishi-customhover-fadeinoutrotatevertical:before, .ishi-customhover-fadeinoutrotatevertical:after { content: ""; width: 100%; height: 100%; position: absolute; top: 0; left: 0; color: #fff; text-align: center; padding: 20% 20px; background: rgba(0, 0, 0, 0.05); transform: rotate(-90deg); transform-origin: left top 0; -webkit-transition: all 0.6s ease 0s; -moz-transition: all 0.6s ease 0s; -o-transition: all 0.6s ease 0s } .ishi-customhover-fadeinoutrotatevertical:after { right: 0; bottom: 0; top: auto; left: auto; transform-origin: right bottom 0 } .ishi-customhover-fadeinoutrotatevertical:hover:before, .ishi-customhover-fadeinoutrotatevertical:hover:after { transform: rotate(0deg) } .ishi-customhover-fadeinnormal:after { content: ""; position: absolute; top: 10px; left: 10px; right: 10px; bottom: 10px; background: rgba(0, 0, 0, 0.07); opacity: 0; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease } .ishi-customhover-fadeinnormal:hover:after { opacity: 1; transform: scale(1); -moz-transform: scale(1); -webkit-transform: scale(1); -o-transform: scale(1); -ms-transform: scale(1) } .ishi-customhover-fadeinflip:after { content: ""; background-color: rgba(0, 0, 0, 0.08); position: absolute; padding: 30px; position: absolute; top: 10px; bottom: 10px; left: 10px; right: 10px; opacity: 0; -webkit-transform: rotate3d(1, 1, 0, 100deg); -moz-transform: rotate3d(1, 1, 0, 100deg); -ms-transform: rotate3d(1, 1, 0, 100deg); -o-transform: rotate3d(1, 1, 0, 100deg); transform: rotate3d(1, 1, 0, 100deg); -webkit-transition: all 0.35s ease; -moz-transition: all 0.35s ease; transition: all 0.35s ease } .ishi-customhover-fadeinflip:hover:after { opacity: 1; -webkit-transition-delay: 0.14s; -moz-transition-delay: 0.14s; transition-delay: 0.14s; -webkit-transform: rotate3d(0, 0, 0, 0deg); -moz-transform: rotate3d(0, 0, 0, 0deg); -ms-transform: rotate3d(0, 0, 0, 0deg); -o-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg) } .ishi-customhover-fadeinrotate:after { content: ''; background: none repeat scroll 0 0 rgba(0, 0, 0, 0.07); position: absolute; display: block; top: 10px; right: 10px; bottom: 10px; opacity: 0; left: 10px; -webkit-transition: all 0.3s ease 0s; -moz-transition: all 0.3s ease 0s; -ms-transition: all 0.3s ease 0s; -o-transition: all 0.3s ease 0s; transition: all 0.3s ease 0s; -webkit-transform: rotate(-180deg) scale(0); -moz-transform: rotate(-180deg) scale(0); -ms-transform: rotate(-180deg) scale(0); -o-transform: rotate(-180deg) scale(0); transform: rotate(-180deg) scale(0) } .ishi-customhover-fadeinrotate:hover:after { -webkit-transform: rotate(0deg) scale(1); -moz-transform: rotate(0deg) scale(1); -ms-transform: rotate(0deg) scale(1); -o-transform: rotate(0deg) scale(1); transform: rotate(0deg) scale(1); opacity: 1 } .ishi-customhover-fadeinrotate3D:after { content: ""; position: absolute; top: 50%; left: 50%; right: 50%; bottom: 50%; -webkit-transition: all 0.9s; -moz-transition: all 0.9s; -o-transition: all 0.9s; transition: all 0.9s } .ishi-customhover-fadeinrotate3D:hover:after { background: rgba(0, 0, 0, 0.08); transform: rotateY(180deg); -moz-transform: rotateY(180deg); -webkit-transform: rotateY(180deg); -o-transform: rotateY(180deg); -ms-transform: rotateY(180deg); top: 0; left: 0; right: 0; bottom: 0; -webkit-transition: all 0.9s; -moz-transition: all 0.9s; -o-transition: all 0.9s; transition: all 0.9s } .ishi-customhover-fadeintop:after { content: ""; background: rgba(0, 0, 0, 0.06); transition: all 0.5s ease; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -ms-transition: all 0.5s ease; -o-transition: all 0.5s ease; width: 100%; height: 0%; position: absolute; left: 0; right: 0; top: 0 } .ishi-customhover-fadeintop:hover:after { height: 100% } .ishi-customhover-fadeinbottom:after { content: ""; background: rgba(0, 0, 0, 0.06); transition: all 0.5s ease; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -ms-transition: all 0.5s ease; -o-transition: all 0.5s ease; width: 100%; height: 0%; position: absolute; left: 0; right: 0; bottom: 0 } .ishi-customhover-fadeinbottom:hover:after { height: 100% } .ishi-customhover-fadeintopbottom:before, .ishi-customhover-fadeintopbottom:after { content: ""; background: none repeat scroll 0 0 rgba(0, 0, 0, 0.06); bottom: -100%; width: 100%; height: 100%; display: block; left: 0; opacity: 0; position: absolute; -webkit-transition: all 0.8s ease 0s; -moz-transition: all 0.8s ease 0s; -ms-transition: all 0.8s ease 0s; -o-transition: all 0.8s ease 0s; transition: all 0.8s ease 0s } .ishi-customhover-fadeintopbottom:after { top: -100%; bottom: auto } .ishi-customhover-fadeintopbottom:hover:before { bottom: 50%; opacity: 1 } .ishi-customhover-fadeintopbottom:hover:after { top: 50%; opacity: 1 } .ishi-customhover-doublefadeincenter:before, .ishi-customhover-doublefadeincenter:after { content: ""; bottom: 10px; left: 10px; opacity: 0; position: absolute; right: 10px; top: 10px; background: rgba(0, 0, 0, 0.06) none repeat scroll 0 0; transition: opacity 0.35s ease 0s, transform 0.5s ease 0s; -webkit-transition: opacity 0.35s ease 0s, transform 0.5s ease 0s; -moz-transition: opacity 0.35s ease 0s, transform 0.5s ease 0s; -o-transition: opacity 0.35s ease 0s, transform 0.5s ease 0s; -ms-transition: opacity 0.35s ease 0s, transform 0.5s ease 0s } .ishi-customhover-doublefadeincenter:before { transform: scale(0, 1); -webkit-transform: scale(0, 1); -moz-transform: scale(0, 1); -o-transform: scale(0, 1); -ms-transform: scale(0, 1) } .ishi-customhover-doublefadeincenter:after { transform: scale(1, 0); -webkit-transform: scale(1, 0); -moz-transform: scale(1, 0); -o-transform: scale(1, 0); -ms-transform: scale(1, 0) } .ishi-customhover-doublefadeincenter:hover:before, .ishi-customhover-doublefadeincenter:hover:after { opacity: 1; transform: scale(1); -webkit-transform: scale(1); -moz-transform: scale(1); -o-transform: scale(1); -ms-transform: scale(1) } .ishi-customhover-fadeoutcenter:after { background: rgba(0, 0, 0, 0.1) none repeat scroll 0 0; bottom: 20px; content: ""; left: 20px; position: absolute; right: 20px; top: 20px; transform: scale(0); -webkit-transform: scale(0); -ms-transform: scale(0); -o-transform: scale(0); opacity: 1 } .ishi-customhover-fadeoutcenter:hover:after { transform: scale(1); -webkit-transform: scale(1); -ms-transform: scale(1); -o-transform: scale(1); transition-duration: 1s; -moz-transition-duration: 1s; -webkit-transition-duration: 1s; -khtml-transition-duration: 1s; -o-transition-duration: 1s; opacity: 0 } .ishi-customhover-fadeoutcorner:before, .ishi-customhover-fadeoutcorner:after { content: ""; position: absolute; top: 0; left: 0; width: 0; height: 0; background: rgba(0, 0, 0, 0.1); margin: auto; opacity: 1 } .ishi-customhover-fadeoutcorner:after { bottom: 0; right: 0; left: auto; top: auto } .ishi-customhover-fadeoutcorner:hover:before, .ishi-customhover-fadeoutcorner:hover:after { height: 100%; -webkit-transition: 1.3s; transition: 1.3s; opacity: 0; width: 100% } .ishi-customhover-fadeinoutcorner:after { background-color: #1a9bdc; width: 0; height: 0; content: ""; opacity: 0.1; position: absolute; -webkit-transition: all 0.4s ease-in-out 0s; right: 0 } .ishi-customhover-fadeinoutcorner:hover:after { width: 100%; height: 100%; right: auto; left: 0 } .ishi-customhover-fadeinoutbordercorner:before, .ishi-customhover-fadeinoutbordercorner:after { content: ''; position: absolute; top: 0; right: 0; bottom: 0; left: 0; opacity: 0; -webkit-transition: opacity 0.90s, -webkit-transform 0.90s; transition: opacity 0.90s, transform 0.90s; z-index: 9 } .ishi-customhover-fadeinoutbordercorner:before { content: ''; z-index: 9; position: absolute; top: 0; left: 0; right: 0; bottom: 0; transform: scale(0); -moz-transform: scale(0); -webkit-transform: scale(0); -o-transform: scale(0); -ms-transform: scale(0); background: rgba(0, 0, 0, 0.1); -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } .ishi-customhover-fadeinoutbordercorner:before { border-top: 10px solid #ffffff; border-bottom: 10px solid #ffffff; -webkit-transform: scale(0, 1); transform: scale(0, 1); background: rgba(0, 0, 0, 0.1) } .ishi-customhover-fadeinoutbordercorner:after { border-right: 10px solid #ffffff; border-left: 10px solid #ffffff; -webkit-transform: scale(1, 0); transform: scale(1, 0); background: transparent !important } .ishi-customhover-fadeinoutbordercorner:hover:before, .ishi-customhover-fadeinoutbordercorner:hover:after { opacity: 1; transform: scale(1); -moz-transform: scale(1); -webkit-transform: scale(1); -o-transform: scale(1); -ms-transform: scale(1) } .ishi-customhover-fadeinoutbordercorner:hover:before { opacity: 1; transform: scale(1); -moz-transform: scale(1); -webkit-transform: scale(1); -o-transform: scale(1); -ms-transform: scale(1) } #siteloader { background: #fff; height: 100%; left: 0; right: 0; position: fixed; top: 0; bottom: 0; width: 100%; z-index: 9999; margin: auto; -webkit-transition: all .5s ease; -moz-transition: all .5s ease; transition: all .5s ease } #siteloader>div { top: 45%; margin: auto; position: relative; clear: both } #spin-wrapper { width: 100%; height: 100%; position: fixed; z-index: 9998; background: #fff; top: 0; bottom: 0; left: 0; right: 0 } .ishi-rotate-slices { width: 32px; height: 32px; clear: both; border-radius: 50%; border-top: 24px rgba(0, 0, 0, 0.75) solid; border-left: 24px rgba(0, 0, 0, 0.25) solid; border-bottom: 24px rgba(0, 0, 0, 0.25) solid; border-right: 24px rgba(0, 0, 0, 0.25) solid; -webkit-animation: spSlices 1s infinite linear; animation: spSlices 2.5s infinite linear } @-webkit-keyframes spSlices { 0% { border-top: 24px rgba(0, 0, 0, 0.75) solid; border-right: 24px rgba(0, 0, 0, 0.25) solid; border-bottom: 24px rgba(0, 0, 0, 0.25) solid; border-left: 24px rgba(0, 0, 0, 0.25) solid } 25% { border-top: 24px rgba(0, 0, 0, 0.25) solid; border-right: 24px rgba(0, 0, 0, 0.75) solid; border-bottom: 24px rgba(0, 0, 0, 0.25) solid; border-left: 24px rgba(0, 0, 0, 0.25) solid } 50% { border-top: 24px rgba(0, 0, 0, 0.25) solid; border-right: 24px rgba(0, 0, 0, 0.25) solid; border-bottom: 24px rgba(0, 0, 0, 0.75) solid; border-left: 24px rgba(0, 0, 0, 0.25) solid } 75% { border-top: 24px rgba(0, 0, 0, 0.25) solid; border-right: 24px rgba(0, 0, 0, 0.25) solid; border-bottom: 24px rgba(0, 0, 0, 0.25) solid; border-left: 24px rgba(0, 0, 0, 0.75) solid } 100% { border-top: 24px rgba(0, 0, 0, 0.75) solid; border-right: 24px rgba(0, 0, 0, 0.25) solid; border-bottom: 24px rgba(0, 0, 0, 0.25) solid; border-left: 24px rgba(0, 0, 0, 0.25) solid } } @-moz-keyframes spSlices { 0% { border-top: 24px rgba(0, 0, 0, 0.75) solid; border-right: 24px rgba(0, 0, 0, 0.25) solid; border-bottom: 24px rgba(0, 0, 0, 0.25) solid; border-left: 24px rgba(0, 0, 0, 0.25) solid } 25% { border-top: 24px rgba(0, 0, 0, 0.25) solid; border-right: 24px rgba(0, 0, 0, 0.75) solid; border-bottom: 24px rgba(0, 0, 0, 0.25) solid; border-left: 24px rgba(0, 0, 0, 0.25) solid } 50% { border-top: 24px rgba(0, 0, 0, 0.25) solid; border-right: 24px rgba(0, 0, 0, 0.25) solid; border-bottom: 24px rgba(0, 0, 0, 0.75) solid; border-left: 24px rgba(0, 0, 0, 0.25) solid } 75% { border-top: 24px rgba(0, 0, 0, 0.25) solid; border-right: 24px rgba(0, 0, 0, 0.25) solid; border-bottom: 24px rgba(0, 0, 0, 0.25) solid; border-left: 24px rgba(0, 0, 0, 0.75) solid } 100% { border-top: 24px rgba(0, 0, 0, 0.75) solid; border-right: 24px rgba(0, 0, 0, 0.25) solid; border-bottom: 24px rgba(0, 0, 0, 0.25) solid; border-left: 24px rgba(0, 0, 0, 0.25) solid } } @-o-keyframes spSlices { 0% { border-top: 24px rgba(0, 0, 0, 0.75) solid; border-right: 24px rgba(0, 0, 0, 0.25) solid; border-bottom: 24px rgba(0, 0, 0, 0.25) solid; border-left: 24px rgba(0, 0, 0, 0.25) solid } 25% { border-top: 24px rgba(0, 0, 0, 0.25) solid; border-right: 24px rgba(0, 0, 0, 0.75) solid; border-bottom: 24px rgba(0, 0, 0, 0.25) solid; border-left: 24px rgba(0, 0, 0, 0.25) solid } 50% { border-top: 24px rgba(0, 0, 0, 0.25) solid; border-right: 24px rgba(0, 0, 0, 0.25) solid; border-bottom: 24px rgba(0, 0, 0, 0.75) solid; border-left: 24px rgba(0, 0, 0, 0.25) solid } 75% { border-top: 24px rgba(0, 0, 0, 0.25) solid; border-right: 24px rgba(0, 0, 0, 0.25) solid; border-bottom: 24px rgba(0, 0, 0, 0.25) solid; border-left: 24px rgba(0, 0, 0, 0.75) solid } 100% { border-top: 24px rgba(0, 0, 0, 0.75) solid; border-right: 24px rgba(0, 0, 0, 0.25) solid; border-bottom: 24px rgba(0, 0, 0, 0.25) solid; border-left: 24px rgba(0, 0, 0, 0.25) solid } } @keyframes spSlices { 0% { border-top: 24px rgba(0, 0, 0, 0.75) solid; border-right: 24px rgba(0, 0, 0, 0.25) solid; border-bottom: 24px rgba(0, 0, 0, 0.25) solid; border-left: 24px rgba(0, 0, 0, 0.25) solid } 25% { border-top: 24px rgba(0, 0, 0, 0.25) solid; border-right: 24px rgba(0, 0, 0, 0.75) solid; border-bottom: 24px rgba(0, 0, 0, 0.25) solid; border-left: 24px rgba(0, 0, 0, 0.25) solid } 50% { border-top: 24px rgba(0, 0, 0, 0.25) solid; border-right: 24px rgba(0, 0, 0, 0.25) solid; border-bottom: 24px rgba(0, 0, 0, 0.75) solid; border-left: 24px rgba(0, 0, 0, 0.25) solid } 75% { border-top: 24px rgba(0, 0, 0, 0.25) solid; border-right: 24px rgba(0, 0, 0, 0.25) solid; border-bottom: 24px rgba(0, 0, 0, 0.25) solid; border-left: 24px rgba(0, 0, 0, 0.75) solid } 100% { border-top: 24px rgba(0, 0, 0, 0.75) solid; border-right: 24px rgba(0, 0, 0, 0.25) solid; border-bottom: 24px rgba(0, 0, 0, 0.25) solid; border-left: 24px rgba(0, 0, 0, 0.25) solid } } .ishi-round-rotate-scale { border-radius: 100%; border: 2px solid #1a9bdc; border-bottom-color: transparent; height: 40px; width: 40px; background: transparent; -webkit-animation: rotate-scale .75s 0s linear infinite; animation: rotate-scale .75s 0s linear infinite } @-webkit-keyframes rotate-scale { 0% { -webkit-transform: rotate(0) scale(1); transform: rotate(0) scale(1) } 50% { -webkit-transform: rotate(180deg) scale(0.6); transform: rotate(180deg) scale(0.6) } 100% { -webkit-transform: rotate(360deg) scale(1); transform: rotate(360deg) scale(1) } } @-moz-keyframes rotate-scale { 0% { -moz-transform: rotate(0) scale(1); transform: rotate(0) scale(1) } 50% { -moz-transform: rotate(180deg) scale(0.6); transform: rotate(180deg) scale(0.6) } 100% { -moz-transform: rotate(360deg) scale(1); transform: rotate(360deg) scale(1) } } @-o-keyframes rotate-scale { 0% { -o-transform: rotate(0) scale(1); transform: rotate(0) scale(1) } 50% { -o-transform: rotate(180deg) scale(0.6); transform: rotate(180deg) scale(0.6) } 100% { -o-transform: rotate(360deg) scale(1); transform: rotate(360deg) scale(1) } } @keyframes rotate-scale { 0% { transform: rotate(0) scale(1) } 50% { transform: rotate(180deg) scale(0.6) } 100% { transform: rotate(360deg) scale(1) } } .ishi-square-rotate { position: relative; width: 155px; height: 120px } .ishi-square-rotate:before, .ishi-square-rotate:after { position: absolute; content: ""; height: 60px; width: 60px; top: 30px; left: 50px; border-radius: 7px; background-color: #1a9bdc; -webkit-animation: loader-rotate2 1.8s ease-in-out infinite; animation: loader-rotate2 1.8s ease-in-out infinite; -webkit-animation-direction: alternate; animation-direction: alternate; -webkit-transform-origin: center center; transform-origin: center center } .ishi-square-rotate:after { height: 30px; width: 30px; left: 65px; top: 45px; border-radius: 3px; background-color: #fff; -webkit-animation: loader-rotate1 1.8s ease-in-out infinite; animation: loader-rotate1 1.8s ease-in-out infinite; -webkit-animation-direction: alternate; animation-direction: alternate; -webkit-transform-origin: center center; transform-origin: center center } @-webkit-keyframes loader-rotate1 { 0% { -webkit-transform: rotate(0deg) scale(1); transform: rotate(0deg) scale(1) } 65% { -webkit-transform: rotate(-90deg) scale(0.5); transform: rotate(-90deg) scale(0.5) } 100% { -webkit-transform: rotate(270deg) scale(1.2); transform: rotate(270deg) scale(1.2) } } @-moz-keyframes loader-rotate1 { 0% { -moz-transform: rotate(0deg) scale(1); transform: rotate(0deg) scale(1) } 65% { -moz-transform: rotate(-90deg) scale(0.5); transform: rotate(-90deg) scale(0.5) } 100% { -moz-transform: rotate(270deg) scale(1.2); transform: rotate(270deg) scale(1.2) } } @-o-keyframes loader-rotate1 { 0% { -o-transform: rotate(0deg) scale(1); transform: rotate(0deg) scale(1) } 65% { -o-transform: rotate(-90deg) scale(0.5); transform: rotate(-90deg) scale(0.5) } 100% { -o-transform: rotate(270deg) scale(1.2); transform: rotate(270deg) scale(1.2) } } @keyframes loader-rotate1 { 0% { transform: rotate(0deg) scale(1) } 65% { transform: rotate(-90deg) scale(0.5) } 100% { transform: rotate(270deg) scale(1.2) } } @-webkit-keyframes loader-rotate2 { 0% { -webkit-transform: rotate(0deg) scale(1); transform: rotate(0deg) scale(1) } 45% { -webkit-transform: rotate(90deg) scale(0.8); transform: rotate(90deg) scale(0.8); border-radius: 50% } 100% { -webkit-transform: rotate(-270deg) scale(1.1); transform: rotate(-270deg) scale(1.1) } } @-moz-keyframes loader-rotate2 { 0% { -moz-transform: rotate(0deg) scale(1); transform: rotate(0deg) scale(1) } 45% { -moz-transform: rotate(90deg) scale(0.8); transform: rotate(90deg) scale(0.8); border-radius: 50% } 100% { -moz-transform: rotate(-270deg) scale(1.1); transform: rotate(-270deg) scale(1.1) } } @-o-keyframes loader-rotate2 { 0% { -o-transform: rotate(0deg) scale(1); transform: rotate(0deg) scale(1) } 45% { -o-transform: rotate(90deg) scale(0.8); transform: rotate(90deg) scale(0.8); border-radius: 50% } 100% { -o-transform: rotate(-270deg) scale(1.1); transform: rotate(-270deg) scale(1.1) } } @keyframes loader-rotate2 { 0% { transform: rotate(0deg) scale(1) } 45% { transform: rotate(90deg) scale(0.8); border-radius: 50% } 100% { transform: rotate(-270deg) scale(1.1) } } .ishi-round-flip { width: 64px; height: 64px; border-radius: 50%; background: #1a9bdc; animation: lds-circle 2.4s cubic-bezier(0, 1, 0.9, 1) infinite } @-webkit-keyframes lds-circle { 0%, 100% { animation-timing-function: cubic-bezier(0.8, 0, 1, 0.8) } 0% { transform: rotateY(0deg) } 50% { transform: rotateY(900deg); animation-timing-function: cubic-bezier(0, 0.6, 0.6, 1) } 100% { transform: rotateY(1500deg) } } @-moz-keyframes lds-circle { 0%, 100% { animation-timing-function: cubic-bezier(0.8, 0, 1, 0.8) } 0% { transform: rotateY(0deg) } 50% { transform: rotateY(900deg); animation-timing-function: cubic-bezier(0, 0.6, 0.6, 1) } 100% { transform: rotateY(1500deg) } } @-o-keyframes lds-circle { 0%, 100% { animation-timing-function: cubic-bezier(0.8, 0, 1, 0.8) } 0% { transform: rotateY(0deg) } 50% { transform: rotateY(900deg); animation-timing-function: cubic-bezier(0, 0.6, 0.6, 1) } 100% { transform: rotateY(1500deg) } } @keyframes lds-circle { 0%, 100% { animation-timing-function: cubic-bezier(0.8, 0, 1, 0.8) } 0% { transform: rotateY(0deg) } 50% { transform: rotateY(900deg); animation-timing-function: cubic-bezier(0, 0.6, 0.6, 1) } 100% { transform: rotateY(1500deg) } } .ishi-triangle-rotate { width: 0; height: 0; border-left: 40px solid transparent; border-right: 40px solid transparent; border-bottom: 40px solid #1a9bdc; -webkit-animation: triangle-skew-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite; animation: triangle-skew-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite } @-webkit-keyframes triangle-skew-spin { 25% { -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0); transform: perspective(100px) rotateX(180deg) rotateY(0) } 50% { -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg); transform: perspective(100px) rotateX(180deg) rotateY(180deg) } 75% { -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg); transform: perspective(100px) rotateX(0) rotateY(180deg) } 100% { -webkit-transform: perspective(100px) rotateX(0) rotateY(0); transform: perspective(100px) rotateX(0) rotateY(0) } } @-o-keyframes triangle-skew-spin { 25% { -o-transform: perspective(100px) rotateX(180deg) rotateY(0); transform: perspective(100px) rotateX(180deg) rotateY(0) } 50% { -o-transform: perspective(100px) rotateX(180deg) rotateY(180deg); transform: perspective(100px) rotateX(180deg) rotateY(180deg) } 75% { -o-transform: perspective(100px) rotateX(0) rotateY(180deg); transform: perspective(100px) rotateX(0) rotateY(180deg) } 100% { -o-transform: perspective(100px) rotateX(0) rotateY(0); transform: perspective(100px) rotateX(0) rotateY(0) } } @-moz-keyframes triangle-skew-spin { 25% { -moz-transform: perspective(100px) rotateX(180deg) rotateY(0); transform: perspective(100px) rotateX(180deg) rotateY(0) } 50% { -moz-transform: perspective(100px) rotateX(180deg) rotateY(180deg); transform: perspective(100px) rotateX(180deg) rotateY(180deg) } 75% { -moz-transform: perspective(100px) rotateX(0) rotateY(180deg); transform: perspective(100px) rotateX(0) rotateY(180deg) } 100% { -moz-transform: perspective(100px) rotateX(0) rotateY(0); transform: perspective(100px) rotateX(0) rotateY(0) } } @keyframes triangle-skew-spin { 25% { -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0); transform: perspective(100px) rotateX(180deg) rotateY(0) } 50% { -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg); transform: perspective(100px) rotateX(180deg) rotateY(180deg) } 75% { -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg); transform: perspective(100px) rotateX(0) rotateY(180deg) } 100% { -webkit-transform: perspective(100px) rotateX(0) rotateY(0); transform: perspective(100px) rotateX(0) rotateY(0) } } .ishi-rotate-plane { display: block; width: 50px; height: 50px; background-color: #1a9bdc; margin: 0 auto; -webkit-animation: rotateplane 1.4s infinite ease-in-out; animation: rotateplane 1.4s infinite ease-in-out } @-webkit-keyframes rotateplane { 0% { -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg); transform: perspective(120px) rotateX(0deg) rotateY(0deg) } 50% { -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg); transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg) } 100% { -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg); transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg) } } @-moz-keyframes rotateplane { 0% { -moz-transform: perspective(120px) rotateX(0deg) rotateY(0deg); transform: perspective(120px) rotateX(0deg) rotateY(0deg) } 50% { -moz-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg); transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg) } 100% { -moz-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg); transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg) } } @-o-keyframes rotateplane { 0% { -o-transform: perspective(120px) rotateX(0deg) rotateY(0deg); transform: perspective(120px) rotateX(0deg) rotateY(0deg) } 50% { -o-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg); transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg) } 100% { -o-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg); transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg) } } @keyframes rotateplane { 0% { transform: perspective(120px) rotateX(0deg) rotateY(0deg) } 50% { transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg) } 100% { transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg) } } .ishi-round-rotate { color: #1a9bdc; font-size: 8px; text-indent: -99999em; margin: auto; position: relative; width: 10em; height: 10em; border-radius: 50%; box-shadow: inset 0 0 0 0.9em; -webkit-transform: translateZ(0); -ms-transform: translateZ(0); transform: translateZ(0) } .ishi-round-rotate:before, .ishi-round-rotate:after { position: absolute; content: ""; width: 5.2em; height: 10.2em; background: #fff; border-radius: 10.2em 0 0 10.2em; top: -0.1em; left: -0.1em; -webkit-transform-origin: 5.2em 5.1em; transform-origin: 5.2em 5.1em; -webkit-animation: load2 2s infinite ease 1.5s; animation: load2 2s infinite ease 1.5s } .ishi-round-rotate:after { border-radius: 0 10.2em 10.2em 0; left: 5.1em; -webkit-transform-origin: 0px 5.1em; transform-origin: 0px 5.1em; -webkit-animation: load2 2s infinite ease 0s; animation: load2 2s infinite ease 0s } @-webkit-keyframes load2 { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg) } 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg) } } @-moz-keyframes load2 { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg) } 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg) } } @-o-keyframes load2 { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg) } 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg) } } @keyframes load2 { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg) } 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg) } } .ishi-simple-dot-scaleout { width: 52px; height: 52px; border-radius: 40px; background-color: #1a9bdc; -webkit-animation: scaleout 1.0s infinite ease-in-out; animation: scaleout 1.0s infinite ease-in-out } @-webkit-keyframes scaleout { 0% { -webkit-transform: scale(0); transform: scale(0) } 100% { -webkit-transform: scale(1); transform: scale(1); opacity: 0 } } @-moz-keyframes scaleout { 0% { -webkit-transform: scale(0); transform: scale(0) } 100% { -webkit-transform: scale(1); transform: scale(1); opacity: 0 } } @-o-keyframes scaleout { 0% { -webkit-transform: scale(0); transform: scale(0) } 100% { -webkit-transform: scale(1); transform: scale(1); opacity: 0 } } @keyframes scaleout { 0% { -webkit-transform: scale(0); transform: scale(0) } 100% { -webkit-transform: scale(1); transform: scale(1); opacity: 0 } } .ishi-dots-rotate { color: #1a9bdc; font-size: 46px; text-indent: -9999em; overflow: hidden; width: 1em; height: 1em; border-radius: 50%; margin: auto; position: relative; -webkit-transform: translateZ(0); -ms-transform: translateZ(0); transform: translateZ(0); -webkit-animation: load1 1.8s infinite ease, round1 1.8s infinite ease; animation: load1 1.8s infinite ease, round1 1.8s infinite ease } @-webkit-keyframes load1 { 0% { box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em } 5%, 95% { box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em } 10%, 59% { box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em } 20% { box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em } 38% { box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em } 100% { box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em } } @-moz-keyframes load1 { 0% { box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em } 5%, 95% { box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em } 10%, 59% { box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em } 20% { box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em } 38% { box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em } 100% { box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em } } @-o-keyframes load1 { 0% { box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em } 5%, 95% { box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em } 10%, 59% { box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em } 20% { box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em } 38% { box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em } 100% { box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em } } @keyframes load1 { 0% { box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em } 5%, 95% { box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em } 10%, 59% { box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em } 20% { box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em } 38% { box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em } 100% { box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em } } @-webkit-keyframes round1 { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg) } 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg) } } @-moz-keyframes round1 { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg) } 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg) } } @-o-keyframes round1 { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg) } 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg) } } @keyframes round1 { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg) } 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg) } } .ishi-dots-scale { width: 32px; height: 32px; margin: 0 auto } .ishi-dots-scale:before, .ishi-dots-scale:after { content: ''; border: none; border-radius: 50%; width: 100%; height: 100%; position: absolute; left: 0px; background: rgba(0, 0, 0, 0.2); transform: scale(1, 1); opacity: 1; -webkit-animation: spWaveBe 0.6s infinite linear; animation: spWaveBe 0.6s infinite linear } .ishi-dots-scale:after { transform: scale(0, 0); opacity: 0; -webkit-animation: spWaveAf 0.6s infinite linear; animation: spWaveAf 0.6s infinite linear } .ishi-dots-scale-border { width: 34px; height: 34px; margin: 0 auto } .ishi-dots-scale-border:before, .ishi-dots-scale-border:after { content: ''; border: 2px solid #1a9bdc; border-radius: 50%; width: 100%; height: 100%; position: absolute; left: 0px; transform: scale(1, 1); opacity: 1; -webkit-animation: spWaveBe 0.6s infinite linear; animation: spWaveBe 0.6s infinite linear } .ishi-dots-scale-border:after { transform: scale(0, 0); opacity: 0; -webkit-animation: spWaveAf 0.6s infinite linear; animation: spWaveAf 0.6s infinite linear } @-webkit-keyframes spWaveAf { 0% { transform: scale(0.5, 0.5); opacity: 0 } 100% { transform: scale(1, 1); opacity: 1 } } @-webkit-keyframes spWaveBe { 0% { -webkit-transform: scale(1, 1); opacity: 1 } 100% { -webkit-transform: scale(1.5, 1.5); opacity: 0 } } @-moz-keyframes spWaveAf { 0% { transform: scale(0.5, 0.5); opacity: 0 } 100% { transform: scale(1, 1); opacity: 1 } } @-moz-keyframes spWaveBe { 0% { -webkit-transform: scale(1, 1); opacity: 1 } 100% { -webkit-transform: scale(1.5, 1.5); opacity: 0 } } @-o-keyframes spWaveAf { 0% { transform: scale(0.5, 0.5); opacity: 0 } 100% { transform: scale(1, 1); opacity: 1 } } @-o-keyframes spWaveBe { 0% { -webkit-transform: scale(1, 1); opacity: 1 } 100% { -webkit-transform: scale(1.5, 1.5); opacity: 0 } } @keyframes spWaveAf { 0% { transform: scale(0.5, 0.5); opacity: 0 } 100% { transform: scale(1, 1); opacity: 1 } } @keyframes spWaveBe { 0% { -webkit-transform: scale(1, 1); opacity: 1 } 100% { -webkit-transform: scale(1.5, 1.5); opacity: 0 } } .ishi-rotating-circle { width: 115px; height: 115px; margin: -75px 0 0 -75px; border-radius: 50%; border: 3px solid transparent; border-top-color: transparent; border-top-color: #1a9bdc; -webkit-animation: spin 2s linear infinite; animation: spin 2s linear infinite } .ishi-rotating-circle:before { content: ""; position: absolute; top: 5px; left: 5px; right: 5px; bottom: 5px; border-radius: 50%; border: 3px solid transparent; border-top-color: #1a9bdc; -webkit-animation: spin 3s linear infinite; animation: spin 3s linear infinite } .ishi-rotating-circle:after { content: ""; position: absolute; top: 15px; left: 15px; right: 15px; bottom: 15px; border-radius: 50%; border: 3px solid transparent; border-top-color: transparent; border-top-color: #1a9bdc; -webkit-animation: spin 1.5s linear infinite; animation: spin 1.5s linear infinite } @-webkit-keyframes spin { 0% { -webkit-transform: rotate(0deg); -ms-transform: rotate(0deg); transform: rotate(0deg) } 100% { -webkit-transform: rotate(360deg); -ms-transform: rotate(360deg); transform: rotate(360deg) } } @-moz-keyframes spin { 0% { -webkit-transform: rotate(0deg); -ms-transform: rotate(0deg); transform: rotate(0deg) } 100% { -webkit-transform: rotate(360deg); -ms-transform: rotate(360deg); transform: rotate(360deg) } } @-o-keyframes spin { 0% { -webkit-transform: rotate(0deg); -ms-transform: rotate(0deg); transform: rotate(0deg) } 100% { -webkit-transform: rotate(360deg); -ms-transform: rotate(360deg); transform: rotate(360deg) } } @keyframes spin { 0% { -webkit-transform: rotate(0deg); -ms-transform: rotate(0deg); transform: rotate(0deg) } 100% { -webkit-transform: rotate(360deg); -ms-transform: rotate(360deg); transform: rotate(360deg) } } * { outline: none !important } .view-all-btn { margin-top: 20px } #cookieconsent .message p { line-height: 1.5; letter-spacing: 0.5px }
public/layoutP/css/custom.scss.css
.wrapper-nav { margin: 0 auto; background: transparent } #header { color: #666; font-weight: 400; font-size: 14px; font-family: Work Sans; letter-spacing: 0.1px } #header .nav-header { font-size: 14px; font-weight: 400; position: relative; background: #fafafa; letter-spacing: 0.5px } @media (max-width: 991px) { #header .nav-header { float: none; text-align: center; padding: 5px 0 } } #header .nav-header .header-block { padding: 15px 0; color: #373e4e; text-align: left } @media (max-width: 991px) { #header .nav-header .header-block { text-align: center !important; padding: 4px 0 } } #header .nav-header .header-block .text { font-weight: 400; line-height: 20px; font-size: 14px; font-family: Work Sans; letter-spacing: 0.1px } #header .nav-header .desktop-user-info { text-align: right; padding: 5px 0 } @media (max-width: 991px) { #header .nav-header .desktop-user-info { text-align: center !important; padding: 0 } } #header .nav-header .desktop-user-info .desktop-checkout ul li { position: relative; display: inline-block; vertical-align: middle } #header .nav-header .desktop-user-info .desktop-checkout ul li:last-child:after { display: none } @media (min-width: 992px) { #header .nav-header .desktop-user-info .desktop-checkout ul li:last-child a { padding-right: 0 } } #header .nav-header .desktop-user-info .desktop-checkout ul li:hover a { color: #373e4e } #header .nav-header .desktop-user-info .desktop-checkout ul li:after { content: ''; height: 20px; width: 1px; background: rgba(55, 62, 78, 0.2); position: absolute; right: -3px; top: 10px } @media (max-width: 991px) { #header .nav-header .desktop-user-info .desktop-checkout ul li:after { top: 6px; height: 18px } } #header .nav-header .desktop-user-info .desktop-checkout ul li a { color: #373e4e; font-family: Work Sans; padding: 10px 15px; line-height: 20px; font-size: 14px; font-weight: 400; display: inline-block; vertical-align: middle; position: relative; -webkit-transition: all 0.4s; -moz-transition: all 0.4s; -o-transition: all 0.4s; transition: all 0.4s } @media (max-width: 991px) { #header .nav-header .desktop-user-info .desktop-checkout ul li a { padding: 4px 10px } } #header .header-top { padding: 20px 0; position: relative; text-align: center } @media (max-width: 991px) { #header .header-top { padding: 0 } } @media (min-width: 992px) { #header .header-top>.page-width>.row { display: flex; align-items: center } } #header .header-logo-section { text-align: left; margin: 0 auto } @media (max-width: 991px) { #header .header-logo-section { padding: 25px 15px; text-align: center } } #header .header-logo-section .header__logo { margin: 0 } #header .header-logo-section .header__logo a { display: inline-block; color: #000 } #_desktop_search, #_mobile_search { cursor: pointer; position: relative } @media (max-width: 991px) { #_desktop_search, #_mobile_search { line-height: 0; padding: 5px 0; float: right } } #_desktop_search .search-toggle, #_mobile_search .search-toggle { width: 40px; height: 40px; display: block; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s; cursor: pointer } @media (min-width: 992px) { #_desktop_search .search-toggle, #_mobile_search .search-toggle { display: none } } #_desktop_search .search-toggle svg, #_mobile_search .search-toggle svg { fill: #fff } @media (min-width: 992px) { #_desktop_search .search-info, #_mobile_search .search-info { display: block } } @media (max-width: 991px) { #_desktop_search .search-info, #_mobile_search .search-info { position: absolute; right: 0; top: 50px; z-index: 99 } } #_desktop_search .search-info form, #_mobile_search .search-info form { width: 100%; max-width: 100%; border-radius: 50px; margin: 0 auto } @media (max-width: 991px) { #_desktop_search .search-info form, #_mobile_search .search-info form { border-radius: 0px; background-color: transparent } } @media (max-width: 543px) { #_desktop_search .search-info form, #_mobile_search .search-info form { max-width: 240px } } #_desktop_search .search-info .search__input, #_mobile_search .search-info .search__input { min-width: 280px; width: 100%; border: 2px solid #1a9bdc; height: 44px; padding: 5px 15px; background: #fff; text-transform: capitalize; font-size: 14px; font-weight: 400; border-radius: 0px; letter-spacing: 0.16px; color: #666; padding-right: 45px } @media (max-width: 991px) { #_desktop_search .search-info .search__input, #_mobile_search .search-info .search__input { border: 1px solid #e5e5e5; text-indent: 0; height: 40px } } @media (max-width: 543px) { #_desktop_search .search-info .search__input, #_mobile_search .search-info .search__input { min-width: 240px } } @media (max-width: 375px) { #_desktop_search .search-info .search__input, #_mobile_search .search-info .search__input { min-width: 220px; padding: 5px 10px } } #_desktop_search .search-info .search__input:hover+.btn--link, #_mobile_search .search-info .search__input:hover+.btn--link { opacity: 1 } #_desktop_search .search-info .search__input::placeholder, #_mobile_search .search-info .search__input::placeholder { color: #666; opacity: 1 } #_desktop_search .search-info .search__input:focus, #_mobile_search .search-info .search__input:focus { background: #fff } #_desktop_search .search-info .search-header__submit, #_mobile_search .search-info .search-header__submit { position: absolute; border: none; top: 0px; right: 0px; width: 44px; height: 44px; bottom: 0; background: #1a9bdc; font-size: 14px; font-weight: 400; color: #fff; padding: 0; line-height: 40px; outline: none; border-radius: 0; display: inline-block; vertical-align: middle; -ms-transition: all 0.5s; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } #_desktop_search .search-info .search-header__submit.btn--link:hover, #_desktop_search .search-info .search-header__submit.btn--link:focus, #_mobile_search .search-info .search-header__submit.btn--link:hover, #_mobile_search .search-info .search-header__submit.btn--link:focus { opacity: 1 } @media (max-width: 991px) { #_desktop_search .search-info .search-header__submit, #_mobile_search .search-info .search-header__submit { border-radius: 0; top: 0px; right: 0px; width: 40px; height: 40px; line-height: normal; padding: 0 } } #_desktop_search .search-info .search-header__submit .search-logo i, #_mobile_search .search-info .search-header__submit .search-logo i { font-size: 24px; top: 8px; color: #fff; -ms-transition: all 0.5s; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } @media (max-width: 991px) { #_desktop_search .search-info .search-header__submit .search-logo i, #_mobile_search .search-info .search-header__submit .search-logo i { top: 2px } } #_desktop_search .search-info .search-header__submit .icon__fallback-text, #_mobile_search .search-info .search-header__submit .icon__fallback-text { color: #fff; position: unset !important; margin: 0; width: auto; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s; display: none } #_desktop_search .search-info .search-results li a img, #_mobile_search .search-info .search-results li a img { border: 1px solid #e9e9e9 } #_desktop_search .search-info .search-results li a .price, #_mobile_search .search-info .search-results li a .price { padding-top: 0 } #_desktop_wishlist, #_mobile_wishlist { cursor: pointer; float: right; text-align: right; position: relative; padding: 0; margin-right: 20px; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } @media (max-width: 991px) { #_desktop_wishlist, #_mobile_wishlist { padding: 5px 0; margin: 0 } } #_desktop_wishlist .wishlist-toggle, #_mobile_wishlist .wishlist-toggle { cursor: pointer; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s; cursor: pointer } #_desktop_wishlist .wishlist-toggle .wishlist-logo, #_mobile_wishlist .wishlist-toggle .wishlist-logo { width: 40px; height: 40px; display: block; position: relative; margin: 0 auto } #_desktop_wishlist .wishlist-toggle .wishlist-logo svg, #_mobile_wishlist .wishlist-toggle .wishlist-logo svg { fill: #000; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } @media (max-width: 991px) { #_desktop_wishlist .wishlist-toggle .wishlist-logo svg, #_mobile_wishlist .wishlist-toggle .wishlist-logo svg { fill: #fff } } #_desktop_wishlist .wishlist-toggle .wishlist-logo .wishlist-qty, #_mobile_wishlist .wishlist-toggle .wishlist-logo .wishlist-qty { background-color: #1a9bdc; color: #fff; border-radius: 50%; font-size: 11px; height: 14px; left: auto; right: -10px; top: 0px; line-height: 14px; position: absolute; text-align: center; width: 14px } @media (max-width: 991px) { #_desktop_wishlist .wishlist-toggle .wishlist-logo .wishlist-qty, #_mobile_wishlist .wishlist-toggle .wishlist-logo .wishlist-qty { background-color: #fff; color: #1a9bdc; right: 2px; top: 5px } } #_desktop_wishlist .wishlist-toggle .wishlist-content, #_mobile_wishlist .wishlist-toggle .wishlist-content { text-align: center } #_desktop_wishlist .wishlist-toggle .wishlist-content .wishlist-title, #_mobile_wishlist .wishlist-toggle .wishlist-content .wishlist-title { display: block; color: #373e4e; font-size: 13px; font-weight: 500; line-height: 20px; font-family: Work Sans } #_desktop_user_info, #_mobile_user_info { cursor: pointer; float: right; text-align: right; position: relative; padding: 0 20px 0 0; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } @media (max-width: 991px) { #_desktop_user_info, #_mobile_user_info { padding: 5px 0; margin: 0 } } @media (max-width: 767px) { #_desktop_user_info, #_mobile_user_info { margin: 0 } } #_desktop_user_info .userinfo-toggle, #_mobile_user_info .userinfo-toggle { display: flex; align-items: center } #_desktop_user_info .userinfo-toggle .user-icon, #_mobile_user_info .userinfo-toggle .user-icon { width: 40px; height: 40px; display: block; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s; cursor: pointer } #_desktop_user_info .userinfo-toggle .user-icon svg, #_mobile_user_info .userinfo-toggle .user-icon svg { fill: #000; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } @media (max-width: 991px) { #_desktop_user_info .userinfo-toggle .user-icon svg, #_mobile_user_info .userinfo-toggle .user-icon svg { fill: #fff } } #_desktop_user_info .userinfo-toggle .user-title, #_mobile_user_info .userinfo-toggle .user-title { padding-left: 5px; color: #000; font-size: 16px; font-weight: 700; font-family: Work Sans } #_desktop_cart, #_mobile_cart { text-align: left; white-space: nowrap; position: relative; float: right } @media (max-width: 991px) { #_desktop_cart, #_mobile_cart { padding: 5px; padding-right: 10px } } #_desktop_cart .cart-display .cart-title, #_mobile_cart .cart-display .cart-title { cursor: pointer } #_desktop_cart .cart-display .cart-title .cart-logo, #_mobile_cart .cart-display .cart-title .cart-logo { position: relative; width: 40px; height: 40px; display: block; margin: 0 auto; vertical-align: middle; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } #_desktop_cart .cart-display .cart-title .cart-logo svg, #_mobile_cart .cart-display .cart-title .cart-logo svg { fill: #000; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } @media (max-width: 991px) { #_desktop_cart .cart-display .cart-title .cart-logo svg, #_mobile_cart .cart-display .cart-title .cart-logo svg { fill: #fff } } #_desktop_cart .cart-display .cart-title .cart-logo .cart-qty, #_mobile_cart .cart-display .cart-title .cart-logo .cart-qty { background-color: #1a9bdc; color: #fff; border-radius: 50%; font-size: 11px; height: 14px; left: auto; right: -10px; top: 0px; line-height: 14px; position: absolute; text-align: center; width: 14px } @media (max-width: 991px) { #_desktop_cart .cart-display .cart-title .cart-logo .cart-qty, #_mobile_cart .cart-display .cart-title .cart-logo .cart-qty { background-color: #fff; color: #1a9bdc; right: 5px; top: 5px } } @media (min-width: 992px) { #_desktop_cart .cart-display .cart-title .cart-price, #_mobile_cart .cart-display .cart-title .cart-price { text-align: center; position: relative } } @media (min-width: 992px) { #_desktop_cart .cart-display .cart-title .cart-price .main-title, #_mobile_cart .cart-display .cart-title .cart-price .main-title { color: #373e4e; font-size: 13px; line-height: 20px; font-weight: 500; font-family: Work Sans } } #_desktop_cart .cart-display .cart-dropdown-inner, #_mobile_cart .cart-display .cart-dropdown-inner { position: absolute; z-index: 18; width: 350px; right: 0px; top: 65px; background: #fff none repeat scroll 0 0; border: 1px solid #ebebeb; font-family: Work Sans; left: auto; text-align: left; line-height: 1.25; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } @media (max-width: 991px) { #_desktop_cart .cart-display .cart-dropdown-inner, #_mobile_cart .cart-display .cart-dropdown-inner { top: 50px; right: 15px; width: 300px } } @media (max-width: 543px) { #_desktop_cart .cart-display .cart-dropdown-inner, #_mobile_cart .cart-display .cart-dropdown-inner { width: 280px } } #_desktop_cart .cart-display .cart-dropdown-inner .product-list, #_mobile_cart .cart-display .cart-dropdown-inner .product-list { max-height: 252px; padding: 10px } #_desktop_cart .cart-display .cart-dropdown-inner .product-list .product, #_mobile_cart .cart-display .cart-dropdown-inner .product-list .product { padding-bottom: 10px; position: relative; display: block; overflow: hidden } #_desktop_cart .cart-display .cart-dropdown-inner .product-list .product:last-child, #_mobile_cart .cart-display .cart-dropdown-inner .product-list .product:last-child { padding-bottom: 0 } #_desktop_cart .cart-display .cart-dropdown-inner .product-list .product .product-img, #_mobile_cart .cart-display .cart-dropdown-inner .product-list .product .product-img { width: 85px; display: inline-block; float: left; border: 1px solid #eee } #_desktop_cart .cart-display .cart-dropdown-inner .product-list .product .product-data, #_mobile_cart .cart-display .cart-dropdown-inner .product-list .product .product-data { overflow: hidden; text-align: left; padding: 15px } #_desktop_cart .cart-display .cart-dropdown-inner .product-list .product .product-data span, #_mobile_cart .cart-display .cart-dropdown-inner .product-list .product .product-data span { display: block; cursor: pointer } #_desktop_cart .cart-display .cart-dropdown-inner .product-list .product .product-data .product-title, #_mobile_cart .cart-display .cart-dropdown-inner .product-list .product .product-data .product-title { white-space: normal; display: block; margin-bottom: 5px; font-weight: 400; font-size: 14px; color: #000 } #_desktop_cart .cart-display .cart-dropdown-inner .product-list .product .product-data .product-title:hover, #_mobile_cart .cart-display .cart-dropdown-inner .product-list .product .product-data .product-title:hover { color: #666 } #_desktop_cart .cart-display .cart-dropdown-inner .product-list .product a.remove, #_mobile_cart .cart-display .cart-dropdown-inner .product-list .product a.remove { position: absolute; top: 0; right: 0; cursor: pointer } #_desktop_cart .cart-display .cart-dropdown-inner .product-list .product a.remove i, #_mobile_cart .cart-display .cart-dropdown-inner .product-list .product a.remove i { font-size: 20px; color: #000 } #_desktop_cart .cart-display .cart-dropdown-inner .product-list .product a.remove i:hover, #_mobile_cart .cart-display .cart-dropdown-inner .product-list .product a.remove i:hover { color: #666 } #_desktop_cart .cart-display .cart-dropdown-inner .cart__footer, #_mobile_cart .cart-display .cart-dropdown-inner .cart__footer { padding: 15px; border-top: 1px solid #eee; display: block; position: relative; overflow: hidden } @media (max-width: 543px) { #_desktop_cart .cart-display .cart-dropdown-inner .cart__footer, #_mobile_cart .cart-display .cart-dropdown-inner .cart__footer { padding: 15px 10px } } #_desktop_cart .cart-display .cart-dropdown-inner .cart__footer .grid__item, #_mobile_cart .cart-display .cart-dropdown-inner .cart__footer .grid__item { width: 100%; font-size: 16px; float: left; overflow: hidden } #_desktop_cart .cart-display .cart-dropdown-inner .cart__footer .grid__item .cart-links, #_mobile_cart .cart-display .cart-dropdown-inner .cart__footer .grid__item .cart-links { text-align: center } #_desktop_cart .cart-display .cart-dropdown-inner .cart__footer .grid__item .cart-links .btn, #_mobile_cart .cart-display .cart-dropdown-inner .cart__footer .grid__item .cart-links .btn { -webkit-transition: all 0.4s; -moz-transition: all 0.4s; -o-transition: all 0.4s; transition: all 0.4s } #_desktop_cart .cart-display .cart-dropdown-inner .cart__footer .grid__item .cart-links .btn.view-cart, #_mobile_cart .cart-display .cart-dropdown-inner .cart__footer .grid__item .cart-links .btn.view-cart { background-color: #000; border-color: #000; color: #fff } #_desktop_cart .cart-display .cart-dropdown-inner .cart__footer .grid__item .cart-links .btn.view-cart:hover, #_mobile_cart .cart-display .cart-dropdown-inner .cart__footer .grid__item .cart-links .btn.view-cart:hover { background-color: #1a9bdc; border-color: #1a9bdc; color: #fff } #_desktop_cart .cart-display .cart-dropdown-inner .cart__empty, #_mobile_cart .cart-display .cart-dropdown-inner .cart__empty { padding: 10px; color: #666666 } #ishiheaderlinks_block { position: relative; display: inline-block; vertical-align: middle; float: left; padding: 0px 15px } @media (min-width: 1200px) { #ishiheaderlinks_block { padding: 13px 15px } } @media (max-width: 991px) { #ishiheaderlinks_block { padding: 5px; float: right } } #ishiheaderlinks_block .bullet { margin: 0 } #ishiheaderlinks_block .bullet li { display: inline-block; vertical-align: middle; position: relative } #ishiheaderlinks_block .bullet li a { color: #373e4e; font-size: 15px; line-height: 16px; font-weight: 500; padding: 0 12px; text-decoration: none; -webkit-transition: all 0.3s; -moz-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s } @media (max-width: 991px) { #ishiheaderlinks_block .bullet li a { margin: 0 8px } } #ishiheaderlinks_block .bullet li a:hover { color: #1a9bdc } @media (max-width: 543px) { #ishiheaderlinks_block .bullet li a { font-size: 14px } } #ishiheaderlinks_block .bullet li .viewmore:before { content: '\f0d7'; position: absolute; top: 0px; right: 0; font-family: FontAwesome } #ishiheaderlinks_block .bullet li .headerlink-dropdown { position: absolute; top: 170%; right: 0; visibility: hidden; background: #fff; overflow: hidden; text-align: left; padding: 5px; opacity: 0; z-index: 1; width: 200px; border: 1px solid #ebebeb; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } #ishiheaderlinks_block .bullet li .headerlink-dropdown ul li { line-height: 28px } #ishiheaderlinks_block .bullet li .headerlink-dropdown ul li a { padding: 0 10px } #ishiheaderlinks_block .bullet li:hover .headerlink-dropdown { top: 120%; opacity: 1; visibility: visible } #ishiheaderlinks_block .bullet.small { display: none } @media (max-width: 1199px) { #ishiheaderlinks_block .bullet.small { display: block; visibility: hidden; opacity: 0; padding: 10px; top: 120%; position: absolute; right: auto; left: 0; z-index: 2; background: #fff; border: 1px solid #ebebeb; width: 200px; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } } @media (max-width: 991px) { #ishiheaderlinks_block .bullet.small { top: 140%; right: 0; left: auto } } @media (max-width: 543px) { #ishiheaderlinks_block .bullet.small { width: 170px } } #ishiheaderlinks_block .bullet.small li { display: block; line-height: 28px; text-align: left } #ishiheaderlinks_block .bullet.small li a { padding: 0 10px; margin: 0 } @media (max-width: 543px) { #ishiheaderlinks_block .bullet.small li a { padding: 0 5px } } #ishiheaderlinks_block .header-link { cursor: pointer; position: relative; padding: 3px 0 } @media (max-width: 991px) { #ishiheaderlinks_block .header-link { padding: 0 } } #ishiheaderlinks_block .header-link .link-icon { width: 40px; height: 40px; display: inline-block; vertical-align: middle } #ishiheaderlinks_block .header-link .link-icon svg { fill: #000; display: inline-block; vertical-align: middle } @media (max-width: 991px) { #ishiheaderlinks_block .header-link .link-icon svg { fill: #fff } } #ishiheaderlinks_block .header-link .small-title { margin: 0; padding: 5px; font-size: 15px; font-weight: 500; position: relative; display: inline-block; vertical-align: middle } @media (max-width: 991px) { #ishiheaderlinks_block .header-link .small-title { display: none } } @media (max-width: 1199px) { #ishiheaderlinks_block:hover .header-link .small { top: 100%; opacity: 1; visibility: visible } } @media (max-width: 991px) { #ishiheaderlinks_block:hover .header-link .small { top: 112% } } #shopify-section-Ishi_offer { display: inline-block; float: right; overflow: hidden; text-align: center; min-width: 300px } #ishioffersblock { padding: 9px 15px; background: #fafafa; border: 1px solid #e9e9e9; display: flex; align-items: center } #ishioffersblock .offer-title { margin: 0; float: left } #ishioffersblock .offer-img { width: 26px; height: 26px; margin-right: 10px } #ishioffersblock .offer-img svg { fill: #444 } #ishioffersblock .typed { display: inline-block; vertical-align: middle; position: relative; text-align: left; font-size: 14px; letter-spacing: 0.2px; font-weight: 500 } #ishioffersblock .typed a { color: #444; text-align: center } #ishioffersblock .typed a:hover { color: #444 } .offerstitle { display: none } .navfullwidth { position: relative; background-color: #fff; padding-bottom: 10px } .fixed-header { background-color: #fff; position: fixed !important; top: 0 !important; padding: 0; left: 0; width: 100%; max-width: 100% !important; z-index: 99; right: 0; padding: 0; box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.1); margin: 0 !important; border-radius: 0 !important; animation: slide-down 0.7s; -moz-animation: slide-down 0.7s; -webkit-animation: slide-down 0.7s; -o-animation: slide-down 0.7s; overflow: visible } .fixed-header #shopify-section-Ishi_megamenu { margin: 0 } @keyframes slide-down { 0% { transform: translateY(-100%); -webkit-transform: translateY(-100%); -ms-transform: translateY(-100%); -o-transform: translateY(-100%); -moz-transform: translateY(-100%) } 100% { transform: translateY(0); -webkit-transform: translateY(0); -ms-transform: translateY(0); -o-transform: translateY(0); -moz-transform: translateY(0) } } #mobile_top_menu_wrapper { position: fixed; top: 0; left: 0; width: 300px; bottom: 0; background: white; z-index: 999; overflow-y: auto; overflow-x: auto } #mobile_top_menu_wrapper #top_menu_closer { cursor: pointer; padding: 15px 15px 10px; text-align: right } #mobile_top_menu_wrapper #top_menu_closer i { font-size: 24px; color: #000 } #mobile_top_menu_wrapper #_mobile_top_menu { padding: 0 15px } #mobile_top_menu_wrapper #top-menu { margin-bottom: 0; text-align: left; display: block; padding: 0 } #mobile_top_menu_wrapper .top-menu .collapse-icons[aria-expanded="true"] .add { display: none } #mobile_top_menu_wrapper .top-menu .collapse-icons[aria-expanded="true"] .remove { display: block } #mobile_top_menu_wrapper .top-menu .collapse-icons .remove { display: none } #mobile_top_menu_wrapper .top-menu .navbar-toggler { display: inline-block; padding: 0; position: absolute; right: 0; cursor: pointer; color: #333 } #mobile_top_menu_wrapper .top-menu .navbar-toggler i { font-size: 24px } #mobile_top_menu_wrapper .top-menu a { padding: 0; margin: 0 } #mobile_top_menu_wrapper .top-menu .collapse { display: none } #mobile_top_menu_wrapper .top-menu .collapse.in { display: block } #mobile_top_menu_wrapper .top-menu .sub-menu { box-shadow: none; z-index: inherit; display: block; position: static; overflow: hidden; margin-left: 0; width: 100%; min-width: 100%; border: none } #mobile_top_menu_wrapper .top-menu .sub-menu.collapse { display: none } #mobile_top_menu_wrapper .top-menu .sub-menu.collapse.in { display: block } #mobile_top_menu_wrapper .top-menu .sub-menu ul { margin: 0; padding: 0 } #mobile_top_menu_wrapper .top-menu .sub-menu ul>li { float: none; margin: 0 } #mobile_top_menu_wrapper .top-menu .sub-menu ul>li a { text-transform: none } #mobile_top_menu_wrapper .top-menu .sub-menu ul { padding: 10px 0 0 15px } #mobile_top_menu_wrapper .top-menu .sub-menu .mainmenu-dropdown li a { display: inline-block } #mobile_top_menu_wrapper .top-menu .sub-menu .mainmenu-dropdown .sub-category .top-menu .category { padding: 10px 0 5px } #mobile_top_menu_wrapper .top-menu .sub-menu .mainmenu-dropdown .sub-category .top-menu .category a { font-size: 14px } #mobile_top_menu_wrapper .top-menu .popover { border-radius: 0 } .mobile-menu-overlay { background-color: rgba(0, 0, 0, 0.5); height: 100%; left: 0; opacity: 0; position: fixed; top: 0; transition: opacity 200ms, visibility 0ms 200ms; visibility: hidden; width: 100%; z-index: 998 } .mobile-menu-overlay.active { opacity: 1; visibility: visible } .mobile-width { width: 100% !important } @media (max-width: 991px) { .mobile-width { background-color: #1a9bdc } } .mobile-width .mobile_search { padding: 0 !important } .mobile-width .mobile-width-left { float: left; padding: 5px } .mobile-width .mobile-width-left #menu-icon { cursor: pointer; width: 40px; height: 40px } .mobile-width .mobile-width-left #menu-icon svg { fill: #fff } .mobile-width .mobile-width-right { float: right } .mobile-width .mobile-width-right>div { float: right !important } #_desktop_top_menu { position: relative; margin: 0; float: left; display: inline-block; vertical-align: middle } #_desktop_top_menu .home-title { background-color: #1a9bdc; color: #fff; font-size: 15px; font-weight: 500; text-align: left; padding: 15px 45px 15px 15px; margin: 0; text-transform: unset; font-family: Work Sans; width: 269px; line-height: 16px; letter-spacing: 0px; cursor: pointer; border: 0; background-image: none; position: relative } #_desktop_top_menu .home-title:after { display: none } #_desktop_top_menu .wrapper-menu { width: 18px; height: 14px; display: flex; position: absolute; top: 16px; right: 15px; flex-direction: column; justify-content: space-between; cursor: pointer; transition: transform 330ms ease-out } #_desktop_top_menu .wrapper-menu.open { transform: rotate(-45deg) } #_desktop_top_menu .wrapper-menu.open .line-menu.start { transform: rotate(-90deg) translateX(3px) } #_desktop_top_menu .wrapper-menu.open .line-menu.end { transform: rotate(-90deg) translateX(-3px) } #_desktop_top_menu .wrapper-menu .line-menu { background-color: #fff; border-radius: 5px; width: 100%; height: 2px } #_desktop_top_menu .wrapper-menu .line-menu:after { content: ''; position: absolute; left: 0; width: 0; height: 2px; border-radius: 5px; background: #fff; transition: all 0.3s; transition-delay: 0.1s } #_desktop_top_menu .wrapper-menu .line-menu:nth-child(2n+1):after { transition-delay: 0.2s } #_desktop_top_menu .wrapper-menu .line-menu:nth-child(2n+2):after { transition-delay: 0.3s } #_desktop_top_menu .wrapper-menu .line-menu:nth-child(2n+3):after { transition-delay: 0.4s; right: 0; left: auto } #_desktop_top_menu .wrapper-menu .line-menu.half { width: 50% } #_desktop_top_menu .wrapper-menu .line-menu.start { transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57); transform-origin: right } #_desktop_top_menu .wrapper-menu .line-menu.end { align-self: flex-end; transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57); transform-origin: left } #_desktop_top_menu:hover .wrapper-menu.open .line-menu:after { display: none } #_desktop_top_menu:hover .wrapper-menu .line-menu:nth-child(2n+1):after { width: 50% } #_desktop_top_menu:hover .wrapper-menu .line-menu:nth-child(2n+2):after { width: 100% } #_desktop_top_menu:hover .wrapper-menu .line-menu:nth-child(2n+3):after { width: 50% } #_desktop_top_menu #top-menu .sub-menu { top: 5px; left: 115%; border: none; width: auto; z-index: 18; overflow: hidden; padding: 15px 0; border-radius: 0; visibility: hidden; -webkit-transition: all 0.3s; -moz-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; text-align: center } #_desktop_top_menu #top-menu .sub-menu.collapse { opacity: 0; -webkit-transition: opacity .4s, left .4s, right .4s, visibility .4s; -o-transition: opacity .4s, left .4s, right .4s, visibility .4s; transition: opacity .4s, left .4s, right .4s, visibility .4s; box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1) } @media screen and (min-width: 992px) and (max-width: 1199px) { #_desktop_top_menu #top-menu .sub-menu { left: 38% } } #_desktop_top_menu #top-menu>li:hover .sub-menu { left: 100%; opacity: 1; visibility: visible } @media screen and (min-width: 992px) and (max-width: 1199px) { #_desktop_top_menu #top-menu>li:hover .sub-menu { left: 38% } } #_desktop_top_menu #top-menu>li:hover .sub-menu.collapse { opacity: 1 } @media (min-width: 992px) { #top-menu { position: absolute; top: 46px; left: 0px; right: 0px; z-index: 9; display: none; background-color: #fff; border: 1px solid #e8eef6 } } #top-menu h3 { position: relative; -webkit-transition: all 0.3s; -moz-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; margin: 0; letter-spacing: 0.5px; font-family: Work Sans; font-size: 15px } @media (min-width: 992px) { #top-menu h3 { font-weight: 500; font-size: 16px } } #top-menu>li { display: block; text-align: left; position: relative } @media (min-width: 992px) { #top-menu>li { border-bottom: 1px solid #e8eef6 } } #top-menu>li:last-child { border-bottom: 0 } @media (max-width: 991px) { #top-menu>li { display: block; padding: 15px 0; border-bottom: 1px solid #eee } #top-menu>li:last-child { border-bottom: none } } #top-menu>li .dropdown-item { white-space: normal } #top-menu>li>a { display: block; padding: 15px; position: relative; overflow: hidden } @media (max-width: 991px) { #top-menu>li>a { display: inline-block; vertical-align: middle } } #top-menu>li>a .title { color: #373e4e; display: inline-block; vertical-align: middle; text-transform: capitalize; font-weight: 400; font-size: 15px; font-family: Work Sans; -webkit-transition: all 0.3s; -moz-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s } @media (max-width: 991px) { #top-menu>li>a .title { float: left; color: #000; line-height: 20px; font-weight: 400; font-size: 16px } } #top-menu>li>a i { float: right; line-height: 16px; color: #373e4e } #top-menu>li>a span { background: #ff0000 none repeat scroll 0 0; border-radius: 2px; font-size: 9px; font-weight: 500; left: -3px; padding: 1px 6px; position: relative; top: -14px; text-transform: unset; letter-spacing: 0.5px; color: #fff } @media (max-width: 991px) { #top-menu>li>a span { padding: 0 3px; top: 0px; float: right; left: auto; right: 0; position: relative; margin: 0 6px; display: none } } #top-menu>li>a span:before { width: 0; height: 0; content: ""; position: absolute; bottom: -3px; left: 0; border: 3px solid; border-top-color: currentcolor; border-right-color: currentcolor; border-bottom-color: currentcolor; border-left-color: currentcolor; border-color: #ff0000 transparent transparent #ff0000 } #top-menu>li>a span.new { background: #000 none repeat scroll 0 0 } #top-menu>li>a span.new:before { border-color: #000 transparent transparent #000 } @media (min-width: 992px) { #top-menu>li>a span.new:before { border-top: 5px solid #000 } } #top-menu>li>a span.sale { background: #7fbc1e none repeat scroll 0 0 } #top-menu>li>a span.sale:before { border-color: #7fbc1e transparent transparent #7fbc1e } @media (min-width: 992px) { #top-menu>li>a span.sale:before { border-top: 5px solid #7fbc1e } } @media (min-width: 992px) { #top-menu>li>a:hover .title { color: #1a9bdc } } .top-menu.mainmenu-dropdown { display: block; overflow: hidden } .top-menu.mainmenu-dropdown .sub-category { text-align: left; float: left; margin-left: 20px; min-width: 182px } @media (max-width: 991px) { .top-menu.mainmenu-dropdown .sub-category { padding: 10px 0 } } .top-menu.mainmenu-dropdown .sub-category>a { padding-bottom: 4px; margin-bottom: 17px; position: relative } .top-menu.mainmenu-dropdown .sub-category>a:before { border-top: 1px solid #ddd; bottom: -7px; content: ""; position: absolute; left: 0; width: 50% } @media (max-width: 991px) { .top-menu.mainmenu-dropdown .sub-category>a:before { display: none } } .top-menu.mainmenu-dropdown .sub-category>a h3 { color: #000; display: block; text-transform: unset; font-weight: 400; font-size: 14px } @media (min-width: 992px) { .top-menu.mainmenu-dropdown .sub-category>a h3 { font-size: 15px } } .top-menu.mainmenu-dropdown .sub-category ul .category:last-child a { padding-bottom: 0 } .top-menu.mainmenu-dropdown li a { font-family: Work Sans; padding-bottom: 12px; font-size: 14px; display: block; color: #373e4e; font-weight: 400; letter-spacing: 0.5px; -webkit-transition: all 0.3s; -moz-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s } @media (max-width: 991px) { .top-menu.mainmenu-dropdown li a { color: #000 } } @media (min-width: 992px) { .top-menu.mainmenu-dropdown li a:hover { color: #000 } } .top-menu .collapse { display: inherit } .top-menu .popover { max-width: inherit } .img-container { clear: both; margin-top: 20px } @media (max-width: 991px) { .img-container { display: none } } .grid__item--Ishi_megamenu { padding: 0 } .grid__item--Ishi_megamenu .grid-view-item__image-container { position: relative; width: 100%; overflow: hidden; display: block } .grid__item--Ishi_megamenu .grid-view-item__image-container .grid-view-item__image-wrapper { width: 130px; margin: 0 } .grid__item--Ishi_megamenu .grid-view-item__image-container .grid-view-item__image-wrapper a { padding: 0 } .grid__item--Ishi_megamenu .grid-view-item__image-container .grid-view-item__image-wrapper a img { border: 1px solid #e9e9e9; position: relative } .grid__item--Ishi_megamenu .grid-view-item__image-container .product-description { text-align: left; margin-top: 5px } .grid__item--Ishi_megamenu .grid-view-item__image-container .product-description a { padding-bottom: 2px } .grid__item--Ishi_megamenu .grid-view-item__image-container .product-description .product-detail .grid-view-item__title { display: block; color: #525d70; font-size: 15px; font-weight: 400; margin-bottom: 3px } .grid__item--Ishi_megamenu .grid-view-item__image-container .product-description .grid-view-item__meta { font-family: Work Sans; font-size: 14px; font-weight: 400 } .grid__item--Ishi_megamenu .grid-view-item__image-container .product-description .grid-view-item__meta .regular { color: #878e9e; font-size: 14px; font-weight: 400 } .grid__item--Ishi_megamenu .grid-view-item__image-container .product-description .grid-view-item__meta .is-bold { font-size: 16px; font-weight: 500; color: #373e4e } .grid__item--Ishi_megamenu .grid-view-item__image-container .product-description .grid-view-item__meta .discount-percentage { margin: 0 4px; color: #1a9bdc; display: none } .grid__item--Ishi_megamenu .grid-view-item__image-container .product-description .grid-view-item__meta .discount-percentage span { display: none } .grid__item--Ishi_megamenu .grid-view-item__image-container .product-description .grid-view-item__meta .visually-hidden, .grid__item--Ishi_megamenu .grid-view-item__image-container .product-description .grid-view-item__meta .product-price__sold-out { display: none } .ishi-slider-section { overflow: hidden } #ishislideshow-carousel { position: relative } #ishislideshow-carousel .owl-nav { margin-bottom: 0; margin-top: 0 } @media (max-width: 767px) { #ishislideshow-carousel .owl-nav { display: none } } #ishislideshow-carousel .owl-nav .owl-prev, #ishislideshow-carousel .owl-nav .owl-next { position: absolute; padding: 0; top: 45%; margin: 0px; left: 20px; right: auto; display: inline-block; width: 40px; height: 40px; opacity: 0; background-color: #1a9bdc; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -ms-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s; -moz-transform: translateX(-100px); -webkit-transform: translateX(-100px); -o-transform: translateX(-100px); -ms-transform: translateX(-100px) } #ishislideshow-carousel .owl-nav .owl-prev i, #ishislideshow-carousel .owl-nav .owl-next i { width: 40px; height: 40px } #ishislideshow-carousel .owl-nav .owl-prev i:before, #ishislideshow-carousel .owl-nav .owl-next i:before { color: #fff; width: 40px; height: 40px; line-height: 40px; font-size: 26px } #ishislideshow-carousel .owl-nav .owl-prev:hover, #ishislideshow-carousel .owl-nav .owl-next:hover { background-color: #000; border-color: #000 } #ishislideshow-carousel .owl-nav .owl-prev:hover i:before, #ishislideshow-carousel .owl-nav .owl-next:hover i:before { color: #fff } #ishislideshow-carousel .owl-nav .owl-next { right: 20px; left: auto; -moz-transform: translateX(100px); -webkit-transform: translateX(100px); -o-transform: translateX(100px); -ms-transform: translateX(100px) } #ishislideshow-carousel .owl-dots { position: absolute; bottom: 10px; right: 0; left: 0; margin: 0 auto; text-align: center; -webkit-transition: all 0.3s; -moz-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s } #ishislideshow-carousel .owl-dots .owl-dot { display: inline-block; vertical-align: middle } #ishislideshow-carousel .owl-dots .owl-dot span { margin: 0 5px; cursor: pointer; width: 12px; height: 12px; background-color: #000; border-radius: 0; display: block } #ishislideshow-carousel .owl-dots .owl-dot.active span, #ishislideshow-carousel .owl-dots .owl-dot:hover span { background-color: #1a9bdc } #ishislideshow-carousel:hover .owl-nav .owl-prev, #ishislideshow-carousel:hover .owl-nav .owl-next { opacity: 1; -moz-transform: translate(0); -webkit-transform: translate(0); -o-transform: translate(0); -ms-transform: translate(0) } .ishi-product-block-section .ishiproduct-block { overflow: hidden } @media (max-width: 991px) { .ishi-product-block-section .ishiproduct-block { padding: 40px 0 !important } } .ishi-product-block-section .ishiproduct-block.productbgimage { background-size: cover; background-repeat: no-repeat; background-position: center } .ishi-product-block-section .ishiproduct-block.product-bgcolor { display: block; position: relative; width: 100% } @media (min-width: 992px) { .ishi-product-block-section .ishiproduct-block .owl-nav { margin-top: 15px } } @media (max-width: 543px) { .ishi-product-block-section .ishiproduct-block .owl-nav { margin-top: 25px } } .ishi-product-block-section .products-tab { border: none; text-align: center; position: relative; display: block; margin-bottom: 0; font-size: 0 } @media (max-width: 543px) { .ishi-product-block-section .products-tab { margin-bottom: 10px } } .ishi-product-block-section .products-tab .nav-item { display: inline-block; vertical-align: middle; float: none; margin: 0 10px 15px; border: none; padding: 0; border-radius: 0 } @media (max-width: 543px) { .ishi-product-block-section .products-tab .nav-item { display: block; margin-bottom: 7px } } .ishi-product-block-section .products-tab .nav-item .nav-link { background: #fff none repeat scroll 0 0; border: 1px solid #e8eef6; display: inline-block; vertical-align: middle; font-family: Work Sans; color: #525d70; font-weight: 400; font-size: 16px; letter-spacing: 0px; margin: 0; border-radius: 0px; outline: medium none; padding: 10px 20px; line-height: 18px; position: relative; transition: all 400ms ease-in-out 0s; -webkit-transition: all 400ms ease-in-out 0s; -ms-transition: all 400ms ease-in-out 0s; -moz-transition: all 400ms ease-in-out 0s; -o-transition: all 400ms ease-in-out 0s } .ishi-product-block-section .products-tab .nav-item .nav-link:before { position: absolute; content: ""; height: 8px; width: 8px; background: #fff; left: 16px; top: 0; bottom: 0; text-align: center; margin: auto; border-radius: 50%; display: none } .ishi-product-block-section .products-tab .nav-item .nav-link:hover { background: #1a9bdc; border-color: #1a9bdc; color: #fff } .ishi-product-block-section .products-tab .nav-item.active .nav-link { background: #1a9bdc; color: #fff; border-color: #1a9bdc; padding-left: 30px } .ishi-product-block-section .products-tab .nav-item.active .nav-link:before { display: block } .products-display a:hover { color: #000 } .products-display .product-desc { display: none } @media (max-width: 543px) { .products-display { padding: 0 5px } } .products-display .grid__item, .products-display .list__item { -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -ms-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s; padding: 15px } @media (max-width: 543px) { .products-display .grid__item, .products-display .list__item { padding: 5px 5px } } .products-display .grid__item .grid-view-item, .products-display .list__item .grid-view-item { overflow: hidden; background: #fff; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -ms-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } .products-display .grid__item .grid-view-item.grid-view-item--sold-out .grid-view-item__image-container .grid-view-item__image-wrapper .outstock-overlay, .products-display .list__item .grid-view-item.grid-view-item--sold-out .grid-view-item__image-container .grid-view-item__image-wrapper .outstock-overlay { position: absolute; background: #c92c2c; text-align: center; padding: 7px; width: auto; color: #ffffff; display: block; font-size: 9px; font-weight: 600; border-radius: 4px; top: 10px; right: 10px; line-height: 10px; -webkit-transition: all .5s ease-in-out; -moz-transition: all .5s ease-in-out; -o-transition: all .5s ease-in-out; transition: all .5s ease-in-out } @media (max-width: 543px) { .products-display .grid__item .grid-view-item.grid-view-item--sold-out .grid-view-item__image-container .grid-view-item__image-wrapper .outstock-overlay, .products-display .list__item .grid-view-item.grid-view-item--sold-out .grid-view-item__image-container .grid-view-item__image-wrapper .outstock-overlay { display: none } } .products-display .grid__item .grid-view-item .grid-view-item__image-container, .products-display .list__item .grid-view-item .grid-view-item__image-container { -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -ms-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper, .products-display .list__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper { overflow: hidden; position: relative; margin: 0 } .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .grid-view-item__image, .products-display .list__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .grid-view-item__image { position: relative; top: 0 } .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .spr-badge, .products-display .list__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .spr-badge { position: absolute; left: 0; right: 0; text-align: center; margin: 0 auto; bottom: 10px; -webkit-transition: all .5s; -moz-transition: all .5s; -o-transition: all .5s; transition: all .5s; transition-delay: 0.4s } @media (max-width: 349px) { .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .spr-badge, .products-display .list__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .spr-badge { bottom: 5px } } .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .outstock-overlay, .products-display .list__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .outstock-overlay { display: none } .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper a, .products-display .list__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper a { display: block; position: relative } .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper a .image-inner, .products-display .list__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper a .image-inner { background: #fff } .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description { background: #fff; padding: 12px 3px 14px; text-align: center; position: relative; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -ms-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description:before, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description:before { position: absolute; content: ""; top: 0; right: 15px; left: 15px; width: auto; height: 1px; background: #f3f6fa } .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .product-detail, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .product-detail { margin-bottom: 12px } .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .product-detail .grid-view-item__title, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .product-detail .grid-view-item__title { font-family: Work Sans; color: #525d70; font-size: 16px; text-decoration: none; font-weight: 400; letter-spacing: 0.1px; margin-bottom: 0; text-transform: capitalize } @media (max-width: 543px) { .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .product-detail .grid-view-item__title, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .product-detail .grid-view-item__title { font-size: 14px } } .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta { font-family: Work Sans; color: #000; font-size: 15px; font-weight: 400; margin-bottom: 12px; -webkit-transition: all .5s; -moz-transition: all .5s; -o-transition: all .5s; transition: all .5s } @media (max-width: 543px) { .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta { font-size: 14px } } .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .regular, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .regular { position: relative; color: #878e9e; font-size: 15px; font-weight: 400; display: inline-block; vertical-align: middle } @media (max-width: 543px) { .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .regular, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .regular { font-size: 14px } } @media (max-width: 349px) { .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .regular, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .regular { font-size: 13px } } .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .discount-percentage, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .discount-percentage { color: #1a9bdc; margin: 0 5px; font-size: 15px; font-weight: 400; display: none } @media (max-width: 543px) { .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .discount-percentage, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .discount-percentage { margin: 0 3px; font-size: 14px } } @media (max-width: 349px) { .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .discount-percentage, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .discount-percentage { font-size: 13px; margin: 0 1px } } .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .discount-percentage span, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .discount-percentage span { display: none } .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .product-price__sale, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .product-price__sale { display: inline-block; vertical-align: middle } .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .is-bold, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .is-bold { font-size: 18px; font-weight: 500; color: #373e4e } @media (max-width: 543px) { .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .is-bold, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .is-bold { font-size: 16px } } @media (max-width: 349px) { .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .is-bold, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .is-bold { font-size: 14px } } .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .is-bold .money, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .is-bold .money { text-decoration: none } .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .product-price__sold-out, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .product-price__sold-out { display: none } @media (min-width: 768px) { .products-display .grid__item .grid-view-item:hover .extra-img, .products-display .list__item .grid-view-item:hover .extra-img { opacity: 1; -moz-transform: scale(1, 1); -webkit-transform: scale(1, 1); -o-transform: scale(1, 1); -ms-transform: scale(1, 1); transform: scale(1, 1); -webkit-transition: all 0.7s; -moz-transition: all 0.7s; -ms-transition: all 0.7s; -o-transition: all 0.7s; transition: all 0.7s } } .products-display .grid__item .spr-badge, .products-display .list__item .spr-badge { margin-bottom: 0px } .products-display .grid__item .spr-badge i, .products-display .list__item .spr-badge i { position: relative; opacity: 1; height: 16px; width: 16px; display: inline-block; top: 0px; vertical-align: top; font-style: normal } .products-display .grid__item .spr-badge i.spr-icon:after, .products-display .list__item .spr-badge i.spr-icon:after { content: "\F005"; font-family: "FontAwesome"; color: #ccc; font-size: 14px; -webkit-transition: all 0.7s; -moz-transition: all 0.7s; -ms-transition: all 0.7s; -o-transition: all 0.7s; transition: all 0.7s } .products-display .grid__item .spr-badge i.spr-icon-star-empty:before, .products-display .list__item .spr-badge i.spr-icon-star-empty:before { display: none !important } .products-display .grid__item .spr-badge i.spr-icon-star:before, .products-display .grid__item .spr-badge i.spr-icon-star-half-alt:before, .products-display .list__item .spr-badge i.spr-icon-star:before, .products-display .list__item .spr-badge i.spr-icon-star-half-alt:before { display: none !important; content: '\F005'; font-family: "FontAwesome"; color: #f5cb0c; position: absolute; left: 0; right: 0; top: 30px; font-size: 14px; -webkit-transition: all 0.7s; -moz-transition: all 0.7s; -ms-transition: all 0.7s; -o-transition: all 0.7s; transition: all 0.7s } .products-display .grid__item .spr-badge i.spr-icon-star:after, .products-display .grid__item .spr-badge i.spr-icon-star-half-alt:after, .products-display .list__item .spr-badge i.spr-icon-star:after, .products-display .list__item .spr-badge i.spr-icon-star-half-alt:after { content: "\F005"; font-family: "FontAwesome"; color: #f5cb0c; font-size: 14px; -webkit-transition: all 0.7s; -moz-transition: all 0.7s; -ms-transition: all 0.7s; -o-transition: all 0.7s; transition: all 0.7s } .products-display .grid__item .spr-badge i.spr-icon-star:nth-child(2n+1):before, .products-display .grid__item .spr-badge i.spr-icon-star-half-alt:nth-child(2n+1):before, .products-display .list__item .spr-badge i.spr-icon-star:nth-child(2n+1):before, .products-display .list__item .spr-badge i.spr-icon-star-half-alt:nth-child(2n+1):before { -webkit-transition: all .2s ease-in-out; -moz-transition: all .2s ease-in-out; -o-transition: all .2s ease-in-out; transition: all .2s ease-in-out } .products-display .grid__item .spr-badge i.spr-icon-star:nth-child(2n+2):before, .products-display .grid__item .spr-badge i.spr-icon-star-half-alt:nth-child(2n+2):before, .products-display .list__item .spr-badge i.spr-icon-star:nth-child(2n+2):before, .products-display .list__item .spr-badge i.spr-icon-star-half-alt:nth-child(2n+2):before { -webkit-transition: all .4s ease-in-out; -moz-transition: all .4s ease-in-out; -o-transition: all .4s ease-in-out; transition: all .4s ease-in-out } .products-display .grid__item .spr-badge i.spr-icon-star:nth-child(2n+3):before, .products-display .grid__item .spr-badge i.spr-icon-star-half-alt:nth-child(2n+3):before, .products-display .list__item .spr-badge i.spr-icon-star:nth-child(2n+3):before, .products-display .list__item .spr-badge i.spr-icon-star-half-alt:nth-child(2n+3):before { -webkit-transition: all .6s ease-in-out; -moz-transition: all .6s ease-in-out; -o-transition: all .6s ease-in-out; transition: all .6s ease-in-out } .products-display .grid__item .spr-badge i.spr-icon-star:nth-child(2n+4):before, .products-display .grid__item .spr-badge i.spr-icon-star-half-alt:nth-child(2n+4):before, .products-display .list__item .spr-badge i.spr-icon-star:nth-child(2n+4):before, .products-display .list__item .spr-badge i.spr-icon-star-half-alt:nth-child(2n+4):before { -webkit-transition: all .8s ease-in-out; -moz-transition: all .8s ease-in-out; -o-transition: all .8s ease-in-out; transition: all .8s ease-in-out } .products-display .grid__item .spr-badge i.spr-icon-star:nth-child(2n+5):before, .products-display .grid__item .spr-badge i.spr-icon-star-half-alt:nth-child(2n+5):before, .products-display .list__item .spr-badge i.spr-icon-star:nth-child(2n+5):before, .products-display .list__item .spr-badge i.spr-icon-star-half-alt:nth-child(2n+5):before { -webkit-transition: all 1.2s ease-in-out; -moz-transition: all 1.2s ease-in-out; -o-transition: all 1.2s ease-in-out; transition: all 1.2s ease-in-out } .products-display .grid__item .spr-badge i.spr-icon-star-half-alt:before, .products-display .list__item .spr-badge i.spr-icon-star-half-alt:before { content: '\f123' } .products-display .grid__item .spr-badge i.spr-icon-star-half-alt:after, .products-display .list__item .spr-badge i.spr-icon-star-half-alt:after { content: "\f123" } .products-display .grid__item .thumbnail-buttons, .products-display .list__item .thumbnail-buttons { display: block; text-align: center; -webkit-transition: all .5s; -moz-transition: all .5s; -o-transition: all .5s; transition: all .5s } .products-display .grid__item .thumbnail-buttons .quick-view, .products-display .grid__item .thumbnail-buttons .add-to-wishlist, .products-display .grid__item .thumbnail-buttons .product-block-hover, .products-display .list__item .thumbnail-buttons .quick-view, .products-display .list__item .thumbnail-buttons .add-to-wishlist, .products-display .list__item .thumbnail-buttons .product-block-hover { display: inline-block; vertical-align: middle } .products-display .grid__item .thumbnail-buttons .quick-view a, .products-display .grid__item .thumbnail-buttons .quick-view button, .products-display .grid__item .thumbnail-buttons .add-to-wishlist a, .products-display .grid__item .thumbnail-buttons .add-to-wishlist button, .products-display .grid__item .thumbnail-buttons .product-block-hover a, .products-display .grid__item .thumbnail-buttons .product-block-hover button, .products-display .list__item .thumbnail-buttons .quick-view a, .products-display .list__item .thumbnail-buttons .quick-view button, .products-display .list__item .thumbnail-buttons .add-to-wishlist a, .products-display .list__item .thumbnail-buttons .add-to-wishlist button, .products-display .list__item .thumbnail-buttons .product-block-hover a, .products-display .list__item .thumbnail-buttons .product-block-hover button { width: 34px; display: inline-block; vertical-align: middle; height: 34px; box-shadow: none; position: relative; background: #fbfafd; -webkit-transition: all .5s; -moz-transition: all .5s; -o-transition: all .5s; transition: all .5s; border: none; padding: 0 } .products-display .grid__item .thumbnail-buttons .quick-view a svg, .products-display .grid__item .thumbnail-buttons .quick-view button svg, .products-display .grid__item .thumbnail-buttons .add-to-wishlist a svg, .products-display .grid__item .thumbnail-buttons .add-to-wishlist button svg, .products-display .grid__item .thumbnail-buttons .product-block-hover a svg, .products-display .grid__item .thumbnail-buttons .product-block-hover button svg, .products-display .list__item .thumbnail-buttons .quick-view a svg, .products-display .list__item .thumbnail-buttons .quick-view button svg, .products-display .list__item .thumbnail-buttons .add-to-wishlist a svg, .products-display .list__item .thumbnail-buttons .add-to-wishlist button svg, .products-display .list__item .thumbnail-buttons .product-block-hover a svg, .products-display .list__item .thumbnail-buttons .product-block-hover button svg { fill: #373e4e } .products-display .grid__item .thumbnail-buttons .quick-view a span, .products-display .grid__item .thumbnail-buttons .quick-view button span, .products-display .grid__item .thumbnail-buttons .add-to-wishlist a span, .products-display .grid__item .thumbnail-buttons .add-to-wishlist button span, .products-display .grid__item .thumbnail-buttons .product-block-hover a span, .products-display .grid__item .thumbnail-buttons .product-block-hover button span, .products-display .list__item .thumbnail-buttons .quick-view a span, .products-display .list__item .thumbnail-buttons .quick-view button span, .products-display .list__item .thumbnail-buttons .add-to-wishlist a span, .products-display .list__item .thumbnail-buttons .add-to-wishlist button span, .products-display .list__item .thumbnail-buttons .product-block-hover a span, .products-display .list__item .thumbnail-buttons .product-block-hover button span { display: none; color: #373e4e; -webkit-transition: all .5s; -moz-transition: all .5s; -o-transition: all .5s; transition: all .5s } .products-display .grid__item .thumbnail-buttons .quick-view:hover button, .products-display .grid__item .thumbnail-buttons .quick-view:hover a, .products-display .grid__item .thumbnail-buttons .add-to-wishlist:hover button, .products-display .grid__item .thumbnail-buttons .add-to-wishlist:hover a, .products-display .grid__item .thumbnail-buttons .product-block-hover:hover button, .products-display .grid__item .thumbnail-buttons .product-block-hover:hover a, .products-display .list__item .thumbnail-buttons .quick-view:hover button, .products-display .list__item .thumbnail-buttons .quick-view:hover a, .products-display .list__item .thumbnail-buttons .add-to-wishlist:hover button, .products-display .list__item .thumbnail-buttons .add-to-wishlist:hover a, .products-display .list__item .thumbnail-buttons .product-block-hover:hover button, .products-display .list__item .thumbnail-buttons .product-block-hover:hover a { background-color: #1a9bdc } .products-display .grid__item .thumbnail-buttons .quick-view:hover button svg, .products-display .grid__item .thumbnail-buttons .quick-view:hover a svg, .products-display .grid__item .thumbnail-buttons .add-to-wishlist:hover button svg, .products-display .grid__item .thumbnail-buttons .add-to-wishlist:hover a svg, .products-display .grid__item .thumbnail-buttons .product-block-hover:hover button svg, .products-display .grid__item .thumbnail-buttons .product-block-hover:hover a svg, .products-display .list__item .thumbnail-buttons .quick-view:hover button svg, .products-display .list__item .thumbnail-buttons .quick-view:hover a svg, .products-display .list__item .thumbnail-buttons .add-to-wishlist:hover button svg, .products-display .list__item .thumbnail-buttons .add-to-wishlist:hover a svg, .products-display .list__item .thumbnail-buttons .product-block-hover:hover button svg, .products-display .list__item .thumbnail-buttons .product-block-hover:hover a svg { fill: #fff } .products-display .grid__item .thumbnail-buttons .quick-view:hover button span, .products-display .grid__item .thumbnail-buttons .quick-view:hover a span, .products-display .grid__item .thumbnail-buttons .add-to-wishlist:hover button span, .products-display .grid__item .thumbnail-buttons .add-to-wishlist:hover a span, .products-display .grid__item .thumbnail-buttons .product-block-hover:hover button span, .products-display .grid__item .thumbnail-buttons .product-block-hover:hover a span, .products-display .list__item .thumbnail-buttons .quick-view:hover button span, .products-display .list__item .thumbnail-buttons .quick-view:hover a span, .products-display .list__item .thumbnail-buttons .add-to-wishlist:hover button span, .products-display .list__item .thumbnail-buttons .add-to-wishlist:hover a span, .products-display .list__item .thumbnail-buttons .product-block-hover:hover button span, .products-display .list__item .thumbnail-buttons .product-block-hover:hover a span { color: #fff } .products-display .grid__item .thumbnail-buttons .add-to-wishlist .tooltip-label, .products-display .list__item .thumbnail-buttons .add-to-wishlist .tooltip-label { display: none } .products-display .grid__item .thumbnail-buttons .add-to-wishlist .loader-btn, .products-display .list__item .thumbnail-buttons .add-to-wishlist .loader-btn { height: 34px; width: 34px; background-color: transparent; border: none; padding: 0 } .products-display .grid__item .thumbnail-buttons .add-to-wishlist .loader-btn a, .products-display .list__item .thumbnail-buttons .add-to-wishlist .loader-btn a { display: block; background: #1a9bdc } .products-display .grid__item .thumbnail-buttons .add-to-wishlist .loader-btn a:after, .products-display .list__item .thumbnail-buttons .add-to-wishlist .loader-btn a:after { display: none } .products-display .grid__item .thumbnail-buttons .add-to-wishlist .loader-btn i, .products-display .list__item .thumbnail-buttons .add-to-wishlist .loader-btn i { display: block; position: relative; color: #fff; top: 0px; left: 0px } .products-display .grid__item .thumbnail-buttons .add-to-wishlist .loader-btn i:before, .products-display .list__item .thumbnail-buttons .add-to-wishlist .loader-btn i:before { top: 0; line-height: 34px } .products-display .grid__item .thumbnail-buttons .add-to-wishlist i, .products-display .list__item .thumbnail-buttons .add-to-wishlist i { display: none } .products-display .grid__item .thumbnail-buttons .product-block-hover .add-to-cart .addToCart, .products-display .list__item .thumbnail-buttons .product-block-hover .add-to-cart .addToCart { padding: 0; border: none; width: auto } @media (max-width: 543px) { .products-display .grid__item .thumbnail-buttons .product-block-hover .add-to-cart .addToCart, .products-display .list__item .thumbnail-buttons .product-block-hover .add-to-cart .addToCart { width: 34px } } .products-display .grid__item .thumbnail-buttons .product-block-hover .add-to-cart .addToCart .value, .products-display .list__item .thumbnail-buttons .product-block-hover .add-to-cart .addToCart .value { display: block; padding: 7px 15px } @media (max-width: 543px) { .products-display .grid__item .thumbnail-buttons .product-block-hover .add-to-cart .addToCart .value, .products-display .list__item .thumbnail-buttons .product-block-hover .add-to-cart .addToCart .value { display: none } } .products-display .grid__item .thumbnail-buttons .product-block-hover .add-to-cart .addToCart .plus, .products-display .list__item .thumbnail-buttons .product-block-hover .add-to-cart .addToCart .plus { display: none } .products-display .grid__item .thumbnail-buttons .product-block-hover .add-to-cart .addToCart svg, .products-display .list__item .thumbnail-buttons .product-block-hover .add-to-cart .addToCart svg { display: none } @media (max-width: 543px) { .products-display .grid__item .thumbnail-buttons .product-block-hover .add-to-cart .addToCart svg, .products-display .list__item .thumbnail-buttons .product-block-hover .add-to-cart .addToCart svg { display: block } } .products-display .grid__item .thumbnail-buttons .product-block-hover .nm-cartmain .nm-addToCart.adding, .products-display .list__item .thumbnail-buttons .product-block-hover .nm-cartmain .nm-addToCart.adding { background: #1a9bdc; z-index: 1 } .products-display .grid__item .thumbnail-buttons .product-block-hover .nm-cartmain .nm-addToCart.adding .value, .products-display .list__item .thumbnail-buttons .product-block-hover .nm-cartmain .nm-addToCart.adding .value { opacity: 0 } .products-display .grid__item .thumbnail-buttons .product-block-hover .nm-cartmain .nm-addToCart.adding:before, .products-display .list__item .thumbnail-buttons .product-block-hover .nm-cartmain .nm-addToCart.adding:before { position: absolute; content: "\f1ce"; font-family: "FontAwesome"; color: #fff; width: 34px; height: 34px; line-height: 34px; font-weight: 400; left: 0; right: 0; margin: 0 auto; -webkit-animation: spin 2s infinite linear; -moz-animation: spin 2s infinite linear; -o-animation: spin 2s infinite linear; animation: spin 2s infinite linear } .products-display .grid__item .thumbnail-buttons .product-block-hover .nm-cartmain .nm-addToCart.adding svg, .products-display .list__item .thumbnail-buttons .product-block-hover .nm-cartmain .nm-addToCart.adding svg { opacity: 0 } .products-display .grid__item .thumbnail-buttons .product-block-hover .product-form, .products-display .list__item .thumbnail-buttons .product-block-hover .product-form { margin: 0 } .products-display .grid__item .thumbnail-buttons .product-block-hover .add_to_cart_main .add-to-cart .product-form__item--quantity, .products-display .grid__item .thumbnail-buttons .product-block-hover .add_to_cart_main .add-to-cart .product-selector, .products-display .list__item .thumbnail-buttons .product-block-hover .add_to_cart_main .add-to-cart .product-form__item--quantity, .products-display .list__item .thumbnail-buttons .product-block-hover .add_to_cart_main .add-to-cart .product-selector { display: none } .products-display .grid__item .thumbnail-buttons .product-block-hover .product-form__input, .products-display .list__item .thumbnail-buttons .product-block-hover .product-form__input { display: none } .products-display .grid__item .thumbnail-buttons .product-block-hover .product-form__item, .products-display .list__item .thumbnail-buttons .product-block-hover .product-form__item { padding: 0; margin: 0 } .products-display .grid__item .product-flags, .products-display .list__item .product-flags { position: absolute; top: 0px; left: 0; right: 0; width: 100% } .products-display .grid__item .product-flags .flag, .products-display .list__item .product-flags .flag { font-size: 12px; font-weight: 500; color: #1a9bdc; position: absolute } .products-display .grid__item .product-flags .sale, .products-display .list__item .product-flags .sale { position: absolute; left: 10px; top: 10px; color: #fff; height: 40px; width: 40px; left: 10px; border-radius: 50%; background: #7fbc1e; text-align: center; font-size: 10px; font-weight: 600; padding: 12px 4px; -webkit-transition: all 05s; -moz-transition: all 0.5s; -ms-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } @media (max-width: 543px) { .products-display .grid__item .product-flags .sale, .products-display .list__item .product-flags .sale { height: 20px; width: 35px; padding: 4px 4px; line-height: 12px; font-size: 9px; border-radius: 4px } } .products-display .grid__item .main-img, .products-display .list__item .main-img { -webkit-transition: all 0.7s; -moz-transition: all 0.7s; -ms-transition: all 0.7s; -o-transition: all 0.7s; transition: all 0.7s } .products-display .grid__item .extra-img, .products-display .list__item .extra-img { left: 0; position: absolute; right: 0; top: 0; opacity: 0; width: 100%; -moz-transform: scale(0, 1); -webkit-transform: scale(0, 1); -o-transform: scale(0, 1); -ms-transform: scale(0, 1); transform: scale(0, 1); -webkit-transition: all 0.7s; -moz-transition: all 0.7s; -ms-transition: all 0.7s; -o-transition: all 0.7s; transition: all 0.7s } .products-display .list__item { margin-bottom: 0px; padding: 15px } .products-display .list__item .grid-view-item { border: 0 } .products-display .list__item .grid-view-item .grid-view-item__image-container { margin-bottom: 0; border-radius: 0 } .products-display .list__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper { padding: 0; border: 1px solid #e8eef6 } @media (min-width: 544px) { .products-display .list__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper { margin-bottom: 0 } } .products-display .list__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .image-inner { border: none; overflow: hidden; position: relative } .products-display .list__item .grid-view-item .grid-view-item__image-container .product-title-review { background: transparent; border-bottom: 0; text-align: left } @media (max-width: 767px) { .products-display .list__item .grid-view-item .grid-view-item__image-container .product-title-review { text-align: center } } .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description { text-align: left; padding: 0; margin: 0; background: transparent; border: none } @media (min-width: 768px) { .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description { padding-left: 25px } } @media (max-width: 767px) { .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description { text-align: center; padding-bottom: 0; margin-bottom: 5px; padding-top: 10px } } .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description:before { display: none } .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta { margin-bottom: 10px } .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .product-desc { margin-bottom: 10px; color: #666666; font-size: 14px; letter-spacing: .8px; line-height: 22px } .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .spr-badge { margin-bottom: 8px } .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons { position: unset; opacity: 1; margin-bottom: 0px; text-align: left } @media (max-width: 767px) { .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons { text-align: center } } .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .quick-view, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .add-to-wishlist, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .product-block-hover { opacity: 1; display: inline-block; vertical-align: middle } @media (min-width: 544px) { .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .quick-view, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .add-to-wishlist, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .product-block-hover { -moz-transform: none; -webkit-transform: none; -o-transform: none; -ms-transform: none; transform: none } } @media (max-width: 543px) { .template-collection .products-display .grid__item { width: 50% !important } } .template-collection .products-display .grid__item:nth-child(3n+1) { clear: left } @media (max-width: 1199px) { .template-collection .products-display .grid__item:nth-child(3n+1) { clear: none } .template-collection .products-display .grid__item:nth-child(2n+1) { clear: left } } .template-collection .products-display .grid__item .grid-view-item { border: 1px solid #e8eef6 } @media screen and (min-width: 750px) and (max-width: 767px) { .template-collection .products-display .medium-up--one-third { width: 50% } } .template-collection .normal_main_content { margin-bottom: 20px } .template-collection .normal_main_content .product_empty { padding-left: 15px; margin-bottom: 20px } @media (max-width: 991px) { .ishi_collection_section .ishi_collection_block { padding: 40px 0 !important } } .ishi_collection_section .ishi_collection_block.collectionbgimage { background-size: cover; background-repeat: no-repeat; background-position: center } .ishi_collection_section .ishi_collection_block.collection-bgcolor { display: block; position: relative; width: 100% } .ishi_collection_section .collection-block { text-align: center; padding: 0 15px; position: relative } @media (max-width: 991px) { .ishi_collection_section .collection-block { margin-bottom: 30px } .ishi_collection_section .collection-block:nth-child(3), .ishi_collection_section .collection-block:last-child { margin-bottom: 0 } } .ishi_collection_section .collection-block .section-header>h2 { text-align: left; margin-bottom: 20px; font-size: 22px; line-height: 24px; position: relative; padding: 3px 0 } .ishi_collection_section .collection-block .owl-theme .owl-nav { display: block; position: absolute; top: -50px; right: 0px; margin: 0 } .ishi_collection_section .collection-block .owl-theme .owl-nav .owl-prev, .ishi_collection_section .collection-block .owl-theme .owl-nav .owl-next { height: 30px; width: 30px } .ishi_collection_section .collection-block .owl-theme .owl-nav .owl-prev i, .ishi_collection_section .collection-block .owl-theme .owl-nav .owl-next i { width: 30px; height: 30px } .ishi_collection_section .collection-block .owl-theme .owl-nav .owl-prev i:before, .ishi_collection_section .collection-block .owl-theme .owl-nav .owl-next i:before { width: 30px; height: 30px; line-height: 30px; font-size: 18px } .ishi_collection_section .collection-block .products-display { padding: 0 } .ishi_collection_section .collection-block .products-display .multilevel-item .grid__item:last-child { padding-bottom: 0 } .ishi_collection_section .collection-block .products-display .grid__item { padding: 0; padding-bottom: 15px; float: none } .ishi_collection_section .collection-block .products-display .grid-view-item { border: 0; background: transparent } .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container { margin-bottom: 0px; display: flex; align-items: center } @media (max-width: 767px) { .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container { margin: 0; max-width: 100% } } .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper { padding-left: 0 } .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper a { border: 1px solid #e8eef6 } @media (min-width: 768px) { .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container:hover .product-description .thumbnail-buttons .quick-view, .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container:hover .product-description .thumbnail-buttons .product-block-hover, .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container:hover .product-description .thumbnail-buttons .add-to-wishlist { opacity: 1; transform: translateY(0); -moz-transform: translateY(0); -webkit-transform: translateY(0); -o-transform: translateY(0); -ms-transform: translateY(0) } } .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container:hover .product-description .spr-badge { opacity: 1; -webkit-transition: all .6s; -moz-transition: all .6s; -o-transition: all .6s; transition: all .6s } @media (min-width: 768px) { .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container:hover .product-description .grid-view-item__meta { opacity: 0 } } .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .reveal { position: relative } .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .outstock-overlay { display: none } @media (max-width: 400px) { .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper { width: 50% } } .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description { text-align: left; padding: 0 15px; position: relative; overflow: unset; background: transparent } .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description:before { display: none } @media (max-width: 1199px) { .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description { padding-left: 0 } } @media (max-width: 400px) { .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description { width: 50%; padding-right: 10px } } .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .spr-badge { margin-bottom: 10px } @media (max-width: 543px) { .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .spr-badge { margin-bottom: 5px } } .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .product-detail { display: block; margin-bottom: 10px } @media (max-width: 543px) { .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .product-detail { margin-bottom: 7px } } @media screen and (min-width: 992px) and (max-width: 1199px) { .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .product-detail .grid-view-item__title { font-size: 14px } } .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta { opacity: 1; -webkit-transition: all .6s; -moz-transition: all .6s; -o-transition: all .6s; transition: all .6s; margin-bottom: 10px } @media (max-width: 767px) { .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta { margin-bottom: 15px } } @media (max-width: 543px) { .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta { margin-bottom: 8px } } .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .regular, .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .discount-percentage, .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .is-bold { font-size: 16px } @media screen and (min-width: 992px) and (max-width: 1199px) { .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .discount-percentage { display: none } } .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .product-desc { display: none; color: #666; font-size: 14px; margin-bottom: 10px } .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons { left: 15px; right: 0; bottom: -8px; position: absolute; text-align: left } @media (max-width: 1199px) { .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons { left: 0px } } @media (max-width: 767px) { .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons { position: unset; opacity: 1 } } @media (max-width: 543px) { .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons { margin: 0 } } .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .quick-view, .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .add-to-wishlist, .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .product-block-hover { -webkit-transition: all .3s ease-in-out; -moz-transition: all .3s ease-in-out; -o-transition: all .3s ease-in-out; transition: all .3s ease-in-out } @media (min-width: 768px) { .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .quick-view, .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .add-to-wishlist, .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .product-block-hover { opacity: 0; -moz-transform: translateY(70px); -webkit-transform: translateY(70px); -o-transform: translateY(70px); -ms-transform: translateY(70px); transform: translateY(70px) } } .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .quick-view a, .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .quick-view button, .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .add-to-wishlist a, .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .add-to-wishlist button, .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .product-block-hover a, .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .product-block-hover button { box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.08) } .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .add-to-wishlist { -webkit-transition: all .6s ease-in-out; -moz-transition: all .6s ease-in-out; -o-transition: all .6s ease-in-out; transition: all .6s ease-in-out } .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .product-block-hover { -webkit-transition: all .9s ease-in-out; -moz-transition: all .9s ease-in-out; -o-transition: all .9s ease-in-out; transition: all .9s ease-in-out } .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .product-block-hover a { width: 34px } .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .product-block-hover a svg { display: block } .ishi_collection_section .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .product-block-hover a .value { display: none } .ishi-deal-section { margin-bottom: 30px } .ishi-deal-section .specialdeal-block { position: relative } @media (max-width: 991px) { .ishi-deal-section .specialdeal-block { padding: 40px 0 !important } } .ishi-deal-section .specialdeal-block.dealbgimage { background-size: cover; background-repeat: no-repeat; background-position: center } .ishi-deal-section .specialdeal-block.deal-bgcolor { display: block; position: relative; width: 100% } .ishi-deal-section .specialdeal-block .section-header>h2 { margin-bottom: 10px } @media (max-width: 543px) { .ishi-deal-section .specialdeal-block .section-header>h2 { margin-bottom: 20px } } .ishi-deal-section .specialdeal-block .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .spr-badge { -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -ms-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } @media (min-width: 768px) { .ishi-deal-section .specialdeal-block .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .spr-badge { opacity: 0 } } @media (max-width: 767px) { .ishi-deal-section .specialdeal-block .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .spr-badge { bottom: 45px } } @media (max-width: 349px) { .ishi-deal-section .specialdeal-block .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .spr-badge { bottom: 40px } } .ishi-deal-section .specialdeal-block .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .productcountdown { position: absolute; left: 0; right: 0; bottom: 10px; text-align: center; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -ms-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } @media (max-width: 767px) { .ishi-deal-section .specialdeal-block .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .productcountdown { position: unset; margin: 6px 0 12px } } @media (min-width: 768px) { .ishi-deal-section .specialdeal-block .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .productcountdown { opacity: 1 } } .ishi-deal-section .specialdeal-block .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .productcountdown .countdown { display: inline-block; vertical-align: middle; text-align: center; cursor: pointer; position: relative } .ishi-deal-section .specialdeal-block .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .productcountdown .countdown:after { content: ":"; position: absolute; top: 1px; right: -6px; color: #373e4e } .ishi-deal-section .specialdeal-block .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .productcountdown .countdown:last-child { margin-right: 0 } .ishi-deal-section .specialdeal-block .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .productcountdown .countdown:last-child .data { color: #1a9bdc } .ishi-deal-section .specialdeal-block .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .productcountdown .countdown:last-child:after { display: none } .ishi-deal-section .specialdeal-block .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .productcountdown .countdown.data-large:after { right: -7px } .ishi-deal-section .specialdeal-block .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .productcountdown .countdown .data { font-size: 18px; line-height: 20px; letter-spacing: 0.1px; font-family: Work Sans; font-weight: 400; color: #373e4e; position: relative; width: 40px; height: 20px; line-height: 20px; -webkit-transition: all .6s; -moz-transition: all .6s; -o-transition: all .6s; transition: all .6s } @media (max-width: 543px) { .ishi-deal-section .specialdeal-block .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .productcountdown .countdown .data { font-size: 16px; width: 35px } } @media (max-width: 375px) { .ishi-deal-section .specialdeal-block .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .productcountdown .countdown .data { font-size: 15px; width: 30px } } @media (max-width: 349px) { .ishi-deal-section .specialdeal-block .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .productcountdown .countdown .data { font-size: 14px; width: 28px } } .ishi-deal-section .specialdeal-block .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .productcountdown .countdown .text { display: none } @media (max-width: 767px) { .ishi-deal-section .specialdeal-block .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .productcountdown .data-large:after { right: -6px } } .ishi-deal-section .specialdeal-block .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .product-desc { display: none } @media (min-width: 768px) { .ishi-deal-section .specialdeal-block .products-display .grid__item .grid-view-item:hover .grid-view-item__image-container .grid-view-item__image-wrapper .productcountdown { opacity: 0 } } @media (min-width: 768px) { .ishi-deal-section .specialdeal-block .products-display .grid__item .grid-view-item:hover .grid-view-item__image-container .grid-view-item__image-wrapper .spr-badge { opacity: 1 } } .ishi-deal-section .specialdeal-block .owl-nav { margin-top: 15px } @media (max-width: 991px) { .ishi-deal-section .specialdeal-block .owl-nav { margin-top: 10 } } .ishi-service-section .ishiservices { position: relative; margin: -30px 0; z-index: 1 } @media (max-width: 991px) { .ishi-service-section .ishiservices { margin: 0 0 30px } } .ishi-service-section .ishiservices .ishiservices-content { display: block; position: relative; box-shadow: 4px 6px 5px -2px rgba(0, 0, 0, 0.2); padding: 10px 0; overflow: hidden } .ishi-service-section .ishiservices .service-block { display: block } .ishi-service-section .ishiservices .services { text-align: center; cursor: pointer; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } @media screen and (min-width: 544px) and (max-width: 991px) { .ishi-service-section .ishiservices .services { margin-bottom: 10px } .ishi-service-section .ishiservices .services:nth-child(3), .ishi-service-section .ishiservices .services:last-child { margin-bottom: 0 } } @media (max-width: 543px) { .ishi-service-section .ishiservices .services { width: 100%; margin-bottom: 10px; border: 0 } .ishi-service-section .ishiservices .services:last-child { margin-bottom: 0 } } .ishi-service-section .ishiservices .services a { display: block } .ishi-service-section .ishiservices .services .service-img-outer { display: inline-block; vertical-align: middle; position: relative; background: transparent } .ishi-service-section .ishiservices .services .service-img { position: relative; display: inline-block; vertical-align: middle; margin: 0; text-align: center; height: 40px; width: 40px; overflow: hidden; background-position: center; background-repeat: no-repeat; transition: all 400ms ease; -webkit-transition: all 400ms ease; -moz-transition: all 400ms ease; -ms-transition: all 400ms ease; -o-transition: all 400ms ease; transform: rotate(0); -moz-transform: rotate(0); -webkit-transform: rotate(0); -o-transform: rotate(0); -ms-transform: rotate(0) } .ishi-service-section .ishiservices .services .service-text { display: inline-block; vertical-align: middle; text-align: left; padding-left: 10px; width: 70% } @media screen and (min-width: 992px) and (max-width: 1199px) { .ishi-service-section .ishiservices .services .service-text { width: 72%; padding-left: 5px } } @media (max-width: 767px) { .ishi-service-section .ishiservices .services .service-text { width: 75%; padding-left: 10px } } @media (max-width: 543px) { .ishi-service-section .ishiservices .services .service-text { width: 40% } } @media (max-width: 480px) { .ishi-service-section .ishiservices .services .service-text { width: 50% } } @media (max-width: 400px) { .ishi-service-section .ishiservices .services .service-text { width: 55% } } @media (max-width: 375px) { .ishi-service-section .ishiservices .services .service-text { width: 60% } } @media (max-width: 349px) { .ishi-service-section .ishiservices .services .service-text { width: 65% } } @media (max-width: 330px) { .ishi-service-section .ishiservices .services .service-text { width: 70% } } .ishi-service-section .ishiservices .services .service-text .service-title { font-size: 16px; font-weight: 400; font-family: Work Sans; letter-spacing: 0.3px; transition: all 400ms ease; -webkit-transition: all 400ms ease; -moz-transition: all 400ms ease; -ms-transition: all 400ms ease; -o-transition: all 400ms ease } @media screen and (min-width: 992px) and (max-width: 1199px) { .ishi-service-section .ishiservices .services .service-text .service-title { font-size: 14px } } .ishi-service-section .ishiservices .services .service-text .service-desc { font-weight: 400; font-size: 13px; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } @media (min-width: 768px) { .ishi-service-section .ishiservices .services:hover .service-img { transform: rotate(360deg); -moz-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -ms-transform: rotate(360deg) } .ishi-service-section .ishiservices .services:hover .service-text .service-title { letter-spacing: 0.9px } } .ishi-banner-block .ishibannerblock, .ishi-banner-block .ishitwobannerblock, .ishi-twobanner-block .ishibannerblock, .ishi-twobanner-block .ishitwobannerblock { text-align: center } .ishi-banner-block .ishibannerblock .image-container, .ishi-banner-block .ishitwobannerblock .image-container, .ishi-twobanner-block .ishibannerblock .image-container, .ishi-twobanner-block .ishitwobannerblock .image-container { display: inline-block; vertical-align: middle } .ishi-banner-block .ishibannerblock .image-container img, .ishi-banner-block .ishitwobannerblock .image-container img, .ishi-twobanner-block .ishibannerblock .image-container img, .ishi-twobanner-block .ishitwobannerblock .image-container img { max-width: 100%; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } .ishi-banner-block .ishibannerblock .image-container a, .ishi-banner-block .ishitwobannerblock .image-container a, .ishi-twobanner-block .ishibannerblock .image-container a, .ishi-twobanner-block .ishitwobannerblock .image-container a { display: block; position: relative; overflow: hidden; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } .ishi-banner-block .ishibannerblock .image-container a.lightcolor:before, .ishi-banner-block .ishibannerblock .image-container a.lightcolor:after, .ishi-banner-block .ishitwobannerblock .image-container a.lightcolor:before, .ishi-banner-block .ishitwobannerblock .image-container a.lightcolor:after, .ishi-twobanner-block .ishibannerblock .image-container a.lightcolor:before, .ishi-twobanner-block .ishibannerblock .image-container a.lightcolor:after, .ishi-twobanner-block .ishitwobannerblock .image-container a.lightcolor:before, .ishi-twobanner-block .ishitwobannerblock .image-container a.lightcolor:after { background: rgba(255, 255, 255, 0.1) } .ishi-banner-block .ishibannerblock .image-container a.darkcolor:before, .ishi-banner-block .ishibannerblock .image-container a.darkcolor:after, .ishi-banner-block .ishitwobannerblock .image-container a.darkcolor:before, .ishi-banner-block .ishitwobannerblock .image-container a.darkcolor:after, .ishi-twobanner-block .ishibannerblock .image-container a.darkcolor:before, .ishi-twobanner-block .ishibannerblock .image-container a.darkcolor:after, .ishi-twobanner-block .ishitwobannerblock .image-container a.darkcolor:before, .ishi-twobanner-block .ishitwobannerblock .image-container a.darkcolor:after { background: rgba(0, 0, 0, 0.1) } .ishi-banner-block .ishibannerblock .bannerblock, .ishi-banner-block .ishitwobannerblock .bannerblock, .ishi-twobanner-block .ishibannerblock .bannerblock, .ishi-twobanner-block .ishitwobannerblock .bannerblock { display: inline-block; vertical-align: middle } @media (max-width: 767px) { .ishi-banner-block .ishibannerblock .bannerblock, .ishi-banner-block .ishitwobannerblock .bannerblock, .ishi-twobanner-block .ishibannerblock .bannerblock, .ishi-twobanner-block .ishitwobannerblock .bannerblock { width: 100%; margin-bottom: 30px } .ishi-banner-block .ishibannerblock .bannerblock:last-child, .ishi-banner-block .ishitwobannerblock .bannerblock:last-child, .ishi-twobanner-block .ishibannerblock .bannerblock:last-child, .ishi-twobanner-block .ishitwobannerblock .bannerblock:last-child { margin-bottom: 0 } } @media (max-width: 991px) { .ishitestimonial { margin-bottom: 30px } } .ishitestimonial .testimonialimage { background-position: center; background-repeat: no-repeat; background-size: cover } .ishitestimonial .testimonial-color { display: block; width: 100% } @media (max-width: 991px) { .ishitestimonial .testimonial-block { padding: 40px 0 !important } } .ishitestimonial .testimonial-inner-container { width: 50% } @media (min-width: 768px) and (max-width: 1199px) { .ishitestimonial .testimonial-inner-container { width: 60% } } @media (max-width: 767px) { .ishitestimonial .testimonial-inner-container { width: 100%; float: none } } .ishitestimonial .testimonial-inner-container .ishitestimonials-container { text-align: center } .ishitestimonial .testimonial-inner-container .ishitestimonials-container .quote { border-radius: 50%; width: 65px; height: 65px; line-height: 65px; text-align: center; margin: 10px auto 25px } @media (max-width: 543px) { .ishitestimonial .testimonial-inner-container .ishitestimonials-container .quote { width: 55px; height: 55px; line-height: 55px } } .ishitestimonial .testimonial-inner-container .ishitestimonials-container .user-description { font-size: 14px; line-height: 24px; position: relative; font-weight: 400; font-family: Work Sans; letter-spacing: 0.2px; margin: 0 auto 30px } .ishitestimonial .testimonial-inner-container .ishitestimonials-container .user-info .testimonial-img { border: 1px solid #e8eef6; display: inline-block; vertical-align: middle; position: relative } .ishitestimonial .testimonial-inner-container .ishitestimonials-container .user-info .testimonial-img img { max-width: 100%; width: auto } .ishitestimonial .testimonial-inner-container .ishitestimonials-container .user-info .user-content { display: inline-block; vertical-align: middle; padding-left: 10px; text-align: left } .ishitestimonial .testimonial-inner-container .ishitestimonials-container .user-info .user-content .user-name { display: block; font-size: 24px; font-weight: 500; font-family: Work Sans; letter-spacing: 0; margin: 0 0 7px; line-height: 26px } @media (max-width: 543px) { .ishitestimonial .testimonial-inner-container .ishitestimonials-container .user-info .user-content .user-name { font-size: 20px; margin: 0 0 5px } } .ishitestimonial .testimonial-inner-container .ishitestimonials-container .user-info .user-content .user-designation { display: block; font-size: 13px; font-family: Work Sans; font-weight: 400 } @media (max-width: 991px) { .ishitestimonial .owl-nav { margin-top: 30px } } .ishi-smartblog-section { overflow: hidden } .smartblog .products_block_inner { position: relative } @media (min-width: 992px) { .smartblog .products_block_inner .owl-nav { margin-top: 15px } } .smartblog .products_block_inner .section-header>h2 { margin-bottom: 10px } .smartblog .products_block_inner #smartblog-carousel .sds_blog_post { padding: 15px } .smartblog .products_block_inner #smartblog-carousel .sds_blog_post:hover .blog_post .news_module_image_holder a img { -webkit-transform-style: unset; transform-style: unset; transform: scale(1.26); -webkit-transform: scale(1.26); -ms-transform: scale(1.26); -o-transform: scale(1.26); -moz-transform: scale(1.26); opacity: 0.8 } .smartblog .products_block_inner #smartblog-carousel .sds_blog_post:hover .blog_post .news_module_image_holder .blogicons { opacity: 1 } .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post { position: relative; display: inline-block; vertical-align: middle } @media (min-width: 544px) { .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post { display: flex; align-items: center } } .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .news_module_image_holder { display: block; max-width: 100%; position: relative; margin-bottom: 0px; background: #fff; padding: 0 } @media (max-width: 543px) { .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .news_module_image_holder { width: 100% } } .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .news_module_image_holder a { position: relative; display: block; overflow: hidden } .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .news_module_image_holder img { transition: all 1.5s; -webkit-transition: all 1.5s; -moz-transition: all 1.5s; -ms-transition: all 1.5s; -o-transition: all 1.5s; max-width: 100% } .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content { padding: 0; padding-left: 15px; text-align: left; margin: 0 } @media (max-width: 543px) { .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content { width: 100%; padding: 15px 0 0 } } .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo { background-color: transparent; margin: 0 0 10px; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo .comment, .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo .author, .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo .blog_date { display: block; font-size: 16px; color: #373e4e; letter-spacing: 0.28px; font-weight: 400; margin: 0; margin-bottom: 10px } @media (max-width: 543px) { .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo .comment, .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo .author, .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo .blog_date { font-size: 14px } } .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo .comment i, .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo .author i, .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo .blog_date i { font-size: 15px; margin-right: 3px; color: #1a9bdc; font-weight: 600 } @media (max-width: 543px) { .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo .comment i, .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo .author i, .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo .blog_date i { font-size: 12px } } .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo .comment a, .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo .author a, .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo .blog_date a { color: #373e4e } .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo .blog_date i { font-weight: 300; display: none } .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo .blog_date .date .day_month { display: inline-block; vertical-align: middle; font-weight: 400; font-size: 16px; color: #373e4e } .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo .blog_date .date .day_date { font-size: 24px; color: #1a9bdc; display: inline-block; vertical-align: middle } .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo .blog_date .date .day_year { display: none } .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .sds_post_title { margin-bottom: 15px; line-height: 18px } .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .sds_post_title a { font-size: 18px; font-weight: 600; text-transform: capitalize; font-family: Work Sans; color: #373e4e } @media (max-width: 1199px) { .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .sds_post_title a { font-size: 16px } } .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .desc { margin-bottom: 15px; font-size: 14px; font-weight: 400; color: #525d70; line-height: 22px } .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .article__meta-buttons { display: block } .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .article__meta-buttons a { background: transparent; color: #1a9bdc; padding: 0; border: none; position: relative; letter-spacing: 0.1px; -webkit-transition: all 0.4s; -moz-transition: all 0.4s; -o-transition: all 0.4s; transition: all 0.4s } .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .article__meta-buttons a:before { position: absolute; content: ""; bottom: 0; left: 0; right: 0; width: auto; height: 1px; background: #1a9bdc; -webkit-transition: all 0.4s; -moz-transition: all 0.4s; -o-transition: all 0.4s; transition: all 0.4s } .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .article__meta-buttons a:hover { color: #373e4e } .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .article__meta-buttons a:hover:before { background: #373e4e } .smartblog-container .section-header .article__title { font-size: 22px; text-transform: unset; color: #000; font-weight: 400; font-family: Work Sans; margin-bottom: 20px; letter-spacing: 0.8px } .smartblog-container .section-header>span { font-size: 15px; display: inline-block; margin-right: 20px; position: relative; text-transform: capitalize; color: #777777; margin-bottom: 30px; padding: 0; line-height: normal } .smartblog-container .section-header>span:before { display: none } @media (max-width: 543px) { .smartblog-container .section-header>span { display: block; margin-right: 0; margin-bottom: 20px } } .smartblog-container .section-header>span i { padding-right: 10px; color: #999999 } .smartblog-container .article__grid-image-wrapper { margin-bottom: 30px; display: block; overflow: hidden } .smartblog-container .rte { font-size: 15px; text-align: center; line-height: 25px; letter-spacing: 0.5px; color: #333 } .smartblog-container .share_this_blog { text-align: center } .smartblog-container .share_this_blog a { float: none } .smartblog-container textarea:focus { border-color: #d8dcdc !important } .smartblog-container .comment-form .grid>div { display: block; width: 100% } .smartblog-container .comment-form .grid label { color: #333; font-weight: 500 } .smartblog-container .available-comment { display: block; width: 100% } .smartblog-container .available-comment .h3 { font-size: 18px } .smartblog-container .available-comment #comments { position: relative } .smartblog-container .available-comment #comments li { position: relative } .smartblog-container .available-comment #comments li .comment-img { background: url(//cdn.shopify.com/s/files/1/0267/2073/1222/t/4/assets/comment-blog.jpg?v=7213005309971658303); background-position: 0 0; background-repeat: no-repeat; height: 60px; width: 60px; top: 0; left: 0; overflow: hidden; display: inline-block; float: left; position: relative; margin-right: 20px } .smartblog-container .available-comment #comments li .comment-inner { overflow: hidden; position: relative } .smartblog-container .available-comment #comments .comments { position: relative; display: inline-block } .smartblog-container .available-comment #comments .comments .comment__meta>span { display: block } .smartblog-container .available-comment #comments .comments .comment__meta>span.author { font-weight: 600 } .smartblog-container .available-comment #comments .comments .comment__meta>span.author:before { display: none } .smartblog-container .available-comment #comments .comments .comment__content { text-align: left } @media (min-width: 992px) { .blog--list-view { margin: 0 -15px } } @media (max-width: 991px) { .blog--list-view .pagination { padding: 0 } } .sdsarticleCat { display: block; width: 100%; overflow: hidden; margin-bottom: 30px; text-align: left } @media (max-width: 991px) { .sdsarticleCat { text-align: center } } @media (max-width: 543px) { .sdsarticleCat { text-align: left } } @media (max-width: 991px) { .sdsarticleCat .articleContent, .sdsarticleCat .smartblog-desc { padding: 0 } } .sdsarticleCat .smartblog-desc { position: relative; font-family: Work Sans; font-size: 14px; color: #000; font-weight: 400 } @media (max-width: 991px) { .sdsarticleCat .smartblog-desc { padding: 15px 0px 0 } } .sdsarticleCat .smartblog-desc i { margin-right: 5px; color: #2a2a2a } .sdsarticleCat .smartblog-desc a { color: #2a2a2a } .sdsarticleCat .smartblog-desc .article__author { margin: 0px; letter-spacing: 1px; text-transform: capitalize } .sdsarticleCat .smartblog-desc .article__author i { color: #2a2a2a } .sdsarticleCat .smartblog-desc .article__title { margin: 12px 0; line-height: 17px; text-transform: unset } @media screen and (min-width: 992px) and (max-width: 1199px) { .sdsarticleCat .smartblog-desc .article__title { line-height: 20px; margin: 10px 0 } } .sdsarticleCat .smartblog-desc .article__title a { font-size: 20px; text-transform: unset; font-weight: 400; font-family: Work Sans; text-decoration: none; letter-spacing: .8px; color: #000 } @media screen and (min-width: 992px) and (max-width: 1199px) { .sdsarticleCat .smartblog-desc .article__title a { font-size: 18px } } .sdsarticleCat .smartblog-desc .blog-details { margin-bottom: 10px } .sdsarticleCat .smartblog-desc .blog-details .article__date { margin-bottom: 0 } .sdsarticleCat .smartblog-desc .blog-details span { font-size: 15px; display: inline-block; vertical-align: middle; margin-right: 10px; position: relative; text-transform: capitalize; color: #2a2a2a; line-height: 25px } @media screen and (min-width: 992px) and (max-width: 1199px) { .sdsarticleCat .smartblog-desc .blog-details span { line-height: 20px; font-size: 14px } } .sdsarticleCat .smartblog-desc .blog_description { margin-bottom: 15px; color: #777777; line-height: 24px } @media screen and (min-width: 992px) and (max-width: 1199px) { .sdsarticleCat .smartblog-desc .blog_description { line-height: 20px } } .sdsarticleCat .smartblog-desc .r_more { text-decoration: none; background: #1a9bdc; border-color: #1a9bdc; color: #fff; display: inline-block; vertical-align: middle; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } .sdsarticleCat .smartblog-desc .r_more:hover { background: #000; border-color: #000; color: #fff } .smart-form { background: #fff; padding: 15px 20px 10px } .smart-user { background: #fff; padding: 20px } .manufacture-block #manufacture-carousel { text-align: center } .manufacture-block #manufacture-carousel .logo-bar__item { opacity: 1; cursor: pointer; display: inline-block; vertical-align: middle; -webkit-transition: all 0.8s; -moz-transition: all 0.8s; -o-transition: all 0.8s; transition: all 0.8s } .manufacture-block #manufacture-carousel .logo-bar__item:hover { transform: scale(0.9); opacity: 1 } .manufacture-block #manufacture-carousel .logo-bar__item a .placeholder-svg { width: 130px } .manufacture-block #manufacture-carousel .owl-nav { margin-top: 15px } @media (min-width: 992px) { .template-index .site-footer { margin-top: 20px } } @media (max-width: 991px) { .template-index .site-footer { margin-top: 0px } } .footer-before { display: block } @media (max-width: 991px) { .footer-before { margin-top: 30px } } .site-footer { position: relative; margin-top: 70px; color: #525d70; font-size: 14px; padding-top: 0px } .site-footer.footerimage { background-position: center; background-repeat: no-repeat; background-size: cover } .site-footer.footer-color { background: #fbfafd } @media (max-width: 991px) { .site-footer { margin-top: 30px } } .site-footer a, .site-footer p { font-weight: 400; letter-spacing: 0.2px; font-size: 14px; color: #525d70; margin-bottom: 0; text-decoration: none } .site-footer a { transition: all .4s ease 0s; -webkit-transition: all .4s ease 0s; -moz-transition: all .4s ease 0s; -o-transition: all .4s ease 0s } .site-footer a:hover { color: #1a9bdc } .site-footer .footer-block:last-child .footer-title { margin-bottom: 0px } .site-footer .footer-heading { letter-spacing: 0.1px; font-family: Work Sans; margin-bottom: 18px; text-transform: unset; font-size: 16px; font-weight: 500; color: #373e4e } @media (min-width: 992px) and (max-width: 1199px) { .site-footer .footer-heading { font-size: 15px } } .site-footer .footer-title { display: block; width: 100%; overflow: hidden; cursor: pointer } .site-footer .block-heading { margin-bottom: 12px; font-family: Work Sans; color: #373e4e; font-size: 16px; font-weight: 500; letter-spacing: 0.1px; cursor: pointer } @media (max-width: 991px) { .site-footer .footer-block { padding: 0 15px } } .site-footer .site-footer__linklist-item { margin-bottom: 15px; position: relative } @media (min-width: 992px) { .site-footer .site-footer__linklist-item:last-child { margin-bottom: 0 } } .site-footer .ishistoreinfo-inner { text-align: left } @media (max-width: 991px) { .site-footer .ishistoreinfo-inner { text-align: center; margin-bottom: 25px } } .site-footer .ishistoreinfo-inner .store-img { display: inline-block } .site-footer .ishistoreinfo-inner .store-img .feature-row__item { text-align: left } @media (max-width: 991px) { .site-footer .ishistoreinfo-inner .store-img .feature-row__item { text-align: center } } .site-footer .ishistoreinfo-inner .store-img .feature-row__item a { color: #373e4e; font-family: Work Sans; font-size: 16px; font-weight: 500; cursor: pointer; letter-spacing: 0.1px; margin-bottom: 18px } .site-footer .ishistoreinfo-inner .store-desc { line-height: 24px; font-weight: 400; letter-spacing: 0.2px; font-size: 14px; color: #525d70 } @media (max-width: 991px) { .site-footer .ishistoreinfo-inner .store-desc { width: 70%; margin: 0 auto } } @media (max-width: 767px) { .site-footer .ishistoreinfo-inner .store-desc { width: 85% } } @media (max-width: 543px) { .site-footer .ishistoreinfo-inner .store-desc { width: 100% } } .site-footer .ishistoreinfo-inner .store-desc ul li, .site-footer .ishistoreinfo-inner .store-desc ol li { list-style: unset; margin-left: 15px; margin-bottom: 0px } @media (max-width: 991px) { .site-footer .bottom-link-list { width: 100%; overflow: hidden } } .site-footer .bottom-link-list a { display: block; overflow: hidden; position: relative; letter-spacing: 0.42px; transition: all .4s ease 0s; -webkit-transition: all .4s ease 0s; -moz-transition: all .4s ease 0s; -o-transition: all .4s ease 0s } @media (max-width: 991px) { .site-footer .bottom-link-list a { display: inline-block; vertical-align: middle } } .site-footer .bottom-link-list a:before { content: ""; position: absolute; left: 0; top: 40%; width: 5px; background: #1a9bdc; height: 5px; opacity: 0; border-radius: 50%; transition: all .4s ease 0s; -webkit-transition: all .4s ease 0s; -moz-transition: all .4s ease 0s; -o-transition: all .4s ease 0s } .site-footer .bottom-link-list a:hover { color: #1a9bdc; padding-left: 15px } .site-footer .bottom-link-list a:hover:before { opacity: 1 } @media (max-width: 991px) { .site-footer .bottom-link-list { display: block; width: 100% } } .site-footer .bottom-link-list .site-footer__linklist-item { position: relative } .site-footer .contact-info { text-align: left; display: block; padding: 20px 65px; position: relative; margin-top: -20px; background: #1a9bdc; box-shadow: 4px 6px 5px -2px rgba(0, 0, 0, 0.2) } @media (max-width: 1199px) { .site-footer .contact-info { padding: 20px 15px } } @media (max-width: 991px) { .site-footer .contact-info { margin-top: 0 } } .site-footer .contact-info .contact-info-inner ul { display: flex; align-items: center } @media (max-width: 767px) { .site-footer .contact-info .contact-info-inner ul { display: block } } .site-footer .contact-info .contact-info-inner ul i { height: 50px; width: 50px; border-radius: 50%; line-height: 52px; font-size: 27px; text-align: center; vertical-align: middle; display: inline-block; background: #fff; color: #1a9bdc; transition: all .4s ease 0s; -webkit-transition: all .4s ease 0s; -moz-transition: all .4s ease 0s; -o-transition: all .4s ease 0s } @media (max-width: 991px) { .site-footer .contact-info .contact-info-inner ul i { margin-bottom: 5px } } .site-footer .contact-info .contact-info-inner ul .content { display: inline-block; vertical-align: middle; overflow: hidden; text-align: left; padding-left: 10px; line-height: 25px; width: 80% } @media (max-width: 1199px) { .site-footer .contact-info .contact-info-inner ul .content { width: 75% } } @media (max-width: 991px) { .site-footer .contact-info .contact-info-inner ul .content { display: block; padding: 0; text-align: center; line-height: 20px; width: 100% } } .site-footer .contact-info .contact-info-inner ul .content .title { font-size: 16px; font-family: Work Sans; font-weight: 500; color: #fff } @media (max-width: 991px) { .site-footer .contact-info .contact-info-inner ul .content .title { margin-bottom: 5px } } .site-footer .contact-info .contact-info-inner ul .content a, .site-footer .contact-info .contact-info-inner ul .content p { color: #fff; font-size: 14px; font-weight: 300 } .site-footer .contact-info .contact-info-inner ul .content p { display: inline-block; vertical-align: middle } .site-footer .contact-info .contact-info-inner ul .site-footer__linklist-item { margin: 0; text-align: center; transition: all .4s ease 0s; -webkit-transition: all .4s ease 0s; -moz-transition: all .4s ease 0s; -o-transition: all .4s ease 0s } @media (max-width: 991px) { .site-footer .contact-info .contact-info-inner ul .site-footer__linklist-item { text-align: center } } @media (max-width: 543px) { .site-footer .contact-info .contact-info-inner ul .site-footer__linklist-item { width: 100% } } .site-footer .contact-info .contact-info-inner ul .site-footer__linklist-item:hover i { background: #373e4e; color: #fff } .site-footer .contact-info .contact-info-inner ul .site-footer__linklist-item.shop-email i { font-size: 24px; line-height: 48px } @media (min-width: 992px) { .site-footer .contact-info .contact-info-inner ul .site-footer__linklist-item.full-width .content { width: auto } } @media (max-width: 767px) { .site-footer .contact-info .contact-info-inner ul .site-footer__linklist-item.bottom-space { margin-bottom: 15px } } @media (max-width: 767px) { .site-footer .contact-info .contact-info-inner ul .site-footer__linklist-item:last-child { margin-bottom: 0 } } @media (max-width: 991px) { .site-footer #_mobile_newsletter { clear: both } } @media (max-width: 991px) { .site-footer .newsletter-block { text-align: center; margin-bottom: 25px } } .site-footer .newsletter-block .newsletter_text .sub-heading { font-size: 14px; line-height: 24px; font-weight: 400; color: #525d70; font-family: Work Sans; margin-bottom: 15px } @media (max-width: 991px) { .site-footer .newsletter-block .newsletter_text .sub-heading { width: 70%; margin: 0 auto 20px } } @media (max-width: 767px) { .site-footer .newsletter-block .newsletter_text .sub-heading { width: 85% } } @media (max-width: 543px) { .site-footer .newsletter-block .newsletter_text .sub-heading { width: 100% } } .site-footer .newsletter-block .site-footer__newsletter { margin: 0 } .site-footer .newsletter-block .site-footer__newsletter form { position: relative; text-align: center } @media (max-width: 991px) { .site-footer .newsletter-block .site-footer__newsletter form { width: 65%; margin: 0 auto } } @media (max-width: 767px) { .site-footer .newsletter-block .site-footer__newsletter form { width: 85% } } @media (max-width: 543px) { .site-footer .newsletter-block .site-footer__newsletter form { width: 100% } } .site-footer .newsletter-block .input-group { width: 100%; background: transparent } .site-footer .newsletter-block .input-group .input-group__field { min-width: 200px; width: 100%; height: 40px; padding: 10px 15px; border: 1px solid #e8eef6; background-color: #fff; font-size: 14px; font-weight: 400; letter-spacing: 0.32px; border-radius: 0px; color: #666; padding-right: 55px } .site-footer .newsletter-block .input-group .input-group__field::placeholder { color: #666; opacity: 1 } .site-footer .newsletter-block .input-group .input-group__field::-moz-placeholder { color: #666; opacity: 1 } .site-footer .newsletter-block .input-group .input-group__field:focus { background-color: #fff; color: #666 } .site-footer .newsletter-block .input-group .input-group__btn { border-left: 1px solid #e8eef6 } .site-footer .newsletter-block .input-group .input-group__btn .btn { height: 40px; width: 50px; background: transparent; border: none; font-size: 14px; padding: 0; text-align: center; outline: none; border-radius: 0px; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } .site-footer .newsletter-block .input-group .input-group__btn .btn .icon { height: 40px; width: 50px } .site-footer .newsletter-block .input-group .input-group__btn .btn .icon svg { fill: #1a9bdc; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } .site-footer .newsletter-block .input-group .input-group__btn .btn:hover .icon svg { fill: #525d70 } .site-footer .newsletter-block .input-group .input-group__btn .btn>span { font-size: 14px; font-weight: 400; display: none } .site-footer .newsletter-block .input-group .input-group__btn .btn:after { content: '\f003'; font-family: "FontAwesome"; font-size: 20px; line-height: 18px; text-align: center; margin: 0 auto; display: none } .site-footer .newsletter-block .errors { padding: 0 5px; margin-bottom: 0 } .site-footer .follow-us { display: block; margin-top: 40px; text-align: center; margin-bottom: -50px; z-index: 2 } @media (max-width: 991px) { .site-footer .follow-us { margin-bottom: 0; margin-top: 10px } } .site-footer .follow-us .social-media-blocks .social_text { display: block } .site-footer .follow-us .social-media-blocks .header-social ul { position: relative } .site-footer .follow-us .social-media-blocks .header-social ul:before, .site-footer .follow-us .social-media-blocks .header-social ul:after { content: ""; position: absolute; height: 1px; width: 34%; background: rgba(82, 93, 112, 0.2); right: auto; left: 0; top: 0; bottom: 0; margin: auto } @media (max-width: 1199px) { .site-footer .follow-us .social-media-blocks .header-social ul:before, .site-footer .follow-us .social-media-blocks .header-social ul:after { width: 30% } } @media (max-width: 991px) { .site-footer .follow-us .social-media-blocks .header-social ul:before, .site-footer .follow-us .social-media-blocks .header-social ul:after { width: 22% } } @media (max-width: 767px) { .site-footer .follow-us .social-media-blocks .header-social ul:before, .site-footer .follow-us .social-media-blocks .header-social ul:after { display: none } } .site-footer .follow-us .social-media-blocks .header-social ul:after { right: 0; left: auto } .site-footer .follow-us .social-media-blocks .header-social ul li { cursor: pointer; display: inline-block; vertical-align: middle; margin: 0 2px; text-align: center; position: relative; -webkit-transition: all 0.4s; -moz-transition: all 0.4s; -o-transition: all 0.4s; transition: all 0.4s } @media screen and (min-width: 992px) and (max-width: 1199px) { .site-footer .follow-us .social-media-blocks .header-social ul li { margin: 0 1px } } @media (max-width: 543px) { .site-footer .follow-us .social-media-blocks .header-social ul li { margin: 0 1px } } @media (max-width: 375px) { .site-footer .follow-us .social-media-blocks .header-social ul li { margin: 0 } } .site-footer .follow-us .social-media-blocks .header-social ul li .social-icons__link { display: block; text-align: center; margin: 0 auto; text-decoration: none; padding: 0 } .site-footer .follow-us .social-media-blocks .header-social ul li .social-icons__link:before { display: none } .site-footer .follow-us .social-media-blocks .header-social ul li .social-icons__link .icon__-text { display: none } .site-footer .follow-us .social-media-blocks .header-social ul li .social-icons__link i { display: inline-block; vertical-align: middle; font-family: FontAwesome; font-weight: 400; position: relative; font-size: 16px; width: 36px; line-height: 34px; height: 36px; background-color: #fff; border: 1px solid #e8eef6; box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.1); border-radius: 50%; color: #fff; position: relative; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } .site-footer .follow-us .social-media-blocks .header-social ul li.facebook .social-icons__link i { color: #3b5999 } .site-footer .follow-us .social-media-blocks .header-social ul li.twitter .social-icons__link i { color: #00aced } .site-footer .follow-us .social-media-blocks .header-social ul li.pinterest .social-icons__link i { color: #cb2027 } .site-footer .follow-us .social-media-blocks .header-social ul li.instagram .social-icons__link i { color: #cc2366 } .site-footer .follow-us .social-media-blocks .header-social ul li.tumblr .social-icons__link i { color: #f26522 } .site-footer .follow-us .social-media-blocks .header-social ul li.snapchat .social-icons__link i { color: #fffc00 } .site-footer .follow-us .social-media-blocks .header-social ul li.youtube .social-icons__link i { color: #d12121 } .site-footer .follow-us .social-media-blocks .header-social ul li.vimeo .social-icons__link i { color: #00aced } .site-footer .follow-us .social-media-blocks .header-social ul li.rss .social-icons__link i { color: #f26522 } .site-footer .follow-us .social-media-blocks .header-social ul li:hover .social-icons__link i { color: #fff; background: #1a9bdc; border-color: #1a9bdc } .site-footer .footer-container { display: block; padding: 50px 0 } @media (max-width: 991px) { .site-footer .footer-container { padding: 30px 0 0 } } .site-footer .footer-bottom { display: block; overflow: hidden; padding: 10px 0 15px } @media (max-width: 991px) { .site-footer .footer-bottom { padding: 10px 0 } } .site-footer .footer-bottom.border-top { border-top: 1px solid rgba(82, 93, 112, 0.2); padding: 10px 0 } @media (min-width: 992px) { .site-footer .footer-bottom .page-width .row { display: flex; align-items: center } } .site-footer .footer-bottom .footer-left { text-align: left } @media (max-width: 991px) { .site-footer .footer-bottom .footer-left { text-align: center } } .site-footer .footer-bottom .footer-left .site-footer__copyright--bottom { padding: 7px 0; display: block; overflow: hidden } @media (max-width: 991px) { .site-footer .footer-bottom .footer-left .site-footer__copyright--bottom { display: block } } .site-footer .footer-bottom .footer-left .site-footer__copyright--bottom p { font-size: 14px; color: #525d70; line-height: 19px } .site-footer .footer-bottom .footer-right { text-align: right } @media (max-width: 991px) { .site-footer .footer-bottom .footer-right { text-align: center } } @media (min-width: 992px) { .site-footer .footer-bottom .footer-right.text-center { margin-top: 10px } } .site-footer .footer-bottom .footer-right .payment-icons { display: block; padding: 0 0; margin-bottom: 0px } @media (max-width: 991px) { .site-footer .footer-bottom .footer-right .payment-icons { padding: 8px 0 } } .site-footer .footer-bottom .footer-right .payment-icons .logo-bar__item { display: inline-block; vertical-align: middle } .site-footer .footer-bottom .footer-right .payment-icons .logo-bar__item .logo-bar__link { width: 44px; height: 33px; padding: 0; margin: 0 2px; box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.1) } .site-footer .footer-bottom .footer-right .payment-icons .logo-bar__item .logo-bar__link svg { background: #fff; border-radius: 2px } .site-footer .footer-bottom .footer-right .payment-icons .logo-bar__item .logo-bar__link:hover { color: transparent } .site-footer .footer-bottom .footer-right .payment-icons .logo-bar__item img { cursor: pointer; transition: all 0.25s; max-width: 100% } @media (max-width: 767px) { .site-footer .footer-bottom .footer-right .payment-icons .logo-bar__item img { width: 41px } } #shopify-section-Ishi_sidebar .sidebar-collection .products-display { padding: 10px } #shopify-section-Ishi_sidebar .sidebar-collection .add-to-cart, #shopify-section-Ishi_sidebar .sidebar-collection .sca-qv-button, #shopify-section-Ishi_sidebar .sidebar-collection .flags { display: none !important } #shopify-section-Ishi_sidebar .left-column { display: block; border: 1px solid #e9e9e9; margin-bottom: 30px; background: #fff } @media (max-width: 991px) { #shopify-section-Ishi_sidebar .left-column { display: block; margin-bottom: 20px } } #shopify-section-Ishi_sidebar .left-column.banner { display: block } #shopify-section-Ishi_sidebar .left-column hr { margin: 0 } #shopify-section-Ishi_sidebar .left-column .grid--uniform .grid__item { padding: 0 } #shopify-section-Ishi_sidebar .left-column .products-display { clear: both } #shopify-section-Ishi_sidebar .left-column .products-display .grid__item .grid-view-item { position: relative; overflow: hidden; border: 0; background: transparent } #shopify-section-Ishi_sidebar .left-column .products-display .grid__item .grid-view-item:hover { box-shadow: none } #shopify-section-Ishi_sidebar .left-column .products-display .grid__item .grid-view-item .grid-view-item__image-container { border: none; border-radius: 0 } #shopify-section-Ishi_sidebar .left-column .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper { float: left; margin-right: 10px; padding-bottom: 0; border: 1px solid #e8eef6 } #shopify-section-Ishi_sidebar .left-column .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .discount-percentage { display: none } #shopify-section-Ishi_sidebar .left-column .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description { overflow: hidden; padding: 0; margin: 0; border: 0; text-align: left; background: transparent } #shopify-section-Ishi_sidebar .left-column .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description:before { display: none } #shopify-section-Ishi_sidebar .left-column .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .product-detail { overflow: hidden; display: block; margin-bottom: 7px } #shopify-section-Ishi_sidebar .left-column .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .product-detail .grid-view-item__title { margin-bottom: 0px; line-height: 18px; font-size: 15px; text-transform: capitalize; margin: 0 } @media screen and (min-width: 992px) and (max-width: 1199px) { #shopify-section-Ishi_sidebar .left-column .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .product-detail .grid-view-item__title { font-size: 13px } } #shopify-section-Ishi_sidebar .left-column .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta { margin-bottom: 7px } #shopify-section-Ishi_sidebar .left-column .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .product-price__sold-out { display: none } #shopify-section-Ishi_sidebar .left-column .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .is-bold { font-size: 16px } #shopify-section-Ishi_sidebar .left-column .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .regular { font-size: 14px } @media screen and (min-width: 992px) and (max-width: 1199px) { #shopify-section-Ishi_sidebar .left-column .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .spr-badge { display: none } } @media (min-width: 992px) { #shopify-section-Ishi_sidebar .left-column .left-inner.collapse { display: inherit } } #shopify-section-Ishi_sidebar .left-column .sidebar-title { font-size: 16px; padding: 15px; text-align: left; margin-bottom: 8px; display: block; background: #f5f5f5; color: #000; font-family: Work Sans; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; line-height: 18px } @media screen and (min-width: 992px) and (max-width: 1199px) { #shopify-section-Ishi_sidebar .left-column .sidebar-title { font-size: 13px } } #shopify-section-Ishi_sidebar .left-column .sidebar-title:after, #shopify-section-Ishi_sidebar .left-column .sidebar-title:before { display: none } #shopify-section-Ishi_sidebar .left-column .sidebar-title a { color: #000 } #shopify-section-Ishi_sidebar .left-column .sidebar-title a:hover { color: #000 } #shopify-section-Ishi_sidebar .left-column .grid-view-item__link { margin-bottom: 0 } @media (max-width: 767px) { #shopify-section-Ishi_sidebar .left-column .grid-view-item__link { max-width: 100% } } #shopify-section-Ishi_sidebar .left-column .grid__item--Ishi_sidebar { margin-bottom: 15px } #shopify-section-Ishi_sidebar .left-column .grid__item--Ishi_sidebar:last-child { margin-bottom: 0 } #shopify-section-Ishi_sidebar .left-column .view-all .view-all-btn { background: transparent; color: #7a7a7a; text-transform: capitalize; position: relative; float: right; padding: 10px 31px 15px 0; border: none; letter-spacing: 0em; margin: 0 } #shopify-section-Ishi_sidebar .left-column .view-all .view-all-btn i { top: 8px; position: absolute; right: 5px } #shopify-section-Ishi_sidebar .left-column .block-heading { float: none; vertical-align: middle; color: #000; border: none; font-size: 16px; line-height: 23px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; font-family: Work Sans } #shopify-section-Ishi_sidebar .left-column .block-heading a { color: #000; font-weight: 500 } #shopify-section-Ishi_sidebar .left-column .left-title { padding: 12px 15px; background: #f5f5f5; cursor: pointer; color: #000; line-height: 0 } #shopify-section-Ishi_sidebar .left-column .collapsed .navbar-toggler i.add { display: block } #shopify-section-Ishi_sidebar .left-column .collapsed .navbar-toggler i.remove { display: none } #shopify-section-Ishi_sidebar .left-column .navbar-toggler i.add { display: none } #shopify-section-Ishi_sidebar .left-column .navbar-toggler i.remove { display: block } #shopify-section-Ishi_sidebar .sidebar-categories .categories { padding: 10px 15px; background: transparent } @media (min-width: 992px) { #shopify-section-Ishi_sidebar .sidebar-categories .categories { display: inherit } } #shopify-section-Ishi_sidebar .sidebar-categories .categories .categories-items { padding: 7px 0; background: transparent } #shopify-section-Ishi_sidebar .sidebar-categories .categories .dropdown-submenu { margin-top: 8px } #shopify-section-Ishi_sidebar .sidebar-categories .categories .link-title { width: 100%; font-weight: 400; color: #232323; position: relative; font-size: 14px; -webkit-transition: all 0.3s; -moz-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; margin: 0; letter-spacing: 0.5px; font-family: Work Sans; text-transform: capitalize } #shopify-section-Ishi_sidebar .sidebar-categories .categories .link-title .collapse-icon i { float: right; border: medium none; font-size: 15px; height: 18px; padding: 2px; width: 18px; color: #000 } #shopify-section-Ishi_sidebar .sidebar-categories .categories .link-title .collapsed .add { display: block } #shopify-section-Ishi_sidebar .sidebar-categories .categories .link-title .collapsed .remove { display: none } #shopify-section-Ishi_sidebar .sidebar-categories .categories .link-title .add { display: none } #shopify-section-Ishi_sidebar .sidebar-categories .categories .link-title .remove { display: block } #shopify-section-Ishi_sidebar .sidebar-categories .categories .category_submenu { padding: 3px; padding-left: 15px } #shopify-section-Ishi_sidebar .sidebar-categories .categories .dropdown-item { color: #232323; letter-spacing: 0.5px; font-weight: 400; font-size: 14px; text-decoration: none } #shopify-section-Ishi_sidebar .collection-left .view-all { display: block; overflow: hidden } #shopify-section-Ishi_sidebar .collection-left .grid__item { width: 100% !important } #shopify-section-Ishi_sidebar .banner { border: none } @media (max-width: 991px) { #shopify-section-Ishi_sidebar .banner { text-align: center } } #shopify-section-Ishi_sidebar .banner .feature-row__image-wrapper { margin: 0 auto; overflow: hidden } #shopify-section-Ishi_sidebar .banner .feature-row__image-wrapper a { display: block; position: relative; overflow: hidden; transition: all 0.5s; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -ms-transition: all 0.5s; -o-transition: all 0.5s } @media (max-width: 991px) { #shopify-section-Ishi_sidebar .banner .feature-row__image-wrapper a { display: inline-block } } #shopify-section-Ishi_sidebar .banner .feature-row__image-wrapper a .img-block { display: inline-block; overflow: hidden } #shopify-section-Ishi_sidebar .banner .feature-row__image-wrapper a .feature-row__image { transition: all 0.5s; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -ms-transition: all 0.5s; -o-transition: all 0.5s; width: 100% } #shopify-section-Ishi_sidebar .banner .feature-row__item { text-align: unset } #shopify-section-Ishi_sidebar .tag-filter { width: 100% } #shopify-section-Ishi_sidebar .tag-filter #SortTags a { display: inline-block; font-size: 14px; color: #232323; letter-spacing: 0.5px; vertical-align: top; margin-bottom: 5px } #shopify-section-Ishi_sidebar .tag-filter #SortTags a.selected { font-weight: 600; color: #000 } #shopify-section-Ishi_sidebar .tag-filter #SortTags a.selected .filter-box { position: relative } #shopify-section-Ishi_sidebar .tag-filter #SortTags a.selected .filter-box:after { content: "\f00c"; font-family: fontawesome; font-size: 12px; color: #333; font-weight: 400; top: -3px; left: 1px; position: absolute } #shopify-section-Ishi_sidebar .tag-filter #SortTags a span { margin-right: 5px; margin-top: 0; display: inline-block; vertical-align: middle } #shopify-section-Ishi_sidebar .tag-filter #filter-container { padding: 10px 15px } #shopify-section-Ishi_sidebar .tag-filter #filter-container .clear-all { background: #333; border-color: #333; color: #fff; display: block; position: relative; font-size: 14px; padding: 10px 10px 10px 30px } #shopify-section-Ishi_sidebar .tag-filter #filter-container .clear-all:after { content: '\E5CD'; position: absolute; left: 24%; font-family: 'Material Icons' } @media (max-width: 1199px) { #shopify-section-Ishi_sidebar .tag-filter #filter-container .clear-all:after { left: 10% } } @media (max-width: 991px) { #shopify-section-Ishi_sidebar .tag-filter #filter-container .clear-all:after { left: 39% } } @media (max-width: 767px) { #shopify-section-Ishi_sidebar .tag-filter #filter-container .clear-all:after { left: 36% } } @media (max-width: 543px) { #shopify-section-Ishi_sidebar .tag-filter #filter-container .clear-all:after { left: 23% } } #shopify-section-Ishi_sidebar .tag-filter #filter-container .color li { float: left; margin: 5px 8px 0 0 } #shopify-section-Ishi_sidebar .tag-filter #filter-container .color li .custom-checkbox { display: block } #shopify-section-Ishi_sidebar .tag-filter #filter-container .color li .custom-checkbox a.selected .filter-color { outline: 1px solid #fff !important; outline-offset: -3px; opacity: 1 } #shopify-section-Ishi_sidebar .tag-filter #filter-container .color li .custom-checkbox .filter-color { width: 32px; height: 32px; box-shadow: 5px 5px 5px #e0e0e0; opacity: 0.7; line-height: 41px; text-align: center; display: inline-block; cursor: pointer; margin: 0 } #shopify-section-Ishi_sidebar .tag-filter #filter-container .size li { float: left; margin: 5px 8px 0 0 } #shopify-section-Ishi_sidebar .tag-filter #filter-container .size li .custom-checkbox { display: block } #shopify-section-Ishi_sidebar .tag-filter #filter-container .size li .custom-checkbox a:hover .filter-size, #shopify-section-Ishi_sidebar .tag-filter #filter-container .size li .custom-checkbox a.selected .filter-size { background-color: #1a9bdc; color: #fff; border-color: transparent } #shopify-section-Ishi_sidebar .tag-filter #filter-container .size li .custom-checkbox .filter-size { width: 40px; height: 40px; margin: 0; line-height: 36px; border: 1px solid #ddd; text-align: center; color: #888; transition: 0.2s ease; cursor: pointer } #shopify-section-Ishi_sidebar .tag-filter #filter-container strong { color: #454545; font-weight: 600; text-transform: uppercase; font-size: 14px; line-height: 28px; letter-spacing: 0.5px } #shopify-section-Ishi_sidebar .tag-filter #filter-container ul { padding: 10px 0; display: block; width: 100%; overflow: hidden } #shopify-section-Ishi_sidebar .tag-filter #filter-container ul:first-child { padding-top: 0 } #shopify-section-Ishi_sidebar .tag-filter #filter-container ul li .custom-checkbox .filter-box { margin-right: 3px; display: inline-block; width: 15px; height: 15px; vertical-align: sub; cursor: pointer; border: 1px solid #ddd; background: #fafafa none repeat scroll 0 0 } .collection__main { padding-top: 0px } .size-chart-modal .modal-dialog { max-width: 1100px; top: 10%; width: 100% } @media (max-width: 767px) { .size-chart-modal .modal-dialog { width: unset } } .size-chart-modal .modal-header { padding-bottom: 0; padding-bottom: 0 } .size-chart-modal .modal-header button { color: #333; font-size: 28px; font-weight: 500; opacity: 1 } .size-chart-modal .modal-body { display: block; overflow: hidden; width: 100%; color: #000; font-size: 14px; padding: 35px 30px; padding-top: 20px } @media (min-width: 992px) { .size-chart-modal .modal-body { display: flex; align-items: center } } @media (max-width: 543px) { .size-chart-modal .modal-body { display: inline-block; max-width: 100%; overflow: hidden; margin: 0; padding-left: 10px; padding-right: 10px } } .size-chart-modal .modal-body .modal-img { text-align: center; margin-bottom: 30px } @media (min-width: 992px) { .size-chart-modal .modal-body .modal-text { max-height: 600px; overflow: auto } } @media (max-width: 543px) { .size-chart-modal .modal-body .modal-text { overflow: hidden } } .size-chart-modal .modal-body .modal-text .custom_size_chart_des h4 { font-size: 16px; font-weight: 600; line-height: 26px } .size-chart-modal .modal-body .modal-text .custom_size_chart_des .custom-text-right-table table { border: 1px solid #e9e9e9 } .size-chart-modal .modal-body .modal-text .custom_size_chart_des .custom-text-right-table table thead>tr:first-child { background-color: #f1f1f1; color: #000; font-size: 14px; font-weight: 500; border: none } .size-chart-modal .modal-body .modal-text .custom_size_chart_des .custom-text-right-table table thead tr th { text-align: center; border: none; font-weight: 600 } .size-chart-modal .modal-body .modal-text .custom_size_chart_des .custom-text-right-table table tbody td { text-align: center } @media (max-width: 543px) { .size-chart-modal .modal-body .modal-text .custom_size_chart_des .custom-text-right-table { max-width: 100%; overflow: auto; display: block; margin-bottom: 12px } } .size-chart-modal .modal-body .modal-text .custom_size_chart_des .custom-text-right p { color: #666; font-weight: 400; line-height: 26px; letter-spacing: 0.1px } .size-chart-modal .modal-body .modal-text .custom_size_chart_des .custom-text-right p strong { font-weight: 500; margin-right: 3px; color: #000; font-size: 14px; letter-spacing: 0.4px } .size-chart-modal .modal-header { border: none } .size-chart-modal .modal-footer { padding: 0 } .product-single { color: #777777; font-weight: 400 } .product-single .product-single-left .product-single__title { color: #000; font-weight: 500; text-transform: capitalize; padding-bottom: 0px; font-size: 26px; border-bottom: 0; margin-bottom: 20px; padding-top: 0px; line-height: 26px; letter-spacing: 0.1px; text-align: left; font-family: Work Sans } @media (max-width: 543px) { .product-single .product-single-left .product-single__title { font-size: 22px; line-height: 28px } } .product-single .product-single-left .price-product { text-align: left } .product-single .product-single-left .price-product .product-single__price-product-template { margin-bottom: 20px } .product-single .product-single-left .price-product .product-price__price { color: #000; font-weight: 500; margin: 0 2px; font-size: 20px; text-align: left; vertical-align: middle } .product-single .product-single-left .price-product .regular-price { font-weight: 400; line-height: 20px; color: #666; margin: 0 5px; font-size: 18px } .product-single .product-single-left .single-left { position: relative } .product-single .product-single-left .single-left .product-single__photo { margin: 0 auto; min-height: 1px; width: 100%; height: 100%; position: relative; border: 1px solid #eeeeee } .product-single .product-single-left .zoomImg { cursor: crosshair } .product-single .product-single-right .dynamic-checkout { padding: 0 5px; margin-top: 8px; margin-bottom: 26px } .product-single .product-single-right .dynamic-checkout .shopify-payment-button__button { font-size: 14px; font-weight: 400; padding: 17px 40px; border-radius: 0px; opacity: 1; background-color: #000; border-color: #000; color: #fff; text-transform: uppercase; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } .product-single .product-single-right .dynamic-checkout .shopify-payment-button__button:hover { background-color: #1a9bdc; border-color: #1a9bdc; color: #fff } .product-single .product-single-right .dynamic-checkout .shopify-payment-button__button--hidden { display: none } .product-single .product-single-right .product-single__meta .product-single__title { color: #000000; font-weight: 500; text-transform: capitalize; padding-bottom: 0px; font-size: 30px; border-bottom: 0; margin-bottom: 12px; padding-top: 10px; font-family: Work Sans; line-height: 1.1; letter-spacing: 0.1px } @media (max-width: 1199px) { .product-single .product-single-right .product-single__meta .product-single__title { font-size: 26px } } .product-single .product-single-right .product-single__meta .review { margin-bottom: 16px } @media (max-width: 767px) { .product-single .product-single-right .product-single__meta .review { margin-bottom: 12px } } .product-single .product-single-right .product-single__meta .review .no-review { color: #666; font-weight: 400; margin-left: 6px; vertical-align: middle } .product-single .product-single-right .product-single__meta .review .spr-badge { display: inline-block; vertical-align: middle } .product-single .product-single-right .product-single__meta .review .spr-badge i { position: relative; opacity: 1; height: 14px; width: 16px; display: inline-block; top: 0; vertical-align: top; font-style: normal } .product-single .product-single-right .product-single__meta .review .spr-badge i.spr-icon:after { content: "\F005"; font-family: "FontAwesome"; color: #ccc; font-size: 14px; -webkit-transition: all 0.7s; -moz-transition: all 0.7s; -ms-transition: all 0.7s; -o-transition: all 0.7s; transition: all 0.7s } .product-single .product-single-right .product-single__meta .review .spr-badge i.spr-icon-star-empty:before { display: none !important } .product-single .product-single-right .product-single__meta .review .spr-badge i.spr-icon-star:before, .product-single .product-single-right .product-single__meta .review .spr-badge i.spr-icon-star-half-alt:before { display: none } .product-single .product-single-right .product-single__meta .review .spr-badge i.spr-icon-star:after, .product-single .product-single-right .product-single__meta .review .spr-badge i.spr-icon-star-half-alt:after { content: "\F005"; font-family: "FontAwesome"; color: #fec42d; font-size: 14px; -webkit-transition: all 0.7s; -moz-transition: all 0.7s; -ms-transition: all 0.7s; -o-transition: all 0.7s; transition: all 0.7s } @media (max-width: 767px) { .product-single .product-single-right .product-single__meta .review .spr-badge i.spr-icon-star:after, .product-single .product-single-right .product-single__meta .review .spr-badge i.spr-icon-star-half-alt:after { content: '\F005'; color: #fec42d } } .product-single .product-single-right .product-single__meta .review .write_comment { text-decoration: none; color: #777; margin: 0; font-weight: 500; position: relative; margin-left: 7px; vertical-align: middle } .product-single .product-single-right .product-single__meta .review .write_comment i { font-size: 14px; padding-left: 5px; position: relative; top: 2px; display: none } .product-single .product-single-right .product-single__meta .review .write_comment:after { content: ''; background: url(//cdn.shopify.com/s/files/1/0267/2073/1222/t/4/assets/write-review.png?9682) no-repeat center; height: 10px; width: 10px; position: absolute; right: 0; top: 4px; margin-right: -15px } .product-single .product-single-right .product-single__meta .price-product { margin-bottom: 17px } .product-single .product-single-right .product-single__meta .product-single__price { color: #000000; font-weight: 500; font-size: 24px; margin-bottom: 0px; padding-left: 0; line-height: 23px; display: inline-block; vertical-align: middle } .product-single .product-single-right .product-single__meta .product-single__price.visibility-hidden { display: none } .product-single .product-single-right .product-single__meta .product-single__price .discount-percentage { color: #1a9bdc; font-size: 15px; background: #f3f3f3; padding: 5px 13px; font-weight: 500; line-height: 14px; margin: 0 } .product-single .product-single-right .product-single__meta .product-single__price #ComparePrice-product-template { color: #888; font-size: 18px; vertical-align: bottom } .product-single .product-single-right .product-single__meta .product-single__price #ProductPrice-product-template { color: #000; font-weight: 500; margin: 0px } .product-single .product-single-right .product-single__meta .product-single__price #ProductPrice-product-template.regular-price { font-size: 21px; color: #000 } .product-single .product-single-right .product-single__meta .product-single__price .product-price__sale { color: #000; margin: 0; line-height: 23px } .product-single .product-single-right .product-single__meta .product-single__price .product-price__sale #ComparePrice-product-template { color: #666666; margin: 0 5px } .product-single .product-single-right .product-single__meta .product-single__price .product-price__sale #ProductPrice-product-template { margin: 0; font-weight: 500 } .product-single .product-single-right .product-single__meta .wishlist-chart { margin-bottom: 22px; margin-top: 15px } .product-single .product-single-right .product-single__meta .add-to-wishlist { display: inline-block; vertical-align: middle; line-height: 20px; margin-left: 0px } .product-single .product-single-right .product-single__meta .add-to-wishlist i { font-size: 14px; margin-right: 8px; color: #777 } .product-single .product-single-right .product-single__meta .add-to-wishlist i:before { content: "\f004" } .product-single .product-single-right .product-single__meta .add-to-wishlist .btn { padding: 0px; background-color: transparent; border-color: transparent; box-shadow: none; color: #000 } .product-single .product-single-right .product-single__meta .add-to-wishlist .btn:hover { background-color: transparent; border-color: transparent; color: #666 } .product-single .product-single-right .product-single__meta .add-to-wishlist .btn:active { box-shadow: none } .product-single .product-single-right .product-single__meta .add-to-wishlist span { font-size: 14px; text-transform: capitalize } .product-single .product-single-right .product-single__meta .add-to-wishlist .loader-btn a span { display: inline-block; opacity: 1; color: #000 } .product-single .product-single-right .product-single__meta .add-to-wishlist .loader-btn i { color: #000 } .product-single .product-single-right .product-single__meta .add-to-wishlist .loader-btn i:before { content: "\f1ce" } .product-single .product-single-right .product-single__meta .size-chart { padding: 0; width: auto; border: none; margin-left: 20px; text-transform: capitalize; font-size: 15px; background: none; box-shadow: none; color: #000 } .product-single .product-single-right .product-single__meta .size-chart svg { width: 27px; height: auto; margin-top: -2px; vertical-align: middle; margin-right: 9px } .product-single .product-single-right .product-single__meta .size-chart svg path { fill: #777; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } .product-single .product-single-right .product-single__meta .size-chart:hover, .product-single .product-single-right .product-single__meta .size-chart:focus { background-color: transparent; color: #666 } .product-single .product-single-right .product-single__meta .size-chart:hover svg path, .product-single .product-single-right .product-single__meta .size-chart:focus svg path { fill: #777 } .product-single .product-single-right .product-single__meta .product-single__vendor, .product-single .product-single-right .product-single__meta .available-stock, .product-single .product-single-right .product-single__meta .variant-sku, .product-single .product-single-right .product-single__meta #sold-out { color: #666666; font-size: 14px; text-transform: capitalize; letter-spacing: 0.2px; margin: 0px 0 8px; font-weight: 500 } .product-single .product-single-right .product-single__meta .product-single__vendor span, .product-single .product-single-right .product-single__meta .available-stock span, .product-single .product-single-right .product-single__meta .variant-sku span, .product-single .product-single-right .product-single__meta #sold-out span { font-weight: 400; margin-left: 10px } .product-single .product-single-right .product-single__meta .product-single__vendor { margin-bottom: 5px } .product-single .product-single-right .product-single__meta .product-single__vendor.available { margin-bottom: 17px } .product-single .product-single-right .product-single__meta #sold-out { text-transform: unset; display: block; width: 100%; padding: 20px 0; border-top: 1px solid #dddddd; border-bottom: 1px solid #dddddd; margin-bottom: 22px } .product-single .product-single-right .product-single__meta #sold-out .notify-msg { text-align: left; width: 91%; margin: 0; line-height: 22px; font-weight: 400; font-size: 14px; color: #666 } .product-single .product-single-right .product-single__meta #sold-out .notify-msg.first { margin-bottom: 20px } .product-single .product-single-right .product-single__meta #sold-out .notify-msg .sold-msg { color: #666; font-weight: 600 } .product-single .product-single-right .product-single__meta #sold-out .notify-price { display: block; overflow: hidden; margin-bottom: 15px; text-align: left } .product-single .product-single-right .product-single__meta #sold-out .notify-price #notify-me-wrapper { float: none } .product-single .product-single-right .product-single__meta #sold-out .notify-price #notify-me-wrapper .styled-input { max-width: 250px; border: 1px solid #dddddd; background: #fff; color: #000000; text-align: left; box-shadow: none; font-size: 14px; font-weight: 400; height: 40px; display: inline-block; vertical-align: middle } @media (max-width: 1199px) { .product-single .product-single-right .product-single__meta #sold-out .notify-price #notify-me-wrapper .styled-input { max-width: 200px } } .product-single .product-single-right .product-single__meta #sold-out .notify-price #notify-me-wrapper .styled-input:focus { border-color: #dddddd; background: #fff; box-shadow: none } .product-single .product-single-right .product-single__meta #sold-out .notify-price #notify-me-wrapper .styled-submit { padding: 9px 35px; display: inline-block; vertical-align: middle; font-family: Work Sans; color: #fff; background: #1a9bdc; margin-top: 0px; border: 1px solid #1a9bdc; height: 40px; display: inline-block; vertical-align: middle } @media (max-width: 991px) { .product-single .product-single-right .product-single__meta #sold-out .notify-price #notify-me-wrapper .styled-submit { padding: 9px 24px } } @media (max-width: 350px) { .product-single .product-single-right .product-single__meta #sold-out .notify-price #notify-me-wrapper .styled-submit { padding: 9px 15px } } .product-single .product-single-right .product-single__meta #sold-out .notify-price #notify-me-wrapper .styled-submit:hover { border-color: #000; background: #000; color: #fff } .product-single .product-single-right .product-single__meta #sold-out .notify-price .product-regular, .product-single .product-single-right .product-single__meta #sold-out .notify-price .product-discount { float: right; line-height: 40px } @media (max-width: 1199px) { .product-single .product-single-right .product-single__meta #sold-out .notify-price .product-regular, .product-single .product-single-right .product-single__meta #sold-out .notify-price .product-discount { float: none; text-align: center; line-height: unset } } .product-single .product-single-right .product-single__meta #sold-out .notify-price .product-regular #ProductPrice-product-template, .product-single .product-single-right .product-single__meta #sold-out .notify-price .product-regular #ComparePrice-product-template, .product-single .product-single-right .product-single__meta #sold-out .notify-price .product-regular #Save, .product-single .product-single-right .product-single__meta #sold-out .notify-price .product-discount #ProductPrice-product-template, .product-single .product-single-right .product-single__meta #sold-out .notify-price .product-discount #ComparePrice-product-template, .product-single .product-single-right .product-single__meta #sold-out .notify-price .product-discount #Save { color: #000000; font-weight: 400; font-size: 21px; margin: 0 } .product-single .product-single-right .product-single__meta #sold-out .notify-price .product-regular #ComparePrice-product-template, .product-single .product-single-right .product-single__meta #sold-out .notify-price .product-discount #ComparePrice-product-template { color: #666666; margin-right: 5px } .product-single .product-single-right .product-single__meta #sold-out .notify-price .product-regular #Save, .product-single .product-single-right .product-single__meta #sold-out .notify-price .product-discount #Save { color: #1a9bdc; margin: 0 5px } .product-single .product-single-right .product-single__meta #sold-out .notify-price .product-regular #ProductPrice-product-template { font-size: 24px } .product-single .product-single-right .product-single__meta .available-stock { display: none; position: relative; margin: 10px 0 10px; padding-left: 5px } .product-single .product-single-right .product-single__meta .instock, .product-single .product-single-right .product-single__meta .outstock { display: inline-block; font-weight: 600; vertical-align: middle; color: #232323 } .product-single .product-single-right .product-single__meta .instock i, .product-single .product-single-right .product-single__meta .outstock i { line-height: 22px; display: inline-block; vertical-align: middle } .product-single .product-single-right .product-single__meta .instock { display: none !important } .product-single .product-single-right .product-single__meta .product-available { color: #4cbb6c } .product-single .product-single-right .product-single__meta .product-unavailable { color: #ff9a52 } .product-single .product-single-right .product-single__meta .product-single__description { color: #333; margin-bottom: 15px; color: #323; font-weight: 300; font-size: 14px; letter-spacing: .8px; line-height: 20px } .product-single .product-single-right .product-single__meta .product-form { margin-bottom: 0px } .product-single .product-single-right .product-single__meta .product-form .selector-wrapper { display: none; width: 38.35%; float: left; position: relative } @media (max-width: 1199px) { .product-single .product-single-right .product-single__meta .product-form .selector-wrapper { width: 40% } } @media (max-width: 991px) { .product-single .product-single-right .product-single__meta .product-form .selector-wrapper { width: 50% } } @media (max-width: 375px) { .product-single .product-single-right .product-single__meta .product-form .selector-wrapper { width: 64% } } .product-single .product-single-right .product-single__meta .product-form .selector-wrapper select { height: 45px; width: 100%; background-image: url(//cdn.shopify.com/s/files/1/0267/2073/1222/t/4/assets/dropdown-sprite.png?v=2351638615376241667); background-repeat: no-repeat; background-position: right 18px center; background-color: #fff; text-indent: 0.01px; text-overflow: ''; cursor: pointer; outline: none; color: #888; border: 1px solid #e9e9e9 } .product-single .product-single-right .product-single__meta .product-form .selector-wrapper select .veriant-option { outline: none } .product-single .product-single-right .product-single__meta .product-form .selector-wrapper label { font-size: 16px } .product-single .product-single-right .product-single__meta .product-form label { font-weight: 600 } .product-single .product-single-right .product-single__meta .quantity-cart { display: block; width: 100%; display: inline-flex; align-items: flex-end; margin-bottom: 26px } .product-single .product-single-right .product-single__meta .quantity-cart .product-form__item { margin-bottom: 0px !important } .product-single .product-single-right .product-single__meta .product-selection .product-info { display: inline-block; width: 60%; padding: 0; margin-top: 5px } @media (max-width: 1599px) { .product-single .product-single-right .product-single__meta .product-selection .product-info { width: 50% } } @media (max-width: 1199px) { .product-single .product-single-right .product-single__meta .product-selection .product-info { width: 55% } } @media (max-width: 543px) { .product-single .product-single-right .product-single__meta .product-selection .product-info { width: 53% } } .product-single .product-single-right .product-single__meta .product-selection .product-info.product-soldout { display: none } @media (max-width: 1199px) { .product-single .product-single-right .product-single__meta .product-selection .product-info.product-sale .product-single__price { float: none; line-height: unset; margin-bottom: 20px } } .product-single .product-single-right .product-single__meta .product-selection .product-form__item { margin-bottom: 26px } .product-single .product-single-right .product-single__meta .product-selection .product-form__item label { display: block; font-size: 14px; line-height: 14px; margin-bottom: 10px } .product-single .product-single-right .product-single__meta .product-selection .product-form__item.product-form__item--quantity { display: inline-block; width: auto !important; clear: both } .product-single .product-single-right .product-single__meta .product-selection .item_info { display: block } .product-single .product-single-right .product-single__meta .product-selection .product-form__item--submit, .product-single .product-single-right .product-single__meta .product-selection .available-stock { float: left; width: auto; margin-right: 0px } .product-single .product-single-right .product-single__meta .product-selection .product-form__item--submit { margin-bottom: 0px; width: 100% } .product-single .product-single-right .product-single__meta .product-selection .product-form__item--submit .addToCart { display: inline-block; vertical-align: middle; margin-bottom: 0px } .product-single .product-single-right .product-single__meta .product-selection .product-form__item--submit .addToCart { width: 100% } .product-single .product-single-right .product-single__meta .product-selection .product-form__item--submit .addToCart .btn { margin-right: 10px } .product-single .product-single-right .product-single__meta .product-selection .product-form__item--submit .btn { padding: 9px 16px; height: 50px; font-size: 14px; letter-spacing: 0.5px } .product-single .product-single-right .product-single__meta .trusted-img { margin-bottom: 15px } .product-single .product-single-right .product-single__meta .share_this_btn { margin-bottom: 20px } .product-single .product-single-right .product-single__meta .share_this_btn a { transition: all .3s ease-in-out; transform: translateY(0px) } .product-single .product-single-right .product-single__meta .share_this_btn a>span { height: 25px !important; width: 25px !important } .product-single .product-single-right .product-single__meta .share_this_btn a .at-icon { height: 25px !important; width: 25px !important } .product-single .product-single-right .product-single__meta .share_this_btn a:hover { transform: translateY(-3px) } .product-single .product-single-right .product-single__meta .share_this_btn a.addthis_button_compact:hover { transform: translateY(0px) } .product-single .product-single-right .product-single__meta .share_this_btn .at-icon-wrapper { background-color: transparent !important } .product-single .product-single-right .product-single__meta .share_this_btn .at-icon-wrapper svg { fill: #777 } .product-single .product-single-right .product-single__meta .share_this_btn .addthis_toolbox a { margin-right: 3px; margin-bottom: 0 } .product-single .product-single-right .product-single__meta .block-reassurence-tab { margin-bottom: 20px } .product-single .product-single-right .product-single__meta .block-reassurence-tab li { margin-bottom: 7px } .product-single .product-single-right .product-single__meta .block-reassurence-tab li:last-child { margin-bottom: 0px } .product-single .product-single-right .product-single__meta .block-reassurence-tab li .block-reassurance-item { padding: 20px 30px; border: none; background: #f8f8f8; margin-bottom: 10px; border-radius: 30px } .product-single .product-single-right .product-single__meta .block-reassurence-tab li .block-reassurance-item img { opacity: .9; margin-right: 5px } .product-single .product-single-right .product-single__meta .block-reassurence-tab li .block-reassurance-item .title { text-transform: capitalize; font-size: 15px; color: #000; font-weight: 500; position: relative; padding-right: 10px; margin-right: 5px; font-family: Work Sans } .product-single .product-single-right .product-single__meta .block-reassurence-tab li .block-reassurance-item .title:after { content: ''; height: 1px; width: 7px; background: rgba(0, 0, 0, 0.3); position: absolute; right: -4px; top: 14px } .product-single .product-single-right .product-single__meta .block-reassurence-tab li .block-reassurance-item .sub-title { color: #888; font-weight: 400; font-size: 14px; font-family: Work Sans; font-style: italic } .styled-input { min-width: 200px; padding: 10px 15px } .ishi-product-swatch, .ishi-quickview-swatch { display: block; clear: both; width: 100%; padding-left: 5px } .ishi-product-swatch .ishi-custom-swatch, .ishi-quickview-swatch .ishi-custom-swatch { display: block; clear: both; overflow: hidden; margin-bottom: 15px } .ishi-product-swatch label, .ishi-quickview-swatch label { font-size: 14px; text-transform: capitalize; margin: 0px; font-weight: 600; margin-bottom: 8px } .ishi-product-swatch .option-swatch .custom-swatch, .ishi-quickview-swatch .option-swatch .custom-swatch { margin: 0; border: 1px solid #dddddd; text-align: center; color: #777777; transition: 0.2s ease; cursor: pointer; display: inline-block; vertical-align: middle; margin-right: 6px; margin-bottom: 6px; padding: 8px 16px } .ishi-product-swatch .option-swatch .custom-swatch.color-swatch, .ishi-quickview-swatch .option-swatch .custom-swatch.color-swatch { width: 35px; height: 35px; box-shadow: 2px 2px 4px #e0e0e0; border: 1px solid #dddddd } .ishi-product-swatch .option-swatch .custom-swatch.color-swatch.active, .ishi-quickview-swatch .option-swatch .custom-swatch.color-swatch.active { transform: scale(0.9); border-color: #000000 } .ishi-product-swatch .option-swatch .custom-swatch.active, .ishi-quickview-swatch .option-swatch .custom-swatch.active { border-color: #000000; color: #000000 } .product-tab { margin: 50px auto; text-align: center; background-color: #fff; border: 1px solid #e9e9e9 } @media (max-width: 991px) { .product-tab { margin: 20px auto 40px } } .product-tab>div { padding: 15px; text-align: left; line-height: 26px; color: #787878; margin-bottom: 20px; letter-spacing: .1px; font-weight: 400; font-size: 14px; overflow: hidden } @media (max-width: 543px) { .product-tab>div { margin-bottom: 18px; padding: 5px; line-height: 24px } .product-tab>div .spr-summary { text-align: left } } .product-tab>div p { font-size: 14px !important } .product-tab #desc>h4, .product-tab .custom-desc>h4 { color: #000; font-weight: 600; letter-spacing: 0.2px; margin-bottom: 14px; font-size: 14px } .product-tab #desc>ul, .product-tab #desc>ol, .product-tab .custom-desc>ul, .product-tab .custom-desc>ol { margin-bottom: 18px; padding-left: 26px } .product-tab #desc>ul li, .product-tab #desc>ol li, .product-tab .custom-desc>ul li, .product-tab .custom-desc>ol li { list-style: unset; padding-left: 3px } .product-tab #desc>ul li:marker, .product-tab #desc>ol li:marker, .product-tab .custom-desc>ul li:marker, .product-tab .custom-desc>ol li:marker { line-height: 14px } @media (max-width: 543px) { .product-tab #desc>ul li, .product-tab #desc>ol li, .product-tab .custom-desc>ul li, .product-tab .custom-desc>ol li { margin-bottom: 6px } .product-tab #desc>ul li:last-child, .product-tab #desc>ol li:last-child, .product-tab .custom-desc>ul li:last-child, .product-tab .custom-desc>ol li:last-child { margin-bottom: 0 } } .product-tab #desc blockquote, .product-tab .custom-desc blockquote { text-align: left; line-height: 26px; color: #787878; margin-bottom: 0; letter-spacing: .2px; font-weight: 400; font-size: 13px; border-left: 3px solid #e5e5e5; margin-left: 15px } @media (max-width: 543px) { .product-tab #desc blockquote, .product-tab .custom-desc blockquote { padding: 0; margin-left: 8px; padding-left: 15px } } .product-tab .tabs { border-bottom: none; margin-bottom: 10px; text-align: center; line-height: 40px; position: relative; display: inline-block; margin-top: -1px } .product-tab .tab-id li { display: inline-block; vertical-align: top; margin: -2px 0 0 0; float: none; text-transform: unset; margin-left: 12px } @media (max-width: 1199px) { .product-tab .tab-id li { margin-left: 4px } } @media (max-width: 767px) { .product-tab .tab-id li { margin: 7px 0 0 5px } } @media (max-width: 543px) { .product-tab .tab-id li { display: block; margin: 0; margin-top: 7px; margin-bottom: 7px } } .product-tab .tab-id li:first-child { margin-left: 0px } .product-tab .tab-id li:last-child { margin-bottom: 0px } .product-tab .tab-id li a { color: #000; padding-left: 1px; padding-right: 1px; padding: 8px 12px; border: none; background: #f5f5f5; letter-spacing: 1px; text-decoration: none; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s; font-size: 14px; font-weight: 500; border-radius: 0; position: relative; z-index: 1 } @media (max-width: 1199px) { .product-tab .tab-id li a { padding: 8px 9px; letter-spacing: 0.2px; font-size: 13px } } .product-tab .tab-id li a:after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 0%; z-index: -1; background-color: #000; -webkit-transition: all 0.58s; -moz-transition: all 0.58s; -o-transition: all 0.58s; transition: all 0.58s; transition-delay: 0.08s; transition-timing-function: ease; -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1); transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1) } @media (max-width: 767px) { .product-tab .tab-id li a { font-size: 13px; padding: 8px 10px; letter-spacing: 0.1px } } .product-tab .tab-id li a.active, .product-tab .tab-id li a:hover { border-color: transparent; background: transparent; color: #fff } .product-tab .tab-id li a.active:after, .product-tab .tab-id li a:hover:after { height: 100%; -webkit-transition: all 0.58s; -moz-transition: all 0.58s; -o-transition: all 0.58s; transition: all 0.58s; transition-delay: 0.08s } .product-tab #shopify-product-reviews { margin: 0 } .product-tab #product-review .spr-container .spr-header .spr-header-title, .product-tab #product-review .spr-container .spr-content .spr-header-title { display: none } .product-tab #product-review .spr-container .spr-header .spr-starrating i, .product-tab #product-review .spr-container .spr-header .spr-starratings i, .product-tab #product-review .spr-container .spr-content .spr-starrating i, .product-tab #product-review .spr-container .spr-content .spr-starratings i { opacity: 1 } .product-tab #product-review .spr-container .spr-header .spr-starrating i:before, .product-tab #product-review .spr-container .spr-header .spr-starratings i:before, .product-tab #product-review .spr-container .spr-content .spr-starrating i:before, .product-tab #product-review .spr-container .spr-content .spr-starratings i:before { font-size: 14px; width: 16px; content: "\F005"; font-family: "FontAwesome" } .product-tab #product-review .spr-container .spr-header .spr-starrating .spr-icon-star-empty:before, .product-tab #product-review .spr-container .spr-header .spr-starratings .spr-icon-star-empty:before, .product-tab #product-review .spr-container .spr-content .spr-starrating .spr-icon-star-empty:before, .product-tab #product-review .spr-container .spr-content .spr-starratings .spr-icon-star-empty:before { color: #ccc; content: "\F005"; font-family: "FontAwesome" } @media (max-width: 543px) { .product-tab #product-review .spr-container .spr-header .spr-summary-actions, .product-tab #product-review .spr-container .spr-content .spr-summary-actions { width: 100%; display: inline-block; text-align: left } } .product-tab #product-review .spr-container .spr-header .spr-summary-actions a, .product-tab #product-review .spr-container .spr-content .spr-summary-actions a { -moz-user-select: none; -ms-user-select: none; -webkit-user-select: none; user-select: none; -webkit-appearance: none; -moz-appearance: none; appearance: none; display: inline-block; width: auto; text-decoration: none; text-align: center; vertical-align: middle; cursor: pointer; padding: 10px 18px; background-color: #1a9bdc; color: #fff; border: 1px solid #1a9bdc; border-radius: 0px; text-transform: uppercase; white-space: normal; font-size: 14px; line-height: 20px; letter-spacing: 0px; font-weight: 400; outline: none; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } @media (max-width: 543px) { .product-tab #product-review .spr-container .spr-header .spr-summary-actions a, .product-tab #product-review .spr-container .spr-content .spr-summary-actions a { margin-top: 20px; float: none; display: inline-block } } .product-tab #product-review .spr-container .spr-header .spr-summary-actions a:hover, .product-tab #product-review .spr-container .spr-content .spr-summary-actions a:hover { background-color: #000; color: #fff; border: 1px solid #000 } .product-tab #product-review .spr-container .spr-content .spr-form-review-rating a { opacity: 1; width: 19px } .product-tab #product-review .spr-container .spr-content .spr-form-review-rating a:before { font-size: 14px } .product-tab #product-review .spr-container .spr-content .spr-form-review-rating a.spr-icon-star-empty { color: #ccc !important } .product-tab #product-review .spr-container .spr-content .spr-form-review-rating a.spr-icon-star-hover { color: #fec42d !important } .product-tab #product-review .spr-container .spr-content .spr-form-review-rating a.spr-icon-star-hover:before { color: #fec42d !important } .product-tab #product-review .spr-container .spr-review-reportreview { font-size: 13px; line-height: 16px; color: #777; float: left; font-weight: 600; -webkit-transition: all 0.4s; -moz-transition: all 0.4s; -o-transition: all 0.4s; transition: all 0.4s } .product-tab #product-review .spr-container .spr-review-reportreview:hover { color: #000 } .product-tab #product-review .spr-container .spr-review-header-title { font-size: 15px; font-weight: 500; color: #000; margin-bottom: 7px } .product-tab #product-review .spr-container .spr-review-content { margin: 0 0 20px 0 } .product-tab #product-review .spr-container .spr-review-content .spr-review-content-body { line-height: 24px; word-wrap: break-word } .product-tab #product-review .spr-container .spr-review-header-byline { font-style: normal; font-size: 13px; opacity: 1; color: #787878; font-weight: 500; margin-bottom: 12px } .product-tab #product-review .spr-container .spr-review-header-byline strong { font-weight: 500 } .product-tab #product-review .spr-container { border: none; padding: 0 } .product-tab #product-review .spr-review, .product-tab #product-review .spr-form { border-color: #e3e3e3 } .product-tab #product-review .spr-form form fieldset input { border-radius: 0px; height: 45px } .product-tab #shipping .policy>div { line-height: 20px; margin-bottom: 15px } .product-tab #shipping .policy>div:last-child { margin-bottom: 0 } .product-tab #shipping .title { font-weight: 600; color: #000; font-family: Work Sans; letter-spacing: 1px; font-size: 19px; display: none } .product-tab #shipping .inner-content>h4 { font-size: 15px; font-weight: 600; color: #000 } .product-template__container .related { margin-bottom: 0px } .product-template__container .related .section-header { text-align: center; margin: 0 } .product-template__container .related .section-header h2 { margin-bottom: 10px } @media (max-width: 543px) { .product-template__container .related .section-header h2 { margin-bottom: 20px } } .product-template__container .related .products-display .grid__item .grid-view-item { border: 1px solid #e8eef6 } .template-product .return-link-wrapper a { margin: 0 } #shopify-section-Ishi_relatedproductsblock { margin-top: 50px } @media (max-width: 991px) { #shopify-section-Ishi_relatedproductsblock { margin-bottom: 30px } } @media (min-width: 992px) { #shopify-section-Ishi_relatedproductsblock .owl-nav { margin-top: 15px } } @media (max-width: 543px) { #shopify-section-Ishi_relatedproductsblock .owl-nav { margin-top: 25px } } #slidetop { background: #1a9bdc none repeat scroll 0 0; box-shadow: 0 0 10px 4px rgba(255, 255, 255, 0.2); color: transparent; border-radius: 0px; bottom: 15px; cursor: pointer; height: 40px; overflow: hidden; padding: 6px; position: fixed; right: 15px; text-align: center; width: 40px; z-index: 99; opacity: 1; display: none; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } #slidetop::after { content: '\E5CE'; display: inline-block; color: #fff; font-family: material icons; font-size: 26px; left: 0; position: absolute; right: 0; top: 11px; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } #slidetop:hover { background-color: #000 } #slidetop:hover:after { color: #fff } .manufacture-main { clear: left } @media (max-width: 767px) { #shopify-section-list-collections-template .grid__item { width: 50% } #shopify-section-list-collections-template .grid__item:nth-child(3n+1) { clear: right } } @media (max-width: 543px) { #shopify-section-list-collections-template .grid__item { width: 100% } } #drawer-toggle { position: absolute; opacity: 0 } #drawer-toggle-label { -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; left: 0px; height: 40px; width: 40px; display: block; background: rgba(255, 255, 255, 0); z-index: 1; text-align: center; padding: 8px 0px } #drawer-toggle-label i { color: #333 } #drawer-toggle:checked~#drawer-toggle-label { height: 100% } #drawer-toggle:checked~.navdrawer { right: 0px } @media (max-width: 991px) { #drawer-toggle:checked~.navdrawer { right: auto; left: 0 } } #drawer-toggle:checked~#page-content { margin-left: 300px } .navdrawer #drawer-toggle-label { position: relative !important; height: 30px; display: block; width: 100%; text-align: right } @media (max-width: 991px) { .navdrawer #drawer-toggle-label { text-align: left } } .navdrawer #drawer-toggle-label i { color: #fff; top: 0; left: 5px; font-size: 24px } @media (max-width: 991px) { .navdrawer #drawer-toggle-label i { color: #000 } } .template-article #shopify-section-Ishi_sidebar .tag-filter { display: none } .responsive-sidebar { padding: 0 15px; overflow: hidden } .disabled { opacity: 1 !important } .template-login { width: 100% } .template-login .grid__item { float: none } .template-cart .empty-page-content { padding: 130px 0 } .template-cart .cart__continue-btn { margin: 20px 0 } .template-search .sca-qv-button-wrap .sca-qv-button { display: none !important } #quickviewModal .modal-dialog { max-width: 1100px; top: 10%; width: 100% } @media (max-width: 767px) { #quickviewModal .modal-dialog { width: unset } } #quickviewModal .modal-header { padding-bottom: 0 } #quickviewModal .modal-header button { color: #333; font-size: 28px; opacity: 1 } #quickviewModal .modal-body { display: block; overflow: hidden; width: 100%; color: #000; font-size: 14px } #quickviewModal .modal-body #qv-images-container #qv-product-cover { text-align: center; border: 1px solid #e9e9e9 } #quickviewModal .modal-body #qv-images-container #qv-thumbnails { padding-top: 10px } #quickviewModal .modal-body #qv-images-container #qv-thumbnails .thumb-item { display: inline-block; padding: 10px; vertical-align: middle } #quickviewModal .modal-body #qv-images-container #qv-thumbnails .thumb-item img { border: 1px solid #e9e9e9 } #quickviewModal .modal-body #qv-images-container #qv-thumbnails i { margin-top: 0 !important } #quickviewModal .modal-body #qv-images-container #qv-thumbnails .owl-nav { margin-top: 0 } #quickviewModal .modal-body #qv-images-container #qv-thumbnails .owl-nav .owl-prev, #quickviewModal .modal-body #qv-images-container #qv-thumbnails .owl-nav .owl-next { top: 40%; left: -6px; position: absolute; height: 32px; width: 32px } @media (max-width: 767px) { #quickviewModal .modal-body #qv-images-container #qv-thumbnails .owl-nav .owl-prev, #quickviewModal .modal-body #qv-images-container #qv-thumbnails .owl-nav .owl-next { top: 43% } } @media (max-width: 480px) { #quickviewModal .modal-body #qv-images-container #qv-thumbnails .owl-nav .owl-prev, #quickviewModal .modal-body #qv-images-container #qv-thumbnails .owl-nav .owl-next { top: 40% } } @media (max-width: 349px) { #quickviewModal .modal-body #qv-images-container #qv-thumbnails .owl-nav .owl-prev, #quickviewModal .modal-body #qv-images-container #qv-thumbnails .owl-nav .owl-next { top: 37% } } #quickviewModal .modal-body #qv-images-container #qv-thumbnails .owl-nav .owl-prev i, #quickviewModal .modal-body #qv-images-container #qv-thumbnails .owl-nav .owl-next i { width: 32px; height: 32px } #quickviewModal .modal-body #qv-images-container #qv-thumbnails .owl-nav .owl-prev i:before, #quickviewModal .modal-body #qv-images-container #qv-thumbnails .owl-nav .owl-next i:before { width: 32px; height: 32px; line-height: 32px; font-size: 20px } #quickviewModal .modal-body #qv-images-container #qv-thumbnails .owl-nav .owl-next { right: -6px; left: auto } #quickviewModal .modal-body #qv-images-container #qv-thumbnails .owl-dots { display: none } #quickviewModal .modal-body #qv-text-container>div { letter-spacing: 0.5px; margin-bottom: 10px; font-weight: 300; font-size: 14px; letter-spacing: .8px; line-height: 20px } #quickviewModal .modal-body #qv-text-container #qv-productdescription { text-align: left; line-height: 26px; color: #787878; margin-bottom: 10px; letter-spacing: .1px; font-weight: 500; font-size: 14px; overflow: hidden } @media (max-width: 767px) { #quickviewModal .modal-body #qv-text-container #qv-productdescription { line-height: 24px } #quickviewModal .modal-body #qv-text-container #qv-productdescription .spr-summary { text-align: left } } #quickviewModal .modal-body #qv-text-container #qv-productdescription p { font-size: 14px !important } #quickviewModal .modal-body #qv-text-container #qv-productname { text-transform: capitalize; letter-spacing: 1px; font-size: 26px; font-weight: 500; margin: 0 0 15px; color: #232323; font-family: Work Sans } @media (max-width: 767px) { #quickviewModal .modal-body #qv-text-container #qv-productname { font-size: 22px; line-height: 24px; padding-top: 12px; margin: 0 0 5px } } #quickviewModal .modal-body #qv-text-container #qv-productprice { line-height: 33px; display: inline-block; margin-bottom: 6px } @media (max-width: 767px) { #quickviewModal .modal-body #qv-text-container #qv-productprice { margin-bottom: 3px } } #quickviewModal .modal-body #qv-text-container #qv-productprice .regular { color: #666; font-weight: 400; font-size: 20px; float: right } @media (max-width: 767px) { #quickviewModal .modal-body #qv-text-container #qv-productprice .regular { font-size: 17px } } #quickviewModal .modal-body #qv-text-container #qv-productprice .qv-discountprice { margin-left: 10px; font-size: 17px } #quickviewModal .modal-body #qv-text-container #qv-productprice .qv-regularprice.single-price { line-height: 26px } #quickviewModal .modal-body #qv-text-container #qv-productprice .is-bold { color: #000; font-weight: 500; font-size: 20px } @media (max-width: 767px) { #quickviewModal .modal-body #qv-text-container #qv-productprice .is-bold { font-size: 17px } } #quickviewModal .modal-body #qv-text-container #qv-productprice .discount-percentage { font-weight: 600; background: #f1f1f1; color: #000000; padding: 7px 11px; line-height: 15px; margin: 0 8px; font-size: 14px; margin-bottom: 0px; text-transform: unset; display: none } #quickviewModal .modal-body #qv-text-container #qv-productprice .discount-percentage span { display: inline-block; vertical-align: middle; color: #000000 } #quickviewModal .modal-body #qv-text-container #qv-productprice .product-price__sold-out { display: none } #quickviewModal .modal-body #qv-text-container #qv-spr-badge .spr-starrating { display: inline-block; vertical-align: top } #quickviewModal .modal-body #qv-text-container #qv-spr-badge .spr-starrating i { margin: 0 1px; opacity: 1 } #quickviewModal .modal-body #qv-text-container #qv-spr-badge .spr-starrating i:before { font-size: 14px; width: 16px; content: "\F005"; font-family: "FontAwesome"; color: #ccc !important } #quickviewModal .modal-body #qv-text-container #qv-spr-badge .spr-starrating .spr-icon-star:before, #quickviewModal .modal-body #qv-text-container #qv-spr-badge .spr-starrating .spr-icon-star-half-alt:before { color: #fec42d !important } #quickviewModal .modal-body #qv-text-container #qv-discount { display: inline-block; background-color: #000; color: #fff; padding: 2px 10px } #quickviewModal .modal-body #qv-text-container #qv-quantity { padding-top: 10px } #quickviewModal .modal-body #qv-text-container #qv-quantity .add-to-cart { display: block; width: 100%; overflow: hidden } #quickviewModal .modal-body #qv-text-container #qv-quantity .add-to-cart .product-selector { overflow: hidden } #quickviewModal .modal-body #qv-text-container #qv-quantity .add-to-cart .product-selector .selector-wrapper { display: none; width: 50%; float: left; padding-right: 20px; margin-bottom: 30px; position: relative } #quickviewModal .modal-body #qv-text-container #qv-quantity .add-to-cart .product-selector .selector-wrapper select { width: 100%; background-image: url(//cdn.shopify.com/s/files/1/0267/2073/1222/t/4/assets/dropdown-sprite.png?v=2351638615376241667); background-repeat: no-repeat; background-position: right 18px center; background-color: #fff; text-indent: 0.01px; text-overflow: ''; cursor: pointer; color: #888; border: 1px solid #e9e9e9; outline: none } #quickviewModal .modal-body #qv-text-container #qv-quantity .add-to-cart .product-selector .selector-wrapper select .veriant-option { outline: none } #quickviewModal .modal-body #qv-text-container #qv-quantity .add-to-cart .product-selector .selector-wrapper label { font-size: 16px; font-weight: 500 } #quickviewModal .modal-body #qv-text-container #qv-quantity .add-to-cart .product-form__item--submit { overflow: hidden; display: inline-block; width: 56%; vertical-align: middle } @media (max-width: 543px) { #quickviewModal .modal-body #qv-text-container #qv-quantity .add-to-cart .product-form__item--submit { width: auto; padding: 0 4px } } #quickviewModal .modal-body #qv-text-container #qv-quantity .add-to-cart .product-form__item--submit .qv-addToCart, #quickviewModal .modal-body #qv-text-container #qv-quantity .add-to-cart .product-form__item--submit .addToCart { cursor: not-allowed; pointer-events: none; opacity: 1; padding: 9px 18px 9px } #quickviewModal .modal-body #qv-text-container #qv-quantity .add-to-cart .product-form__item--submit .qv-addToCart.enable, #quickviewModal .modal-body #qv-text-container #qv-quantity .add-to-cart .product-form__item--submit .addToCart.enable { opacity: 1; cursor: pointer; font-weight: 400; pointer-events: unset } #quickviewModal .modal-body #qv-text-container #qv-quantity .add-to-cart .product-form__item--submit .qv-addToCart.sold-out, #quickviewModal .modal-body #qv-text-container #qv-quantity .add-to-cart .product-form__item--submit .addToCart.sold-out { opacity: 1; cursor: unset } #quickviewModal .modal-body #qv-text-container #qv-quantity .product-form__item .addToCart { line-height: 30px; width: 100%; display: inline-block } #quickviewModal .modal-body #qv-text-container #qv-quantity .ishi-quickview-swatch { margin-bottom: 25px } #quickviewModal .modal-header { border: none } #quickviewModal .modal-footer { padding: 0 } .product-form__item--quantity, .cart-qty-btns { float: left; display: inline-block; width: auto; vertical-align: middle; margin-bottom: 20px } .product-form__item--quantity>div, .cart-qty-btns>div { color: #888; background: #fff; display: inline-block; width: 45px; height: 50px; float: left; text-align: center; line-height: 48px; font-size: 23px; border: 1px solid #e9e9e9; cursor: pointer; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } @media screen and (min-width: 768px) and (max-width: 1499px) { .product-form__item--quantity>div, .cart-qty-btns>div { width: 34px } } @media (max-width: 543px) { .product-form__item--quantity>div, .cart-qty-btns>div { width: 33px } } .product-form__item--quantity>div:hover, .product-form__item--quantity>div:focus, .cart-qty-btns>div:hover, .cart-qty-btns>div:focus { color: #000 } .product-form__item--quantity .quantity, .cart-qty-btns .quantity { display: inline-block; vertical-align: middle; float: left; color: #888; background: #fff; border: none; width: 65px; text-align: center; height: 50px; border-top: 1px solid #e9e9e9; border-bottom: 1px solid #e9e9e9; border-radius: 0 } @media screen and (min-width: 768px) and (max-width: 1499px) { .product-form__item--quantity .quantity, .cart-qty-btns .quantity { width: 52px } } @media (max-width: 543px) { .product-form__item--quantity .quantity, .cart-qty-btns .quantity { width: 50px } } .ishi-customhover-fadeinnormal.scale img, .ishi-customhover-fadeinflip.scale img, .ishi-customhover-fadeinrotate.scale img, .ishi-customhover-fadeinrotate3D.scale img, .ishi-customhover-fadeintop.scale img, .ishi-customhover-fadeinbottom.scale img, .ishi-customhover-fadeoutcenter.scale img, .ishi-customhover-fadeinoutcorner.scale img, .ishi-customhover-fadeinoutbordercorner.scale img, .ishi-customhover-doublefadeincenter.scale img, .ishi-customhover-fadeinoutdouble.scale img, .ishi-customhover-fadeinoutsingle.scale img, .ishi-customhover-fadeinoutdoublevertical.scale img, .ishi-customhover-perspective.scale img, .ishi-customhover-fadeinoutrotatevertical.scale img { transform: scale(1); -moz-transform: scale(1); -webkit-transform: scale(1); -o-transform: scale(1); -ms-transform: scale(1); -webkit-transition: all 0.6s ease 0s; -moz-transition: all 0.6s ease 0s; -ms-transition: all 0.6s ease 0s; -o-transition: all 0.6s ease 0s; transition: all 0.6s ease 0s } .ishi-customhover-fadeinnormal:hover.scale img, .ishi-customhover-fadeinflip:hover.scale img, .ishi-customhover-fadeinrotate:hover.scale img, .ishi-customhover-fadeinrotate3D:hover.scale img, .ishi-customhover-fadeintop:hover.scale img, .ishi-customhover-fadeinbottom:hover.scale img, .ishi-customhover-fadeoutcenter:hover.scale img, .ishi-customhover-fadeinoutcorner:hover.scale img, .ishi-customhover-fadeinoutbordercorner:hover.scale img, .ishi-customhover-doublefadeincenter:hover.scale img, .ishi-customhover-fadeinoutdouble:hover.scale img, .ishi-customhover-fadeinoutsingle:hover.scale img, .ishi-customhover-fadeinoutdoublevertical:hover.scale img, .ishi-customhover-perspective:hover.scale img, .ishi-customhover-fadeinoutrotatevertical:hover.scale img { transform: scale(1.1); -moz-transform: scale(1.1); -webkit-transform: scale(1.1); -o-transform: scale(1.1); -ms-transform: scale(1.1) } .ishi-customhover-fadeinoutsingle:before { content: ""; left: 0; opacity: 1; position: absolute; right: 0; top: 0; background: rgba(255, 255, 255, 0.6) none repeat scroll 0 0; height: 0; -webkit-transition: all 900ms ease-in-out 0s; -o-transition: all 900ms ease-in-out 0s; transition: all 900ms ease-in-out 0s; width: 100% } .ishi-customhover-fadeinoutsingle:hover:before { opacity: 0; height: 100% } .ishi-customhover-fadeinoutdouble:before { content: ""; left: 0; opacity: 1; position: absolute; right: 0; top: 0; background: rgba(0, 0, 0, 0.6) none repeat scroll 0 0; height: 0; -webkit-transition: all 900ms ease-in-out 0s; -o-transition: all 900ms ease-in-out 0s; transition: all 900ms ease-in-out 0s; width: 100% } .ishi-customhover-fadeinoutdouble:after { content: ""; left: 0; opacity: 1; position: absolute; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.6) none repeat scroll 0 0; height: 0; -webkit-transition: all 900ms ease-in-out 0s; -o-transition: all 900ms ease-in-out 0s; transition: all 900ms ease-in-out 0s; width: 100% } .ishi-customhover-fadeinoutdouble:hover:before { opacity: 0; height: 85% } .ishi-customhover-fadeinoutdouble:hover:after { opacity: 0; height: 85% } .ishi-customhover-fadeinoutdoublevertical:before { content: ""; left: 0; opacity: 1; position: absolute; top: 0; bottom: 0; background: rgba(255, 255, 255, 0.6) none repeat scroll 0 0; width: 0; -webkit-transition: all 900ms ease-in-out 0s; -o-transition: all 900ms ease-in-out 0s; transition: all 900ms ease-in-out 0s; height: 100% } .ishi-customhover-fadeinoutdoublevertical:after { content: ""; opacity: 1; position: absolute; right: 0; top: 0; bottom: 0; background: rgba(255, 255, 255, 0.6) none repeat scroll 0 0; width: 0; -webkit-transition: all 900ms ease-in-out 0s; -o-transition: all 900ms ease-in-out 0s; transition: all 900ms ease-in-out 0s; height: 100% } .ishi-customhover-fadeinoutdoublevertical:hover:before { opacity: 0; width: 85% } .ishi-customhover-fadeinoutdoublevertical:hover:after { opacity: 0; width: 85% } .ishi-customhover-perspective:before { content: ""; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.1); position: absolute; top: 0; left: 0; border: 15px solid rgba(255, 255, 255, 0); opacity: 0 } .ishi-customhover-perspective:hover:before { animation-name: perspectiveH; animation-duration: 1200ms; animation-iteration-count: 1; animation-timing-function: linear; opacity: 1 } @keyframes perspectiveH { 0% { -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg); transform: perspective(400px) rotate3d(0, 1, 0, 90deg); -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; opacity: 0 } 40% { -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg); transform: perspective(400px) rotate3d(0, 1, 0, -20deg); -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in } 60% { -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg); transform: perspective(400px) rotate3d(0, 1, 0, 10deg); opacity: 1 } 80% { -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg); transform: perspective(400px) rotate3d(0, 1, 0, -5deg) } 100% { -webkit-transform: perspective(400px); transform: perspective(400px) } } .ishi-customhover-fadeinoutrotatevertical:before, .ishi-customhover-fadeinoutrotatevertical:after { content: ""; width: 100%; height: 100%; position: absolute; top: 0; left: 0; color: #fff; text-align: center; padding: 20% 20px; background: rgba(0, 0, 0, 0.05); transform: rotate(-90deg); transform-origin: left top 0; -webkit-transition: all 0.6s ease 0s; -moz-transition: all 0.6s ease 0s; -o-transition: all 0.6s ease 0s } .ishi-customhover-fadeinoutrotatevertical:after { right: 0; bottom: 0; top: auto; left: auto; transform-origin: right bottom 0 } .ishi-customhover-fadeinoutrotatevertical:hover:before, .ishi-customhover-fadeinoutrotatevertical:hover:after { transform: rotate(0deg) } .ishi-customhover-fadeinnormal:after { content: ""; position: absolute; top: 10px; left: 10px; right: 10px; bottom: 10px; background: rgba(0, 0, 0, 0.07); opacity: 0; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease } .ishi-customhover-fadeinnormal:hover:after { opacity: 1; transform: scale(1); -moz-transform: scale(1); -webkit-transform: scale(1); -o-transform: scale(1); -ms-transform: scale(1) } .ishi-customhover-fadeinflip:after { content: ""; background-color: rgba(0, 0, 0, 0.08); position: absolute; padding: 30px; position: absolute; top: 10px; bottom: 10px; left: 10px; right: 10px; opacity: 0; -webkit-transform: rotate3d(1, 1, 0, 100deg); -moz-transform: rotate3d(1, 1, 0, 100deg); -ms-transform: rotate3d(1, 1, 0, 100deg); -o-transform: rotate3d(1, 1, 0, 100deg); transform: rotate3d(1, 1, 0, 100deg); -webkit-transition: all 0.35s ease; -moz-transition: all 0.35s ease; transition: all 0.35s ease } .ishi-customhover-fadeinflip:hover:after { opacity: 1; -webkit-transition-delay: 0.14s; -moz-transition-delay: 0.14s; transition-delay: 0.14s; -webkit-transform: rotate3d(0, 0, 0, 0deg); -moz-transform: rotate3d(0, 0, 0, 0deg); -ms-transform: rotate3d(0, 0, 0, 0deg); -o-transform: rotate3d(0, 0, 0, 0deg); transform: rotate3d(0, 0, 0, 0deg) } .ishi-customhover-fadeinrotate:after { content: ''; background: none repeat scroll 0 0 rgba(0, 0, 0, 0.07); position: absolute; display: block; top: 10px; right: 10px; bottom: 10px; opacity: 0; left: 10px; -webkit-transition: all 0.3s ease 0s; -moz-transition: all 0.3s ease 0s; -ms-transition: all 0.3s ease 0s; -o-transition: all 0.3s ease 0s; transition: all 0.3s ease 0s; -webkit-transform: rotate(-180deg) scale(0); -moz-transform: rotate(-180deg) scale(0); -ms-transform: rotate(-180deg) scale(0); -o-transform: rotate(-180deg) scale(0); transform: rotate(-180deg) scale(0) } .ishi-customhover-fadeinrotate:hover:after { -webkit-transform: rotate(0deg) scale(1); -moz-transform: rotate(0deg) scale(1); -ms-transform: rotate(0deg) scale(1); -o-transform: rotate(0deg) scale(1); transform: rotate(0deg) scale(1); opacity: 1 } .ishi-customhover-fadeinrotate3D:after { content: ""; position: absolute; top: 50%; left: 50%; right: 50%; bottom: 50%; -webkit-transition: all 0.9s; -moz-transition: all 0.9s; -o-transition: all 0.9s; transition: all 0.9s } .ishi-customhover-fadeinrotate3D:hover:after { background: rgba(0, 0, 0, 0.08); transform: rotateY(180deg); -moz-transform: rotateY(180deg); -webkit-transform: rotateY(180deg); -o-transform: rotateY(180deg); -ms-transform: rotateY(180deg); top: 0; left: 0; right: 0; bottom: 0; -webkit-transition: all 0.9s; -moz-transition: all 0.9s; -o-transition: all 0.9s; transition: all 0.9s } .ishi-customhover-fadeintop:after { content: ""; background: rgba(0, 0, 0, 0.06); transition: all 0.5s ease; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -ms-transition: all 0.5s ease; -o-transition: all 0.5s ease; width: 100%; height: 0%; position: absolute; left: 0; right: 0; top: 0 } .ishi-customhover-fadeintop:hover:after { height: 100% } .ishi-customhover-fadeinbottom:after { content: ""; background: rgba(0, 0, 0, 0.06); transition: all 0.5s ease; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -ms-transition: all 0.5s ease; -o-transition: all 0.5s ease; width: 100%; height: 0%; position: absolute; left: 0; right: 0; bottom: 0 } .ishi-customhover-fadeinbottom:hover:after { height: 100% } .ishi-customhover-fadeintopbottom:before, .ishi-customhover-fadeintopbottom:after { content: ""; background: none repeat scroll 0 0 rgba(0, 0, 0, 0.06); bottom: -100%; width: 100%; height: 100%; display: block; left: 0; opacity: 0; position: absolute; -webkit-transition: all 0.8s ease 0s; -moz-transition: all 0.8s ease 0s; -ms-transition: all 0.8s ease 0s; -o-transition: all 0.8s ease 0s; transition: all 0.8s ease 0s } .ishi-customhover-fadeintopbottom:after { top: -100%; bottom: auto } .ishi-customhover-fadeintopbottom:hover:before { bottom: 50%; opacity: 1 } .ishi-customhover-fadeintopbottom:hover:after { top: 50%; opacity: 1 } .ishi-customhover-doublefadeincenter:before, .ishi-customhover-doublefadeincenter:after { content: ""; bottom: 10px; left: 10px; opacity: 0; position: absolute; right: 10px; top: 10px; background: rgba(0, 0, 0, 0.06) none repeat scroll 0 0; transition: opacity 0.35s ease 0s, transform 0.5s ease 0s; -webkit-transition: opacity 0.35s ease 0s, transform 0.5s ease 0s; -moz-transition: opacity 0.35s ease 0s, transform 0.5s ease 0s; -o-transition: opacity 0.35s ease 0s, transform 0.5s ease 0s; -ms-transition: opacity 0.35s ease 0s, transform 0.5s ease 0s } .ishi-customhover-doublefadeincenter:before { transform: scale(0, 1); -webkit-transform: scale(0, 1); -moz-transform: scale(0, 1); -o-transform: scale(0, 1); -ms-transform: scale(0, 1) } .ishi-customhover-doublefadeincenter:after { transform: scale(1, 0); -webkit-transform: scale(1, 0); -moz-transform: scale(1, 0); -o-transform: scale(1, 0); -ms-transform: scale(1, 0) } .ishi-customhover-doublefadeincenter:hover:before, .ishi-customhover-doublefadeincenter:hover:after { opacity: 1; transform: scale(1); -webkit-transform: scale(1); -moz-transform: scale(1); -o-transform: scale(1); -ms-transform: scale(1) } .ishi-customhover-fadeoutcenter:after { background: rgba(0, 0, 0, 0.1) none repeat scroll 0 0; bottom: 20px; content: ""; left: 20px; position: absolute; right: 20px; top: 20px; transform: scale(0); -webkit-transform: scale(0); -ms-transform: scale(0); -o-transform: scale(0); opacity: 1 } .ishi-customhover-fadeoutcenter:hover:after { transform: scale(1); -webkit-transform: scale(1); -ms-transform: scale(1); -o-transform: scale(1); transition-duration: 1s; -moz-transition-duration: 1s; -webkit-transition-duration: 1s; -khtml-transition-duration: 1s; -o-transition-duration: 1s; opacity: 0 } .ishi-customhover-fadeoutcorner:before, .ishi-customhover-fadeoutcorner:after { content: ""; position: absolute; top: 0; left: 0; width: 0; height: 0; background: rgba(0, 0, 0, 0.1); margin: auto; opacity: 1 } .ishi-customhover-fadeoutcorner:after { bottom: 0; right: 0; left: auto; top: auto } .ishi-customhover-fadeoutcorner:hover:before, .ishi-customhover-fadeoutcorner:hover:after { height: 100%; -webkit-transition: 1.3s; transition: 1.3s; opacity: 0; width: 100% } .ishi-customhover-fadeinoutcorner:after { background-color: #1a9bdc; width: 0; height: 0; content: ""; opacity: 0.1; position: absolute; -webkit-transition: all 0.4s ease-in-out 0s; right: 0 } .ishi-customhover-fadeinoutcorner:hover:after { width: 100%; height: 100%; right: auto; left: 0 } .ishi-customhover-fadeinoutbordercorner:before, .ishi-customhover-fadeinoutbordercorner:after { content: ''; position: absolute; top: 0; right: 0; bottom: 0; left: 0; opacity: 0; -webkit-transition: opacity 0.90s, -webkit-transform 0.90s; transition: opacity 0.90s, transform 0.90s; z-index: 9 } .ishi-customhover-fadeinoutbordercorner:before { content: ''; z-index: 9; position: absolute; top: 0; left: 0; right: 0; bottom: 0; transform: scale(0); -moz-transform: scale(0); -webkit-transform: scale(0); -o-transform: scale(0); -ms-transform: scale(0); background: rgba(0, 0, 0, 0.1); -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s } .ishi-customhover-fadeinoutbordercorner:before { border-top: 10px solid #ffffff; border-bottom: 10px solid #ffffff; -webkit-transform: scale(0, 1); transform: scale(0, 1); background: rgba(0, 0, 0, 0.1) } .ishi-customhover-fadeinoutbordercorner:after { border-right: 10px solid #ffffff; border-left: 10px solid #ffffff; -webkit-transform: scale(1, 0); transform: scale(1, 0); background: transparent !important } .ishi-customhover-fadeinoutbordercorner:hover:before, .ishi-customhover-fadeinoutbordercorner:hover:after { opacity: 1; transform: scale(1); -moz-transform: scale(1); -webkit-transform: scale(1); -o-transform: scale(1); -ms-transform: scale(1) } .ishi-customhover-fadeinoutbordercorner:hover:before { opacity: 1; transform: scale(1); -moz-transform: scale(1); -webkit-transform: scale(1); -o-transform: scale(1); -ms-transform: scale(1) } #siteloader { background: #fff; height: 100%; left: 0; right: 0; position: fixed; top: 0; bottom: 0; width: 100%; z-index: 9999; margin: auto; -webkit-transition: all .5s ease; -moz-transition: all .5s ease; transition: all .5s ease } #siteloader>div { top: 45%; margin: auto; position: relative; clear: both } #spin-wrapper { width: 100%; height: 100%; position: fixed; z-index: 9998; background: #fff; top: 0; bottom: 0; left: 0; right: 0 } .ishi-rotate-slices { width: 32px; height: 32px; clear: both; border-radius: 50%; border-top: 24px rgba(0, 0, 0, 0.75) solid; border-left: 24px rgba(0, 0, 0, 0.25) solid; border-bottom: 24px rgba(0, 0, 0, 0.25) solid; border-right: 24px rgba(0, 0, 0, 0.25) solid; -webkit-animation: spSlices 1s infinite linear; animation: spSlices 2.5s infinite linear } @-webkit-keyframes spSlices { 0% { border-top: 24px rgba(0, 0, 0, 0.75) solid; border-right: 24px rgba(0, 0, 0, 0.25) solid; border-bottom: 24px rgba(0, 0, 0, 0.25) solid; border-left: 24px rgba(0, 0, 0, 0.25) solid } 25% { border-top: 24px rgba(0, 0, 0, 0.25) solid; border-right: 24px rgba(0, 0, 0, 0.75) solid; border-bottom: 24px rgba(0, 0, 0, 0.25) solid; border-left: 24px rgba(0, 0, 0, 0.25) solid } 50% { border-top: 24px rgba(0, 0, 0, 0.25) solid; border-right: 24px rgba(0, 0, 0, 0.25) solid; border-bottom: 24px rgba(0, 0, 0, 0.75) solid; border-left: 24px rgba(0, 0, 0, 0.25) solid } 75% { border-top: 24px rgba(0, 0, 0, 0.25) solid; border-right: 24px rgba(0, 0, 0, 0.25) solid; border-bottom: 24px rgba(0, 0, 0, 0.25) solid; border-left: 24px rgba(0, 0, 0, 0.75) solid } 100% { border-top: 24px rgba(0, 0, 0, 0.75) solid; border-right: 24px rgba(0, 0, 0, 0.25) solid; border-bottom: 24px rgba(0, 0, 0, 0.25) solid; border-left: 24px rgba(0, 0, 0, 0.25) solid } } @-moz-keyframes spSlices { 0% { border-top: 24px rgba(0, 0, 0, 0.75) solid; border-right: 24px rgba(0, 0, 0, 0.25) solid; border-bottom: 24px rgba(0, 0, 0, 0.25) solid; border-left: 24px rgba(0, 0, 0, 0.25) solid } 25% { border-top: 24px rgba(0, 0, 0, 0.25) solid; border-right: 24px rgba(0, 0, 0, 0.75) solid; border-bottom: 24px rgba(0, 0, 0, 0.25) solid; border-left: 24px rgba(0, 0, 0, 0.25) solid } 50% { border-top: 24px rgba(0, 0, 0, 0.25) solid; border-right: 24px rgba(0, 0, 0, 0.25) solid; border-bottom: 24px rgba(0, 0, 0, 0.75) solid; border-left: 24px rgba(0, 0, 0, 0.25) solid } 75% { border-top: 24px rgba(0, 0, 0, 0.25) solid; border-right: 24px rgba(0, 0, 0, 0.25) solid; border-bottom: 24px rgba(0, 0, 0, 0.25) solid; border-left: 24px rgba(0, 0, 0, 0.75) solid } 100% { border-top: 24px rgba(0, 0, 0, 0.75) solid; border-right: 24px rgba(0, 0, 0, 0.25) solid; border-bottom: 24px rgba(0, 0, 0, 0.25) solid; border-left: 24px rgba(0, 0, 0, 0.25) solid } } @-o-keyframes spSlices { 0% { border-top: 24px rgba(0, 0, 0, 0.75) solid; border-right: 24px rgba(0, 0, 0, 0.25) solid; border-bottom: 24px rgba(0, 0, 0, 0.25) solid; border-left: 24px rgba(0, 0, 0, 0.25) solid } 25% { border-top: 24px rgba(0, 0, 0, 0.25) solid; border-right: 24px rgba(0, 0, 0, 0.75) solid; border-bottom: 24px rgba(0, 0, 0, 0.25) solid; border-left: 24px rgba(0, 0, 0, 0.25) solid } 50% { border-top: 24px rgba(0, 0, 0, 0.25) solid; border-right: 24px rgba(0, 0, 0, 0.25) solid; border-bottom: 24px rgba(0, 0, 0, 0.75) solid; border-left: 24px rgba(0, 0, 0, 0.25) solid } 75% { border-top: 24px rgba(0, 0, 0, 0.25) solid; border-right: 24px rgba(0, 0, 0, 0.25) solid; border-bottom: 24px rgba(0, 0, 0, 0.25) solid; border-left: 24px rgba(0, 0, 0, 0.75) solid } 100% { border-top: 24px rgba(0, 0, 0, 0.75) solid; border-right: 24px rgba(0, 0, 0, 0.25) solid; border-bottom: 24px rgba(0, 0, 0, 0.25) solid; border-left: 24px rgba(0, 0, 0, 0.25) solid } } @keyframes spSlices { 0% { border-top: 24px rgba(0, 0, 0, 0.75) solid; border-right: 24px rgba(0, 0, 0, 0.25) solid; border-bottom: 24px rgba(0, 0, 0, 0.25) solid; border-left: 24px rgba(0, 0, 0, 0.25) solid } 25% { border-top: 24px rgba(0, 0, 0, 0.25) solid; border-right: 24px rgba(0, 0, 0, 0.75) solid; border-bottom: 24px rgba(0, 0, 0, 0.25) solid; border-left: 24px rgba(0, 0, 0, 0.25) solid } 50% { border-top: 24px rgba(0, 0, 0, 0.25) solid; border-right: 24px rgba(0, 0, 0, 0.25) solid; border-bottom: 24px rgba(0, 0, 0, 0.75) solid; border-left: 24px rgba(0, 0, 0, 0.25) solid } 75% { border-top: 24px rgba(0, 0, 0, 0.25) solid; border-right: 24px rgba(0, 0, 0, 0.25) solid; border-bottom: 24px rgba(0, 0, 0, 0.25) solid; border-left: 24px rgba(0, 0, 0, 0.75) solid } 100% { border-top: 24px rgba(0, 0, 0, 0.75) solid; border-right: 24px rgba(0, 0, 0, 0.25) solid; border-bottom: 24px rgba(0, 0, 0, 0.25) solid; border-left: 24px rgba(0, 0, 0, 0.25) solid } } .ishi-round-rotate-scale { border-radius: 100%; border: 2px solid #1a9bdc; border-bottom-color: transparent; height: 40px; width: 40px; background: transparent; -webkit-animation: rotate-scale .75s 0s linear infinite; animation: rotate-scale .75s 0s linear infinite } @-webkit-keyframes rotate-scale { 0% { -webkit-transform: rotate(0) scale(1); transform: rotate(0) scale(1) } 50% { -webkit-transform: rotate(180deg) scale(0.6); transform: rotate(180deg) scale(0.6) } 100% { -webkit-transform: rotate(360deg) scale(1); transform: rotate(360deg) scale(1) } } @-moz-keyframes rotate-scale { 0% { -moz-transform: rotate(0) scale(1); transform: rotate(0) scale(1) } 50% { -moz-transform: rotate(180deg) scale(0.6); transform: rotate(180deg) scale(0.6) } 100% { -moz-transform: rotate(360deg) scale(1); transform: rotate(360deg) scale(1) } } @-o-keyframes rotate-scale { 0% { -o-transform: rotate(0) scale(1); transform: rotate(0) scale(1) } 50% { -o-transform: rotate(180deg) scale(0.6); transform: rotate(180deg) scale(0.6) } 100% { -o-transform: rotate(360deg) scale(1); transform: rotate(360deg) scale(1) } } @keyframes rotate-scale { 0% { transform: rotate(0) scale(1) } 50% { transform: rotate(180deg) scale(0.6) } 100% { transform: rotate(360deg) scale(1) } } .ishi-square-rotate { position: relative; width: 155px; height: 120px } .ishi-square-rotate:before, .ishi-square-rotate:after { position: absolute; content: ""; height: 60px; width: 60px; top: 30px; left: 50px; border-radius: 7px; background-color: #1a9bdc; -webkit-animation: loader-rotate2 1.8s ease-in-out infinite; animation: loader-rotate2 1.8s ease-in-out infinite; -webkit-animation-direction: alternate; animation-direction: alternate; -webkit-transform-origin: center center; transform-origin: center center } .ishi-square-rotate:after { height: 30px; width: 30px; left: 65px; top: 45px; border-radius: 3px; background-color: #fff; -webkit-animation: loader-rotate1 1.8s ease-in-out infinite; animation: loader-rotate1 1.8s ease-in-out infinite; -webkit-animation-direction: alternate; animation-direction: alternate; -webkit-transform-origin: center center; transform-origin: center center } @-webkit-keyframes loader-rotate1 { 0% { -webkit-transform: rotate(0deg) scale(1); transform: rotate(0deg) scale(1) } 65% { -webkit-transform: rotate(-90deg) scale(0.5); transform: rotate(-90deg) scale(0.5) } 100% { -webkit-transform: rotate(270deg) scale(1.2); transform: rotate(270deg) scale(1.2) } } @-moz-keyframes loader-rotate1 { 0% { -moz-transform: rotate(0deg) scale(1); transform: rotate(0deg) scale(1) } 65% { -moz-transform: rotate(-90deg) scale(0.5); transform: rotate(-90deg) scale(0.5) } 100% { -moz-transform: rotate(270deg) scale(1.2); transform: rotate(270deg) scale(1.2) } } @-o-keyframes loader-rotate1 { 0% { -o-transform: rotate(0deg) scale(1); transform: rotate(0deg) scale(1) } 65% { -o-transform: rotate(-90deg) scale(0.5); transform: rotate(-90deg) scale(0.5) } 100% { -o-transform: rotate(270deg) scale(1.2); transform: rotate(270deg) scale(1.2) } } @keyframes loader-rotate1 { 0% { transform: rotate(0deg) scale(1) } 65% { transform: rotate(-90deg) scale(0.5) } 100% { transform: rotate(270deg) scale(1.2) } } @-webkit-keyframes loader-rotate2 { 0% { -webkit-transform: rotate(0deg) scale(1); transform: rotate(0deg) scale(1) } 45% { -webkit-transform: rotate(90deg) scale(0.8); transform: rotate(90deg) scale(0.8); border-radius: 50% } 100% { -webkit-transform: rotate(-270deg) scale(1.1); transform: rotate(-270deg) scale(1.1) } } @-moz-keyframes loader-rotate2 { 0% { -moz-transform: rotate(0deg) scale(1); transform: rotate(0deg) scale(1) } 45% { -moz-transform: rotate(90deg) scale(0.8); transform: rotate(90deg) scale(0.8); border-radius: 50% } 100% { -moz-transform: rotate(-270deg) scale(1.1); transform: rotate(-270deg) scale(1.1) } } @-o-keyframes loader-rotate2 { 0% { -o-transform: rotate(0deg) scale(1); transform: rotate(0deg) scale(1) } 45% { -o-transform: rotate(90deg) scale(0.8); transform: rotate(90deg) scale(0.8); border-radius: 50% } 100% { -o-transform: rotate(-270deg) scale(1.1); transform: rotate(-270deg) scale(1.1) } } @keyframes loader-rotate2 { 0% { transform: rotate(0deg) scale(1) } 45% { transform: rotate(90deg) scale(0.8); border-radius: 50% } 100% { transform: rotate(-270deg) scale(1.1) } } .ishi-round-flip { width: 64px; height: 64px; border-radius: 50%; background: #1a9bdc; animation: lds-circle 2.4s cubic-bezier(0, 1, 0.9, 1) infinite } @-webkit-keyframes lds-circle { 0%, 100% { animation-timing-function: cubic-bezier(0.8, 0, 1, 0.8) } 0% { transform: rotateY(0deg) } 50% { transform: rotateY(900deg); animation-timing-function: cubic-bezier(0, 0.6, 0.6, 1) } 100% { transform: rotateY(1500deg) } } @-moz-keyframes lds-circle { 0%, 100% { animation-timing-function: cubic-bezier(0.8, 0, 1, 0.8) } 0% { transform: rotateY(0deg) } 50% { transform: rotateY(900deg); animation-timing-function: cubic-bezier(0, 0.6, 0.6, 1) } 100% { transform: rotateY(1500deg) } } @-o-keyframes lds-circle { 0%, 100% { animation-timing-function: cubic-bezier(0.8, 0, 1, 0.8) } 0% { transform: rotateY(0deg) } 50% { transform: rotateY(900deg); animation-timing-function: cubic-bezier(0, 0.6, 0.6, 1) } 100% { transform: rotateY(1500deg) } } @keyframes lds-circle { 0%, 100% { animation-timing-function: cubic-bezier(0.8, 0, 1, 0.8) } 0% { transform: rotateY(0deg) } 50% { transform: rotateY(900deg); animation-timing-function: cubic-bezier(0, 0.6, 0.6, 1) } 100% { transform: rotateY(1500deg) } } .ishi-triangle-rotate { width: 0; height: 0; border-left: 40px solid transparent; border-right: 40px solid transparent; border-bottom: 40px solid #1a9bdc; -webkit-animation: triangle-skew-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite; animation: triangle-skew-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite } @-webkit-keyframes triangle-skew-spin { 25% { -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0); transform: perspective(100px) rotateX(180deg) rotateY(0) } 50% { -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg); transform: perspective(100px) rotateX(180deg) rotateY(180deg) } 75% { -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg); transform: perspective(100px) rotateX(0) rotateY(180deg) } 100% { -webkit-transform: perspective(100px) rotateX(0) rotateY(0); transform: perspective(100px) rotateX(0) rotateY(0) } } @-o-keyframes triangle-skew-spin { 25% { -o-transform: perspective(100px) rotateX(180deg) rotateY(0); transform: perspective(100px) rotateX(180deg) rotateY(0) } 50% { -o-transform: perspective(100px) rotateX(180deg) rotateY(180deg); transform: perspective(100px) rotateX(180deg) rotateY(180deg) } 75% { -o-transform: perspective(100px) rotateX(0) rotateY(180deg); transform: perspective(100px) rotateX(0) rotateY(180deg) } 100% { -o-transform: perspective(100px) rotateX(0) rotateY(0); transform: perspective(100px) rotateX(0) rotateY(0) } } @-moz-keyframes triangle-skew-spin { 25% { -moz-transform: perspective(100px) rotateX(180deg) rotateY(0); transform: perspective(100px) rotateX(180deg) rotateY(0) } 50% { -moz-transform: perspective(100px) rotateX(180deg) rotateY(180deg); transform: perspective(100px) rotateX(180deg) rotateY(180deg) } 75% { -moz-transform: perspective(100px) rotateX(0) rotateY(180deg); transform: perspective(100px) rotateX(0) rotateY(180deg) } 100% { -moz-transform: perspective(100px) rotateX(0) rotateY(0); transform: perspective(100px) rotateX(0) rotateY(0) } } @keyframes triangle-skew-spin { 25% { -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0); transform: perspective(100px) rotateX(180deg) rotateY(0) } 50% { -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg); transform: perspective(100px) rotateX(180deg) rotateY(180deg) } 75% { -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg); transform: perspective(100px) rotateX(0) rotateY(180deg) } 100% { -webkit-transform: perspective(100px) rotateX(0) rotateY(0); transform: perspective(100px) rotateX(0) rotateY(0) } } .ishi-rotate-plane { display: block; width: 50px; height: 50px; background-color: #1a9bdc; margin: 0 auto; -webkit-animation: rotateplane 1.4s infinite ease-in-out; animation: rotateplane 1.4s infinite ease-in-out } @-webkit-keyframes rotateplane { 0% { -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg); transform: perspective(120px) rotateX(0deg) rotateY(0deg) } 50% { -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg); transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg) } 100% { -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg); transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg) } } @-moz-keyframes rotateplane { 0% { -moz-transform: perspective(120px) rotateX(0deg) rotateY(0deg); transform: perspective(120px) rotateX(0deg) rotateY(0deg) } 50% { -moz-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg); transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg) } 100% { -moz-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg); transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg) } } @-o-keyframes rotateplane { 0% { -o-transform: perspective(120px) rotateX(0deg) rotateY(0deg); transform: perspective(120px) rotateX(0deg) rotateY(0deg) } 50% { -o-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg); transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg) } 100% { -o-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg); transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg) } } @keyframes rotateplane { 0% { transform: perspective(120px) rotateX(0deg) rotateY(0deg) } 50% { transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg) } 100% { transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg) } } .ishi-round-rotate { color: #1a9bdc; font-size: 8px; text-indent: -99999em; margin: auto; position: relative; width: 10em; height: 10em; border-radius: 50%; box-shadow: inset 0 0 0 0.9em; -webkit-transform: translateZ(0); -ms-transform: translateZ(0); transform: translateZ(0) } .ishi-round-rotate:before, .ishi-round-rotate:after { position: absolute; content: ""; width: 5.2em; height: 10.2em; background: #fff; border-radius: 10.2em 0 0 10.2em; top: -0.1em; left: -0.1em; -webkit-transform-origin: 5.2em 5.1em; transform-origin: 5.2em 5.1em; -webkit-animation: load2 2s infinite ease 1.5s; animation: load2 2s infinite ease 1.5s } .ishi-round-rotate:after { border-radius: 0 10.2em 10.2em 0; left: 5.1em; -webkit-transform-origin: 0px 5.1em; transform-origin: 0px 5.1em; -webkit-animation: load2 2s infinite ease 0s; animation: load2 2s infinite ease 0s } @-webkit-keyframes load2 { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg) } 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg) } } @-moz-keyframes load2 { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg) } 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg) } } @-o-keyframes load2 { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg) } 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg) } } @keyframes load2 { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg) } 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg) } } .ishi-simple-dot-scaleout { width: 52px; height: 52px; border-radius: 40px; background-color: #1a9bdc; -webkit-animation: scaleout 1.0s infinite ease-in-out; animation: scaleout 1.0s infinite ease-in-out } @-webkit-keyframes scaleout { 0% { -webkit-transform: scale(0); transform: scale(0) } 100% { -webkit-transform: scale(1); transform: scale(1); opacity: 0 } } @-moz-keyframes scaleout { 0% { -webkit-transform: scale(0); transform: scale(0) } 100% { -webkit-transform: scale(1); transform: scale(1); opacity: 0 } } @-o-keyframes scaleout { 0% { -webkit-transform: scale(0); transform: scale(0) } 100% { -webkit-transform: scale(1); transform: scale(1); opacity: 0 } } @keyframes scaleout { 0% { -webkit-transform: scale(0); transform: scale(0) } 100% { -webkit-transform: scale(1); transform: scale(1); opacity: 0 } } .ishi-dots-rotate { color: #1a9bdc; font-size: 46px; text-indent: -9999em; overflow: hidden; width: 1em; height: 1em; border-radius: 50%; margin: auto; position: relative; -webkit-transform: translateZ(0); -ms-transform: translateZ(0); transform: translateZ(0); -webkit-animation: load1 1.8s infinite ease, round1 1.8s infinite ease; animation: load1 1.8s infinite ease, round1 1.8s infinite ease } @-webkit-keyframes load1 { 0% { box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em } 5%, 95% { box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em } 10%, 59% { box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em } 20% { box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em } 38% { box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em } 100% { box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em } } @-moz-keyframes load1 { 0% { box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em } 5%, 95% { box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em } 10%, 59% { box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em } 20% { box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em } 38% { box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em } 100% { box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em } } @-o-keyframes load1 { 0% { box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em } 5%, 95% { box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em } 10%, 59% { box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em } 20% { box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em } 38% { box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em } 100% { box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em } } @keyframes load1 { 0% { box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em } 5%, 95% { box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em } 10%, 59% { box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em } 20% { box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em } 38% { box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em } 100% { box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em } } @-webkit-keyframes round1 { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg) } 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg) } } @-moz-keyframes round1 { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg) } 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg) } } @-o-keyframes round1 { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg) } 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg) } } @keyframes round1 { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg) } 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg) } } .ishi-dots-scale { width: 32px; height: 32px; margin: 0 auto } .ishi-dots-scale:before, .ishi-dots-scale:after { content: ''; border: none; border-radius: 50%; width: 100%; height: 100%; position: absolute; left: 0px; background: rgba(0, 0, 0, 0.2); transform: scale(1, 1); opacity: 1; -webkit-animation: spWaveBe 0.6s infinite linear; animation: spWaveBe 0.6s infinite linear } .ishi-dots-scale:after { transform: scale(0, 0); opacity: 0; -webkit-animation: spWaveAf 0.6s infinite linear; animation: spWaveAf 0.6s infinite linear } .ishi-dots-scale-border { width: 34px; height: 34px; margin: 0 auto } .ishi-dots-scale-border:before, .ishi-dots-scale-border:after { content: ''; border: 2px solid #1a9bdc; border-radius: 50%; width: 100%; height: 100%; position: absolute; left: 0px; transform: scale(1, 1); opacity: 1; -webkit-animation: spWaveBe 0.6s infinite linear; animation: spWaveBe 0.6s infinite linear } .ishi-dots-scale-border:after { transform: scale(0, 0); opacity: 0; -webkit-animation: spWaveAf 0.6s infinite linear; animation: spWaveAf 0.6s infinite linear } @-webkit-keyframes spWaveAf { 0% { transform: scale(0.5, 0.5); opacity: 0 } 100% { transform: scale(1, 1); opacity: 1 } } @-webkit-keyframes spWaveBe { 0% { -webkit-transform: scale(1, 1); opacity: 1 } 100% { -webkit-transform: scale(1.5, 1.5); opacity: 0 } } @-moz-keyframes spWaveAf { 0% { transform: scale(0.5, 0.5); opacity: 0 } 100% { transform: scale(1, 1); opacity: 1 } } @-moz-keyframes spWaveBe { 0% { -webkit-transform: scale(1, 1); opacity: 1 } 100% { -webkit-transform: scale(1.5, 1.5); opacity: 0 } } @-o-keyframes spWaveAf { 0% { transform: scale(0.5, 0.5); opacity: 0 } 100% { transform: scale(1, 1); opacity: 1 } } @-o-keyframes spWaveBe { 0% { -webkit-transform: scale(1, 1); opacity: 1 } 100% { -webkit-transform: scale(1.5, 1.5); opacity: 0 } } @keyframes spWaveAf { 0% { transform: scale(0.5, 0.5); opacity: 0 } 100% { transform: scale(1, 1); opacity: 1 } } @keyframes spWaveBe { 0% { -webkit-transform: scale(1, 1); opacity: 1 } 100% { -webkit-transform: scale(1.5, 1.5); opacity: 0 } } .ishi-rotating-circle { width: 115px; height: 115px; margin: -75px 0 0 -75px; border-radius: 50%; border: 3px solid transparent; border-top-color: transparent; border-top-color: #1a9bdc; -webkit-animation: spin 2s linear infinite; animation: spin 2s linear infinite } .ishi-rotating-circle:before { content: ""; position: absolute; top: 5px; left: 5px; right: 5px; bottom: 5px; border-radius: 50%; border: 3px solid transparent; border-top-color: #1a9bdc; -webkit-animation: spin 3s linear infinite; animation: spin 3s linear infinite } .ishi-rotating-circle:after { content: ""; position: absolute; top: 15px; left: 15px; right: 15px; bottom: 15px; border-radius: 50%; border: 3px solid transparent; border-top-color: transparent; border-top-color: #1a9bdc; -webkit-animation: spin 1.5s linear infinite; animation: spin 1.5s linear infinite } @-webkit-keyframes spin { 0% { -webkit-transform: rotate(0deg); -ms-transform: rotate(0deg); transform: rotate(0deg) } 100% { -webkit-transform: rotate(360deg); -ms-transform: rotate(360deg); transform: rotate(360deg) } } @-moz-keyframes spin { 0% { -webkit-transform: rotate(0deg); -ms-transform: rotate(0deg); transform: rotate(0deg) } 100% { -webkit-transform: rotate(360deg); -ms-transform: rotate(360deg); transform: rotate(360deg) } } @-o-keyframes spin { 0% { -webkit-transform: rotate(0deg); -ms-transform: rotate(0deg); transform: rotate(0deg) } 100% { -webkit-transform: rotate(360deg); -ms-transform: rotate(360deg); transform: rotate(360deg) } } @keyframes spin { 0% { -webkit-transform: rotate(0deg); -ms-transform: rotate(0deg); transform: rotate(0deg) } 100% { -webkit-transform: rotate(360deg); -ms-transform: rotate(360deg); transform: rotate(360deg) } } * { outline: none !important } .view-all-btn { margin-top: 20px } #cookieconsent .message p { line-height: 1.5; letter-spacing: 0.5px }
0.216757
0.055234
overflow-y: scroll; max-height: 300px; } .badge-warning { display: inline-block; padding: 0.25em 0.4em; font-size: 75%; font-weight: 700; line-height: 1; /*color: #fff;*/ text-align: center; white-space: nowrap; vertical-align: baseline; border-radius: 0.25rem; color: #212529; background-color: #ffc107; } .badge-success { display: inline-block; padding: 0.25em 0.4em; font-size: 75%; font-weight: 700; line-height: 1; color: #fff; text-align: center; white-space: nowrap; vertical-align: baseline; border-radius: 0.25rem; color: #fff; background-color: #28a745; } .btn-dark { color: #fff; background-color: #343a40; border-color: #343a40; } .btn-dark:hover { color: #fff; background-color: #23272b; border-color: #1d2124; } .btn-dark:focus { box-shadow: 0 0 0 3px rgba(52, 58, 64, 0.5); } .btn-dark:disabled { background-color: #343a40; border-color: #343a40; } .btn-dark:active { background-color: #23272b; background-image: none; border-color: #1d2124; } /*------------------------------------*/ .dropdown-item.dropdown-notification:active, .dropdown-item.dropdown-notification.active { color: #1d1e1f; text-decoration: none; background-color: #f7f7f9; } .dropdown-notification:hover .notification-read { color: #34495E; } .dropdown-notification-all { text-align: center; padding-top: 5px; padding-bottom: 5px; font-style: oblique; background-color: #34495E; color: white; } .dropdown-notification-all:hover { background-color: #34495E; color: white; } .notifications-container { max-height: 300px; overflow: auto; } .notification-dropdown-menu { padding-bottom: 0; min-width: 528px; } .notification-img { width: 48px; display: inline-block; vertical-align: top; } .notifications-body { display: inline-block; } .notification-texte { text-align: left; margin: 0; } .notification-read { margin: 0; height: 48px; vertical-align: top; line-height: 48px; padding-left: 15px; color: white; float: right; } .notification-date { text-align: left; color: #2980b9; margin: 0; } .notification-solo { margin-top: 1rem; } .notification-unread { text-decoration: none; background-color: #f7f7f9; } /*--------------------------------------------------------------*/ .backg{ /* background-color: #34495e; color: white; */ } /* .backg:hover{ background-color: #ffffff; color: black; }*/ li .backg a{ color: white; } .personalize{ } .navbar-nav .perzonalize a{ padding-bottom: 0px; padding-top: 10px; } .badge { display: inline-block; padding: 0.25em 0.4em; font-size: 75%; font-weight: 700; line-height: 1; color: #fff; text-align: center; white-space: nowrap; vertical-align: baseline; border-radius: 0.25rem; } .badge:empty { display: none; } .badge-danger { color: #fff; background-color: #dc3545; } .card { position: relative; display: -ms-flexbox; display: flex; -ms-flex-direction: column; flex-direction: column; min-width: 0; word-wrap: break-word; background-color: #fff; background-clip: border-box; border: 1px solid rgba(0,0,0,.125); border-radius: .25rem; }
web/css/NavbarStyle.css
overflow-y: scroll; max-height: 300px; } .badge-warning { display: inline-block; padding: 0.25em 0.4em; font-size: 75%; font-weight: 700; line-height: 1; /*color: #fff;*/ text-align: center; white-space: nowrap; vertical-align: baseline; border-radius: 0.25rem; color: #212529; background-color: #ffc107; } .badge-success { display: inline-block; padding: 0.25em 0.4em; font-size: 75%; font-weight: 700; line-height: 1; color: #fff; text-align: center; white-space: nowrap; vertical-align: baseline; border-radius: 0.25rem; color: #fff; background-color: #28a745; } .btn-dark { color: #fff; background-color: #343a40; border-color: #343a40; } .btn-dark:hover { color: #fff; background-color: #23272b; border-color: #1d2124; } .btn-dark:focus { box-shadow: 0 0 0 3px rgba(52, 58, 64, 0.5); } .btn-dark:disabled { background-color: #343a40; border-color: #343a40; } .btn-dark:active { background-color: #23272b; background-image: none; border-color: #1d2124; } /*------------------------------------*/ .dropdown-item.dropdown-notification:active, .dropdown-item.dropdown-notification.active { color: #1d1e1f; text-decoration: none; background-color: #f7f7f9; } .dropdown-notification:hover .notification-read { color: #34495E; } .dropdown-notification-all { text-align: center; padding-top: 5px; padding-bottom: 5px; font-style: oblique; background-color: #34495E; color: white; } .dropdown-notification-all:hover { background-color: #34495E; color: white; } .notifications-container { max-height: 300px; overflow: auto; } .notification-dropdown-menu { padding-bottom: 0; min-width: 528px; } .notification-img { width: 48px; display: inline-block; vertical-align: top; } .notifications-body { display: inline-block; } .notification-texte { text-align: left; margin: 0; } .notification-read { margin: 0; height: 48px; vertical-align: top; line-height: 48px; padding-left: 15px; color: white; float: right; } .notification-date { text-align: left; color: #2980b9; margin: 0; } .notification-solo { margin-top: 1rem; } .notification-unread { text-decoration: none; background-color: #f7f7f9; } /*--------------------------------------------------------------*/ .backg{ /* background-color: #34495e; color: white; */ } /* .backg:hover{ background-color: #ffffff; color: black; }*/ li .backg a{ color: white; } .personalize{ } .navbar-nav .perzonalize a{ padding-bottom: 0px; padding-top: 10px; } .badge { display: inline-block; padding: 0.25em 0.4em; font-size: 75%; font-weight: 700; line-height: 1; color: #fff; text-align: center; white-space: nowrap; vertical-align: baseline; border-radius: 0.25rem; } .badge:empty { display: none; } .badge-danger { color: #fff; background-color: #dc3545; } .card { position: relative; display: -ms-flexbox; display: flex; -ms-flex-direction: column; flex-direction: column; min-width: 0; word-wrap: break-word; background-color: #fff; background-clip: border-box; border: 1px solid rgba(0,0,0,.125); border-radius: .25rem; }
0.484136
0.096493
.boxShadow { box-shadow: 0 0 5px #cccccc; -moz-box-shadow: 0 0 5px #CCCCCC; -khtml-box-shadow: 0 0 5px #CCCCCC; } .weibo_type_icon { margin-right: 10px; -webkit-filter: grayscale(100%); -webkit-filter: grayscale(1); filter: grayscale(100%); filter: gray; } .weibo_type_icon:hover { -webkit-filter: none; filter: none; } .weibo_main { box-shadow: 0 0 5px #cccccc; -moz-box-shadow: 0 0 5px #CCCCCC; -khtml-box-shadow: 0 0 5px #CCCCCC; background: white; border-radius: 0.2em; } .weibo_content { background-color: #ffffff; padding: 15px; border: 1px solid #f0f0f0; -moz-border-radius: 6px; /*仅Firefox支持,实现圆角效果*/ -webkit-border-radius: 6px; /*仅Safari,Chrome支持,实现圆角效果*/ -khtml-border-radius: 6px; /*仅Safari,Chrome支持,实现圆角效果*/ border-radius: 6px; /*仅Opera,Safari,Chrome支持,实现圆角效果*/ margin-bottom: 12px; padding-bottom: 0; } .weibo_content_sj { width: 16px; height: 17px; margin-left: -31px; margin-top: 9px; background: url(../images/weibo_content_sj.png); position: absolute; } .weibo_content_p { font-size: 14px; color: #333333; line-height: 29px; } .weibo_content_bottom { border-top: 1px solid #f2f2f5; z-index: 99; padding: 7px; border-radius: 0 0 3px 3px; font-size: 13px; } .weibo_content_bottom a { color: #333; } .operation { font-size: 12px; color: #808080; } .user_name { font-size: 16px; color: #8c8c8c; } .like { width: 20px; height: 30px; background: url(../images/nolike.png) no-repeat; display: block; } .mark_box { background-color: #f5f5f5; border: 1px #E6E6E6 solid; z-index: 99; clear: both; position: absolute; top: 19px; left: -74px; } .weibo_admin_btn { display: none; position: absolute; left: -18px; } .mark_aw > li > a { position: relative; display: block; padding: 6px 8px; text-align: center; } .name_touxian { margin-left: 0px; margin-top: 0px; display: inline-block; width: 200px; height: 38px; } .ribbion-green { z-index: 99; position: absolute; right: -44px; top: -11px; background: url(../images/ribbion.png) no-repeat; width: 75px; height: 43px; text-align: center; } .ribbion-green a { color: white; line-height: 35px; padding-left: 20px; } .ribbion-green a:hover { text-decoration: none; } .weibo_avatar { position: relative; display: inline-block; } .weibo_avatar .weibo_change_avatar { display: none; color: white; position: absolute; background: rgba(0, 0, 0, 0.5); width: 100%; text-align: center; bottom: 0; left: 0; line-height: 24px; } .weibo_avatar:hover .weibo_change_avatar { display: block; } .avatar-bg { padding: 0px; } .headpic { padding: 0px; border-radius: 50%; text-align: center; margin-top: -30px; } .weibo_right .cover { border-radius: 3px; border-bottom-left-radius: 0; border-bottom-right-radius: 0; } .user_info { border: solid 1px #f0f0f0; margin-bottom: 20px; border-radius: 3px; border-top-left-radius: 0; border-top-right-radius: 0; } .side_bar { background-color: #ffffff; border: solid 1px #ddd; height: 500px; padding: 0px; width: 160px; } .side_bar ul { margin-top: 20px; padding: 0; list-style-type: none; -webkit-padding-start: 0px; } .side_bar ul li { display: block; height: 34px; line-height: 34px; font-size: 14px; font-weight: bold; text-decoration: none; overflow: hidden; } .side_bar ul li a { font-size: 14px; font-weight: bold; padding: 0 0 0 15px; height: 34px; line-height: 34px; } .side_bar ul li:hover { background-color: #dddddd; } #weibo_filter { background: white; border-radius: 3px; padding: 3px 10px; } #weibo_filter a { line-height: 36px; padding: 10px 5px; } #weibo_filter .active { border-bottom: 3px solid #333; color: #333; } .index_topic_type ul {padding-left:15px;} .index_topic_type ul li{list-style:none;display:block;float:left;margin-right:30px;padding-left:0;} .index_topic_type ul li.active {border-bottom:2px solid #f7691d;} .index_topic_page {padding:30px 15px;} .index-topic-item {margin-top:15px;padding-left:15px;} .index-topic-title , .index-topic-intro ,.index-topic-info {padding-top:15px;padding-left:15px;} .index-topic-title span {margin-right:30px;font-size:16px;font-weight:bold;} .index-topic-intro {height:60px;line-height:30px;overflow:hidden;} .index-topic-info span {margin-right:30px;} .topic-item-follow a {border:1px solid #eee;padding:5px;} .index-topic-cate-btn {margin-left:15px;margin-top:5px;} .index-topic-cate-box .btn-default.active {color:#f7691d;} .index-topic-follow-lists {line-height:50px;margin:5px 0;border:1px solid #eee;padding:5px;} .index-topic-follow-lists span {margin-right:30px;font-size:16px;font-weight:bold;} .index-find-box {border:1px solid #eee;padding:15px;} .search-input .input-text {height:34px;line-height:34px;border:1px solid #eee;width:100%;} .search-input .input-text:hover {border:1px solid #555555;} .search-position select {width:150px;float:left;height:34px;line-heigth:34px;} .index-find-box > div > div {margin-top:10px;} .find-user-box {padding:15px;margin:15px 0;border:1px solid #eee;} .find-user-signature {height:40px ;overflow:hidden;}
Public/Weibo/css/weibo.css
.boxShadow { box-shadow: 0 0 5px #cccccc; -moz-box-shadow: 0 0 5px #CCCCCC; -khtml-box-shadow: 0 0 5px #CCCCCC; } .weibo_type_icon { margin-right: 10px; -webkit-filter: grayscale(100%); -webkit-filter: grayscale(1); filter: grayscale(100%); filter: gray; } .weibo_type_icon:hover { -webkit-filter: none; filter: none; } .weibo_main { box-shadow: 0 0 5px #cccccc; -moz-box-shadow: 0 0 5px #CCCCCC; -khtml-box-shadow: 0 0 5px #CCCCCC; background: white; border-radius: 0.2em; } .weibo_content { background-color: #ffffff; padding: 15px; border: 1px solid #f0f0f0; -moz-border-radius: 6px; /*仅Firefox支持,实现圆角效果*/ -webkit-border-radius: 6px; /*仅Safari,Chrome支持,实现圆角效果*/ -khtml-border-radius: 6px; /*仅Safari,Chrome支持,实现圆角效果*/ border-radius: 6px; /*仅Opera,Safari,Chrome支持,实现圆角效果*/ margin-bottom: 12px; padding-bottom: 0; } .weibo_content_sj { width: 16px; height: 17px; margin-left: -31px; margin-top: 9px; background: url(../images/weibo_content_sj.png); position: absolute; } .weibo_content_p { font-size: 14px; color: #333333; line-height: 29px; } .weibo_content_bottom { border-top: 1px solid #f2f2f5; z-index: 99; padding: 7px; border-radius: 0 0 3px 3px; font-size: 13px; } .weibo_content_bottom a { color: #333; } .operation { font-size: 12px; color: #808080; } .user_name { font-size: 16px; color: #8c8c8c; } .like { width: 20px; height: 30px; background: url(../images/nolike.png) no-repeat; display: block; } .mark_box { background-color: #f5f5f5; border: 1px #E6E6E6 solid; z-index: 99; clear: both; position: absolute; top: 19px; left: -74px; } .weibo_admin_btn { display: none; position: absolute; left: -18px; } .mark_aw > li > a { position: relative; display: block; padding: 6px 8px; text-align: center; } .name_touxian { margin-left: 0px; margin-top: 0px; display: inline-block; width: 200px; height: 38px; } .ribbion-green { z-index: 99; position: absolute; right: -44px; top: -11px; background: url(../images/ribbion.png) no-repeat; width: 75px; height: 43px; text-align: center; } .ribbion-green a { color: white; line-height: 35px; padding-left: 20px; } .ribbion-green a:hover { text-decoration: none; } .weibo_avatar { position: relative; display: inline-block; } .weibo_avatar .weibo_change_avatar { display: none; color: white; position: absolute; background: rgba(0, 0, 0, 0.5); width: 100%; text-align: center; bottom: 0; left: 0; line-height: 24px; } .weibo_avatar:hover .weibo_change_avatar { display: block; } .avatar-bg { padding: 0px; } .headpic { padding: 0px; border-radius: 50%; text-align: center; margin-top: -30px; } .weibo_right .cover { border-radius: 3px; border-bottom-left-radius: 0; border-bottom-right-radius: 0; } .user_info { border: solid 1px #f0f0f0; margin-bottom: 20px; border-radius: 3px; border-top-left-radius: 0; border-top-right-radius: 0; } .side_bar { background-color: #ffffff; border: solid 1px #ddd; height: 500px; padding: 0px; width: 160px; } .side_bar ul { margin-top: 20px; padding: 0; list-style-type: none; -webkit-padding-start: 0px; } .side_bar ul li { display: block; height: 34px; line-height: 34px; font-size: 14px; font-weight: bold; text-decoration: none; overflow: hidden; } .side_bar ul li a { font-size: 14px; font-weight: bold; padding: 0 0 0 15px; height: 34px; line-height: 34px; } .side_bar ul li:hover { background-color: #dddddd; } #weibo_filter { background: white; border-radius: 3px; padding: 3px 10px; } #weibo_filter a { line-height: 36px; padding: 10px 5px; } #weibo_filter .active { border-bottom: 3px solid #333; color: #333; } .index_topic_type ul {padding-left:15px;} .index_topic_type ul li{list-style:none;display:block;float:left;margin-right:30px;padding-left:0;} .index_topic_type ul li.active {border-bottom:2px solid #f7691d;} .index_topic_page {padding:30px 15px;} .index-topic-item {margin-top:15px;padding-left:15px;} .index-topic-title , .index-topic-intro ,.index-topic-info {padding-top:15px;padding-left:15px;} .index-topic-title span {margin-right:30px;font-size:16px;font-weight:bold;} .index-topic-intro {height:60px;line-height:30px;overflow:hidden;} .index-topic-info span {margin-right:30px;} .topic-item-follow a {border:1px solid #eee;padding:5px;} .index-topic-cate-btn {margin-left:15px;margin-top:5px;} .index-topic-cate-box .btn-default.active {color:#f7691d;} .index-topic-follow-lists {line-height:50px;margin:5px 0;border:1px solid #eee;padding:5px;} .index-topic-follow-lists span {margin-right:30px;font-size:16px;font-weight:bold;} .index-find-box {border:1px solid #eee;padding:15px;} .search-input .input-text {height:34px;line-height:34px;border:1px solid #eee;width:100%;} .search-input .input-text:hover {border:1px solid #555555;} .search-position select {width:150px;float:left;height:34px;line-heigth:34px;} .index-find-box > div > div {margin-top:10px;} .find-user-box {padding:15px;margin:15px 0;border:1px solid #eee;} .find-user-signature {height:40px ;overflow:hidden;}
0.274643
0.069447
@-moz-document domain("weibo.com") { HTML > BODY[class="B_index L-zh-cn"] > DIV[class="W_miniblog"]:nth-child(1) > DIV[class="W_miniblog_fb"] > DIV[class="W_main"]:nth-child(3) > DIV[class="W_main_bg clearfix"] > DIV[id="plc_main"]:nth-child(2) > DIV[class="W_main_a"]:nth-child(1) > DIV[id="Box_right"][class="W_main_r"]:nth-child(2) > DIV[id="trustPagelet_indexright_recom"]:nth-child(6) > DIV:nth-child(2) {display:none !important;}/*新右栏 2013-07-04 */ .S_content, .S_weibo{background-image:none;background-color:#eee !important; } body{background-color:#000 !important; } .WB_feed, .WB_media_expand, .feed_list .content, .feed_list .comment {background-image: -webkit-linear-gradient(top, #f6f6f6, #eee); background-color: #f2f2f2; border-bottom: 1px solid #d4d4d4;text-shadow: 0 1px 0 #fff;color:#000 !important;} .profile_pic_top { height: 19px !important; } .SW_fun2, .SW_fun2 .S_func3 { color: #666; } .W_main_a {background-color: #ddd!important;} body.B_index, body.B_mention_me, body.B_box_comment, body.B_favor_me, body.B_send_me, body.B_message_list, body.B_message_dialogue, body.B_notice, body.B_fans_myconn, body.B_box_comment_at {background-color: rgb(0, 0, 0)!important;} /* 886 */ .WB_right_tips, .hot_feed2 .hot_wb_btn span, .shortlink_feed, DIV[class="S_content_r"]:nth-child(2), #pl_content_biztips, DIV[id="trustPagelet_checkin_lotteryv5"]:nth-child(4) > DIV[class="WB_right_tips S_line2"], DIV[class="M_activities M_abverArea clearfix"], DIV[class="content adver_contB"], .WB_feed .WB_arrow *, DIV[class="W_tips tips_error clearfix"], DIV[class="WB_media_expand brainpower S_line1 S_bg1"], DIV[class="WB_feed_datail S_line2 clearfix"]:nth-child(2) > DIV[class="WB_detail"]:nth-child(2) > DIV[class="WB_info"]:nth-child(1), #pl_profile_cover, .name_card .honour, .WB_feed .type_group .type_text, .B_box_comment_c #Box_right, #pl_guide_tips, .WB_feed .WB_face .W_btn_a, .WB_feed .stick_tips, .B_profile .group_read .lock_r, .webim_chat_tips, .WB_feed .feed_tag_list_form .wTablist2, a.gn_member, .WBIM_last_feed .webim_comment_wrap, .WB_webim .webim_list .webim_fold_btn, .left_nav dt a.title img, .left_nav dt .title img, .W_tips.tips_warn, .B_profile_pic .tab_radious, .profile_top .pf_icon, body.B_fans_myconn .W_main_r, .S_profile .suggest, .zero_news, .profile_top .pf_info_right, body.B_profile .W_main_2r, body.S_profile .W_main_2r, .send_private_msg .kind, .B_send_me .W_main_r, .B_favor_me .W_main_r, .B_favor_me .W_main_c .W_tips, .current .W_tabarrow, .B_box_comment_at .W_main_r, body.B_notice .W_main_r, body.B_message_list .W_main_l, body.B_message_list .W_main_r, body.B_message_dialogue .W_main_l, body.B_box_comment .W_main_r, body.B_notice .side_nav, #pl_leftnav_group, #pl_leftnav_app, #trustPagelet_recom_interestv5, #pl_rightmod_ads35, #trustPagelet_recom_memberv5, #trustPagelet_recom_allinonev5, #pl_rightmod_noticeboard, #trustPagelet_zt_hottopicv5, /* 导航 .gn_nav,*/ .icon_sw_qing,.icon_sw_vote,.icon_sw_mood,.icon_sw_welfare,.gn_title[node-type^="game"],.gn_title[node-type^="weiba"],.gn_title[node-type^="app"],.gn_setting[node-type^="member"] /* 导航结束 */ #pl_content_biztips, .W_person_info .nameBox, #pl_rightmod_yunying, .icon_praised, .templete_enter a, .send_weibo .input .arrow, .tab_nosep, .approve, .ico_member, .footer_adv, .approve_co, .ico_club, .global_footer, .title_area .title, .title_area a, .B_mention_me .W_main_r, .B_message_dialogue .W_main_r {display:none !important;} /* .WB_global_nav .gn_search {float:right!important;} */ .WB_face {opacity: 0.3;} .WB_face:hover {-webkit-transition: opacity 0.5s ease; opacity: 1;} .bigcursor {opacity: 0.7;} .bigcursor:hover{-webkit-transition: opacity 0.5s ease; opacity: 1;} .WB_feed .WB_feed_type { margin: -1px 5px 0; padding: 5px 0 0; } .WB_feed .WB_media_expand { border-width: 0px; border-style: solid; padding: 2px 5px 2px; margin: 2px 0 3px; border-radius: 3px; } .W_miniblog { padding-top: 30px; } .WB_func {opacity: 0!important;} .WB_feed:hover .WB_func {opacity: 1!important;} }
data/usercss/93629.user.css
@-moz-document domain("weibo.com") { HTML > BODY[class="B_index L-zh-cn"] > DIV[class="W_miniblog"]:nth-child(1) > DIV[class="W_miniblog_fb"] > DIV[class="W_main"]:nth-child(3) > DIV[class="W_main_bg clearfix"] > DIV[id="plc_main"]:nth-child(2) > DIV[class="W_main_a"]:nth-child(1) > DIV[id="Box_right"][class="W_main_r"]:nth-child(2) > DIV[id="trustPagelet_indexright_recom"]:nth-child(6) > DIV:nth-child(2) {display:none !important;}/*新右栏 2013-07-04 */ .S_content, .S_weibo{background-image:none;background-color:#eee !important; } body{background-color:#000 !important; } .WB_feed, .WB_media_expand, .feed_list .content, .feed_list .comment {background-image: -webkit-linear-gradient(top, #f6f6f6, #eee); background-color: #f2f2f2; border-bottom: 1px solid #d4d4d4;text-shadow: 0 1px 0 #fff;color:#000 !important;} .profile_pic_top { height: 19px !important; } .SW_fun2, .SW_fun2 .S_func3 { color: #666; } .W_main_a {background-color: #ddd!important;} body.B_index, body.B_mention_me, body.B_box_comment, body.B_favor_me, body.B_send_me, body.B_message_list, body.B_message_dialogue, body.B_notice, body.B_fans_myconn, body.B_box_comment_at {background-color: rgb(0, 0, 0)!important;} /* 886 */ .WB_right_tips, .hot_feed2 .hot_wb_btn span, .shortlink_feed, DIV[class="S_content_r"]:nth-child(2), #pl_content_biztips, DIV[id="trustPagelet_checkin_lotteryv5"]:nth-child(4) > DIV[class="WB_right_tips S_line2"], DIV[class="M_activities M_abverArea clearfix"], DIV[class="content adver_contB"], .WB_feed .WB_arrow *, DIV[class="W_tips tips_error clearfix"], DIV[class="WB_media_expand brainpower S_line1 S_bg1"], DIV[class="WB_feed_datail S_line2 clearfix"]:nth-child(2) > DIV[class="WB_detail"]:nth-child(2) > DIV[class="WB_info"]:nth-child(1), #pl_profile_cover, .name_card .honour, .WB_feed .type_group .type_text, .B_box_comment_c #Box_right, #pl_guide_tips, .WB_feed .WB_face .W_btn_a, .WB_feed .stick_tips, .B_profile .group_read .lock_r, .webim_chat_tips, .WB_feed .feed_tag_list_form .wTablist2, a.gn_member, .WBIM_last_feed .webim_comment_wrap, .WB_webim .webim_list .webim_fold_btn, .left_nav dt a.title img, .left_nav dt .title img, .W_tips.tips_warn, .B_profile_pic .tab_radious, .profile_top .pf_icon, body.B_fans_myconn .W_main_r, .S_profile .suggest, .zero_news, .profile_top .pf_info_right, body.B_profile .W_main_2r, body.S_profile .W_main_2r, .send_private_msg .kind, .B_send_me .W_main_r, .B_favor_me .W_main_r, .B_favor_me .W_main_c .W_tips, .current .W_tabarrow, .B_box_comment_at .W_main_r, body.B_notice .W_main_r, body.B_message_list .W_main_l, body.B_message_list .W_main_r, body.B_message_dialogue .W_main_l, body.B_box_comment .W_main_r, body.B_notice .side_nav, #pl_leftnav_group, #pl_leftnav_app, #trustPagelet_recom_interestv5, #pl_rightmod_ads35, #trustPagelet_recom_memberv5, #trustPagelet_recom_allinonev5, #pl_rightmod_noticeboard, #trustPagelet_zt_hottopicv5, /* 导航 .gn_nav,*/ .icon_sw_qing,.icon_sw_vote,.icon_sw_mood,.icon_sw_welfare,.gn_title[node-type^="game"],.gn_title[node-type^="weiba"],.gn_title[node-type^="app"],.gn_setting[node-type^="member"] /* 导航结束 */ #pl_content_biztips, .W_person_info .nameBox, #pl_rightmod_yunying, .icon_praised, .templete_enter a, .send_weibo .input .arrow, .tab_nosep, .approve, .ico_member, .footer_adv, .approve_co, .ico_club, .global_footer, .title_area .title, .title_area a, .B_mention_me .W_main_r, .B_message_dialogue .W_main_r {display:none !important;} /* .WB_global_nav .gn_search {float:right!important;} */ .WB_face {opacity: 0.3;} .WB_face:hover {-webkit-transition: opacity 0.5s ease; opacity: 1;} .bigcursor {opacity: 0.7;} .bigcursor:hover{-webkit-transition: opacity 0.5s ease; opacity: 1;} .WB_feed .WB_feed_type { margin: -1px 5px 0; padding: 5px 0 0; } .WB_feed .WB_media_expand { border-width: 0px; border-style: solid; padding: 2px 5px 2px; margin: 2px 0 3px; border-radius: 3px; } .W_miniblog { padding-top: 30px; } .WB_func {opacity: 0!important;} .WB_feed:hover .WB_func {opacity: 1!important;} }
0.233095
0.063135
body, html { width: 100%; height: 100%; } @media(min-width:767px) { .navbar { padding: 20px 0; -webkit-transition: background .5s ease-in-out,padding .5s ease-in-out; -moz-transition: background .5s ease-in-out,padding .5s ease-in-out; transition: background .5s ease-in-out,padding .5s ease-in-out; } .top-nav-collapse { padding: 0; } } section { height: 100%; } /* ------- Begin: Nav Bar -------*/ .page-scroll { font-family: 'Poppins', sans-serif; } .navbar-brand { font-size: 5em; font-family: 'Shrikhand', cursive; } .navbar { } .navbar-fixed-top { } .navbar-default{ background: transparent; border-color: none; border: 0px; } /* ------- End: Nav Bar -------*/ /* ------- Begin Scroll Button -----*/ .btn { width: 6em; height: 6em; border: .5em solid #F64005; border-radius: 50%; animation: pulsate infinite 2.5s; position: relative; /*top: 18em;*/ margin: 0; padding: 0; z-index: 1; opacity: ; } .btn-default { } .btn { margin-bottom: -1px; } /* ------- End Scroll Button -----*/ /* Begin: First Pannel -- Welcome Section Video BG/Button/Company Name/ */ .intro-section { height: 100%; padding-top: 150px; text-align: center; color: white; background: ; z-index: 1; } .intro-section h1 { font-size: 8em; font-family: 'Shrikhand', cursive; text-decoration: underline; } .intro-section h3, h4 { font-size: 4em; font-family: 'Amatic SC', cursive; } .intro_col-lg-12 { width: 100%; } .intro_container { width: 100%; } .intro_row { width: 100%; } .intro-section { width: 100%; } .intro-section video { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); min-width: 100%; min-height: 100%; width: auto; height: auto; z-index: -1; } .intro_col-lg-12 h1 { margin-top: .2px; } /* End: First Pannel -- Welcome Section Video BG/Button/Company Name/ */ /* Begin: Second Pannel --- What We're All About Title/Explaination/ Vol-Org-Bus 3 Sections Ptich*/ .about-section { height: 1000px; width: 100%; padding-top: 150px; text-align: center; /*background: #eee;*/ background: blue; } .about_container h1 { position: relative; margin-top: 0; font-size: 8em; font-family: 'Shrikhand', cursive; } .about_col-lg-12 { width: 100%; background-color: ; position: relative; top: -50px; } .present span { /*---Line between volunteer/org/local Business------ */ background: rgb(186,177,152); display: inline-block; vertical-align:top; min-height: 25em; margin: 0; width: 1px; } .present div { /*------ Line between volunteer/org/local Business sections------ */ background-color: ; width: 10em; height: auto; display: inline-block; vertical-align:center; } .present h5 { font-family: 'Heebo', sans-serif; font-weight: 20px; font-size: 25px; } .present { margin-top: .9em; background-color: ; min-width: 767px; width: 100%; background-color: ; } /* End: Second Pannel --- What We're All About Title/Explaination/ Vol-Org-Bus 3 Sections Ptich*/ .logo { width: 19em; height: 4em; text-align: center; } .icon-bar-home span { float: right; } .page-scroll-home { float: right; } .page-scroll a { color: white; } /* about/volunteer/second section of the home page- end*/ .services-section { height: 100%; padding-top: 150px; text-align: center; background: #fff; } .contact-section { height: 100%; padding-top: 150px; text-align: center; background: #eee; } .contacttwo-section { height: 100%; padding-top: 150px; text-align: center; background: #fff; } /*# sourceMappingURL=all.css.map */
resources/assets/css/all.css
body, html { width: 100%; height: 100%; } @media(min-width:767px) { .navbar { padding: 20px 0; -webkit-transition: background .5s ease-in-out,padding .5s ease-in-out; -moz-transition: background .5s ease-in-out,padding .5s ease-in-out; transition: background .5s ease-in-out,padding .5s ease-in-out; } .top-nav-collapse { padding: 0; } } section { height: 100%; } /* ------- Begin: Nav Bar -------*/ .page-scroll { font-family: 'Poppins', sans-serif; } .navbar-brand { font-size: 5em; font-family: 'Shrikhand', cursive; } .navbar { } .navbar-fixed-top { } .navbar-default{ background: transparent; border-color: none; border: 0px; } /* ------- End: Nav Bar -------*/ /* ------- Begin Scroll Button -----*/ .btn { width: 6em; height: 6em; border: .5em solid #F64005; border-radius: 50%; animation: pulsate infinite 2.5s; position: relative; /*top: 18em;*/ margin: 0; padding: 0; z-index: 1; opacity: ; } .btn-default { } .btn { margin-bottom: -1px; } /* ------- End Scroll Button -----*/ /* Begin: First Pannel -- Welcome Section Video BG/Button/Company Name/ */ .intro-section { height: 100%; padding-top: 150px; text-align: center; color: white; background: ; z-index: 1; } .intro-section h1 { font-size: 8em; font-family: 'Shrikhand', cursive; text-decoration: underline; } .intro-section h3, h4 { font-size: 4em; font-family: 'Amatic SC', cursive; } .intro_col-lg-12 { width: 100%; } .intro_container { width: 100%; } .intro_row { width: 100%; } .intro-section { width: 100%; } .intro-section video { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); min-width: 100%; min-height: 100%; width: auto; height: auto; z-index: -1; } .intro_col-lg-12 h1 { margin-top: .2px; } /* End: First Pannel -- Welcome Section Video BG/Button/Company Name/ */ /* Begin: Second Pannel --- What We're All About Title/Explaination/ Vol-Org-Bus 3 Sections Ptich*/ .about-section { height: 1000px; width: 100%; padding-top: 150px; text-align: center; /*background: #eee;*/ background: blue; } .about_container h1 { position: relative; margin-top: 0; font-size: 8em; font-family: 'Shrikhand', cursive; } .about_col-lg-12 { width: 100%; background-color: ; position: relative; top: -50px; } .present span { /*---Line between volunteer/org/local Business------ */ background: rgb(186,177,152); display: inline-block; vertical-align:top; min-height: 25em; margin: 0; width: 1px; } .present div { /*------ Line between volunteer/org/local Business sections------ */ background-color: ; width: 10em; height: auto; display: inline-block; vertical-align:center; } .present h5 { font-family: 'Heebo', sans-serif; font-weight: 20px; font-size: 25px; } .present { margin-top: .9em; background-color: ; min-width: 767px; width: 100%; background-color: ; } /* End: Second Pannel --- What We're All About Title/Explaination/ Vol-Org-Bus 3 Sections Ptich*/ .logo { width: 19em; height: 4em; text-align: center; } .icon-bar-home span { float: right; } .page-scroll-home { float: right; } .page-scroll a { color: white; } /* about/volunteer/second section of the home page- end*/ .services-section { height: 100%; padding-top: 150px; text-align: center; background: #fff; } .contact-section { height: 100%; padding-top: 150px; text-align: center; background: #eee; } .contacttwo-section { height: 100%; padding-top: 150px; text-align: center; background: #fff; } /*# sourceMappingURL=all.css.map */
0.494873
0.050611
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display&family=Poppins:wght@200&display=swap'); /* font-family: 'Playfair Display', serif; font-family: 'Poppins', sans-serif; */ body { overflow-x: hidden; background: white; } h1 { font-family: 'Playfair Display', serif!important; text-transform: uppercase; color: black!important; } h5, h4{ font-family: 'Poppins', sans-serif; font-size: 18px !important; color: black!important; } p{ color: black!important; } .btn-primary{ box-shadow: none; padding: 8px 25px; border: none; border-radius: 20px; background-image: linear-gradient(to right, #54ffac, #54a7ff); color: black; } .title{ color: black!important; } .title::after{ content: ''; background-color: #DB592A; height: 5px; width: 200px; margin-left: auto; margin-right: auto; margin-bottom: 40px; display: block; transform: translateY(8px); } /*===== MAIN CONTENT =====*/ /*------ Banner Section ------*/ .banner{ background-image: linear-gradient( #ffffff, #DB592A); color: white; padding: 140px 0; } .banner h1{ color: white; font-size: 3rem; } .banner h4{ color: white; } .price { padding: 1rem 0 0 0; } /*============= FOOTER =============*/ footer{ background-color: #DB592A; color: white; width: 100%; text-align: center; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 1rem; } footer h3{ color: white; font-size: 15px; text-transform: uppercase; } footer p{ padding: 0.5rem; text-transform: uppercase; } footer span{ color:white;; } .github{ color: white; text-decoration: none; padding: 1rem 1rem 0 1rem; } .github:hover{ color: white; } /*============= MEDIA QUERIES =============*/ /* Devices under 1199px (xl) */ @media (max-width: 1199.98px) { .waves { height: 100px; min-height: 100px; } } /* Devices under 992px (lg) */ @media (max-width: 991.98px) { .waves { height:40px; min-height:40px; } } /*============ BOOTSTRAP BREAK POINTS: Extra small (xs) devices (portrait phones, less than 576px) No media query since this is the default in Bootstrap Small (sm) devices (landscape phones, 576px and up) @media (min-width: 576px) { ... } Medium (md) devices (tablets, 768px and up) @media (min-width: 768px) { ... } Large (lg) devices (desktops, 992px and up) @media (min-width: 992px) { ... } Extra (xl) large devices (large desktops, 1200px and up) @media (min-width: 1200px) { ... } =============*/ /*-- Bootstrap Mobile Gutter Fix --*/ .row, .container-fluid { margin-left: 0px !important; margin-right: 0px !important; } /*-- Fixed Background Image --*/ .fixed-background { position: relative; width: 100%; z-index: 1000 !important; } .fixed-wrap { clip: rect(0, auto, auto, 0); position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -999 !important; } .fixed { z-index: -999 !important; display: block; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center center; -webkit-transform: translateZ(0); transform: translateZ(0); will-change: transform; }
style.css
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display&family=Poppins:wght@200&display=swap'); /* font-family: 'Playfair Display', serif; font-family: 'Poppins', sans-serif; */ body { overflow-x: hidden; background: white; } h1 { font-family: 'Playfair Display', serif!important; text-transform: uppercase; color: black!important; } h5, h4{ font-family: 'Poppins', sans-serif; font-size: 18px !important; color: black!important; } p{ color: black!important; } .btn-primary{ box-shadow: none; padding: 8px 25px; border: none; border-radius: 20px; background-image: linear-gradient(to right, #54ffac, #54a7ff); color: black; } .title{ color: black!important; } .title::after{ content: ''; background-color: #DB592A; height: 5px; width: 200px; margin-left: auto; margin-right: auto; margin-bottom: 40px; display: block; transform: translateY(8px); } /*===== MAIN CONTENT =====*/ /*------ Banner Section ------*/ .banner{ background-image: linear-gradient( #ffffff, #DB592A); color: white; padding: 140px 0; } .banner h1{ color: white; font-size: 3rem; } .banner h4{ color: white; } .price { padding: 1rem 0 0 0; } /*============= FOOTER =============*/ footer{ background-color: #DB592A; color: white; width: 100%; text-align: center; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 1rem; } footer h3{ color: white; font-size: 15px; text-transform: uppercase; } footer p{ padding: 0.5rem; text-transform: uppercase; } footer span{ color:white;; } .github{ color: white; text-decoration: none; padding: 1rem 1rem 0 1rem; } .github:hover{ color: white; } /*============= MEDIA QUERIES =============*/ /* Devices under 1199px (xl) */ @media (max-width: 1199.98px) { .waves { height: 100px; min-height: 100px; } } /* Devices under 992px (lg) */ @media (max-width: 991.98px) { .waves { height:40px; min-height:40px; } } /*============ BOOTSTRAP BREAK POINTS: Extra small (xs) devices (portrait phones, less than 576px) No media query since this is the default in Bootstrap Small (sm) devices (landscape phones, 576px and up) @media (min-width: 576px) { ... } Medium (md) devices (tablets, 768px and up) @media (min-width: 768px) { ... } Large (lg) devices (desktops, 992px and up) @media (min-width: 992px) { ... } Extra (xl) large devices (large desktops, 1200px and up) @media (min-width: 1200px) { ... } =============*/ /*-- Bootstrap Mobile Gutter Fix --*/ .row, .container-fluid { margin-left: 0px !important; margin-right: 0px !important; } /*-- Fixed Background Image --*/ .fixed-background { position: relative; width: 100%; z-index: 1000 !important; } .fixed-wrap { clip: rect(0, auto, auto, 0); position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -999 !important; } .fixed { z-index: -999 !important; display: block; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center center; -webkit-transform: translateZ(0); transform: translateZ(0); will-change: transform; }
0.391639
0.072014
@font-face { font-family: 'Gotham Pro'; src: url('../fonts/GothamPro-BoldItalic.eot'); src: local('Gotham Pro Bold Italic'), local('GothamPro-BoldItalic'), url('../fonts/GothamPro-BoldItalic.eot?#iefix') format('embedded-opentype'), url('../fonts/GothamPro-BoldItalic.woff') format('woff'), url('../fonts/GothamPro-BoldItalic.ttf') format('truetype'); font-weight: bold; font-style: italic; } @font-face { font-family: 'Gotham Pro'; src: url('../fonts/GothamPro-Italic.eot'); src: local('Gotham Pro Italic'), local('GothamPro-Italic'), url('../fonts/GothamPro-Italic.eot?#iefix') format('embedded-opentype'), url('../fonts/GothamPro-Italic.woff') format('woff'), url('../fonts/GothamPro-Italic.ttf') format('truetype'); font-weight: normal; font-style: italic; } @font-face { font-family: 'Gotham Pro'; src: url('../fonts/GothamPro-Medium.eot'); src: local('Gotham Pro Medium'), local('GothamPro-Medium'), url('../fonts/GothamPro-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/GothamPro-Medium.woff') format('woff'), url('../fonts/GothamPro-Medium.ttf') format('truetype'); font-weight: 500; font-style: normal; } @font-face { font-family: 'Gotham Pro'; src: url('../fonts/GothamPro-BlackItalic.eot'); src: local('Gotham Pro Black Italic'), local('GothamPro-BlackItalic'), url('../fonts/GothamPro-BlackItalic.eot?#iefix') format('embedded-opentype'), url('../fonts/GothamPro-BlackItalic.woff') format('woff'), url('../fonts/GothamPro-BlackItalic.ttf') format('truetype'); font-weight: 900; font-style: italic; } @font-face { font-family: 'Gotham Pro'; src: url('../fonts/GothamPro-Bold.eot'); src: local('Gotham Pro Bold'), local('GothamPro-Bold'), url('../fonts/GothamPro-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/GothamPro-Bold.woff') format('woff'), url('../fonts/GothamPro-Bold.ttf') format('truetype'); font-weight: bold; font-style: normal; } @font-face { font-family: 'Gotham Pro Narrow'; src: url('../fonts/GothamProNarrow-Bold.eot'); src: local('Gotham Pro Narrow Bold'), local('GothamProNarrow-Bold'), url('../fonts/GothamProNarrow-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/GothamProNarrow-Bold.woff') format('woff'), url('../fonts/GothamProNarrow-Bold.ttf') format('truetype'); font-weight: bold; font-style: normal; } @font-face { font-family: 'Gotham Pro Narrow'; src: url('../fonts/GothamProNarrow-Medium.eot'); src: local('Gotham Pro Narrow Medium'), local('GothamProNarrow-Medium'), url('../fonts/GothamProNarrow-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/GothamProNarrow-Medium.woff') format('woff'), url('../fonts/GothamProNarrow-Medium.ttf') format('truetype'); font-weight: 500; font-style: normal; } @font-face { font-family: 'Gotham Pro'; src: url('../fonts/GothamPro-LightItalic.eot'); src: local('Gotham Pro Light Italic'), local('GothamPro-LightItalic'), url('../fonts/GothamPro-LightItalic.eot?#iefix') format('embedded-opentype'), url('../fonts/GothamPro-LightItalic.woff') format('woff'), url('../fonts/GothamPro-LightItalic.ttf') format('truetype'); font-weight: 300; font-style: italic; } @font-face { font-family: 'Gotham Pro'; src: url('../fonts/GothamPro-Light.eot'); src: local('Gotham Pro Light'), local('GothamPro-Light'), url('../fonts/GothamPro-Light.eot?#iefix') format('embedded-opentype'), url('../fonts/GothamPro-Light.woff') format('woff'), url('../fonts/GothamPro-Light.ttf') format('truetype'); font-weight: 300; font-style: normal; } @font-face { font-family: 'Gotham Pro'; src: url('../fonts/GothamPro-Black.eot'); src: local('Gotham Pro Black'), local('GothamPro-Black'), url('../fonts/GothamPro-Black.eot?#iefix') format('embedded-opentype'), url('../fonts/GothamPro-Black.woff') format('woff'), url('../fonts/GothamPro-Black.ttf') format('truetype'); font-weight: 900; font-style: normal; } @font-face { font-family: 'Gotham Pro'; src: url('../fonts/GothamPro.eot'); src: local('Gotham Pro'), local('GothamPro'), url('../fonts/GothamPro.eot?#iefix') format('embedded-opentype'), url('../fonts/GothamPro.woff') format('woff'), url('../fonts/GothamPro.ttf') format('truetype'); font-weight: normal; font-style: normal; } @font-face { font-family: 'Gotham Pro'; src: url('../fonts/GothamPro-MediumItalic.eot'); src: local('Gotham Pro Medium Italic'), local('GothamPro-MediumItalic'), url('../fonts/GothamPro-MediumItalic.eot?#iefix') format('embedded-opentype'), url('../fonts/GothamPro-MediumItalic.woff') format('woff'), url('../fonts/GothamPro-MediumItalic.ttf') format('truetype'); font-weight: 500; font-style: italic; } #HUD { font-weight: 400; font-family: 'Gotham Pro', sans-serif; } #HUD .rightHud { position: absolute; top: 8px; right: 10px; display: flex; flex-direction: column; } #HUD .rightHud .moneyBlock { display: flex; justify-content: space-between; } #HUD .rightHud .moneyBlock .money { margin-right: 22px; display: flex; justify-content: space-between; align-items: center; font-weight: 900; color: #b900f7; } #HUD .rightHud .moneyBlock .money img, #HUD .rightHud .moneyBlock .bank img { margin-right: 12px; width: 30px; } #HUD .rightHud .moneyBlock .bank { display: flex; justify-content: space-between; align-items: center; font-weight: 900; color: #fff; } #HUD .rightHud .wanted { display: flex; justify-content: flex-end; margin-top: 10px; } #HUD .rightHud .wanted img { margin-left: 4px; width: 28px; max-width: 28px; } #HUD .rightHud .onlineBlock { height: 30px; display: flex; align-items: center; background: rgb(28,9,37); background: linear-gradient(90deg, rgba(28,9,37,0) 40%, rgba(29,3,42,0.68) 100%); border-right: 4px solid #b700f7; justify-content: flex-end; color: #ffffff; margin-top: 20px; padding: 8px 20px 5px 0; margin-right: -10px; } #HUD .rightHud .onlineBlock img { margin-right: 4px; } #HUD .helperHud { position: absolute; right: 0px; top: 240px; width: 250px; display: flex; align-items: flex-end; flex-direction: column; } #HUD .helperHud .buttonHide { position: relative; width: 50px; height: 30px; background: rgb(183,0,247); background: linear-gradient(-90deg, rgba(183,0,247,0.7) 0%, rgba(183,0,247,0) 70%); padding-left: 8px; display: flex; align-items: flex-end; outline: none; border: none; } #HUD .helperHud .buttonHide img { position: absolute; right: 5px; top: 8px; } #HUD .helperHud .helpInfo { width: 100%; height: 240px; border-right: 8px solid #b700f7; background: rgb(183,0,247); background: linear-gradient(-90deg, rgba(29,3,42,1) 0%, rgba(183,0,247,0) 100%); padding-top: 15px; padding-left: 21px; } #HUD .helperHud .helpInfo li { width: 220px; display: flex; align-items: center; justify-content: space-between; font-weight: bold; color: #ffffff; } #HUD .helperHud .helpInfo li .button { height: 30px; margin: 3px 0; line-height: 35px; min-width: 30px; display: flex; justify-content: center; align-items: center; background: rgba(0,0,0,0.5); border-radius: 5px; -webkit-border-radius: 5px; padding: 5px; } #HUD .phoneMicHud { position: absolute; bottom: 20px; left: 330px; display: flex; flex-direction: column; height: 180px; justify-content: space-evenly; align-items: center; } #HUD .phoneMicHud .phone { object-fit: contain; max-width: 34px; width: 34px; } #HUD .phoneMicHud .microphone { object-fit: contain; max-width: 43px; width: 43px; } #hints * { margin: 0; padding: 0; -webkit-box-sizing: border-box; box-sizing: border-box; } #hints { position: absolute; top: 30%; left: 0%; width: 270px; height: 310px; overflow: hidden; font-family: 'Gotham Pro'; } @media screen and (max-width: 1280px) { #hints { top: 32%; height: 255.5px; width: 240px; } } #hints::before { content: ''; position: absolute; top: 0; left: 0; height: 35px; width: 40px; background: -webkit-gradient(linear, left top, right top, from(rgba(183, 0, 247, 0.99)), to(rgba(125, 185, 232, 0))); background: linear-gradient(to right, rgba(183, 0, 247, 0.99) 0%, rgba(125, 185, 232, 0) 100%); } #hints .hints-checkbox { position: relative; background: url(../img/button.svg) no-repeat center center; background-size: 16px 16px; display: block; width: 35px; height: 35px; border: none; -webkit-appearance: none; -moz-appearance: none; appearance: none; outline: none; cursor: pointer; -webkit-transition: -webkit-transform .3s; transition: -webkit-transform .3s; transition: transform .3s; transition: transform .3s, -webkit-transform .3s; } #hints .hints-checkbox:checked { -webkit-transform: rotate(180deg); transform: rotate(180deg); } #hints .hints-checkbox:checked ~ div { -webkit-transform: translateX(-100%); transform: translateX(-100%); } #hints .hints-checkbox:focus { display: none; } #hints .hints-block { border-left: 6px solid #b700f7; position: relative; -webkit-transition: -webkit-transform .3s; transition: -webkit-transform .3s; transition: transform .3s; transition: transform .3s, -webkit-transform .3s; } #hints .hints-block::before { content: ''; position: absolute; top: 0; left: 0; height: 100%; width: 100%; background: #b700f7; background: -webkit-gradient(linear, left top, right top, from(rgba(58, 7, 83, 0.8)), to(rgba(183, 0, 247, 0))); background: linear-gradient(90deg, rgba(58, 7, 83, 0.8) 0%, rgba(183, 0, 247, 0) 100%); z-index: -1; } #hints .hints-list { padding: 13px; width: 100%; } @media screen and (max-width: 1600px) { #hints .hints-list { padding: 10px; } } @media screen and (max-width: 1280px) { #hints .hints-list { padding: 10px; } } @media screen and (max-width: 1024px) { #hints .hints-list { padding: 5px; } } #hints .hints-list__item { margin: 16px 0px; width: 100%; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: center; -ms-flex-align: center; align-items: center; font-weight: 600; } @media screen and (max-width: 1280px) { #hints .hints-list__item { margin: 8px 0px; } } @media screen and (max-width: 1024px) { #hints .hints-list__item { margin: 5px 0px; } } #hints .hints-list__item-title { font-size: 16px; } @media screen and (max-width: 1024px) { #hints .hints-list__item-title { font-size: 14px; } } #hints .hints-list__item-button { font-size: 18px; background: rgba(0, 0, 0, 0.5); min-width: 30px; height: 30px; border-radius: 4px; 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; padding: 7px; } @media screen and (max-width: 1024px) { #hints .hints-list__item-button { font-size: 14px; padding: 3px; } } #hints .hints-list__item-button img { width: 16px; height: 16px; display: block; -webkit-transform: rotate(-90deg); transform: rotate(-90deg); } #hints.right { 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: end; -ms-flex-pack: end; justify-content: flex-end; -webkit-box-align: end; -ms-flex-align: end; align-items: flex-end; right: 0; left: auto; top: 30%; } #hints.right::before { right: 0; top: 3px; left: auto; width: 40px; background: -webkit-gradient(linear, left top, right top, from(rgba(125, 185, 232, 0)), color-stop(99%, rgba(183, 0, 247, 0.99)), to(#b700f7)); background: linear-gradient(to right, rgba(125, 185, 232, 0) 0%, rgba(183, 0, 247, 0.99) 99%, #b700f7 100%); } @media screen and (max-width: 1024px) { #hints.right { width: 200px; height: 228px; } } #hints.right .hints-checkbox { position: absolute; top: 3px; } #hints.right .hints-checkbox:checked ~ div { -webkit-transform: translateX(100%); transform: translateX(100%); } #hints.right .hints-block { width: 100%; border-right: 6px solid #b700f7; border-left: none; } #hints.right .hints-block::before { content: ''; position: absolute; top: 0; left: auto; right: 0; height: 100%; width: 100%; background: #b700f7; background: -webkit-gradient(linear, left top, right top, from(rgba(183, 0, 247, 0)), color-stop(99%, rgba(58, 7, 83, 0.99)), to(#3a0753)); background: linear-gradient(to right, rgba(183, 0, 247, 0) 0%, rgba(58, 7, 83, 0.99) 99%, #3a0753 100%); z-index: -1; } #hints.right .hints-list__item { -webkit-box-orient: horizontal; -webkit-box-direction: reverse; -ms-flex-direction: row-reverse; flex-direction: row-reverse; }
AppReact/src/assets/css/hud.css
@font-face { font-family: 'Gotham Pro'; src: url('../fonts/GothamPro-BoldItalic.eot'); src: local('Gotham Pro Bold Italic'), local('GothamPro-BoldItalic'), url('../fonts/GothamPro-BoldItalic.eot?#iefix') format('embedded-opentype'), url('../fonts/GothamPro-BoldItalic.woff') format('woff'), url('../fonts/GothamPro-BoldItalic.ttf') format('truetype'); font-weight: bold; font-style: italic; } @font-face { font-family: 'Gotham Pro'; src: url('../fonts/GothamPro-Italic.eot'); src: local('Gotham Pro Italic'), local('GothamPro-Italic'), url('../fonts/GothamPro-Italic.eot?#iefix') format('embedded-opentype'), url('../fonts/GothamPro-Italic.woff') format('woff'), url('../fonts/GothamPro-Italic.ttf') format('truetype'); font-weight: normal; font-style: italic; } @font-face { font-family: 'Gotham Pro'; src: url('../fonts/GothamPro-Medium.eot'); src: local('Gotham Pro Medium'), local('GothamPro-Medium'), url('../fonts/GothamPro-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/GothamPro-Medium.woff') format('woff'), url('../fonts/GothamPro-Medium.ttf') format('truetype'); font-weight: 500; font-style: normal; } @font-face { font-family: 'Gotham Pro'; src: url('../fonts/GothamPro-BlackItalic.eot'); src: local('Gotham Pro Black Italic'), local('GothamPro-BlackItalic'), url('../fonts/GothamPro-BlackItalic.eot?#iefix') format('embedded-opentype'), url('../fonts/GothamPro-BlackItalic.woff') format('woff'), url('../fonts/GothamPro-BlackItalic.ttf') format('truetype'); font-weight: 900; font-style: italic; } @font-face { font-family: 'Gotham Pro'; src: url('../fonts/GothamPro-Bold.eot'); src: local('Gotham Pro Bold'), local('GothamPro-Bold'), url('../fonts/GothamPro-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/GothamPro-Bold.woff') format('woff'), url('../fonts/GothamPro-Bold.ttf') format('truetype'); font-weight: bold; font-style: normal; } @font-face { font-family: 'Gotham Pro Narrow'; src: url('../fonts/GothamProNarrow-Bold.eot'); src: local('Gotham Pro Narrow Bold'), local('GothamProNarrow-Bold'), url('../fonts/GothamProNarrow-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/GothamProNarrow-Bold.woff') format('woff'), url('../fonts/GothamProNarrow-Bold.ttf') format('truetype'); font-weight: bold; font-style: normal; } @font-face { font-family: 'Gotham Pro Narrow'; src: url('../fonts/GothamProNarrow-Medium.eot'); src: local('Gotham Pro Narrow Medium'), local('GothamProNarrow-Medium'), url('../fonts/GothamProNarrow-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/GothamProNarrow-Medium.woff') format('woff'), url('../fonts/GothamProNarrow-Medium.ttf') format('truetype'); font-weight: 500; font-style: normal; } @font-face { font-family: 'Gotham Pro'; src: url('../fonts/GothamPro-LightItalic.eot'); src: local('Gotham Pro Light Italic'), local('GothamPro-LightItalic'), url('../fonts/GothamPro-LightItalic.eot?#iefix') format('embedded-opentype'), url('../fonts/GothamPro-LightItalic.woff') format('woff'), url('../fonts/GothamPro-LightItalic.ttf') format('truetype'); font-weight: 300; font-style: italic; } @font-face { font-family: 'Gotham Pro'; src: url('../fonts/GothamPro-Light.eot'); src: local('Gotham Pro Light'), local('GothamPro-Light'), url('../fonts/GothamPro-Light.eot?#iefix') format('embedded-opentype'), url('../fonts/GothamPro-Light.woff') format('woff'), url('../fonts/GothamPro-Light.ttf') format('truetype'); font-weight: 300; font-style: normal; } @font-face { font-family: 'Gotham Pro'; src: url('../fonts/GothamPro-Black.eot'); src: local('Gotham Pro Black'), local('GothamPro-Black'), url('../fonts/GothamPro-Black.eot?#iefix') format('embedded-opentype'), url('../fonts/GothamPro-Black.woff') format('woff'), url('../fonts/GothamPro-Black.ttf') format('truetype'); font-weight: 900; font-style: normal; } @font-face { font-family: 'Gotham Pro'; src: url('../fonts/GothamPro.eot'); src: local('Gotham Pro'), local('GothamPro'), url('../fonts/GothamPro.eot?#iefix') format('embedded-opentype'), url('../fonts/GothamPro.woff') format('woff'), url('../fonts/GothamPro.ttf') format('truetype'); font-weight: normal; font-style: normal; } @font-face { font-family: 'Gotham Pro'; src: url('../fonts/GothamPro-MediumItalic.eot'); src: local('Gotham Pro Medium Italic'), local('GothamPro-MediumItalic'), url('../fonts/GothamPro-MediumItalic.eot?#iefix') format('embedded-opentype'), url('../fonts/GothamPro-MediumItalic.woff') format('woff'), url('../fonts/GothamPro-MediumItalic.ttf') format('truetype'); font-weight: 500; font-style: italic; } #HUD { font-weight: 400; font-family: 'Gotham Pro', sans-serif; } #HUD .rightHud { position: absolute; top: 8px; right: 10px; display: flex; flex-direction: column; } #HUD .rightHud .moneyBlock { display: flex; justify-content: space-between; } #HUD .rightHud .moneyBlock .money { margin-right: 22px; display: flex; justify-content: space-between; align-items: center; font-weight: 900; color: #b900f7; } #HUD .rightHud .moneyBlock .money img, #HUD .rightHud .moneyBlock .bank img { margin-right: 12px; width: 30px; } #HUD .rightHud .moneyBlock .bank { display: flex; justify-content: space-between; align-items: center; font-weight: 900; color: #fff; } #HUD .rightHud .wanted { display: flex; justify-content: flex-end; margin-top: 10px; } #HUD .rightHud .wanted img { margin-left: 4px; width: 28px; max-width: 28px; } #HUD .rightHud .onlineBlock { height: 30px; display: flex; align-items: center; background: rgb(28,9,37); background: linear-gradient(90deg, rgba(28,9,37,0) 40%, rgba(29,3,42,0.68) 100%); border-right: 4px solid #b700f7; justify-content: flex-end; color: #ffffff; margin-top: 20px; padding: 8px 20px 5px 0; margin-right: -10px; } #HUD .rightHud .onlineBlock img { margin-right: 4px; } #HUD .helperHud { position: absolute; right: 0px; top: 240px; width: 250px; display: flex; align-items: flex-end; flex-direction: column; } #HUD .helperHud .buttonHide { position: relative; width: 50px; height: 30px; background: rgb(183,0,247); background: linear-gradient(-90deg, rgba(183,0,247,0.7) 0%, rgba(183,0,247,0) 70%); padding-left: 8px; display: flex; align-items: flex-end; outline: none; border: none; } #HUD .helperHud .buttonHide img { position: absolute; right: 5px; top: 8px; } #HUD .helperHud .helpInfo { width: 100%; height: 240px; border-right: 8px solid #b700f7; background: rgb(183,0,247); background: linear-gradient(-90deg, rgba(29,3,42,1) 0%, rgba(183,0,247,0) 100%); padding-top: 15px; padding-left: 21px; } #HUD .helperHud .helpInfo li { width: 220px; display: flex; align-items: center; justify-content: space-between; font-weight: bold; color: #ffffff; } #HUD .helperHud .helpInfo li .button { height: 30px; margin: 3px 0; line-height: 35px; min-width: 30px; display: flex; justify-content: center; align-items: center; background: rgba(0,0,0,0.5); border-radius: 5px; -webkit-border-radius: 5px; padding: 5px; } #HUD .phoneMicHud { position: absolute; bottom: 20px; left: 330px; display: flex; flex-direction: column; height: 180px; justify-content: space-evenly; align-items: center; } #HUD .phoneMicHud .phone { object-fit: contain; max-width: 34px; width: 34px; } #HUD .phoneMicHud .microphone { object-fit: contain; max-width: 43px; width: 43px; } #hints * { margin: 0; padding: 0; -webkit-box-sizing: border-box; box-sizing: border-box; } #hints { position: absolute; top: 30%; left: 0%; width: 270px; height: 310px; overflow: hidden; font-family: 'Gotham Pro'; } @media screen and (max-width: 1280px) { #hints { top: 32%; height: 255.5px; width: 240px; } } #hints::before { content: ''; position: absolute; top: 0; left: 0; height: 35px; width: 40px; background: -webkit-gradient(linear, left top, right top, from(rgba(183, 0, 247, 0.99)), to(rgba(125, 185, 232, 0))); background: linear-gradient(to right, rgba(183, 0, 247, 0.99) 0%, rgba(125, 185, 232, 0) 100%); } #hints .hints-checkbox { position: relative; background: url(../img/button.svg) no-repeat center center; background-size: 16px 16px; display: block; width: 35px; height: 35px; border: none; -webkit-appearance: none; -moz-appearance: none; appearance: none; outline: none; cursor: pointer; -webkit-transition: -webkit-transform .3s; transition: -webkit-transform .3s; transition: transform .3s; transition: transform .3s, -webkit-transform .3s; } #hints .hints-checkbox:checked { -webkit-transform: rotate(180deg); transform: rotate(180deg); } #hints .hints-checkbox:checked ~ div { -webkit-transform: translateX(-100%); transform: translateX(-100%); } #hints .hints-checkbox:focus { display: none; } #hints .hints-block { border-left: 6px solid #b700f7; position: relative; -webkit-transition: -webkit-transform .3s; transition: -webkit-transform .3s; transition: transform .3s; transition: transform .3s, -webkit-transform .3s; } #hints .hints-block::before { content: ''; position: absolute; top: 0; left: 0; height: 100%; width: 100%; background: #b700f7; background: -webkit-gradient(linear, left top, right top, from(rgba(58, 7, 83, 0.8)), to(rgba(183, 0, 247, 0))); background: linear-gradient(90deg, rgba(58, 7, 83, 0.8) 0%, rgba(183, 0, 247, 0) 100%); z-index: -1; } #hints .hints-list { padding: 13px; width: 100%; } @media screen and (max-width: 1600px) { #hints .hints-list { padding: 10px; } } @media screen and (max-width: 1280px) { #hints .hints-list { padding: 10px; } } @media screen and (max-width: 1024px) { #hints .hints-list { padding: 5px; } } #hints .hints-list__item { margin: 16px 0px; width: 100%; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: center; -ms-flex-align: center; align-items: center; font-weight: 600; } @media screen and (max-width: 1280px) { #hints .hints-list__item { margin: 8px 0px; } } @media screen and (max-width: 1024px) { #hints .hints-list__item { margin: 5px 0px; } } #hints .hints-list__item-title { font-size: 16px; } @media screen and (max-width: 1024px) { #hints .hints-list__item-title { font-size: 14px; } } #hints .hints-list__item-button { font-size: 18px; background: rgba(0, 0, 0, 0.5); min-width: 30px; height: 30px; border-radius: 4px; 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; padding: 7px; } @media screen and (max-width: 1024px) { #hints .hints-list__item-button { font-size: 14px; padding: 3px; } } #hints .hints-list__item-button img { width: 16px; height: 16px; display: block; -webkit-transform: rotate(-90deg); transform: rotate(-90deg); } #hints.right { 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: end; -ms-flex-pack: end; justify-content: flex-end; -webkit-box-align: end; -ms-flex-align: end; align-items: flex-end; right: 0; left: auto; top: 30%; } #hints.right::before { right: 0; top: 3px; left: auto; width: 40px; background: -webkit-gradient(linear, left top, right top, from(rgba(125, 185, 232, 0)), color-stop(99%, rgba(183, 0, 247, 0.99)), to(#b700f7)); background: linear-gradient(to right, rgba(125, 185, 232, 0) 0%, rgba(183, 0, 247, 0.99) 99%, #b700f7 100%); } @media screen and (max-width: 1024px) { #hints.right { width: 200px; height: 228px; } } #hints.right .hints-checkbox { position: absolute; top: 3px; } #hints.right .hints-checkbox:checked ~ div { -webkit-transform: translateX(100%); transform: translateX(100%); } #hints.right .hints-block { width: 100%; border-right: 6px solid #b700f7; border-left: none; } #hints.right .hints-block::before { content: ''; position: absolute; top: 0; left: auto; right: 0; height: 100%; width: 100%; background: #b700f7; background: -webkit-gradient(linear, left top, right top, from(rgba(183, 0, 247, 0)), color-stop(99%, rgba(58, 7, 83, 0.99)), to(#3a0753)); background: linear-gradient(to right, rgba(183, 0, 247, 0) 0%, rgba(58, 7, 83, 0.99) 99%, #3a0753 100%); z-index: -1; } #hints.right .hints-list__item { -webkit-box-orient: horizontal; -webkit-box-direction: reverse; -ms-flex-direction: row-reverse; flex-direction: row-reverse; }
0.22919
0.079531
.wrapper, .main-sidebar, .left-side { background-color: #222d32; } .user-panel > .info, .user-panel > .info > a { color: #fff; } .sidebar-menu > li.header { color: #4b646f; background: #1a2226; } .sidebar-menu > li > a { border-right: 3px solid transparent; } .sidebar-menu > li > .treeview-menu { margin: 0 1px; background: #2c3b41; } .sidebar a { color: #b8c7ce; } .sidebar a:hover { text-decoration: none; } .treeview-menu > li > a { color: #8aa4af; } .treeview-menu > li.active > a, .treeview-menu > li > a:hover { color: #ffffff; } .sidebar-form { border-radius: 3px; border: 1px solid #374850; margin: 10px 10px; } .sidebar-form input[type="text"], .sidebar-form .btn { box-shadow: none; background-color: #374850; border: 1px solid transparent; height: 35px; -webkit-transition: all 0.3s ease-in-out; -o-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out; } .sidebar-form input[type="text"] { color: #666; border-top-left-radius: 2px; border-top-right-radius: 0; border-bottom-right-radius: 0; border-bottom-left-radius: 2px; } .sidebar-form input[type="text"]:focus, .sidebar-form input[type="text"]:focus + .input-group-btn .btn { background-color: #fff; color: #666; } .sidebar-form input[type="text"]:focus + .input-group-btn .btn { border-left-color: #fff; } .sidebar-form .btn { color: #999; border-top-left-radius: 0; border-top-right-radius: 2px; border-bottom-right-radius: 2px; border-bottom-left-radius: 0; } .main-header .logo { background-color: #4caf50; color: #ffffff; border-bottom: 0 solid transparent; } .main-header .navbar .nav > li > a { color: #ffffff; } .main-header .navbar .nav > li > a:hover, .main-header .navbar .nav > li > a:active, .main-header .navbar .nav > li > a:focus, .main-header .navbar .nav .open > a, .main-header .navbar .nav .open > a:hover, .main-header .navbar .nav .open > a:focus, .main-header .navbar .nav > .active > a { background: rgba(0, 0, 0, 0.1); color: #f6f6f6; } .main-header .navbar .sidebar-toggle { color: #ffffff; } .main-header .navbar .sidebar-toggle:hover { color: #f6f6f6; background: rgba(0, 0, 0, 0.1); } .main-header .navbar .sidebar-toggle { color: #fff; } .sidebar-menu > li > a { border-right: 3px solid transparent; } .sidebar-menu > li:hover > a, .sidebar-menu > li.active > a { color: #ffffff; background: #1c1f22; border-right-color: #4caf50; } ::selection { background: #4caf50; color: #fff; } ::-moz-selection { background: #4caf50; color: #fff; } #preloader, .back-to-top:hover, .btn-custom, .scroll-indicator.go-top:before, .scroll-indicator:before, .scroll-indicator:after, .dropdown-menu>li>a:focus, .dropdown-menu>li>a:hover, .main-header .navbar, .main-header .logo, .main-header .logo:hover, .main-header .navbar .sidebar-toggle:hover, .checkbox input[type=checkbox]:checked + .checkbox-material .check { background-color: #4caf50 !important; } .widget:hover, .panel:hover { -webkit-box-shadow: 0px 0px 60px 0px rgba(76, 175, 80, 0.62); box-shadow: 0px 0px 60px 0px rgba(76, 175, 80, 0.62); } .best-price, .card .header-primary, .card-layer, .nav-pills > li.active > a, .nav-pills > li.active > a:focus, .nav-pills > li.active > a:hover, { background-color: #4caf50; box-shadow: 0 16px 26px -10px rgba(76, 175, 80, 0.44), 0 4px 25px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(156, 39, 176, 0.2); } a, .form-group.is-focused label, .form-group.is-focused label.control-label, .icon.icon-primary { color: #4caf50; } .form-group.is-focused .form-control { background-image: -webkit-linear-gradient(#4caf50, #4caf50); background-image: -o-linear-gradient(#4caf50, #4caf50); background-image: linear-gradient(#4caf50, #4caf50); }
public/backend/css/colors/green.css
.wrapper, .main-sidebar, .left-side { background-color: #222d32; } .user-panel > .info, .user-panel > .info > a { color: #fff; } .sidebar-menu > li.header { color: #4b646f; background: #1a2226; } .sidebar-menu > li > a { border-right: 3px solid transparent; } .sidebar-menu > li > .treeview-menu { margin: 0 1px; background: #2c3b41; } .sidebar a { color: #b8c7ce; } .sidebar a:hover { text-decoration: none; } .treeview-menu > li > a { color: #8aa4af; } .treeview-menu > li.active > a, .treeview-menu > li > a:hover { color: #ffffff; } .sidebar-form { border-radius: 3px; border: 1px solid #374850; margin: 10px 10px; } .sidebar-form input[type="text"], .sidebar-form .btn { box-shadow: none; background-color: #374850; border: 1px solid transparent; height: 35px; -webkit-transition: all 0.3s ease-in-out; -o-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out; } .sidebar-form input[type="text"] { color: #666; border-top-left-radius: 2px; border-top-right-radius: 0; border-bottom-right-radius: 0; border-bottom-left-radius: 2px; } .sidebar-form input[type="text"]:focus, .sidebar-form input[type="text"]:focus + .input-group-btn .btn { background-color: #fff; color: #666; } .sidebar-form input[type="text"]:focus + .input-group-btn .btn { border-left-color: #fff; } .sidebar-form .btn { color: #999; border-top-left-radius: 0; border-top-right-radius: 2px; border-bottom-right-radius: 2px; border-bottom-left-radius: 0; } .main-header .logo { background-color: #4caf50; color: #ffffff; border-bottom: 0 solid transparent; } .main-header .navbar .nav > li > a { color: #ffffff; } .main-header .navbar .nav > li > a:hover, .main-header .navbar .nav > li > a:active, .main-header .navbar .nav > li > a:focus, .main-header .navbar .nav .open > a, .main-header .navbar .nav .open > a:hover, .main-header .navbar .nav .open > a:focus, .main-header .navbar .nav > .active > a { background: rgba(0, 0, 0, 0.1); color: #f6f6f6; } .main-header .navbar .sidebar-toggle { color: #ffffff; } .main-header .navbar .sidebar-toggle:hover { color: #f6f6f6; background: rgba(0, 0, 0, 0.1); } .main-header .navbar .sidebar-toggle { color: #fff; } .sidebar-menu > li > a { border-right: 3px solid transparent; } .sidebar-menu > li:hover > a, .sidebar-menu > li.active > a { color: #ffffff; background: #1c1f22; border-right-color: #4caf50; } ::selection { background: #4caf50; color: #fff; } ::-moz-selection { background: #4caf50; color: #fff; } #preloader, .back-to-top:hover, .btn-custom, .scroll-indicator.go-top:before, .scroll-indicator:before, .scroll-indicator:after, .dropdown-menu>li>a:focus, .dropdown-menu>li>a:hover, .main-header .navbar, .main-header .logo, .main-header .logo:hover, .main-header .navbar .sidebar-toggle:hover, .checkbox input[type=checkbox]:checked + .checkbox-material .check { background-color: #4caf50 !important; } .widget:hover, .panel:hover { -webkit-box-shadow: 0px 0px 60px 0px rgba(76, 175, 80, 0.62); box-shadow: 0px 0px 60px 0px rgba(76, 175, 80, 0.62); } .best-price, .card .header-primary, .card-layer, .nav-pills > li.active > a, .nav-pills > li.active > a:focus, .nav-pills > li.active > a:hover, { background-color: #4caf50; box-shadow: 0 16px 26px -10px rgba(76, 175, 80, 0.44), 0 4px 25px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(156, 39, 176, 0.2); } a, .form-group.is-focused label, .form-group.is-focused label.control-label, .icon.icon-primary { color: #4caf50; } .form-group.is-focused .form-control { background-image: -webkit-linear-gradient(#4caf50, #4caf50); background-image: -o-linear-gradient(#4caf50, #4caf50); background-image: linear-gradient(#4caf50, #4caf50); }
0.449151
0.086593
.title-1 { text-transform: capitalize; font-weight: 400; font-size: 30px; padding-top: 15px; padding-bottom: 15px; } /* ----- Section----- */ .section__content { position: relative; margin: 0 auto; z-index: 1; } .section__content--p30 { padding: 0 30px; } @media (max-width: 991px) { .section__content--p30 { padding: 0; } } /* ----- Overview ----- */ .overview-wrap { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -webkit-justify-content: space-between; -moz-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: center; -webkit-align-items: center; -moz-box-align: center; -ms-flex-align: center; align-items: center; } @media (max-width: 767px) { .overview-wrap { -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -moz-box-orient: vertical; -moz-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } .overview-wrap .button { -webkit-box-ordinal-group: 2; -webkit-order: 1; -moz-box-ordinal-group: 2; -ms-flex-order: 1; order: 1; } .overview-wrap h2 { -webkit-box-ordinal-group: 3; -webkit-order: 2; -moz-box-ordinal-group: 3; -ms-flex-order: 2; order: 2; } } .overview-item { -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px; padding: 30px; padding-bottom: 0; -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1); -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1); box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1); margin-bottom: 40px; } @media (min-width: 992px) and (max-width: 1519px) { .overview-item { padding-left: 15px; padding-right: 15px; } } .overview-item--c1 { background-image: -moz-linear-gradient(90deg, #3f5efb 0%, #fc466b 100%); background-image: -webkit-linear-gradient(90deg, #3f5efb 0%, #fc466b 100%); background-image: -ms-linear-gradient(90deg, #3f5efb 0%, #fc466b 100%); position: relative; overflow: hidden; } .overview-item--c1 img { position: absolute; left: 0; top: 0; width: 100%; height: auto; opacity: 0.05; } @media (min-width: 676px) and (max-width: 991px) { .overview-item--c1 img { display: none; } } @media (max-width: 576px) { .overview-item--c1 img { display: none; } } .overview-item--c2 { background-image: -moz-linear-gradient(90deg, #11998e 0%, #38ef7d 100%); background-image: -webkit-linear-gradient(90deg, #11998e 0%, #38ef7d 100%); background-image: -ms-linear-gradient(90deg, #11998e 0%, #38ef7d 100%); position: relative; overflow: hidden; } .overview-item--c2 img { position: absolute; left: 0; top: 0; width: 100%; height: auto; opacity: 0.05; } @media (min-width: 676px) and (max-width: 991px) { .overview-item--c2 img { display: none; } } @media (max-width: 576px) { .overview-item--c2 img { display: none; } } .overview-item--c3 { background-image: -moz-linear-gradient(90deg, #ee0979 0%, #ff6a00 100%); background-image: -webkit-linear-gradient(90deg, #ee0979 0%, #ff6a00 100%); background-image: -ms-linear-gradient(90deg, #ee0979 0%, #ff6a00 100%); position: relative; overflow: hidden; } .overview-item--c3 img { position: absolute; left: 0; top: 0; width: 100%; height: auto; opacity: 0.05; } @media (min-width: 676px) and (max-width: 991px) { .overview-item--c3 img { display: none; } } @media (max-width: 576px) { .overview-item--c3 img { display: none; } } .overview-item--c4 { background-image: -moz-linear-gradient(90deg, #0000FF 0%, #00FFFF 100%); background-image: -webkit-linear-gradient(90deg, #0000FF 0%, #00FFFF 100%); background-image: -ms-linear-gradient(90deg, #0000FF 0%, #00FFFF 100%); position: relative; overflow: hidden; } .overview-item--c4 img { position: absolute; left: 0; top: 0; width: 100%; height: auto; opacity: 0.05; } @media (min-width: 676px) and (max-width: 991px) { .overview-item--c4 img { display: none; } } @media (max-width: 576px) { .overview-item--c4 img { display: none; } } .overview-box .icon { display: inline-block; vertical-align: top; margin-right: 15px; } .overview-box .icon i { font-size: 60px; color: #fff; } @media (min-width: 992px) and (max-width: 1199px) { .overview-box .icon { margin-right: 3px; } .overview-box .icon i { font-size: 30px; } } @media (max-width: 991px) { .overview-box .icon { font-size: 46px; } } .overview-box .text { font-weight: 300; display: inline-block; } .overview-box .text h2 { font-weight: 300; color: #fff; font-size: 36px; line-height: 1; margin-bottom: 5px; } .overview-box .text h4 { font-weight: 350; color: #fff; line-height: 1; margin-bottom: 5px; } .overview-box .text span { font-size: 18px; color: rgba(255, 255, 255, 0.6); } @media (min-width: 992px) and (max-width: 1199px) { .overview-box .text { display: inline-block; } .overview-box .text h2 { font-size: 20px; margin-bottom: 0; } .overview-box .text h4 { font-size: 20px; margin-bottom: 0; } .overview-box .text span { font-size: 14px; } } @media (max-width: 991px) { .overview-box .text h2 { font-size: 26px; } .overview-box .text span { font-size: 15px; } } .overview-chart { height: 115px; position: relative; } .overview-chart-special { height: 100px; position: relative; } @media (min-width: 992px) and (max-width: 1199px) { .overview-chart-special { height: 96px; } } @media (max-width: 991px) { .overview-chart-special { height: 111px; } } .overview-chart canvas { width: 100%; } /* ----- Card ----- */ .au-card { -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1); -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1); box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1); padding: 40px; padding-right: 35px; -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px; background: #fff; overflow: hidden; } .au-card--border { -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; } .au-card--border .au-card-title { -webkit-border-top-left-radius: 3px; -moz-border-radius-topleft: 3px; border-top-left-radius: 3px; -webkit-border-top-right-radius: 3px; -moz-border-radius-topright: 3px; border-top-right-radius: 3px; } .au-card--border .au-card-title .bg-overlay { -webkit-border-top-left-radius: 3px; -moz-border-radius-topleft: 3px; border-top-left-radius: 3px; -webkit-border-top-right-radius: 3px; -moz-border-radius-topright: 3px; border-top-right-radius: 3px; } .au-card-bordered { border: 1px solid #e5e5e5; background: #fff; padding: 40px; padding-top: 42px; padding-right: 55px; margin-bottom: 40px; } .au-card--bg-blue { background-image: -moz-linear-gradient(90deg, #396afc 0%, #2948ff 100%); background-image: -webkit-linear-gradient(90deg, #396afc 0%, #2948ff 100%); background-image: -ms-linear-gradient(90deg, #396afc 0%, #2948ff 100%); } .au-card-top-countries { padding: 40px; padding-top: 25px; padding-bottom: 25px; padding-bottom: 29px; } .au-card--no-shadow { -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } .au-card--no-pad { padding: 0; } .au-card-title { position: relative; padding: 40px; padding-top: 45px; padding-bottom: 47px; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; background-position: center center; background-repeat: no-repeat; -webkit-border-top-left-radius: 10px; -moz-border-radius-topleft: 10px; border-top-left-radius: 10px; -webkit-border-top-right-radius: 10px; -moz-border-radius-topright: 10px; border-top-right-radius: 10px; -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1); -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1); box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1); } .au-card-title .bg-overlay { -webkit-border-top-left-radius: 10px; -moz-border-radius-topleft: 10px; border-top-left-radius: 10px; -webkit-border-top-right-radius: 10px; -moz-border-radius-topright: 10px; border-top-right-radius: 10px; } .au-card-title h3 { position: relative; z-index: 2; color: #fff; font-weight: 400; } .au-card-title h3 i { color: #fff; font-size: 24px; margin-right: 12px; } /* ----- Charts ----- */ .recent-report { padding-bottom: 65px; margin-bottom: 60px; } /* ----- Table ----- */ .table { margin: 0; } .table-top-countries tbody td { white-space: nowrap; font-size: 14px; color: #fff; padding: 14px 5px; border-top: none; border-bottom: 1px solid rgba(255, 255, 255, 0.2); } .table-top-countries tbody tr:last-child td { border-bottom: none; } .more { display: inline-block; cursor: pointer; width: 30px; height: 30px; background: #e5e5e5; -webkit-border-radius: 100%; -moz-border-radius: 100%; border-radius: 100%; position: relative; -webkit-transition: all 0.4s ease; -o-transition: all 0.4s ease; -moz-transition: all 0.4s ease; transition: all 0.4s ease; -webkit-transform: scale(0); -moz-transform: scale(0); -ms-transform: scale(0); -o-transform: scale(0); transform: scale(0); } .more i { font-size: 20px; color: #808080; position: absolute; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); -moz-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); -o-transform: translate(-50%, -50%); transform: translate(-50%, -50%); } .role { display: inline-block; line-height: 30px; font-size: 14px; color: #fff; padding: 0 15px; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; text-transform: capitalize; } .role.admin { background: #fa4251; } .role.user { background: #00b5e9; } .role.member { background: #57b846; } /* ----- amCharts ----- */ .chart-title { text-align: center; } .chart-title h4 { line-height: 40px; } .chart-title p { line-height: 10px; color: grey; } @media (max-width: 1199px) { .chart-title h4 { font-size: 95%; } .chart-title p { font-size: 95%; } } .chartdiv { width: 1000px; height: 600px; margin: 0 auto; } @media (max-width: 1199px) { .chartdiv { width: 85vw; } } @media (max-width: 991px) { .chartdiv { height: 60vw; } } @media (max-width: 869px) { .chartdiv { width: 75vw; height: 55vw; } } #loading { width: 100%; margin: 0 auto; } /* ----- vue-good-table ----- */ .table-container { position: relative; } .blank-page { height: 480px; } .table-inner { padding: 20px; margin: 0 auto; } .station-title { padding: 0px 0px 0px; } .station-title button { background: gray; color: white; border: none; border-radius: 2px 2px 0px 0px; font-size: 16px; }
public/css/realtime-dashboard/realtime-dashboard.css
.title-1 { text-transform: capitalize; font-weight: 400; font-size: 30px; padding-top: 15px; padding-bottom: 15px; } /* ----- Section----- */ .section__content { position: relative; margin: 0 auto; z-index: 1; } .section__content--p30 { padding: 0 30px; } @media (max-width: 991px) { .section__content--p30 { padding: 0; } } /* ----- Overview ----- */ .overview-wrap { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -webkit-justify-content: space-between; -moz-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: center; -webkit-align-items: center; -moz-box-align: center; -ms-flex-align: center; align-items: center; } @media (max-width: 767px) { .overview-wrap { -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -moz-box-orient: vertical; -moz-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } .overview-wrap .button { -webkit-box-ordinal-group: 2; -webkit-order: 1; -moz-box-ordinal-group: 2; -ms-flex-order: 1; order: 1; } .overview-wrap h2 { -webkit-box-ordinal-group: 3; -webkit-order: 2; -moz-box-ordinal-group: 3; -ms-flex-order: 2; order: 2; } } .overview-item { -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px; padding: 30px; padding-bottom: 0; -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1); -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1); box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1); margin-bottom: 40px; } @media (min-width: 992px) and (max-width: 1519px) { .overview-item { padding-left: 15px; padding-right: 15px; } } .overview-item--c1 { background-image: -moz-linear-gradient(90deg, #3f5efb 0%, #fc466b 100%); background-image: -webkit-linear-gradient(90deg, #3f5efb 0%, #fc466b 100%); background-image: -ms-linear-gradient(90deg, #3f5efb 0%, #fc466b 100%); position: relative; overflow: hidden; } .overview-item--c1 img { position: absolute; left: 0; top: 0; width: 100%; height: auto; opacity: 0.05; } @media (min-width: 676px) and (max-width: 991px) { .overview-item--c1 img { display: none; } } @media (max-width: 576px) { .overview-item--c1 img { display: none; } } .overview-item--c2 { background-image: -moz-linear-gradient(90deg, #11998e 0%, #38ef7d 100%); background-image: -webkit-linear-gradient(90deg, #11998e 0%, #38ef7d 100%); background-image: -ms-linear-gradient(90deg, #11998e 0%, #38ef7d 100%); position: relative; overflow: hidden; } .overview-item--c2 img { position: absolute; left: 0; top: 0; width: 100%; height: auto; opacity: 0.05; } @media (min-width: 676px) and (max-width: 991px) { .overview-item--c2 img { display: none; } } @media (max-width: 576px) { .overview-item--c2 img { display: none; } } .overview-item--c3 { background-image: -moz-linear-gradient(90deg, #ee0979 0%, #ff6a00 100%); background-image: -webkit-linear-gradient(90deg, #ee0979 0%, #ff6a00 100%); background-image: -ms-linear-gradient(90deg, #ee0979 0%, #ff6a00 100%); position: relative; overflow: hidden; } .overview-item--c3 img { position: absolute; left: 0; top: 0; width: 100%; height: auto; opacity: 0.05; } @media (min-width: 676px) and (max-width: 991px) { .overview-item--c3 img { display: none; } } @media (max-width: 576px) { .overview-item--c3 img { display: none; } } .overview-item--c4 { background-image: -moz-linear-gradient(90deg, #0000FF 0%, #00FFFF 100%); background-image: -webkit-linear-gradient(90deg, #0000FF 0%, #00FFFF 100%); background-image: -ms-linear-gradient(90deg, #0000FF 0%, #00FFFF 100%); position: relative; overflow: hidden; } .overview-item--c4 img { position: absolute; left: 0; top: 0; width: 100%; height: auto; opacity: 0.05; } @media (min-width: 676px) and (max-width: 991px) { .overview-item--c4 img { display: none; } } @media (max-width: 576px) { .overview-item--c4 img { display: none; } } .overview-box .icon { display: inline-block; vertical-align: top; margin-right: 15px; } .overview-box .icon i { font-size: 60px; color: #fff; } @media (min-width: 992px) and (max-width: 1199px) { .overview-box .icon { margin-right: 3px; } .overview-box .icon i { font-size: 30px; } } @media (max-width: 991px) { .overview-box .icon { font-size: 46px; } } .overview-box .text { font-weight: 300; display: inline-block; } .overview-box .text h2 { font-weight: 300; color: #fff; font-size: 36px; line-height: 1; margin-bottom: 5px; } .overview-box .text h4 { font-weight: 350; color: #fff; line-height: 1; margin-bottom: 5px; } .overview-box .text span { font-size: 18px; color: rgba(255, 255, 255, 0.6); } @media (min-width: 992px) and (max-width: 1199px) { .overview-box .text { display: inline-block; } .overview-box .text h2 { font-size: 20px; margin-bottom: 0; } .overview-box .text h4 { font-size: 20px; margin-bottom: 0; } .overview-box .text span { font-size: 14px; } } @media (max-width: 991px) { .overview-box .text h2 { font-size: 26px; } .overview-box .text span { font-size: 15px; } } .overview-chart { height: 115px; position: relative; } .overview-chart-special { height: 100px; position: relative; } @media (min-width: 992px) and (max-width: 1199px) { .overview-chart-special { height: 96px; } } @media (max-width: 991px) { .overview-chart-special { height: 111px; } } .overview-chart canvas { width: 100%; } /* ----- Card ----- */ .au-card { -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1); -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1); box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1); padding: 40px; padding-right: 35px; -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px; background: #fff; overflow: hidden; } .au-card--border { -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; } .au-card--border .au-card-title { -webkit-border-top-left-radius: 3px; -moz-border-radius-topleft: 3px; border-top-left-radius: 3px; -webkit-border-top-right-radius: 3px; -moz-border-radius-topright: 3px; border-top-right-radius: 3px; } .au-card--border .au-card-title .bg-overlay { -webkit-border-top-left-radius: 3px; -moz-border-radius-topleft: 3px; border-top-left-radius: 3px; -webkit-border-top-right-radius: 3px; -moz-border-radius-topright: 3px; border-top-right-radius: 3px; } .au-card-bordered { border: 1px solid #e5e5e5; background: #fff; padding: 40px; padding-top: 42px; padding-right: 55px; margin-bottom: 40px; } .au-card--bg-blue { background-image: -moz-linear-gradient(90deg, #396afc 0%, #2948ff 100%); background-image: -webkit-linear-gradient(90deg, #396afc 0%, #2948ff 100%); background-image: -ms-linear-gradient(90deg, #396afc 0%, #2948ff 100%); } .au-card-top-countries { padding: 40px; padding-top: 25px; padding-bottom: 25px; padding-bottom: 29px; } .au-card--no-shadow { -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } .au-card--no-pad { padding: 0; } .au-card-title { position: relative; padding: 40px; padding-top: 45px; padding-bottom: 47px; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; background-position: center center; background-repeat: no-repeat; -webkit-border-top-left-radius: 10px; -moz-border-radius-topleft: 10px; border-top-left-radius: 10px; -webkit-border-top-right-radius: 10px; -moz-border-radius-topright: 10px; border-top-right-radius: 10px; -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1); -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1); box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1); } .au-card-title .bg-overlay { -webkit-border-top-left-radius: 10px; -moz-border-radius-topleft: 10px; border-top-left-radius: 10px; -webkit-border-top-right-radius: 10px; -moz-border-radius-topright: 10px; border-top-right-radius: 10px; } .au-card-title h3 { position: relative; z-index: 2; color: #fff; font-weight: 400; } .au-card-title h3 i { color: #fff; font-size: 24px; margin-right: 12px; } /* ----- Charts ----- */ .recent-report { padding-bottom: 65px; margin-bottom: 60px; } /* ----- Table ----- */ .table { margin: 0; } .table-top-countries tbody td { white-space: nowrap; font-size: 14px; color: #fff; padding: 14px 5px; border-top: none; border-bottom: 1px solid rgba(255, 255, 255, 0.2); } .table-top-countries tbody tr:last-child td { border-bottom: none; } .more { display: inline-block; cursor: pointer; width: 30px; height: 30px; background: #e5e5e5; -webkit-border-radius: 100%; -moz-border-radius: 100%; border-radius: 100%; position: relative; -webkit-transition: all 0.4s ease; -o-transition: all 0.4s ease; -moz-transition: all 0.4s ease; transition: all 0.4s ease; -webkit-transform: scale(0); -moz-transform: scale(0); -ms-transform: scale(0); -o-transform: scale(0); transform: scale(0); } .more i { font-size: 20px; color: #808080; position: absolute; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); -moz-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); -o-transform: translate(-50%, -50%); transform: translate(-50%, -50%); } .role { display: inline-block; line-height: 30px; font-size: 14px; color: #fff; padding: 0 15px; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; text-transform: capitalize; } .role.admin { background: #fa4251; } .role.user { background: #00b5e9; } .role.member { background: #57b846; } /* ----- amCharts ----- */ .chart-title { text-align: center; } .chart-title h4 { line-height: 40px; } .chart-title p { line-height: 10px; color: grey; } @media (max-width: 1199px) { .chart-title h4 { font-size: 95%; } .chart-title p { font-size: 95%; } } .chartdiv { width: 1000px; height: 600px; margin: 0 auto; } @media (max-width: 1199px) { .chartdiv { width: 85vw; } } @media (max-width: 991px) { .chartdiv { height: 60vw; } } @media (max-width: 869px) { .chartdiv { width: 75vw; height: 55vw; } } #loading { width: 100%; margin: 0 auto; } /* ----- vue-good-table ----- */ .table-container { position: relative; } .blank-page { height: 480px; } .table-inner { padding: 20px; margin: 0 auto; } .station-title { padding: 0px 0px 0px; } .station-title button { background: gray; color: white; border: none; border-radius: 2px 2px 0px 0px; font-size: 16px; }
0.568775
0.078819
*, *:after, *:before { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; -webkit-font-smoothing: antialiased;} body, html { font-size: 15px; padding: 0; margin: 0;} /* Clearfix hack by <NAME>: http://nicolasgallagher.com/micro-clearfix-hack/ */ .clearfix:before, .clearfix:after { content: " "; display: table; } .clearfix:after { clear: both; } body { color: #666666; background: #f9f9f9; } .main, .container > header { width: 100%; margin: 0 auto; padding: 2em; } .main { max-width: 82.667em; /*min-height: 40em;*/ } .container > header { text-align: center; font-size: 16px; padding: 4em 2em 3em; background: rgba(0,0,0,0.01); } .container > header h1 { font-size: 2.625em; line-height: 1.3; margin: 0; font-weight: 700; } .container > header span { display: block; font-size: 60%; color: #666666; padding: 0 0 0.6em 0.1em; font-weight:300; } @media screen and (max-width: 25em) { .codrops-icon span { display: none; } .container > header { font-size: 75%; } } .btn{padding:10px;border:3px solid #fff;background-color:transparent;color:#fff;font-weight:700;text-transform:uppercase;display:inline-block} .btn:hover{border-style:dashed;cursor:pointer} .btn:active,.demo-btn:active{border-style:dotted} .demo-btn{position:absolute;margin-top:12px;margin-left:40px} .element-demo{height:150px;margin:0.5em 0;padding:1em;font-family:Consolas,Monaco,'Andale Mono',monospace;text-shadow:0 -0.1em 0.2em black;border:0.3em solid #545454;border-radius:0.5em;background:none repeat scroll 0 0 #141414;box-shadow:1px 1px 0.5em black inset;overflow:auto} .easing-buttons{margin-top:80px} .download-buttons{margin-top:350px} .fl{float:left} .fr{float:right} .disp-inl{display:inline} .disp_inl_blk{display:inline-block} .w30{width:30%} .w50{width:50%} .w60{width:60%} .w70{width:70%} .ptr{cursor:pointer} /* Back to top button */ #back-top { position: fixed; bottom: 30px; right: 100px; } #back-top a { width: 54px; display: block; text-align: center; font: 11px/100% Arial, Helvetica, sans-serif; text-transform: uppercase; text-decoration: none; color: #8B8970; /* background color transition */ -webkit-transition: 1s; -moz-transition: 1s; transition: 1s; } #back-top a:hover { color: #000; } /* arrow icon (span tag) */ #back-top span { width: 54px; height: 54px; display: block; margin-bottom: 7px; margin-left: 40px; background: #8B8970 url(up-arrow-2.png) no-repeat center center; /* rounded corners */ -webkit-border-radius: 8px; -moz-border-radius: 8px; border-radius: 8px; /* background color transition */ -webkit-transition: 1s; -moz-transition: 1s; transition: 1s; } #back-top a:hover span { background-color: #8B8970; } /* For Responsiveness */ @media (min-width:32.5em) and (max-width: 61.250em) { [id^="section-"] .content-wrapper{font-size:1.2em} [id^="section-"] .content-wrapper>pre{display:block} .demo-btn{position:relative} .easing-buttons,.download-buttons{margin-top:0} .fr{float:none} .w30,.w60,.w70{width:100%} } @media (min-width: 32.5em) and (max-width: 38.688em) { [id^="section-"] .content-wrapper{font-size:1.1em} [id^="section-"] .content-wrapper>pre{display:block} .demo-btn{position:relative} .easing-buttons,.download-buttons{margin-top:0} .fr{float:none} .w30,.w60,.w70{width:100%} } @media (max-width: 32.438em) { [id^="section-"] .content-wrapper{font-size:1em} [id^="section-"] .content-wrapper>pre{display:block} .demo-btn{position:relative} .easing-buttons,.download-buttons{margin-top:0} .fr{float:none} .w30,.w60,.w70{width:100%} } @media all and (max-width: 768px) { #back-top { right: 30px; } }
public/css/custom.css
*, *:after, *:before { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; -webkit-font-smoothing: antialiased;} body, html { font-size: 15px; padding: 0; margin: 0;} /* Clearfix hack by <NAME>: http://nicolasgallagher.com/micro-clearfix-hack/ */ .clearfix:before, .clearfix:after { content: " "; display: table; } .clearfix:after { clear: both; } body { color: #666666; background: #f9f9f9; } .main, .container > header { width: 100%; margin: 0 auto; padding: 2em; } .main { max-width: 82.667em; /*min-height: 40em;*/ } .container > header { text-align: center; font-size: 16px; padding: 4em 2em 3em; background: rgba(0,0,0,0.01); } .container > header h1 { font-size: 2.625em; line-height: 1.3; margin: 0; font-weight: 700; } .container > header span { display: block; font-size: 60%; color: #666666; padding: 0 0 0.6em 0.1em; font-weight:300; } @media screen and (max-width: 25em) { .codrops-icon span { display: none; } .container > header { font-size: 75%; } } .btn{padding:10px;border:3px solid #fff;background-color:transparent;color:#fff;font-weight:700;text-transform:uppercase;display:inline-block} .btn:hover{border-style:dashed;cursor:pointer} .btn:active,.demo-btn:active{border-style:dotted} .demo-btn{position:absolute;margin-top:12px;margin-left:40px} .element-demo{height:150px;margin:0.5em 0;padding:1em;font-family:Consolas,Monaco,'Andale Mono',monospace;text-shadow:0 -0.1em 0.2em black;border:0.3em solid #545454;border-radius:0.5em;background:none repeat scroll 0 0 #141414;box-shadow:1px 1px 0.5em black inset;overflow:auto} .easing-buttons{margin-top:80px} .download-buttons{margin-top:350px} .fl{float:left} .fr{float:right} .disp-inl{display:inline} .disp_inl_blk{display:inline-block} .w30{width:30%} .w50{width:50%} .w60{width:60%} .w70{width:70%} .ptr{cursor:pointer} /* Back to top button */ #back-top { position: fixed; bottom: 30px; right: 100px; } #back-top a { width: 54px; display: block; text-align: center; font: 11px/100% Arial, Helvetica, sans-serif; text-transform: uppercase; text-decoration: none; color: #8B8970; /* background color transition */ -webkit-transition: 1s; -moz-transition: 1s; transition: 1s; } #back-top a:hover { color: #000; } /* arrow icon (span tag) */ #back-top span { width: 54px; height: 54px; display: block; margin-bottom: 7px; margin-left: 40px; background: #8B8970 url(up-arrow-2.png) no-repeat center center; /* rounded corners */ -webkit-border-radius: 8px; -moz-border-radius: 8px; border-radius: 8px; /* background color transition */ -webkit-transition: 1s; -moz-transition: 1s; transition: 1s; } #back-top a:hover span { background-color: #8B8970; } /* For Responsiveness */ @media (min-width:32.5em) and (max-width: 61.250em) { [id^="section-"] .content-wrapper{font-size:1.2em} [id^="section-"] .content-wrapper>pre{display:block} .demo-btn{position:relative} .easing-buttons,.download-buttons{margin-top:0} .fr{float:none} .w30,.w60,.w70{width:100%} } @media (min-width: 32.5em) and (max-width: 38.688em) { [id^="section-"] .content-wrapper{font-size:1.1em} [id^="section-"] .content-wrapper>pre{display:block} .demo-btn{position:relative} .easing-buttons,.download-buttons{margin-top:0} .fr{float:none} .w30,.w60,.w70{width:100%} } @media (max-width: 32.438em) { [id^="section-"] .content-wrapper{font-size:1em} [id^="section-"] .content-wrapper>pre{display:block} .demo-btn{position:relative} .easing-buttons,.download-buttons{margin-top:0} .fr{float:none} .w30,.w60,.w70{width:100%} } @media all and (max-width: 768px) { #back-top { right: 30px; } }
0.338296
0.082697
tr{ font-size: 14px} table{ border-style: solid; border-width: thin; border-collapse:none; border-spacing: 0px; text-align: center; border-collapse: collapse; border-bottom-style:inherit; border-left-style: hidden; border-right-style: hidden; } .dropbtn { background-color: #fff; color: blue; padding: 16px; font-size: 16px; border: none; } .dropdown { position:absolute; display:block; } .dropdown-content { display: none; position: absolute; background-color: #fff; min-width: 160px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); z-index: 1; } .dropdown-content a { color: black; padding: 12px 16px; text-decoration: none; display: block; } .dropdown-content a:hover {background-color: #fff;} .dropdown:hover .dropdown-content {display: block;} .dropdown:hover .dropbtn {background-color: #fff;} * {box-sizing: border-box;} body {font-family: Verdana, sans-serif;} .mySlides {display: none;} /* Slideshow container */ .slideshow-container { max-width: 100%; position: relative; margin: auto; } /* Caption text */ .text { color: #fff; font-size: 30px; padding: 8px 12px; position: absolute; bottom: 8px; width: 100%; text-align: center; } /* Number text (1/3 etc) */ .numbertext { color: #fff; font-size: 12px; padding: 8px 12px; position: absolute; top: 0; } /* The dots/bullets/indicators */ .dot { height: 15px; width: 15px; margin: 0 2px; background-color: #bbb; border-radius: 50%; display: inline-block; transition: background-color 0.6s ease; } .active { 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} } /* On smaller screens, decrease text size */ @media only screen and (max-width: 300px) { .text {font-size: 11px} } li { list-style: none }
css/table.css
tr{ font-size: 14px} table{ border-style: solid; border-width: thin; border-collapse:none; border-spacing: 0px; text-align: center; border-collapse: collapse; border-bottom-style:inherit; border-left-style: hidden; border-right-style: hidden; } .dropbtn { background-color: #fff; color: blue; padding: 16px; font-size: 16px; border: none; } .dropdown { position:absolute; display:block; } .dropdown-content { display: none; position: absolute; background-color: #fff; min-width: 160px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); z-index: 1; } .dropdown-content a { color: black; padding: 12px 16px; text-decoration: none; display: block; } .dropdown-content a:hover {background-color: #fff;} .dropdown:hover .dropdown-content {display: block;} .dropdown:hover .dropbtn {background-color: #fff;} * {box-sizing: border-box;} body {font-family: Verdana, sans-serif;} .mySlides {display: none;} /* Slideshow container */ .slideshow-container { max-width: 100%; position: relative; margin: auto; } /* Caption text */ .text { color: #fff; font-size: 30px; padding: 8px 12px; position: absolute; bottom: 8px; width: 100%; text-align: center; } /* Number text (1/3 etc) */ .numbertext { color: #fff; font-size: 12px; padding: 8px 12px; position: absolute; top: 0; } /* The dots/bullets/indicators */ .dot { height: 15px; width: 15px; margin: 0 2px; background-color: #bbb; border-radius: 50%; display: inline-block; transition: background-color 0.6s ease; } .active { 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} } /* On smaller screens, decrease text size */ @media only screen and (max-width: 300px) { .text {font-size: 11px} } li { list-style: none }
0.442396
0.071819
@import "menu.css"; /*____________________________________________________________________*/ header, header .header-content{ position:relative; width:100%; text-align:center; /* border: 1px solid red;*/ } body, html{ height:100%; width:100%; } body{ background: white; overflow-x: hidden; } img.logo_empresa{ width: 170px !important; max-height: 49px !important; margin: -6px 0px 0px 0px !important; /* border: 1px solid red;*/ } .btn, .navbar-default, .navbar-default .navbar-header .navbar-brand, h1, h2, h3, h4, h5, h6{ font-family: calibri; } hr{ border-color:#F05F40; border-width:3px; max-width:90px; } a{ transition:all .35s; color:#F05F40; } a:focus,a:hover{ color:#eb3812; } p{ font-size:16px; line-height:1.5; margin-bottom:20px; } /*____________________________________________________________________*/ header{ background-image: url('../img/productos.jpg'); min-height:auto; -webkit-background-size:cover; -moz-background-size:cover; background-size:cover; -o-background-size:cover; background-position:center; color:#fff; } div.header-content{ padding:130px 15px 100px 15px; /*border: 1px solid yellow;*/ overflow: hidden; } .header-content-inner{ overflow: hidden; margin: auto; } header .header-content .header-content-inner h1.prim_tlt{ font-weight:500; margin-top:0; margin-bottom:0; font-size:35px; margin-bottom: 0; font-family: airbus; padding-top: 5px; } /*__________________________________________*/ @media (min-width:500px){ header{ height: 65%; } div.header-content{ padding:190px 15px 90px 15px; } header .header-content .header-content-inner h1.prim_tlt{ font-size:42px; } } /*__________________________________________*/ @media (min-width:768px){ header{ height: 70%; } div.header-content{ padding:80px 15px 90px 15px; position:absolute; top:50%; -webkit-transform:translateY(-50%); -ms-transform:translateY(-50%); transform:translateY(-50%); /*border: 2px solid red;*/ } header .header-content .header-content-inner h1.prim_tlt{ font-size:55px; } } /*____________________________________________________________________*/ /*____________________________________________________________________*/ section.panel_uno{ background-color:white; padding:20px 0 20px 0; } div.logo_marca{ border: 1px solid #707070; height: 46px; border-radius: 25px; margin-bottom: 6px; margin-left: auto; margin-right: auto; text-align: center; padding-top: 1px; /*overflow: hidden;*/ } div.logo_marca img{ width: 130px; margin: auto; } /*____________________________________________________________________*/ /*____________________________________________________________________*/ section.panel_dos{ background-color:white; padding:0px 0 20px 0; margin-bottom: 60px; } .product-carousel { padding-top: 40px; overflow: hidden; } .single-product { overflow: hidden; margin-bottom: 20px; } .product-f-image { position: relative; } .product-hover { height: 100%; left: 0; position: absolute; top: 0; width: 100%; overflow: hidden; border: 1px solid #ddd; } .product-hover:after { background: none repeat scroll 0 0 #7B7D80; content: ""; height: 100%; left: -100%; opacity: 0.6; position: absolute; top: 0; width: 100%; transition: .0.01s; } .product-hover a { background: none repeat scroll 0 0 #009BA4; border-radius: 5px; color: #fff; display: block; font-size: 16px; left: 10%; margin: 0; padding: 10px; position: absolute; text-align: center; text-transform: uppercase; border: 1px solid #5a88ca; width: 80%; z-index: 99; transition: .0s; } .single-product:hover .product-hover a.name_product { top: 40%; text-decoration: none; } .single-product:hover .product-hover:after{ left: 0; } .product-hover a.name_product { top: -25%; } @media(max-width:550px) { .product-hover a { background: #009BA4; border-radius: 4px; color: #fff; display: block; font-size: 11px; left: 10%; margin: 0; padding: 5px; position: absolute; text-align: center; text-transform: uppercase; border: 1px solid #5a88ca; width: 80%; z-index: 99; transition: .0s; } } /*____________________________________________________________________*/ /*____________________________________________________________________*/ .btn-primary{ color:#fff; background-color:#F05F40; border-color:#F05F40; -webkit-transition:all .35s; -moz-transition:all .35s; transition:all .35s; } .btn-primary.active,.btn-primary.focus,.btn-primary:active,.btn-primary:focus,.btn-primary:hover,.open>.dropdown-toggle.btn-primary{ color:#fff; background-color:#039CA5; border-color:#ed431f; } .btn{ border:none; border-radius:300px; font-weight:700; text-transform:uppercase; }
public/css/productos.css
@import "menu.css"; /*____________________________________________________________________*/ header, header .header-content{ position:relative; width:100%; text-align:center; /* border: 1px solid red;*/ } body, html{ height:100%; width:100%; } body{ background: white; overflow-x: hidden; } img.logo_empresa{ width: 170px !important; max-height: 49px !important; margin: -6px 0px 0px 0px !important; /* border: 1px solid red;*/ } .btn, .navbar-default, .navbar-default .navbar-header .navbar-brand, h1, h2, h3, h4, h5, h6{ font-family: calibri; } hr{ border-color:#F05F40; border-width:3px; max-width:90px; } a{ transition:all .35s; color:#F05F40; } a:focus,a:hover{ color:#eb3812; } p{ font-size:16px; line-height:1.5; margin-bottom:20px; } /*____________________________________________________________________*/ header{ background-image: url('../img/productos.jpg'); min-height:auto; -webkit-background-size:cover; -moz-background-size:cover; background-size:cover; -o-background-size:cover; background-position:center; color:#fff; } div.header-content{ padding:130px 15px 100px 15px; /*border: 1px solid yellow;*/ overflow: hidden; } .header-content-inner{ overflow: hidden; margin: auto; } header .header-content .header-content-inner h1.prim_tlt{ font-weight:500; margin-top:0; margin-bottom:0; font-size:35px; margin-bottom: 0; font-family: airbus; padding-top: 5px; } /*__________________________________________*/ @media (min-width:500px){ header{ height: 65%; } div.header-content{ padding:190px 15px 90px 15px; } header .header-content .header-content-inner h1.prim_tlt{ font-size:42px; } } /*__________________________________________*/ @media (min-width:768px){ header{ height: 70%; } div.header-content{ padding:80px 15px 90px 15px; position:absolute; top:50%; -webkit-transform:translateY(-50%); -ms-transform:translateY(-50%); transform:translateY(-50%); /*border: 2px solid red;*/ } header .header-content .header-content-inner h1.prim_tlt{ font-size:55px; } } /*____________________________________________________________________*/ /*____________________________________________________________________*/ section.panel_uno{ background-color:white; padding:20px 0 20px 0; } div.logo_marca{ border: 1px solid #707070; height: 46px; border-radius: 25px; margin-bottom: 6px; margin-left: auto; margin-right: auto; text-align: center; padding-top: 1px; /*overflow: hidden;*/ } div.logo_marca img{ width: 130px; margin: auto; } /*____________________________________________________________________*/ /*____________________________________________________________________*/ section.panel_dos{ background-color:white; padding:0px 0 20px 0; margin-bottom: 60px; } .product-carousel { padding-top: 40px; overflow: hidden; } .single-product { overflow: hidden; margin-bottom: 20px; } .product-f-image { position: relative; } .product-hover { height: 100%; left: 0; position: absolute; top: 0; width: 100%; overflow: hidden; border: 1px solid #ddd; } .product-hover:after { background: none repeat scroll 0 0 #7B7D80; content: ""; height: 100%; left: -100%; opacity: 0.6; position: absolute; top: 0; width: 100%; transition: .0.01s; } .product-hover a { background: none repeat scroll 0 0 #009BA4; border-radius: 5px; color: #fff; display: block; font-size: 16px; left: 10%; margin: 0; padding: 10px; position: absolute; text-align: center; text-transform: uppercase; border: 1px solid #5a88ca; width: 80%; z-index: 99; transition: .0s; } .single-product:hover .product-hover a.name_product { top: 40%; text-decoration: none; } .single-product:hover .product-hover:after{ left: 0; } .product-hover a.name_product { top: -25%; } @media(max-width:550px) { .product-hover a { background: #009BA4; border-radius: 4px; color: #fff; display: block; font-size: 11px; left: 10%; margin: 0; padding: 5px; position: absolute; text-align: center; text-transform: uppercase; border: 1px solid #5a88ca; width: 80%; z-index: 99; transition: .0s; } } /*____________________________________________________________________*/ /*____________________________________________________________________*/ .btn-primary{ color:#fff; background-color:#F05F40; border-color:#F05F40; -webkit-transition:all .35s; -moz-transition:all .35s; transition:all .35s; } .btn-primary.active,.btn-primary.focus,.btn-primary:active,.btn-primary:focus,.btn-primary:hover,.open>.dropdown-toggle.btn-primary{ color:#fff; background-color:#039CA5; border-color:#ed431f; } .btn{ border:none; border-radius:300px; font-weight:700; text-transform:uppercase; }
0.097444
0.046249
@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700;900&display=swap); body { font-family: "Poppins", sans-serif; background-color: #F9F9F9; font-size: 16px; } a { transition: all ease 0.3s; } .logoLogin { max-width: 100%; } .bglogin { background-color: #dad8d8; background-image: url(/images/bg.png?f8c26a5727c28256f6ee7464ad427a17); background-size: contain; background-position: left center; background-repeat: no-repeat; } .bglogin .logoLogin { width: 350px; } .contLogin { background: #fff; border-radius: 5px; padding: 50px; color: #333; } .contLogin h2 { color: #1EAAE7; font-size: 50px; text-align: center; font-weight: 600; margin-bottom: 25px; } .contLogin p { font-weight: 600; } .formLogin label { margin-bottom: 5px; font-weight: 600; } .formLogin .form-control { border-radius: 10px; padding: 16px 25px; font-weight: 300; background-color: #d5f3dd; border: none; } .formLogin .form-control.validation { background-color: #ffd5d5; color: #ff2e2e; } .formLogin .form-check-label { font-weight: 300; } .formLogin a.forgotPass { float: right; color: #333; text-decoration: none; font-weight: 600; } .formLogin a.forgotPass:hover { text-decoration: underline; } .formLogin button.btn { width: 100%; padding: 15px; background-color: #fff; color: #71c07d; border: 1px solid #71c07d; border-radius: 10px; } .formLogin button.btn-outline-primary { max-width: 240px; padding: 15px; background-color: #fff; color: #1EAAE7; border: 1px solid #1EAAE7; border-radius: 10px 10px 0px 0px; } .formLogin .form-text { margin-top: 20px; color: #333; } .formLogin .form-text a { color: #333; font-weight: 600; text-decoration: none; } .formLogin .form-text.validation { color: #ff2e2e; margin-top: 4px; font-size: 13px; } .formLogin .form-check-input[type=checkbox] { border-radius: 15px; border-color: #9ab6dd; border-width: 2px; } @media (max-width: 900px) { .bglogin { background-image: none; } } @media (max-width: 767px) { .logoLogin { margin-top: 20px; margin-bottom: 20px; margin-left: auto; margin-right: auto; display: table; height: 130px; width: initial !important; } } @media (max-width: 500px) { .contLogin { padding: 30px; margin-bottom: 20px; } } .alert { border-radius: 20px; } .alert-success { background: #e3f9e9; border-color: #e3f9e9; color: #2BC155; } .alert-warning { background: #fff0e5; border-color: #fff0e5; color: #FE8024; } .alert-danger { background: #ffc7c7; border-color: #ffc7c7; color: #FF2E2E; } .alert-info { background: #461EE7; color: #fff; border-color: #461EE7; } .logoMessage { margin: 20px 0 40px; width: 350px; max-width: 100%; } @media (max-width: 767px) { .logoMessage { margin-top: 20px; margin-bottom: 20px; margin-left: auto; margin-right: auto; display: table; height: 130px; width: initial !important; } } .card { border: 0px solid transparent; border-radius: 1.25rem; box-shadow: 0px 12px 23px 0px #ac39d40a; } .card .card-header { background-color: #fff; border-bottom: 1px solid #00000020; } .card .card-title { margin: 0; padding: 5px 0; font-size: 25px; display: flex; align-items: center; justify-content: space-between; } h2.titleNoti { color: #1EAAE7; font-size: 50px; font-weight: 600; text-align: center; margin-bottom: 30px; } .textNoti { font-size: 20px; font-weight: 600; padding: 45px; } .textNoti a { color: #71c07d; } @media (max-width: 991px) { .bglogin h2 { font-size: 30px !important; } .bglogin h2.titleNoti { margin-top: 30px; } } body.dashboard { display: flex; } #sidebar { min-width: 350px; padding: 35px; } #sidebar .logo { margin-bottom: 35px; } #sidebar .logo img { max-width: 100%; width: 200px; } #sidebar ul.menu { padding: 0; list-style: none; margin: 0 0 35px; } #sidebar ul.menu li { margin-bottom: 5px; } #sidebar ul.menu li a { color: #7e7e7e; text-decoration: none; display: block; position: relative; padding: 10px 0; display: flex; align-items: center; font-size: 15px; } #sidebar ul.menu li a.has-arrow:after { position: absolute; content: ""; width: 0.5em; height: 0.5em; border-width: 1px 0 0 1px; border-style: solid; border-color: initial; right: 1em; transform: rotate(-225deg) translateY(-50%); transform-origin: top; top: 50%; transition: all 0.3s ease-out; } #sidebar ul.menu li a:hover { color: #1EAAE7; } #sidebar ul.menu li a i { font-size: 28px; margin-right: 15px; background-color: transparent; width: 52px; height: 52px; border-radius: 50%; text-align: center; line-height: 52px; transition: all ease 0.3s; } #sidebar ul.menu li.mm-active a { color: #000; } #sidebar ul.menu li.mm-active a i { background-color: #1EAAE7; color: #fff; } #sidebar ul.menu li.mm-active a.has-arrow:after { transform: rotate(-135deg) translateY(-50%); } #sidebar ul.menu li ul.subMenu { margin: 0; padding: 0; text-decoration: none; padding-left: 68px; } #sidebar ul.menu li ul.subMenu li { margin-bottom: 8px; } #sidebar ul.menu li ul.subMenu li::marker { display: none; content: ""; } #sidebar .footerNav { font-size: 14px; color: #969BA0; } .hamburger { display: inline-block; left: 0px; position: relative; top: 3px; transition: all 0.3s ease-in-out 0s; width: 26px; z-index: 999; cursor: pointer; } .hamburger .line { background: #1EAAE7; display: block; height: 3px; border-radius: 3px; margin-top: 6px; margin-bottom: 6px; margin-left: auto; transition: all 0.3s ease-in-out; } .hamburger .line:nth-child(1) { width: 20px; } .hamburger .line:nth-child(2) { width: 26px; } .hamburger .line:nth-child(3) { width: 22px; } #content { width: 100%; } #content .nav { justify-content: flex-end; padding: 30px; } #content .nav ul.userNav { display: flex; list-style: none; padding: 0; margin: 0; } #content .nav ul.userNav li { margin: 0 25px; align-self: center; } #content .nav ul.userNav li.userLi a { display: flex; align-self: center; align-items: center; } #content .nav ul.userNav li.userLi a p { text-align: right; margin: 0; } #content .nav ul.userNav li.userLi a p span { font-size: 14px; } #content .nav ul.userNav li.userLi a img { height: 50px; border-radius: 50%; margin-left: 10px; } #content .nav ul.userNav li a { color: #000; text-decoration: none; display: block; position: relative; } #content .nav ul.userNav li a span.numberNoti { position: absolute; width: 28px; height: 28px; background-color: #1EAAE7; text-align: center; color: #fff; border-radius: 27px; font-size: 14px; line-height: 28px; top: -14px; right: -24px; } #content .nav ul.userNav .weather-detail { background: #F0F4F5; color: #424242; height: 56px; font-size: 14px; font-weight: 500; line-height: 56px; padding-right: 15px; border-radius: 4rem; } #content .nav ul.userNav .weather-detail span { height: 56px; background: #1EAAE7; line-height: 56px; font-size: 22px; padding: 0px 20px; margin-right: 10px; border-radius: 4rem; color: #fff; } #content .nav ul.userNav .weather-detail span i { padding-right: 12px; font-size: 25px; } #content .nav .nav-control { display: flex; align-items: center; } #content .nav .nav-control .dashboard_bar { font-size: 28px; font-weight: 600; color: #000; margin-left: 30px; } #content .nav .nav-control .search-area { width: 300px; } #content .nav .nav-control .search-area .input-group-text { background: #EFEFEF; border-width: 0px; padding-right: 0; padding-left: 25px; border-radius: 60px 0 0 60px !important; } #content .nav .nav-control .search-area .input-group-text i { font-size: 25px; line-height: 42px; } #content .nav .nav-control .search-area .form-control { background: #EFEFEF !important; border-width: 0px; padding-left: 20px; min-height: 55px; border-radius: 0 60px 60px 0; } main { padding: 25px; } main .titleMain { margin-bottom: 40px; } main .titleMain h1 { font-size: 30px; font-weight: 600; } main .titleMain a { color: #1EAAE7; text-decoration: none; } main .card-header h4 a { float: right; background-color: #1EAAE7; border: none !important; } main .card-body { padding: 30px; } main .card-body .titleBody { font-size: 24px; font-weight: 600; border-bottom: 1px solid #cecece; padding-bottom: 10px; margin-bottom: 20px; } main .bgElipse { background-image: url(/images/elipse.png?8d1c0cb04981770aaf9d60670e929190); background-repeat: no-repeat; background-position: bottom right; padding-bottom: 100px; } main form label { color: #7e7e7e; font-weight: 600; } main form label span { color: red; margin-left: 2px; } main form .form-control, main form .form-select { border-radius: 0; padding: 15px; border: 1px solid #f0f1f5; font-weight: 300; background-color: #d5f3dd; border-radius: 20px; } main form input[type=file i] { padding-left: 22px !important; } main form .radioCont { padding: 16px 0px; } main form .radioCont .radio-inline { margin-right: 10px; } main form button.btn, main form a.btn { margin-left: 10px; font-weight: 500; } main form h4 { font-size: 18px; font-weight: 600; color: #7e7e7e; text-transform: uppercase; } main button.btn, main a.btn { padding: 10px 25px; border-radius: 15px; min-width: 175px; font-weight: 300; border: none; } main button.btn.btn-primary, main a.btn.btn-primary { background-color: #1EAAE7; } main button.btn.btn-text, main a.btn.btn-text { color: #aec5e4; font-weight: 600; } main table .sharp { padding: 3px; width: 26px; height: 26px; min-width: 26px; min-height: 26px; border-radius: 1.25rem; line-height: 18px; margin: 0 2px; } main table .sharp i { font-size: 14px; } main .dataTablesInfo { display: flex; float: left; align-items: center; padding: 15px 0; width: 100%; justify-content: space-between; } main .dataTablesInfo .showSelect { align-items: center; display: flex; } main .dataTablesInfo .showSelect select { margin: 0 15px; border-radius: 20px; } main .dataTablesInfo .dataTables_filter input { border: 1px solid #e2e2e2; padding: 0.3rem 0.5rem; color: #715d5d; border-radius: 5px; margin-left: 0.5em; } main .rowAddMore { text-align: right; align-self: flex-end; } main hr { background-color: #f9f9f9; } main .verifyCont { display: flex; justify-content: space-between; align-items: center; } main .verifyCont h3, main .verifyCont h5 { margin: 0; font-size: 20px; } main .verifyCont h5 { font-weight: 600; line-height: 1.4; min-width: 115px; } .nav-wizard li { flex-basis: 0; flex-grow: 1; text-align: center; } .nav-wizard li .nav-link { position: relative; } .nav-wizard li .nav-link span { border-radius: 50px; width: 3rem; height: 3rem; border: 2px solid #1EAAE7; display: block; line-height: 3rem; color: #1EAAE7; font-size: 18px; margin: auto; background-color: #fff; position: relative; z-index: 1; } .nav-wizard li .nav-link:after { content: ""; position: absolute; top: 50%; left: 50%; height: 3px; transform: translateY(-50%); background: #f1f1f1 !important; z-index: 0; width: 100%; transition: all 0.35s ease 0.15s; } .nav-wizard li .nav-link.inactive { color: #999; cursor: not-allowed; } .nav-wizard li .nav-link.active { cursor: pointer; } .nav-wizard li .nav-link.active span { background-color: #1EAAE7; color: #fff !important; } .nav-wizard li:last-child a:after { display: none; } .dtp > .dtp-content > .dtp-date-view > header.dtp-header, .dtp div.dtp-date, .dtp div.dtp-time, .dtp table.dtp-picker-days tr > td > a.selected { background: #1EAAE7; } .dtp .p10 > a { color: #333; } .dataTables_wrapper button.btn.buttons-collection.dropdown-toggle.buttons-page-length { background-color: #ffffff; color: #1eaae7; border: 1px solid #1eaae7; } .dataTables_wrapper .dropdown-toggle::after { margin-left: 8px; vertical-align: 2px; } .dataTables_wrapper .dataTables_filter { float: right; text-align: right; margin-bottom: 25px; } .dataTables_wrapper .dataTables_filter label { display: flex; align-items: center; } .dataTables_wrapper .dataTables_filter input { margin-left: 8px; border: 1px solid #f0f1f5; font-weight: 300; background-color: #d5f3dd; border-radius: 20px; padding: 15px; min-width: 250px; } .dataTables_wrapper .dataTables_processing { padding: 12px 20px; background-color: #1EAAE7; color: #fff; margin: 20px 0 10px; } .dataTables_wrapper .dataTables_info { padding: 10px 0; clear: both; float: left; } .dataTables_wrapper .dataTables_paginate { float: right; text-align: right; } .dataTables_wrapper table.dataTable { margin-bottom: 30px !important; } .dataTables_wrapper .dataTables_paginate { background: #F4F4F4; border-radius: 1.25rem; padding: 10px 0; } .dataTables_wrapper .dataTables_paginate ul { margin: 0; } .dataTables_wrapper .dataTables_paginate span { border-radius: 0; display: inline-block; margin: 0 0; } .dataTables_wrapper .dataTables_paginate span a { color: #fff; background: transparent !important; } .dataTables_wrapper .dataTables_paginate .paginate_button .page-link { border: 0 !important; padding: 16px 25px; border: none !important; background: transparent !important; border-radius: 5rem; color: #1EAAE7 !important; font-size: 16px; margin: 0; display: inline-block; } .dataTables_wrapper .dataTables_paginate .paginate_button .page-link:hover { color: #fff !important; background: #1EAAE7 !important; } .dataTables_wrapper .dataTables_paginate .paginate_button.active:hover a, .dataTables_wrapper .dataTables_paginate .paginate_button.active a { color: #fff !important; background: #1EAAE7 !important; } .dataTables_wrapper .dataTables_paginate .paginate_button.previous .page-link, .dataTables_wrapper .dataTables_paginate .paginate_button.next .page-link { background: #fff !important; color: #1EAAE7 !important; margin: 0 10px; } .dataTables_wrapper .dataTables_paginate .paginate_button.previous .page-link:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.next .page-link:hover { background: #1EAAE7 !important; color: #fff !important; } .notificationCard { background-color: #dad8d8; border-radius: 15px; overflow: hidden; margin-bottom: 30px; } .notificationCard:last-child { margin-bottom: 0; } .notificationCard h2 { background-color: #1EAAE7; padding: 15px 25px; color: #fff; font-size: 20px; font-weight: 600; letter-spacing: 1px; margin: 0; border-bottom: 2px solid #fff; } .notificationCard ul.notificationList { padding: 0; margin: 0; } .notificationCard ul.notificationList li { padding: 25px; border-bottom: 1px solid #8a8989; background-image: url(/images/iso.png?b6fd559ad5a78b9e4bca8f8a91589289); background-repeat: no-repeat; background-position: 25px center; padding-left: 80px; display: flex; justify-content: space-between; } .notificationCard ul.notificationList li:last-child { border: none; } .notificationCard ul.notificationList li.noNoti { color: #1EAAE7; } .notificationCard ul.notificationList .notiAction { min-width: 95px; align-self: center; text-align: center; margin-left: 30px; } .notificationCard ul.notificationList .notiAction .btn { min-width: initial !important; padding: 10px 15px; }
public/css/main.css
@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700;900&display=swap); body { font-family: "Poppins", sans-serif; background-color: #F9F9F9; font-size: 16px; } a { transition: all ease 0.3s; } .logoLogin { max-width: 100%; } .bglogin { background-color: #dad8d8; background-image: url(/images/bg.png?f8c26a5727c28256f6ee7464ad427a17); background-size: contain; background-position: left center; background-repeat: no-repeat; } .bglogin .logoLogin { width: 350px; } .contLogin { background: #fff; border-radius: 5px; padding: 50px; color: #333; } .contLogin h2 { color: #1EAAE7; font-size: 50px; text-align: center; font-weight: 600; margin-bottom: 25px; } .contLogin p { font-weight: 600; } .formLogin label { margin-bottom: 5px; font-weight: 600; } .formLogin .form-control { border-radius: 10px; padding: 16px 25px; font-weight: 300; background-color: #d5f3dd; border: none; } .formLogin .form-control.validation { background-color: #ffd5d5; color: #ff2e2e; } .formLogin .form-check-label { font-weight: 300; } .formLogin a.forgotPass { float: right; color: #333; text-decoration: none; font-weight: 600; } .formLogin a.forgotPass:hover { text-decoration: underline; } .formLogin button.btn { width: 100%; padding: 15px; background-color: #fff; color: #71c07d; border: 1px solid #71c07d; border-radius: 10px; } .formLogin button.btn-outline-primary { max-width: 240px; padding: 15px; background-color: #fff; color: #1EAAE7; border: 1px solid #1EAAE7; border-radius: 10px 10px 0px 0px; } .formLogin .form-text { margin-top: 20px; color: #333; } .formLogin .form-text a { color: #333; font-weight: 600; text-decoration: none; } .formLogin .form-text.validation { color: #ff2e2e; margin-top: 4px; font-size: 13px; } .formLogin .form-check-input[type=checkbox] { border-radius: 15px; border-color: #9ab6dd; border-width: 2px; } @media (max-width: 900px) { .bglogin { background-image: none; } } @media (max-width: 767px) { .logoLogin { margin-top: 20px; margin-bottom: 20px; margin-left: auto; margin-right: auto; display: table; height: 130px; width: initial !important; } } @media (max-width: 500px) { .contLogin { padding: 30px; margin-bottom: 20px; } } .alert { border-radius: 20px; } .alert-success { background: #e3f9e9; border-color: #e3f9e9; color: #2BC155; } .alert-warning { background: #fff0e5; border-color: #fff0e5; color: #FE8024; } .alert-danger { background: #ffc7c7; border-color: #ffc7c7; color: #FF2E2E; } .alert-info { background: #461EE7; color: #fff; border-color: #461EE7; } .logoMessage { margin: 20px 0 40px; width: 350px; max-width: 100%; } @media (max-width: 767px) { .logoMessage { margin-top: 20px; margin-bottom: 20px; margin-left: auto; margin-right: auto; display: table; height: 130px; width: initial !important; } } .card { border: 0px solid transparent; border-radius: 1.25rem; box-shadow: 0px 12px 23px 0px #ac39d40a; } .card .card-header { background-color: #fff; border-bottom: 1px solid #00000020; } .card .card-title { margin: 0; padding: 5px 0; font-size: 25px; display: flex; align-items: center; justify-content: space-between; } h2.titleNoti { color: #1EAAE7; font-size: 50px; font-weight: 600; text-align: center; margin-bottom: 30px; } .textNoti { font-size: 20px; font-weight: 600; padding: 45px; } .textNoti a { color: #71c07d; } @media (max-width: 991px) { .bglogin h2 { font-size: 30px !important; } .bglogin h2.titleNoti { margin-top: 30px; } } body.dashboard { display: flex; } #sidebar { min-width: 350px; padding: 35px; } #sidebar .logo { margin-bottom: 35px; } #sidebar .logo img { max-width: 100%; width: 200px; } #sidebar ul.menu { padding: 0; list-style: none; margin: 0 0 35px; } #sidebar ul.menu li { margin-bottom: 5px; } #sidebar ul.menu li a { color: #7e7e7e; text-decoration: none; display: block; position: relative; padding: 10px 0; display: flex; align-items: center; font-size: 15px; } #sidebar ul.menu li a.has-arrow:after { position: absolute; content: ""; width: 0.5em; height: 0.5em; border-width: 1px 0 0 1px; border-style: solid; border-color: initial; right: 1em; transform: rotate(-225deg) translateY(-50%); transform-origin: top; top: 50%; transition: all 0.3s ease-out; } #sidebar ul.menu li a:hover { color: #1EAAE7; } #sidebar ul.menu li a i { font-size: 28px; margin-right: 15px; background-color: transparent; width: 52px; height: 52px; border-radius: 50%; text-align: center; line-height: 52px; transition: all ease 0.3s; } #sidebar ul.menu li.mm-active a { color: #000; } #sidebar ul.menu li.mm-active a i { background-color: #1EAAE7; color: #fff; } #sidebar ul.menu li.mm-active a.has-arrow:after { transform: rotate(-135deg) translateY(-50%); } #sidebar ul.menu li ul.subMenu { margin: 0; padding: 0; text-decoration: none; padding-left: 68px; } #sidebar ul.menu li ul.subMenu li { margin-bottom: 8px; } #sidebar ul.menu li ul.subMenu li::marker { display: none; content: ""; } #sidebar .footerNav { font-size: 14px; color: #969BA0; } .hamburger { display: inline-block; left: 0px; position: relative; top: 3px; transition: all 0.3s ease-in-out 0s; width: 26px; z-index: 999; cursor: pointer; } .hamburger .line { background: #1EAAE7; display: block; height: 3px; border-radius: 3px; margin-top: 6px; margin-bottom: 6px; margin-left: auto; transition: all 0.3s ease-in-out; } .hamburger .line:nth-child(1) { width: 20px; } .hamburger .line:nth-child(2) { width: 26px; } .hamburger .line:nth-child(3) { width: 22px; } #content { width: 100%; } #content .nav { justify-content: flex-end; padding: 30px; } #content .nav ul.userNav { display: flex; list-style: none; padding: 0; margin: 0; } #content .nav ul.userNav li { margin: 0 25px; align-self: center; } #content .nav ul.userNav li.userLi a { display: flex; align-self: center; align-items: center; } #content .nav ul.userNav li.userLi a p { text-align: right; margin: 0; } #content .nav ul.userNav li.userLi a p span { font-size: 14px; } #content .nav ul.userNav li.userLi a img { height: 50px; border-radius: 50%; margin-left: 10px; } #content .nav ul.userNav li a { color: #000; text-decoration: none; display: block; position: relative; } #content .nav ul.userNav li a span.numberNoti { position: absolute; width: 28px; height: 28px; background-color: #1EAAE7; text-align: center; color: #fff; border-radius: 27px; font-size: 14px; line-height: 28px; top: -14px; right: -24px; } #content .nav ul.userNav .weather-detail { background: #F0F4F5; color: #424242; height: 56px; font-size: 14px; font-weight: 500; line-height: 56px; padding-right: 15px; border-radius: 4rem; } #content .nav ul.userNav .weather-detail span { height: 56px; background: #1EAAE7; line-height: 56px; font-size: 22px; padding: 0px 20px; margin-right: 10px; border-radius: 4rem; color: #fff; } #content .nav ul.userNav .weather-detail span i { padding-right: 12px; font-size: 25px; } #content .nav .nav-control { display: flex; align-items: center; } #content .nav .nav-control .dashboard_bar { font-size: 28px; font-weight: 600; color: #000; margin-left: 30px; } #content .nav .nav-control .search-area { width: 300px; } #content .nav .nav-control .search-area .input-group-text { background: #EFEFEF; border-width: 0px; padding-right: 0; padding-left: 25px; border-radius: 60px 0 0 60px !important; } #content .nav .nav-control .search-area .input-group-text i { font-size: 25px; line-height: 42px; } #content .nav .nav-control .search-area .form-control { background: #EFEFEF !important; border-width: 0px; padding-left: 20px; min-height: 55px; border-radius: 0 60px 60px 0; } main { padding: 25px; } main .titleMain { margin-bottom: 40px; } main .titleMain h1 { font-size: 30px; font-weight: 600; } main .titleMain a { color: #1EAAE7; text-decoration: none; } main .card-header h4 a { float: right; background-color: #1EAAE7; border: none !important; } main .card-body { padding: 30px; } main .card-body .titleBody { font-size: 24px; font-weight: 600; border-bottom: 1px solid #cecece; padding-bottom: 10px; margin-bottom: 20px; } main .bgElipse { background-image: url(/images/elipse.png?8d1c0cb04981770aaf9d60670e929190); background-repeat: no-repeat; background-position: bottom right; padding-bottom: 100px; } main form label { color: #7e7e7e; font-weight: 600; } main form label span { color: red; margin-left: 2px; } main form .form-control, main form .form-select { border-radius: 0; padding: 15px; border: 1px solid #f0f1f5; font-weight: 300; background-color: #d5f3dd; border-radius: 20px; } main form input[type=file i] { padding-left: 22px !important; } main form .radioCont { padding: 16px 0px; } main form .radioCont .radio-inline { margin-right: 10px; } main form button.btn, main form a.btn { margin-left: 10px; font-weight: 500; } main form h4 { font-size: 18px; font-weight: 600; color: #7e7e7e; text-transform: uppercase; } main button.btn, main a.btn { padding: 10px 25px; border-radius: 15px; min-width: 175px; font-weight: 300; border: none; } main button.btn.btn-primary, main a.btn.btn-primary { background-color: #1EAAE7; } main button.btn.btn-text, main a.btn.btn-text { color: #aec5e4; font-weight: 600; } main table .sharp { padding: 3px; width: 26px; height: 26px; min-width: 26px; min-height: 26px; border-radius: 1.25rem; line-height: 18px; margin: 0 2px; } main table .sharp i { font-size: 14px; } main .dataTablesInfo { display: flex; float: left; align-items: center; padding: 15px 0; width: 100%; justify-content: space-between; } main .dataTablesInfo .showSelect { align-items: center; display: flex; } main .dataTablesInfo .showSelect select { margin: 0 15px; border-radius: 20px; } main .dataTablesInfo .dataTables_filter input { border: 1px solid #e2e2e2; padding: 0.3rem 0.5rem; color: #715d5d; border-radius: 5px; margin-left: 0.5em; } main .rowAddMore { text-align: right; align-self: flex-end; } main hr { background-color: #f9f9f9; } main .verifyCont { display: flex; justify-content: space-between; align-items: center; } main .verifyCont h3, main .verifyCont h5 { margin: 0; font-size: 20px; } main .verifyCont h5 { font-weight: 600; line-height: 1.4; min-width: 115px; } .nav-wizard li { flex-basis: 0; flex-grow: 1; text-align: center; } .nav-wizard li .nav-link { position: relative; } .nav-wizard li .nav-link span { border-radius: 50px; width: 3rem; height: 3rem; border: 2px solid #1EAAE7; display: block; line-height: 3rem; color: #1EAAE7; font-size: 18px; margin: auto; background-color: #fff; position: relative; z-index: 1; } .nav-wizard li .nav-link:after { content: ""; position: absolute; top: 50%; left: 50%; height: 3px; transform: translateY(-50%); background: #f1f1f1 !important; z-index: 0; width: 100%; transition: all 0.35s ease 0.15s; } .nav-wizard li .nav-link.inactive { color: #999; cursor: not-allowed; } .nav-wizard li .nav-link.active { cursor: pointer; } .nav-wizard li .nav-link.active span { background-color: #1EAAE7; color: #fff !important; } .nav-wizard li:last-child a:after { display: none; } .dtp > .dtp-content > .dtp-date-view > header.dtp-header, .dtp div.dtp-date, .dtp div.dtp-time, .dtp table.dtp-picker-days tr > td > a.selected { background: #1EAAE7; } .dtp .p10 > a { color: #333; } .dataTables_wrapper button.btn.buttons-collection.dropdown-toggle.buttons-page-length { background-color: #ffffff; color: #1eaae7; border: 1px solid #1eaae7; } .dataTables_wrapper .dropdown-toggle::after { margin-left: 8px; vertical-align: 2px; } .dataTables_wrapper .dataTables_filter { float: right; text-align: right; margin-bottom: 25px; } .dataTables_wrapper .dataTables_filter label { display: flex; align-items: center; } .dataTables_wrapper .dataTables_filter input { margin-left: 8px; border: 1px solid #f0f1f5; font-weight: 300; background-color: #d5f3dd; border-radius: 20px; padding: 15px; min-width: 250px; } .dataTables_wrapper .dataTables_processing { padding: 12px 20px; background-color: #1EAAE7; color: #fff; margin: 20px 0 10px; } .dataTables_wrapper .dataTables_info { padding: 10px 0; clear: both; float: left; } .dataTables_wrapper .dataTables_paginate { float: right; text-align: right; } .dataTables_wrapper table.dataTable { margin-bottom: 30px !important; } .dataTables_wrapper .dataTables_paginate { background: #F4F4F4; border-radius: 1.25rem; padding: 10px 0; } .dataTables_wrapper .dataTables_paginate ul { margin: 0; } .dataTables_wrapper .dataTables_paginate span { border-radius: 0; display: inline-block; margin: 0 0; } .dataTables_wrapper .dataTables_paginate span a { color: #fff; background: transparent !important; } .dataTables_wrapper .dataTables_paginate .paginate_button .page-link { border: 0 !important; padding: 16px 25px; border: none !important; background: transparent !important; border-radius: 5rem; color: #1EAAE7 !important; font-size: 16px; margin: 0; display: inline-block; } .dataTables_wrapper .dataTables_paginate .paginate_button .page-link:hover { color: #fff !important; background: #1EAAE7 !important; } .dataTables_wrapper .dataTables_paginate .paginate_button.active:hover a, .dataTables_wrapper .dataTables_paginate .paginate_button.active a { color: #fff !important; background: #1EAAE7 !important; } .dataTables_wrapper .dataTables_paginate .paginate_button.previous .page-link, .dataTables_wrapper .dataTables_paginate .paginate_button.next .page-link { background: #fff !important; color: #1EAAE7 !important; margin: 0 10px; } .dataTables_wrapper .dataTables_paginate .paginate_button.previous .page-link:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.next .page-link:hover { background: #1EAAE7 !important; color: #fff !important; } .notificationCard { background-color: #dad8d8; border-radius: 15px; overflow: hidden; margin-bottom: 30px; } .notificationCard:last-child { margin-bottom: 0; } .notificationCard h2 { background-color: #1EAAE7; padding: 15px 25px; color: #fff; font-size: 20px; font-weight: 600; letter-spacing: 1px; margin: 0; border-bottom: 2px solid #fff; } .notificationCard ul.notificationList { padding: 0; margin: 0; } .notificationCard ul.notificationList li { padding: 25px; border-bottom: 1px solid #8a8989; background-image: url(/images/iso.png?b6fd559ad5a78b9e4bca8f8a91589289); background-repeat: no-repeat; background-position: 25px center; padding-left: 80px; display: flex; justify-content: space-between; } .notificationCard ul.notificationList li:last-child { border: none; } .notificationCard ul.notificationList li.noNoti { color: #1EAAE7; } .notificationCard ul.notificationList .notiAction { min-width: 95px; align-self: center; text-align: center; margin-left: 30px; } .notificationCard ul.notificationList .notiAction .btn { min-width: initial !important; padding: 10px 15px; }
0.313945
0.098339
:root { --response-label-padding: 5px; --response-maker-width: 40px; --response-marker-height: 30px; --response-vBar-offset: 65px; --response-bar-thickness: 25px; --response-min-opacity: 0.4; } .group-bg-gradient-1 { background-image: linear-gradient(var(--group-1-primary), rgba(var(--group-1-p), var(--response-min-opacity))); } .group-bg-gradient-2 { background-image: linear-gradient(var(--group-2-primary), rgba(var(--group-2-p), var(--response-min-opacity))); } .response-hBar { position: relative; width: 80%; background-color: #eeeeee; height: var(--response-bar-thickness); margin: auto; box-shadow: 0 0 5px 0 #777777; } .response-vBar { height: 150px; background-color: white; position: absolute; top: calc((var(--response-vBar-offset) * -1) + var(--response-bar-thickness)); transition: all .2s; } .response-vBar, .response-widget { width: var(--response-bar-thickness); transition: background-color .5s, visibility .5s; } .response-widget { left: calc(50% - var(--response-bar-thickness) / 2); } .response-label, .response-widget { position: absolute; top: -100%; max-width: 10%; overflow-wrap: break-word; } .response-label { opacity: 1; } .response-label.left, .response-label.right { top: calc(50% - 0.5em); line-height: 1em; } .response-label.top, .response-label.bottom { top: unset; max-width: 100px; transform: translateX(calc(-50% + (var(--response-bar-thickness) / 2))); } .response-vBar.cloak .response-label { opacity: 0; } .response-label.left { right: calc(100% + var(--response-label-padding)); } .response-label.right { left: calc(100% + var(--response-label-padding)); } .response-label.top { bottom: 100% } .response-label.bottom { top: 100%; } .response-marker { position: absolute; width: var(--response-maker-width); height: var(--response-marker-height); left: calc(50% - (var(--response-maker-width) / 2)); top: calc(var(--response-vBar-offset) + ((var(--response-bar-thickness) - var(--response-marker-height)) / 2)); border-radius: 5px; transition: opacity .1s; } .response-widget .response-marker { cursor: none; } esm-response-widget, esm-response-widget.cloak .response-marker { cursor: default } esm-response-widget .response-widget.cloak, esm-response-widget .response-widget.cloak .response-marker { visibility: hidden; } .response-vBar.cloak, esm-response-widget .response-widget.cloak .response-marker { transition: visibility 0s; background-color: transparent; background-image: unset; }
src/customElements/ResponseWidget.css
:root { --response-label-padding: 5px; --response-maker-width: 40px; --response-marker-height: 30px; --response-vBar-offset: 65px; --response-bar-thickness: 25px; --response-min-opacity: 0.4; } .group-bg-gradient-1 { background-image: linear-gradient(var(--group-1-primary), rgba(var(--group-1-p), var(--response-min-opacity))); } .group-bg-gradient-2 { background-image: linear-gradient(var(--group-2-primary), rgba(var(--group-2-p), var(--response-min-opacity))); } .response-hBar { position: relative; width: 80%; background-color: #eeeeee; height: var(--response-bar-thickness); margin: auto; box-shadow: 0 0 5px 0 #777777; } .response-vBar { height: 150px; background-color: white; position: absolute; top: calc((var(--response-vBar-offset) * -1) + var(--response-bar-thickness)); transition: all .2s; } .response-vBar, .response-widget { width: var(--response-bar-thickness); transition: background-color .5s, visibility .5s; } .response-widget { left: calc(50% - var(--response-bar-thickness) / 2); } .response-label, .response-widget { position: absolute; top: -100%; max-width: 10%; overflow-wrap: break-word; } .response-label { opacity: 1; } .response-label.left, .response-label.right { top: calc(50% - 0.5em); line-height: 1em; } .response-label.top, .response-label.bottom { top: unset; max-width: 100px; transform: translateX(calc(-50% + (var(--response-bar-thickness) / 2))); } .response-vBar.cloak .response-label { opacity: 0; } .response-label.left { right: calc(100% + var(--response-label-padding)); } .response-label.right { left: calc(100% + var(--response-label-padding)); } .response-label.top { bottom: 100% } .response-label.bottom { top: 100%; } .response-marker { position: absolute; width: var(--response-maker-width); height: var(--response-marker-height); left: calc(50% - (var(--response-maker-width) / 2)); top: calc(var(--response-vBar-offset) + ((var(--response-bar-thickness) - var(--response-marker-height)) / 2)); border-radius: 5px; transition: opacity .1s; } .response-widget .response-marker { cursor: none; } esm-response-widget, esm-response-widget.cloak .response-marker { cursor: default } esm-response-widget .response-widget.cloak, esm-response-widget .response-widget.cloak .response-marker { visibility: hidden; } .response-vBar.cloak, esm-response-widget .response-widget.cloak .response-marker { transition: visibility 0s; background-color: transparent; background-image: unset; }
0.751101
0.14557
.browsehappy { margin: 0.2em 0; background: #ccc; color: #000; padding: 0.2em 0; } body { font-family: 'Merriweather', Georgia, "Times New Roman", Times, serif; } /* Space out content a bit */ h1 { font-family: 'Sacramento', cursive; font-size: 72px; } h2 { font-size: 3rem; } h3 { font-size: 2.8rem; text-transform: uppercase; } h4 { font-family: 'Sacramento', cursive; font-size: 2.5rem; } h5 { font-size: 2rem; text-transform: uppercase; } h5 { font-family: 'Sacramento', cursive; font-size: 2rem; font-style: italic; font-weight: lighter; } .navbar-brand { font-family: 'Merriweather', Georgia, "Times New Roman", Times, serif; } code { font-family: 'Source Sans Pro', sans-serif; } p { font-size: 1.2rem; line-height: 2rem; } a { color: #1a2129; text-decoration: none; } a:hover { color: #002a80; } .navbar-header .logo { display: inline-block; margin: 10px 0 0; width: 100px; } .navbar-header .navbar-brand { background-size: 100%; background-color: #073642; -webkit-border-radius: 50px; -moz-border-radius: 50px; border-radius: 60px; color: #cccccc; display: block; font-family: 'Sacramento', cursive; font-size: 2.5rem; line-height: 40px; height: 60px; margin: 0 0 0 15px; padding: 25px 0 0 14px; width: 70px; } .navbar-header .navbar-brand-mobile { display: none; } .navbar-header ul { display: block; float: right; margin: 40px 0 0; } .navbar-header ul li { display: inline-block; margin: 0 0 0 20px; } .navbar-header ul li a { color: #268bd2; } .navbar-header ul li a:hover { color: #6c71c4; } .pattern { background: #f7f7f7; border-bottom: 1px solid #808080; margin-bottom: 1em; overflow: hidden; } .pattern-description h1 { font-size: 3.4em; margin-bottom: 0.5em; } .pattern-description { max-width: 40em; margin: 0 auto; } .pattern-description ul, .pattern-description ol { margin-bottom: 2em; } .pattern-description li { margin-bottom: 1em; } .g { padding: 0.25em; overflow: hidden; } .g li { float: left; width: 50%; padding: 0.25em; } .g img { display: block; } .g li:nth-child(odd) { clear: left; } @media screen and (min-width: 40em) { .g li { width: 33.3333333333333333%; } .g li:nth-child(3n+1) { clear: left; } .g li:nth-child(odd) { clear: none; } } @media screen and (min-width: 55em) { .g li { width: 25%; } .g li:nth-child(4n+1) { clear: left; } .g li:nth-child(3n+1) { clear: none; } } @media screen and (min-width: 72em) { .g li { width: 20%; } .g li:nth-child(5n+1) { clear: left; } .g li:nth-child(4n+1) { clear: none; } } @media screen and (min-width: 90em) { .g li { width: 16.666666666%; } .g li:nth-child(6n+1) { clear: left; } .g li:nth-child(5n+1) { clear: none; } } .nav { margin: 10px 0 0; } .header, .marketing, .footer { padding-left: 15px; padding-right: 15px; } /* Custom page header */ .header { /* Make the masthead heading the same height as the navigation */ } .header h3 { margin-top: 0; margin-bottom: 0; line-height: 40px; padding-bottom: 19px; } .container-narrow > hr { margin: 30px 0; } /* Main marketing message and sign up button */ .jumbotron { background: #fff !important; border-bottom: 0; border-radius: 0 !important; color: #444; margin: 0; } .jumbotron .btn { font-size: 21px; padding: 14px 24px; } .jumbotron h1 { text-align: center; } /* Supporting marketing content */ .marketing { margin: 40px 0; } .marketing p + h4 { margin-top: 28px; } /* Overrides */ .navbar-default { background-color: transparent !important; border-color: transparent !important; } /*Footer*/ .footer { background: 0, 0, 0, 0.1; border-top: 1px solid #cccccc; color: #777; } .footer ul.details { display: inline-block; } .footer ul.details li { display: inline-block; margin: 4px 0 0; text-align: left; } .footer ul.social { display: block; float: right; margin: 10px 0 0; } .footer ul.social li { display: inline-block; } .footer p { color: #1a2129; font-family: 'PT Sans', sans-serif; font-size: 1.3rem; } .footer a { color: teal; } .footer a:hover { color: #002a80; } /*Contact*/ .contact .row { color: #444; } @media (min-width: 1024px) { .navbar-toggle { display: none; } } /* Responsive: Portrait tablets and up */ @media screen and (max-width: 768px) { .container { max-width: 730px; padding: 0; } p, a { font-size: 1.5rem; } /* Remove the padding we set earlier */ .header, .marketing, .footer { padding-left: 0; padding-right: 0; } /* Space out the masthead */ .header { margin-bottom: 30px; } .navbar-brand { display: none; } .navbar-brand-mobile { display: block; font-family: 'Sacramento', cursive; font-size: 4rem; } } /*# sourceMappingURL=main.css.map */
styles/main.css
.browsehappy { margin: 0.2em 0; background: #ccc; color: #000; padding: 0.2em 0; } body { font-family: 'Merriweather', Georgia, "Times New Roman", Times, serif; } /* Space out content a bit */ h1 { font-family: 'Sacramento', cursive; font-size: 72px; } h2 { font-size: 3rem; } h3 { font-size: 2.8rem; text-transform: uppercase; } h4 { font-family: 'Sacramento', cursive; font-size: 2.5rem; } h5 { font-size: 2rem; text-transform: uppercase; } h5 { font-family: 'Sacramento', cursive; font-size: 2rem; font-style: italic; font-weight: lighter; } .navbar-brand { font-family: 'Merriweather', Georgia, "Times New Roman", Times, serif; } code { font-family: 'Source Sans Pro', sans-serif; } p { font-size: 1.2rem; line-height: 2rem; } a { color: #1a2129; text-decoration: none; } a:hover { color: #002a80; } .navbar-header .logo { display: inline-block; margin: 10px 0 0; width: 100px; } .navbar-header .navbar-brand { background-size: 100%; background-color: #073642; -webkit-border-radius: 50px; -moz-border-radius: 50px; border-radius: 60px; color: #cccccc; display: block; font-family: 'Sacramento', cursive; font-size: 2.5rem; line-height: 40px; height: 60px; margin: 0 0 0 15px; padding: 25px 0 0 14px; width: 70px; } .navbar-header .navbar-brand-mobile { display: none; } .navbar-header ul { display: block; float: right; margin: 40px 0 0; } .navbar-header ul li { display: inline-block; margin: 0 0 0 20px; } .navbar-header ul li a { color: #268bd2; } .navbar-header ul li a:hover { color: #6c71c4; } .pattern { background: #f7f7f7; border-bottom: 1px solid #808080; margin-bottom: 1em; overflow: hidden; } .pattern-description h1 { font-size: 3.4em; margin-bottom: 0.5em; } .pattern-description { max-width: 40em; margin: 0 auto; } .pattern-description ul, .pattern-description ol { margin-bottom: 2em; } .pattern-description li { margin-bottom: 1em; } .g { padding: 0.25em; overflow: hidden; } .g li { float: left; width: 50%; padding: 0.25em; } .g img { display: block; } .g li:nth-child(odd) { clear: left; } @media screen and (min-width: 40em) { .g li { width: 33.3333333333333333%; } .g li:nth-child(3n+1) { clear: left; } .g li:nth-child(odd) { clear: none; } } @media screen and (min-width: 55em) { .g li { width: 25%; } .g li:nth-child(4n+1) { clear: left; } .g li:nth-child(3n+1) { clear: none; } } @media screen and (min-width: 72em) { .g li { width: 20%; } .g li:nth-child(5n+1) { clear: left; } .g li:nth-child(4n+1) { clear: none; } } @media screen and (min-width: 90em) { .g li { width: 16.666666666%; } .g li:nth-child(6n+1) { clear: left; } .g li:nth-child(5n+1) { clear: none; } } .nav { margin: 10px 0 0; } .header, .marketing, .footer { padding-left: 15px; padding-right: 15px; } /* Custom page header */ .header { /* Make the masthead heading the same height as the navigation */ } .header h3 { margin-top: 0; margin-bottom: 0; line-height: 40px; padding-bottom: 19px; } .container-narrow > hr { margin: 30px 0; } /* Main marketing message and sign up button */ .jumbotron { background: #fff !important; border-bottom: 0; border-radius: 0 !important; color: #444; margin: 0; } .jumbotron .btn { font-size: 21px; padding: 14px 24px; } .jumbotron h1 { text-align: center; } /* Supporting marketing content */ .marketing { margin: 40px 0; } .marketing p + h4 { margin-top: 28px; } /* Overrides */ .navbar-default { background-color: transparent !important; border-color: transparent !important; } /*Footer*/ .footer { background: 0, 0, 0, 0.1; border-top: 1px solid #cccccc; color: #777; } .footer ul.details { display: inline-block; } .footer ul.details li { display: inline-block; margin: 4px 0 0; text-align: left; } .footer ul.social { display: block; float: right; margin: 10px 0 0; } .footer ul.social li { display: inline-block; } .footer p { color: #1a2129; font-family: 'PT Sans', sans-serif; font-size: 1.3rem; } .footer a { color: teal; } .footer a:hover { color: #002a80; } /*Contact*/ .contact .row { color: #444; } @media (min-width: 1024px) { .navbar-toggle { display: none; } } /* Responsive: Portrait tablets and up */ @media screen and (max-width: 768px) { .container { max-width: 730px; padding: 0; } p, a { font-size: 1.5rem; } /* Remove the padding we set earlier */ .header, .marketing, .footer { padding-left: 0; padding-right: 0; } /* Space out the masthead */ .header { margin-bottom: 30px; } .navbar-brand { display: none; } .navbar-brand-mobile { display: block; font-family: 'Sacramento', cursive; font-size: 4rem; } } /*# sourceMappingURL=main.css.map */
0.425247
0.074939
.section_content { float: left; width: 550px; } .section_content > h2 { display: table-cell; width: 10%; height: 55px; padding-left: 20px; border-bottom: 1px solid #e3e4e8; line-height: 55px; vertical-align: middle; } .section_content > h2, .section_content .delete_profile { background-color: #fafbfc; } .section_content .settings_info { padding: 0 20px; border-bottom: 1px solid #e3e4e8; } .section_content .settings_info > a, .section_content .settings_info > div { position: relative; display: block; padding: 20px 0; border-bottom: 1px solid #e3e4e8; } .section_content .settings_info > a:last-child, .section_content .settings_info > div:last-child { border-bottom: none; } .section_content .setting_name, .settings_info .info { display: inline-block; } .settings_info .setting_name { width: 150px; margin-bottom: 4px; vertical-align: top; color: #656565; } .settings_info .info > li { margin-bottom: 10px; } .settings_info .info > li:last-child { margin-bottom: 0; } .info li.options_container label { position: relative; display: inline-block; height: 15px; padding-left: 24px; } .info input[type="checkbox"] + span.checkbox_icon_label { position: absolute; top: -2px; left: 0; width: 15px; height: 15px; background: url(../images/checkbox_icons.png) no-repeat; background-size: 15px; background-position-y: -24px; cursor: pointer; } .info input[type="checkbox"]:checked + span.checkbox_icon_label { background-position-y: 0; } .info .options_container > img.special_abilities { position: absolute; display: inline-block; bottom: -3px; width: 17px; height: 17px; margin-left: 12px; cursor: pointer; } .settings_info > a > span.user_data { color: #000; } .settings_info > a > span.href_label { display: block; float: right; } .settings_info > a:hover > span.href_label { text-decoration: underline; } .section_content .delete_profile{ height: 50px; } .section_content .delete_profile > div { position: absolute; top: 50%; left: 50%; margin-right: -50%; transform: translate(-50%, -50%); } .section_content .delete_profile > div > a:hover { text-decoration: underline; }
Epam.Task9/Epam.Task9.VK/css/section_content.css
.section_content { float: left; width: 550px; } .section_content > h2 { display: table-cell; width: 10%; height: 55px; padding-left: 20px; border-bottom: 1px solid #e3e4e8; line-height: 55px; vertical-align: middle; } .section_content > h2, .section_content .delete_profile { background-color: #fafbfc; } .section_content .settings_info { padding: 0 20px; border-bottom: 1px solid #e3e4e8; } .section_content .settings_info > a, .section_content .settings_info > div { position: relative; display: block; padding: 20px 0; border-bottom: 1px solid #e3e4e8; } .section_content .settings_info > a:last-child, .section_content .settings_info > div:last-child { border-bottom: none; } .section_content .setting_name, .settings_info .info { display: inline-block; } .settings_info .setting_name { width: 150px; margin-bottom: 4px; vertical-align: top; color: #656565; } .settings_info .info > li { margin-bottom: 10px; } .settings_info .info > li:last-child { margin-bottom: 0; } .info li.options_container label { position: relative; display: inline-block; height: 15px; padding-left: 24px; } .info input[type="checkbox"] + span.checkbox_icon_label { position: absolute; top: -2px; left: 0; width: 15px; height: 15px; background: url(../images/checkbox_icons.png) no-repeat; background-size: 15px; background-position-y: -24px; cursor: pointer; } .info input[type="checkbox"]:checked + span.checkbox_icon_label { background-position-y: 0; } .info .options_container > img.special_abilities { position: absolute; display: inline-block; bottom: -3px; width: 17px; height: 17px; margin-left: 12px; cursor: pointer; } .settings_info > a > span.user_data { color: #000; } .settings_info > a > span.href_label { display: block; float: right; } .settings_info > a:hover > span.href_label { text-decoration: underline; } .section_content .delete_profile{ height: 50px; } .section_content .delete_profile > div { position: absolute; top: 50%; left: 50%; margin-right: -50%; transform: translate(-50%, -50%); } .section_content .delete_profile > div > a:hover { text-decoration: underline; }
0.496094
0.151781
@font-face{ font-family:Lao UI; src:url(../fonts/LaoUI.ttf)} /*================================ ELEMENTS ================================*/ body { font-family:georgia,serif; /*background:#e6d1bc;*/ background:#f2f2f2; } a:hover, a:visited, a:focus { text-decoration:none; } /*================================ CLASSES ================================*/ .mar { margin:18px; } .mar-half { margin:9px; } .mar-4th { margin:4.5px; } .mar-V { margin-right:0; margin-left:0; } .mar-H { margin-top:0; margin-bottom:0; } /*================================ HEADER ================================*/ #top-nav { background:white; color:#f26551; /*padding-top:15px;*/ } #top-nav ul > li { text-transform:capitalize; padding:0 10px; } .top-menu > ul li a { color:#f26551; } #top-nav .top { justify-content: flex-start; flex-wrap:nowrap; padding: 10px 9px 15px 9px; position:relative; } #top-nav .search { max-width:780px; flex: 1 3 600px; padding-top:15px; } #top-nav .social { width:300px; margin-left:auto; } #top-nav .logo { max-width:400px; flex: 1 1 400px; } .nav-search { position:relative; width:100%; } .nav-search form, .nav-search input { width:inherit; } #top-nav .social-links { padding-top:14px; } #top-nav .social-links i { font-size:25px; text-align:center; } #top-nav .social-links a { font-size:12px; color:#b3b3b3; display:flex; flex-direction:column; } .social-links a { color:#f7a397; font-family:Lao UI,sans-serif; } #logo { margin:0; display:flex; position:relative; top:13px; } #logo a { color:#f26551; text-transform:uppercase; font-size:2.3rem; transition: all 0.3s; display:inline-block; } #logo a:hover, #logo a:active, #logo a:visited, #logo a { text-decoration:none; } #bottom-nav { background:#f26551; color:white; /*padding:10px 0;*/ } #bottom-nav nav.navbar { padding:0; } #bottom-nav .nav-item { padding:0; } #bottom-nav .nav-link { padding:9px 10px; transition:all 0.3s; } #bottom-nav .nav-link.highlight { color:#f7a397; } #bottom-nav .nav-link:hover { background:white; color:#f7a397; } nav.navbar { margin:0; } .submenu > ul { margin:auto; } .submenu > ul li { background:transparent; transition: all 0.3s; } .submenu > ul > li a:hover { background:#f7a397; color:white; } .submenu > ul > li a { background:white; color:#f26551; /*border-bottom:1px solid #f26551;*/ width:200px; } .submenu > ul a:hover { text-decoration:none; } .bottom-menu a { color:white; text-transform:capitalize; } .bottom-menu li { padding:0 10px; } .nav-search button { border-style:none; position:absolute; top:0; right:0; background:#f7a397; color:white; font-size:1em; padding:12px; min-width:40px; border-radius: 0 4px 4px 0; z-index:3; } #login a { text-transform:capitalize; } #mobile-menu{ position:absolute; left:2%; font-size:30px; color:#b3b3b3; border:none; background:transparent; } .mobile-bg { background:rgba(179, 179, 179,0.8); z-index:10; position:fixed; height:100%; width:100%; display:none; } .mobile-title a { text-transform:uppercase; color:#f26551; } .mobile-title { padding-top:25px; } .mobile-menu { max-width:320px; background:white; position:relative; } .mobile-menu li { list-style: none; } .mobile-menu ul { margin:0; padding:0; } .mobile-menu ul a { color:grey; background: white; padding: 9px 18px; text-transform: capitalize; max-width: 320px; display:block; transition:all 0.3s; border-bottom:1px solid transparent; } .mobile-menu ul a:hover { color:#f7a397 ; padding-left:23px; } .mobile-menu a:hover, .mobile-menu a:visited,{ text-decoration:none; } .mobile-close{ position:absolute; right:5%; top:1%; color:#f7a397 ; font-size:20px; } /*================================ MAIN ================================*/ main { background-color:white; } main section.row { /*padding-top:5em;*/ } main .breadcrumb { background-color:transparent; padding:0.75em 0; font-family:Lao UI,sans-serif; } main .breadcrumb-item { font-size:15px; } main .breadcrumb-item a { color: #b3b3b3; } main .breadcrumb-item+.breadcrumb-item::before { content: ">"; } main .highlights { text-align:center; } main .highlights a { text-transform:capitalize; color:#b3b3b3; font-family:Lao UI, sans-serif; } .headline { border-bottom:1px solid #b3b3b3; } .headline h2, .headline h3 { color:#f26551; } #slider { position:relative; /*visibility: hidden;*/ } .slide-on{ animation: slideOn 0.5s; animation-fill-mode:forwards; } @keyframes slideOn { from { opacity:0; visibility: visible; } to{opacity:1; } } .slide { overflow:hidden; position:relative; max-height:497px; padding:0; margin:0; } .slide > li { position:relative; display:none; } .slide-description { background:rgba(242, 101, 81,0.7); text-align:center; color:white; padding-top:15px; padding-bottom:40px; position:absolute; z-index: 3; bottom:0; width:100%; } .item-pic { transition:all 0.3s; position:relative; } .item-pic a { display:block; position:relative; } .item-pic p { transition: all 0.3s; } .item-pic a:hover > .product-name { transform:translateY(-50px); color:white; } .item-pic a:hover { margin-bottom:7px; } .item-pic:hover { text-decoration:none; background:rgba(242, 101, 81,0.7); } .product-name { color:#f26551; font-family:Lao UI,sans-serif; } .item-price { text-align:center; } .price { display:inline-block; color:#b3b3b3; font-size:24px; font-family:Lao UI,sans-serif; } .item-price a { display: inline-block; background: #f26551; color: white; padding: 0.5em 1em; text-transform: capitalize; } .add-item { transition: all 0.3s; } .add-item:hover { background:#f7a397; text-decoration: none; } /*================================ FOOTER ================================*/ footer { background:#f26551; } footer .foot-item h3, footer .foot-item a { color:white; text-transform:capitalize; } .foot-item ul { padding:0; } .foot-item ul li { list-style-type:none; } .foot-item a { /*text-align:center;*/ display:block; } .foot-item h3 { /*text-align:center;*/ } .social-links a { font-size:40px; } /*================================== FLEXSLIDER ===================================*/ .flex-control-nav { bottom:5px; z-index:5; } /*================================== RESPONSIVE ===================================*/ /*================================ MEDIA ================================*/ @media all and (max-width:1280px) { #logo a { font-size:2rem; } } @media all and (max-width:992px) { #logo a { font-size:1.8rem; } .bottom-menu li { padding:0; } #bottom-nav .nav-link { font-size:13px; } } @media all and (max-width:768px) { /*================================ HEADER ================================*/ header .list-inline.spaced { /*flex-flow: column;*/ justify-content: center; } #top-nav .top { justify-content:flex-end; } #top-nav .social { width:200px; margin-left:0; } #top-nav .social span { display:none; } #logo { display:block; text-align:center; } .social-links { margin-top:15px; } .social-links a { font-size:40px; } header nav.navbar { width:100%; } header nav .list-inline a { text-align:center; width:100%; padding:0.5em; } header nav .list-inline a:hover { background:#f7a397; } header nav div.navbar-collapse > ul li { display:block; } .submenu > ul { display:block; position:static; } .submenu > ul > li a { background:transparent; color:white; width:100%; } .submenu > ul li, .submenu > ul a { width:100%; display:block; } /*================================ MAIN ================================*/ main .headline.highlights div:nth-of-type(2) { border-right:none; border-left:none; } .fourth, .adjust .fourth { width:50%; } /*================================ FOOTER ================================*/ } @media all and (max-width:580px) { #top-nav .top { flex-direction:column; justify-content: center; } #top-nav .logo { max-height:40px; margin:auto; } #top-nav .social { margin:auto; } } @media all and (max-width:400px) { #logo a { font-size:1.5rem; } }
public/css/style.css
@font-face{ font-family:Lao UI; src:url(../fonts/LaoUI.ttf)} /*================================ ELEMENTS ================================*/ body { font-family:georgia,serif; /*background:#e6d1bc;*/ background:#f2f2f2; } a:hover, a:visited, a:focus { text-decoration:none; } /*================================ CLASSES ================================*/ .mar { margin:18px; } .mar-half { margin:9px; } .mar-4th { margin:4.5px; } .mar-V { margin-right:0; margin-left:0; } .mar-H { margin-top:0; margin-bottom:0; } /*================================ HEADER ================================*/ #top-nav { background:white; color:#f26551; /*padding-top:15px;*/ } #top-nav ul > li { text-transform:capitalize; padding:0 10px; } .top-menu > ul li a { color:#f26551; } #top-nav .top { justify-content: flex-start; flex-wrap:nowrap; padding: 10px 9px 15px 9px; position:relative; } #top-nav .search { max-width:780px; flex: 1 3 600px; padding-top:15px; } #top-nav .social { width:300px; margin-left:auto; } #top-nav .logo { max-width:400px; flex: 1 1 400px; } .nav-search { position:relative; width:100%; } .nav-search form, .nav-search input { width:inherit; } #top-nav .social-links { padding-top:14px; } #top-nav .social-links i { font-size:25px; text-align:center; } #top-nav .social-links a { font-size:12px; color:#b3b3b3; display:flex; flex-direction:column; } .social-links a { color:#f7a397; font-family:Lao UI,sans-serif; } #logo { margin:0; display:flex; position:relative; top:13px; } #logo a { color:#f26551; text-transform:uppercase; font-size:2.3rem; transition: all 0.3s; display:inline-block; } #logo a:hover, #logo a:active, #logo a:visited, #logo a { text-decoration:none; } #bottom-nav { background:#f26551; color:white; /*padding:10px 0;*/ } #bottom-nav nav.navbar { padding:0; } #bottom-nav .nav-item { padding:0; } #bottom-nav .nav-link { padding:9px 10px; transition:all 0.3s; } #bottom-nav .nav-link.highlight { color:#f7a397; } #bottom-nav .nav-link:hover { background:white; color:#f7a397; } nav.navbar { margin:0; } .submenu > ul { margin:auto; } .submenu > ul li { background:transparent; transition: all 0.3s; } .submenu > ul > li a:hover { background:#f7a397; color:white; } .submenu > ul > li a { background:white; color:#f26551; /*border-bottom:1px solid #f26551;*/ width:200px; } .submenu > ul a:hover { text-decoration:none; } .bottom-menu a { color:white; text-transform:capitalize; } .bottom-menu li { padding:0 10px; } .nav-search button { border-style:none; position:absolute; top:0; right:0; background:#f7a397; color:white; font-size:1em; padding:12px; min-width:40px; border-radius: 0 4px 4px 0; z-index:3; } #login a { text-transform:capitalize; } #mobile-menu{ position:absolute; left:2%; font-size:30px; color:#b3b3b3; border:none; background:transparent; } .mobile-bg { background:rgba(179, 179, 179,0.8); z-index:10; position:fixed; height:100%; width:100%; display:none; } .mobile-title a { text-transform:uppercase; color:#f26551; } .mobile-title { padding-top:25px; } .mobile-menu { max-width:320px; background:white; position:relative; } .mobile-menu li { list-style: none; } .mobile-menu ul { margin:0; padding:0; } .mobile-menu ul a { color:grey; background: white; padding: 9px 18px; text-transform: capitalize; max-width: 320px; display:block; transition:all 0.3s; border-bottom:1px solid transparent; } .mobile-menu ul a:hover { color:#f7a397 ; padding-left:23px; } .mobile-menu a:hover, .mobile-menu a:visited,{ text-decoration:none; } .mobile-close{ position:absolute; right:5%; top:1%; color:#f7a397 ; font-size:20px; } /*================================ MAIN ================================*/ main { background-color:white; } main section.row { /*padding-top:5em;*/ } main .breadcrumb { background-color:transparent; padding:0.75em 0; font-family:Lao UI,sans-serif; } main .breadcrumb-item { font-size:15px; } main .breadcrumb-item a { color: #b3b3b3; } main .breadcrumb-item+.breadcrumb-item::before { content: ">"; } main .highlights { text-align:center; } main .highlights a { text-transform:capitalize; color:#b3b3b3; font-family:Lao UI, sans-serif; } .headline { border-bottom:1px solid #b3b3b3; } .headline h2, .headline h3 { color:#f26551; } #slider { position:relative; /*visibility: hidden;*/ } .slide-on{ animation: slideOn 0.5s; animation-fill-mode:forwards; } @keyframes slideOn { from { opacity:0; visibility: visible; } to{opacity:1; } } .slide { overflow:hidden; position:relative; max-height:497px; padding:0; margin:0; } .slide > li { position:relative; display:none; } .slide-description { background:rgba(242, 101, 81,0.7); text-align:center; color:white; padding-top:15px; padding-bottom:40px; position:absolute; z-index: 3; bottom:0; width:100%; } .item-pic { transition:all 0.3s; position:relative; } .item-pic a { display:block; position:relative; } .item-pic p { transition: all 0.3s; } .item-pic a:hover > .product-name { transform:translateY(-50px); color:white; } .item-pic a:hover { margin-bottom:7px; } .item-pic:hover { text-decoration:none; background:rgba(242, 101, 81,0.7); } .product-name { color:#f26551; font-family:Lao UI,sans-serif; } .item-price { text-align:center; } .price { display:inline-block; color:#b3b3b3; font-size:24px; font-family:Lao UI,sans-serif; } .item-price a { display: inline-block; background: #f26551; color: white; padding: 0.5em 1em; text-transform: capitalize; } .add-item { transition: all 0.3s; } .add-item:hover { background:#f7a397; text-decoration: none; } /*================================ FOOTER ================================*/ footer { background:#f26551; } footer .foot-item h3, footer .foot-item a { color:white; text-transform:capitalize; } .foot-item ul { padding:0; } .foot-item ul li { list-style-type:none; } .foot-item a { /*text-align:center;*/ display:block; } .foot-item h3 { /*text-align:center;*/ } .social-links a { font-size:40px; } /*================================== FLEXSLIDER ===================================*/ .flex-control-nav { bottom:5px; z-index:5; } /*================================== RESPONSIVE ===================================*/ /*================================ MEDIA ================================*/ @media all and (max-width:1280px) { #logo a { font-size:2rem; } } @media all and (max-width:992px) { #logo a { font-size:1.8rem; } .bottom-menu li { padding:0; } #bottom-nav .nav-link { font-size:13px; } } @media all and (max-width:768px) { /*================================ HEADER ================================*/ header .list-inline.spaced { /*flex-flow: column;*/ justify-content: center; } #top-nav .top { justify-content:flex-end; } #top-nav .social { width:200px; margin-left:0; } #top-nav .social span { display:none; } #logo { display:block; text-align:center; } .social-links { margin-top:15px; } .social-links a { font-size:40px; } header nav.navbar { width:100%; } header nav .list-inline a { text-align:center; width:100%; padding:0.5em; } header nav .list-inline a:hover { background:#f7a397; } header nav div.navbar-collapse > ul li { display:block; } .submenu > ul { display:block; position:static; } .submenu > ul > li a { background:transparent; color:white; width:100%; } .submenu > ul li, .submenu > ul a { width:100%; display:block; } /*================================ MAIN ================================*/ main .headline.highlights div:nth-of-type(2) { border-right:none; border-left:none; } .fourth, .adjust .fourth { width:50%; } /*================================ FOOTER ================================*/ } @media all and (max-width:580px) { #top-nav .top { flex-direction:column; justify-content: center; } #top-nav .logo { max-height:40px; margin:auto; } #top-nav .social { margin:auto; } } @media all and (max-width:400px) { #logo a { font-size:1.5rem; } }
0.239972
0.056029
@charset "UTF-8"; @import url('https://fonts.googleapis.com/css2?family=Audiowide&family=Bebas+Neue&family=Licorice&display=swap'); @font-face { font-family: 'Titulo'; src: url('../fontes/GuldScript_PersonalUseOnly.ttf') format(truetype); } :root { --cor0: #ffffff; --cor1: #ffe5d9ab; --cor2: #FFCAD4; --cor3: #f4acb7b0; --cor4: #8d6a74; --cor5: #64f0dd93; --fonte-padrao: Verdana, Geneva, Tahoma, sans-serif; --fonte-Titulo: 'GuldScript', cursive; --fonte-destaque: 'Licorice', cursive; } * { margin: 0px; padding: 0px; } body { font-family: var(--fonte-padrao); } header { background-image: linear-gradient(to bottom, var(--cor0), var(--cor4)); min-height: 100px; text-align: center; padding-top: 30px; } header > h1 { font-family: var(--fonte-destaque); font-size: 3em; margin-bottom: 5px; } header > p { font-family: var(--fonte-Titulo); font-size: 1.5em; font-style: italic; padding-bottom: 10px; } nav { background-color: var(--cor4); text-align: right; padding: 10px; box-shadow: 0px 7px 7px rgba(0, 0, 0, 0.336); } nav > a { color: black; padding: 10px; border-top-left-radius: 7px; border-top-right-radius: 7px; text-decoration: none; font-weight: bold; transition-duration: 0.5s; } nav > a:hover { background-color: var(--cor1); color: var(--cor4); } main { min-width: 300px; max-width: 1000px; margin: auto; margin-bottom: 20px; padding: 30px 20px 20px; background-color: var(--cor1); box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.363); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; } main h2 { font-family: var(--fonte-Titulo); font-size: 1.8em; text-align: center; border-radius: 5px; padding: 10px; background-image: repeating-linear-gradient(to right, var(--cor3), white); box-shadow: 0px 6px 5px #9d81899c; } main p { width: 350px; height: 250px; margin: 0px 50px 30px 60px; display:inline-block; background-color: white; padding-left: 10px; padding-right: 10px; padding-bottom: 0px; border-radius: 10px; text-align: justify; text-indent: 40px; line-height: 2em; } main img { width: 40%; display: inline-block; border-radius: 80px 0px; margin-top: 60px; border: solid; border-width: 10px; border-color: var(--cor5); box-shadow: 0px 5px 6px 3px rgba(0, 0, 0, 0.199); } picture > img { display: inline; width: 200px; margin: 50px 10px 50px 50px; transition-duration: .5s; } picture > img:hover { width: 250px; } footer { background-color: var(--cor4); font-size: 0.8em; font-style: italic; font-weight: bold; text-align: center; padding: 8px; }
meus desafios/desafio_fabi/style/style.css
@charset "UTF-8"; @import url('https://fonts.googleapis.com/css2?family=Audiowide&family=Bebas+Neue&family=Licorice&display=swap'); @font-face { font-family: 'Titulo'; src: url('../fontes/GuldScript_PersonalUseOnly.ttf') format(truetype); } :root { --cor0: #ffffff; --cor1: #ffe5d9ab; --cor2: #FFCAD4; --cor3: #f4acb7b0; --cor4: #8d6a74; --cor5: #64f0dd93; --fonte-padrao: Verdana, Geneva, Tahoma, sans-serif; --fonte-Titulo: 'GuldScript', cursive; --fonte-destaque: 'Licorice', cursive; } * { margin: 0px; padding: 0px; } body { font-family: var(--fonte-padrao); } header { background-image: linear-gradient(to bottom, var(--cor0), var(--cor4)); min-height: 100px; text-align: center; padding-top: 30px; } header > h1 { font-family: var(--fonte-destaque); font-size: 3em; margin-bottom: 5px; } header > p { font-family: var(--fonte-Titulo); font-size: 1.5em; font-style: italic; padding-bottom: 10px; } nav { background-color: var(--cor4); text-align: right; padding: 10px; box-shadow: 0px 7px 7px rgba(0, 0, 0, 0.336); } nav > a { color: black; padding: 10px; border-top-left-radius: 7px; border-top-right-radius: 7px; text-decoration: none; font-weight: bold; transition-duration: 0.5s; } nav > a:hover { background-color: var(--cor1); color: var(--cor4); } main { min-width: 300px; max-width: 1000px; margin: auto; margin-bottom: 20px; padding: 30px 20px 20px; background-color: var(--cor1); box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.363); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; } main h2 { font-family: var(--fonte-Titulo); font-size: 1.8em; text-align: center; border-radius: 5px; padding: 10px; background-image: repeating-linear-gradient(to right, var(--cor3), white); box-shadow: 0px 6px 5px #9d81899c; } main p { width: 350px; height: 250px; margin: 0px 50px 30px 60px; display:inline-block; background-color: white; padding-left: 10px; padding-right: 10px; padding-bottom: 0px; border-radius: 10px; text-align: justify; text-indent: 40px; line-height: 2em; } main img { width: 40%; display: inline-block; border-radius: 80px 0px; margin-top: 60px; border: solid; border-width: 10px; border-color: var(--cor5); box-shadow: 0px 5px 6px 3px rgba(0, 0, 0, 0.199); } picture > img { display: inline; width: 200px; margin: 50px 10px 50px 50px; transition-duration: .5s; } picture > img:hover { width: 250px; } footer { background-color: var(--cor4); font-size: 0.8em; font-style: italic; font-weight: bold; text-align: center; padding: 8px; }
0.38943
0.128744
@import url("https://fonts.googleapis.com/css?family=Poppins:400,500,600,700,800,900"); * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: "Poppins", sans-serif; color: #c4c3ca; background-color: #1f2029; } .container { max-width: 1200px; margin: 0 auto; } .container > h1 { padding: 20px 0; } .container a { text-decoration: none !important; color: #c4c3ca; } .container a:hover{ color: #45ccb8; } .cart { display: flex; } .products { flex: 0.75; } .product { display: flex; width: 100%; height: 200px; overflow: hidden; border: 1px solid silver; margin-bottom: 20px; background-color: #2a2b38; background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/1462889/pat.svg"); background-position: bottom center; background-repeat: no-repeat; } .product:hover { border: none; box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); transform: scale(1.01); } .product > img { width: 450px; height: 200px; /* object-fit: cover; */ } .product > img:hover { transform: scale(1.04); } .product-info { padding: 10px; width: 100%; /* position: relative; */ } .product-remove { display: flex; justify-content: end; } .product-quantity > input { width: 40px; padding: 5px; text-align: center; } .fa { margin-right: 5px; } .cart-total { flex: 0.25; margin-left: 20px; padding: 20px; height: 226px; border: 1px solid silver; border-radius: 5px; background-color: #2a2b38; background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/1462889/pat.svg"); background-position: bottom center; background-repeat: no-repeat; } .cart-total p { display: flex; justify-content: space-between; margin-bottom: 30px; font-size: 20px; } .cart-total a { display: block; text-align: center; height: 45px; line-height: 40px; color: #102770; background-color: #ffeba7; text-decoration: none; border-radius: 5px; } .cart-total a:hover { color: #ffeba7; background-color: #102770; box-shadow: 0 4px 8px 0 rgba(21, 21, 21, 0.2); transition: all 0.2s ease; } .b-btn { border-radius: 4px; height: 44px; font-size: 13px; font-weight: 600; text-transform: uppercase; -webkit-transition: all 200ms linear; transition: all 200ms linear; padding: 0 30px; letter-spacing: 1px; display: -webkit-inline-flex; display: -ms-inline-flexbox; display: inline-flex; -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; align-items: center; -webkit-justify-content: center; -moz-justify-content: center; -ms-justify-content: center; justify-content: center; -ms-flex-pack: center; text-align: center; border: none; background-color: #ffeba7; color: #102770; box-shadow: 0 8px 24px 0 rgba(255, 235, 167, 0.2); } .b-btn:active, .b-btn:focus { background-color: #102770; color: #ffeba7; box-shadow: 0 8px 24px 0 rgba(16, 39, 112, 0.2); } .b-btn:hover { background-color: #102770; color: #ffeba7; box-shadow: 0 8px 24px 0 rgba(16, 39, 112, 0.2); } @media only screen and (max-width: 996px) { .remove { display: none; } .product { height: fit-content; } .product > img { height: 200px; width: 200px; } .product-name, .product-price, .product-offer { margin-bottom: 10px; } .product-remove{ display: flex; flex-direction: row; } .b-btn{ margin: 0.5rem; } .cart { flex-direction: column; } .cart-total { margin-left: 0; margin-bottom: 20px; } } @media only screen and (max-width: 567px) { .product-remove{ flex-direction: column; } } @media only screen and (max-width: 1220px) { .container { max-width: 95%; } }
BITMART/public/css/cart.css
@import url("https://fonts.googleapis.com/css?family=Poppins:400,500,600,700,800,900"); * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: "Poppins", sans-serif; color: #c4c3ca; background-color: #1f2029; } .container { max-width: 1200px; margin: 0 auto; } .container > h1 { padding: 20px 0; } .container a { text-decoration: none !important; color: #c4c3ca; } .container a:hover{ color: #45ccb8; } .cart { display: flex; } .products { flex: 0.75; } .product { display: flex; width: 100%; height: 200px; overflow: hidden; border: 1px solid silver; margin-bottom: 20px; background-color: #2a2b38; background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/1462889/pat.svg"); background-position: bottom center; background-repeat: no-repeat; } .product:hover { border: none; box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); transform: scale(1.01); } .product > img { width: 450px; height: 200px; /* object-fit: cover; */ } .product > img:hover { transform: scale(1.04); } .product-info { padding: 10px; width: 100%; /* position: relative; */ } .product-remove { display: flex; justify-content: end; } .product-quantity > input { width: 40px; padding: 5px; text-align: center; } .fa { margin-right: 5px; } .cart-total { flex: 0.25; margin-left: 20px; padding: 20px; height: 226px; border: 1px solid silver; border-radius: 5px; background-color: #2a2b38; background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/1462889/pat.svg"); background-position: bottom center; background-repeat: no-repeat; } .cart-total p { display: flex; justify-content: space-between; margin-bottom: 30px; font-size: 20px; } .cart-total a { display: block; text-align: center; height: 45px; line-height: 40px; color: #102770; background-color: #ffeba7; text-decoration: none; border-radius: 5px; } .cart-total a:hover { color: #ffeba7; background-color: #102770; box-shadow: 0 4px 8px 0 rgba(21, 21, 21, 0.2); transition: all 0.2s ease; } .b-btn { border-radius: 4px; height: 44px; font-size: 13px; font-weight: 600; text-transform: uppercase; -webkit-transition: all 200ms linear; transition: all 200ms linear; padding: 0 30px; letter-spacing: 1px; display: -webkit-inline-flex; display: -ms-inline-flexbox; display: inline-flex; -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; align-items: center; -webkit-justify-content: center; -moz-justify-content: center; -ms-justify-content: center; justify-content: center; -ms-flex-pack: center; text-align: center; border: none; background-color: #ffeba7; color: #102770; box-shadow: 0 8px 24px 0 rgba(255, 235, 167, 0.2); } .b-btn:active, .b-btn:focus { background-color: #102770; color: #ffeba7; box-shadow: 0 8px 24px 0 rgba(16, 39, 112, 0.2); } .b-btn:hover { background-color: #102770; color: #ffeba7; box-shadow: 0 8px 24px 0 rgba(16, 39, 112, 0.2); } @media only screen and (max-width: 996px) { .remove { display: none; } .product { height: fit-content; } .product > img { height: 200px; width: 200px; } .product-name, .product-price, .product-offer { margin-bottom: 10px; } .product-remove{ display: flex; flex-direction: row; } .b-btn{ margin: 0.5rem; } .cart { flex-direction: column; } .cart-total { margin-left: 0; margin-bottom: 20px; } } @media only screen and (max-width: 567px) { .product-remove{ flex-direction: column; } } @media only screen and (max-width: 1220px) { .container { max-width: 95%; } }
0.422981
0.084947
:root { --quad: cubic-bezier(0.48, 0.04, 0.52, 0.96); --quart: cubic-bezier(0.76, 0.00, 0.24, 1.00); --quint: cubic-bezier(0.84, 0.00, 0.16, 1.00); --color-bg: #323232; --color-selected: #46a0f5; --color-border: #3e3e3e; --color-hover: #292929; --color-dark: #2b2b2b; --color-night: #1f1f1f; --color-text: #a1a1a1; --colorBorder: #808080; --colorZ: #4583a6; --colorA: #232931; --colorB: #393e46; --colorC: #4ecca3; --colorD: #eeeeee; --colorLimit: #e25433; --colorFree: #00c105; --colorFreeText: #33b936; --fen-root: 8; --border-grid: 1px solid var(--color-border); font-size: 12px; font-family: Rubik; color: var(--colorZ); margin: .5rem .25rem .5rem .25rem; background-color: var(--colorA); } .app { width: 700px; max-width: 700px; } .curPoint {cursor: pointer;} .curMove {cursor: move;} .logic { width: 100%; display: flex; justify-content: flex-start; flex-wrap: wrap; margin: .5rem .25rem 0px 3rem; font-size: 1.25rem; } .userFEN { width: 100%; } .inputFEN { display: flex; justify-content: center; flex-wrap: wrap; font-size: 1.5rem; width: 90%; margin: 0px 5%; } .FENminor { width: 100%; display: flex; justify-content: space-between; align-items: center; flex-wrap: nowrap; } .FENminorKey { /* margin: .25rem 0px; */ font-size: .75rem; width: 49.5%; box-sizing: border-box; display: flex; justify-content: center; align-items: center; padding: .25rem .5rem .25rem .5rem; color: var(--colorB); height: 1rem; overflow: hidden; background-color: var(--color-night); } .FENput { margin: .25rem 0px; width: 100%; box-sizing: border-box; display: flex; padding: 0px .25rem 0px .5rem; color: var(--color-text); height: 2rem; background-color: var(--color-night); border: 1px solid var(--color-night); } .FENput:focus { outline-width: 0px; border-color: var(--color-selected); } .navLetter { display: flex; align-items: center; } .navAnnoHigh { display: flex; justify-content: space-between; font-size: .75rem; padding: .25rem 0px 0px .25rem; width: 100%; } .navAnnoType { /* font-size: 1rem; */ font-weight: 700; margin-right: .5rem; } .navAnnoMid { display: flex; justify-content: center; font-size: 2rem; width: 100%; } .navAnnoLow { display: flex; justify-content: flex-end; width: 100%; padding: 0px .25rem .25rem 0px; } [class^="navCell"] { display: flex; flex-wrap: wrap; box-sizing: border-box; justify-content: center; align-items: center; width: 100%; height: 100%; background-color: var(--color-night); cursor: pointer; user-select: none; /* border: 1px solid var(--colorB); */ border: 1px solid var(--colorA); } .navCell-Active { background-color: var(--colorB); border-color: var(--color-selected); } .navCell-Idle { color: var(--colorBorder); background-color: var(--color-night); } .navCell-Char { color: var(--colorLimit); background-color: var(--colorB); border-color: var(--colorLimit); /* border-color: var(--color-selected; */ } .navCell-Path { color: var(--colorFreeText); background-color: var(--colorB); border-color: var(--colorFree); /* border-color: var(--color-selected; */ } .navCell-Selected { color: var(--colorA); background-color: var(--colorD); } .navGrid { margin: 1rem 5%; /* border: var(--border-grid); */ display: grid; grid-row-gap: 0rem; grid-column-gap: 0rem; grid-template-rows: repeat(var(--fen-root), 1fr); grid-template-columns: repeat(var(--fen-root), 1fr); } .gameElts { display: flex; justify-content: flex-end; margin: .5rem 5%; } .navPreview, .navPad { margin-right: 1rem; width: 6rem; height: 6rem; display: grid; grid-row-gap: .25rem; grid-column-gap: .25rem; grid-template-rows: 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr; } .chessPreview { margin-right: 1rem; width: 6rem; height: 6rem; display: grid; grid-row-gap: 0px; grid-column-gap: 0px; grid-template-rows: 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr; } [class^="navPreview-"] { display: flex; justify-content: center; align-items: center; border: 1px solid var(--color-night); background-color: var(--color-night); color: var(--colorB); /* border: var(--border-grid); */ /* border-radius: .25rem; */ /* cursor: pointer; */ } .navPreview-Active { color: var(--colorB); border-color: var(--colorB); } .navPreview-Idle { background-color: var(--color-night); } [class^="chessPreview-"] { display: flex; justify-content: center; align-items: center; border: 1px solid transparent; color: var(--colorB); /* border: var(--border-grid); */ /* border-radius: .25rem; */ /* cursor: pointer; */ } .chessPreview-ActiveA { /* color: var(--colorB); */ background-color: var(--colorB); border-color: var(--colorB); } .chessPreview-IdleA { /* background-color: grey; */ border-color: var(--colorB); background-color: var(--colorB); } .chessPreview-ActiveB { background-color: var(--color-night); color: var(--colorB); border-color: var(--color-night); } .chessPreview-IdleB { background-color: var(--color-night); border-color: var(--color-night); /* background-color: var(--colorA); */ } .noChess { opacity: 0; } .teamB { color: var(--color-selected); } .teamA { color: var(--colorLimit); } /* .navPad { width: 10rem; height: 10rem; display: grid; grid-row-gap: .5rem; grid-column-gap: .5rem; grid-template-rows: 1fr 2fr 1fr; grid-template-columns: 1fr 2fr 1fr; } */ [class^="navPad-"] { display: flex; justify-content: center; align-items: center; border: 1px solid var(--color-night); background-color: var(--color-night); color: var(--colorB); } [class^="navPad-"]:hover { /* background-color: var(--color-hover); */ } .navPad-Corner { /* font-size: 1.25rem; */ background-color: var(--color-night); } .navPad-Bumper { /* font-size: 1.5rem; */ background-color: var(--color-night); } .navPad-Center { /* background-color: var(--color-night); */ /* font-size: 2rem; */ /* border: 2px solid red; */ } svg { width: 100%; height: 100%; } .gameWrap { width: 10rem; height: 10rem; margin-right: 1rem; } .bumper { fill: gray; } .bumpIcon { fill: #b4b4b4; } .bumpCore, .bumpFrame { fill: none; } .bumpCore { stroke: #000; stroke-miterlimit: 10; } .navstringWrap { display: flex; justify-content: center; align-items: flex-start; margin-right: 1rem; margin-top: .25rem; } .NAVinput { box-sizing: border-box; display: flex; padding: .25rem .5rem; color: var(--color-text); width: 8rem; height: 2rem; border-radius: .25rem 0rem 0rem .25rem; background-color: var(--color-night); border: 1px solid var(--color-night); } .NAVinput:focus { outline-width: 0px; border-color: var(--color-selected); } [class^="navBtn"] { box-sizing: border-box; width: 2rem; height: 2rem; font-size: 1.25rem; background-color: var(--color-night); border: 2px solid var(--color-border); display: flex; justify-content: center; align-items: center; } [class^="navBtn"]:nth-child(odd) { /* background-color: red; */ border-radius: 0px .25rem .25rem 0px; padding-right: .25rem; width: 2.5rem; } .navBtn-ValidActive { background-color: var(--color-selected); border-color: var(--color-selected); color: var(--colorA); } .navBtn-ValidIdle { background-color: var(--colorB); border-color: var(--colorB); color: var(--color-night); } .navBtn-Invalid { color: var(--colorB); border-color: var(--color-night); background-color: var(--color-night); } .userInput { display: flex; padding: .25rem .5rem; color: var(--color-text); width: 80%; background-color: var(--color-night); border: 2px solid var(--color-border); } .annoBounds { display: flex; align-items: center; justify-content: flex-start; width: 100%; } .label { display: flex; justify-content: flex-end; margin-right: .5rem; width: 3rem; font-size: 1rem; font-weight: 700; } .anno { display: flex; justify-content: center; border: 2px solid var(--color-border); background-color: var(--color-dark); padding: .5rem .25rem; min-width: 80%; /* width: auto; */ margin: .5rem .25rem; } .modkeyWrap { /* margin-right: 1rem; */ /* border: 2px solid blue; */ width: 1rem; height: 6rem; display: grid; grid-template-columns: 1fr; grid-template-rows: 1fr 1fr 1fr 1fr; grid-row-gap: .25rem; } [class^="modkey-"] { box-sizing: border-box; background-color: var(--color-night); border: 2px solid transparent; width: 100%; /* margin: .25rem 0px; */ } .modkey-Shift { /* opacity: .5; */ background-color: var(--colorB); border-color: var(--colorFree); } .modkey-Ctrl { /* opacity: .5; */ background-color: var(--colorB); border-color: var(--colorLimit); } .modkey-Alt { /* opacity: .5; */ background-color: var(--colorB); border-color: var(--color-selected); } .modkey-Meta { /* opacity: .5; */ background-color: var(--colorB); border-color: var(--colorD); } .modkey-Idle { background-color: var(--color-night); } @media only screen and (max-width: 420px) { .gameElts { display: flex; flex-wrap: wrap; } .navAnnoLow { display: none; } .navAnnoType { display: none; } .NAVinput { width: 80%; } .navAnnoMid { margin: .25rem 0px .25rem 0px; } .navstringWrap { width: 100%; margin: 0px 0px .5rem 0px; /* margin-bottom: .5rem; */ } .chessPreview, .navPreview, .navPad { width: 30%; margin-right: .6rem; } .modkeyWrap { margin-right: 0px; order: 1; flex-direction: row; } }
client/style.css
:root { --quad: cubic-bezier(0.48, 0.04, 0.52, 0.96); --quart: cubic-bezier(0.76, 0.00, 0.24, 1.00); --quint: cubic-bezier(0.84, 0.00, 0.16, 1.00); --color-bg: #323232; --color-selected: #46a0f5; --color-border: #3e3e3e; --color-hover: #292929; --color-dark: #2b2b2b; --color-night: #1f1f1f; --color-text: #a1a1a1; --colorBorder: #808080; --colorZ: #4583a6; --colorA: #232931; --colorB: #393e46; --colorC: #4ecca3; --colorD: #eeeeee; --colorLimit: #e25433; --colorFree: #00c105; --colorFreeText: #33b936; --fen-root: 8; --border-grid: 1px solid var(--color-border); font-size: 12px; font-family: Rubik; color: var(--colorZ); margin: .5rem .25rem .5rem .25rem; background-color: var(--colorA); } .app { width: 700px; max-width: 700px; } .curPoint {cursor: pointer;} .curMove {cursor: move;} .logic { width: 100%; display: flex; justify-content: flex-start; flex-wrap: wrap; margin: .5rem .25rem 0px 3rem; font-size: 1.25rem; } .userFEN { width: 100%; } .inputFEN { display: flex; justify-content: center; flex-wrap: wrap; font-size: 1.5rem; width: 90%; margin: 0px 5%; } .FENminor { width: 100%; display: flex; justify-content: space-between; align-items: center; flex-wrap: nowrap; } .FENminorKey { /* margin: .25rem 0px; */ font-size: .75rem; width: 49.5%; box-sizing: border-box; display: flex; justify-content: center; align-items: center; padding: .25rem .5rem .25rem .5rem; color: var(--colorB); height: 1rem; overflow: hidden; background-color: var(--color-night); } .FENput { margin: .25rem 0px; width: 100%; box-sizing: border-box; display: flex; padding: 0px .25rem 0px .5rem; color: var(--color-text); height: 2rem; background-color: var(--color-night); border: 1px solid var(--color-night); } .FENput:focus { outline-width: 0px; border-color: var(--color-selected); } .navLetter { display: flex; align-items: center; } .navAnnoHigh { display: flex; justify-content: space-between; font-size: .75rem; padding: .25rem 0px 0px .25rem; width: 100%; } .navAnnoType { /* font-size: 1rem; */ font-weight: 700; margin-right: .5rem; } .navAnnoMid { display: flex; justify-content: center; font-size: 2rem; width: 100%; } .navAnnoLow { display: flex; justify-content: flex-end; width: 100%; padding: 0px .25rem .25rem 0px; } [class^="navCell"] { display: flex; flex-wrap: wrap; box-sizing: border-box; justify-content: center; align-items: center; width: 100%; height: 100%; background-color: var(--color-night); cursor: pointer; user-select: none; /* border: 1px solid var(--colorB); */ border: 1px solid var(--colorA); } .navCell-Active { background-color: var(--colorB); border-color: var(--color-selected); } .navCell-Idle { color: var(--colorBorder); background-color: var(--color-night); } .navCell-Char { color: var(--colorLimit); background-color: var(--colorB); border-color: var(--colorLimit); /* border-color: var(--color-selected; */ } .navCell-Path { color: var(--colorFreeText); background-color: var(--colorB); border-color: var(--colorFree); /* border-color: var(--color-selected; */ } .navCell-Selected { color: var(--colorA); background-color: var(--colorD); } .navGrid { margin: 1rem 5%; /* border: var(--border-grid); */ display: grid; grid-row-gap: 0rem; grid-column-gap: 0rem; grid-template-rows: repeat(var(--fen-root), 1fr); grid-template-columns: repeat(var(--fen-root), 1fr); } .gameElts { display: flex; justify-content: flex-end; margin: .5rem 5%; } .navPreview, .navPad { margin-right: 1rem; width: 6rem; height: 6rem; display: grid; grid-row-gap: .25rem; grid-column-gap: .25rem; grid-template-rows: 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr; } .chessPreview { margin-right: 1rem; width: 6rem; height: 6rem; display: grid; grid-row-gap: 0px; grid-column-gap: 0px; grid-template-rows: 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr; } [class^="navPreview-"] { display: flex; justify-content: center; align-items: center; border: 1px solid var(--color-night); background-color: var(--color-night); color: var(--colorB); /* border: var(--border-grid); */ /* border-radius: .25rem; */ /* cursor: pointer; */ } .navPreview-Active { color: var(--colorB); border-color: var(--colorB); } .navPreview-Idle { background-color: var(--color-night); } [class^="chessPreview-"] { display: flex; justify-content: center; align-items: center; border: 1px solid transparent; color: var(--colorB); /* border: var(--border-grid); */ /* border-radius: .25rem; */ /* cursor: pointer; */ } .chessPreview-ActiveA { /* color: var(--colorB); */ background-color: var(--colorB); border-color: var(--colorB); } .chessPreview-IdleA { /* background-color: grey; */ border-color: var(--colorB); background-color: var(--colorB); } .chessPreview-ActiveB { background-color: var(--color-night); color: var(--colorB); border-color: var(--color-night); } .chessPreview-IdleB { background-color: var(--color-night); border-color: var(--color-night); /* background-color: var(--colorA); */ } .noChess { opacity: 0; } .teamB { color: var(--color-selected); } .teamA { color: var(--colorLimit); } /* .navPad { width: 10rem; height: 10rem; display: grid; grid-row-gap: .5rem; grid-column-gap: .5rem; grid-template-rows: 1fr 2fr 1fr; grid-template-columns: 1fr 2fr 1fr; } */ [class^="navPad-"] { display: flex; justify-content: center; align-items: center; border: 1px solid var(--color-night); background-color: var(--color-night); color: var(--colorB); } [class^="navPad-"]:hover { /* background-color: var(--color-hover); */ } .navPad-Corner { /* font-size: 1.25rem; */ background-color: var(--color-night); } .navPad-Bumper { /* font-size: 1.5rem; */ background-color: var(--color-night); } .navPad-Center { /* background-color: var(--color-night); */ /* font-size: 2rem; */ /* border: 2px solid red; */ } svg { width: 100%; height: 100%; } .gameWrap { width: 10rem; height: 10rem; margin-right: 1rem; } .bumper { fill: gray; } .bumpIcon { fill: #b4b4b4; } .bumpCore, .bumpFrame { fill: none; } .bumpCore { stroke: #000; stroke-miterlimit: 10; } .navstringWrap { display: flex; justify-content: center; align-items: flex-start; margin-right: 1rem; margin-top: .25rem; } .NAVinput { box-sizing: border-box; display: flex; padding: .25rem .5rem; color: var(--color-text); width: 8rem; height: 2rem; border-radius: .25rem 0rem 0rem .25rem; background-color: var(--color-night); border: 1px solid var(--color-night); } .NAVinput:focus { outline-width: 0px; border-color: var(--color-selected); } [class^="navBtn"] { box-sizing: border-box; width: 2rem; height: 2rem; font-size: 1.25rem; background-color: var(--color-night); border: 2px solid var(--color-border); display: flex; justify-content: center; align-items: center; } [class^="navBtn"]:nth-child(odd) { /* background-color: red; */ border-radius: 0px .25rem .25rem 0px; padding-right: .25rem; width: 2.5rem; } .navBtn-ValidActive { background-color: var(--color-selected); border-color: var(--color-selected); color: var(--colorA); } .navBtn-ValidIdle { background-color: var(--colorB); border-color: var(--colorB); color: var(--color-night); } .navBtn-Invalid { color: var(--colorB); border-color: var(--color-night); background-color: var(--color-night); } .userInput { display: flex; padding: .25rem .5rem; color: var(--color-text); width: 80%; background-color: var(--color-night); border: 2px solid var(--color-border); } .annoBounds { display: flex; align-items: center; justify-content: flex-start; width: 100%; } .label { display: flex; justify-content: flex-end; margin-right: .5rem; width: 3rem; font-size: 1rem; font-weight: 700; } .anno { display: flex; justify-content: center; border: 2px solid var(--color-border); background-color: var(--color-dark); padding: .5rem .25rem; min-width: 80%; /* width: auto; */ margin: .5rem .25rem; } .modkeyWrap { /* margin-right: 1rem; */ /* border: 2px solid blue; */ width: 1rem; height: 6rem; display: grid; grid-template-columns: 1fr; grid-template-rows: 1fr 1fr 1fr 1fr; grid-row-gap: .25rem; } [class^="modkey-"] { box-sizing: border-box; background-color: var(--color-night); border: 2px solid transparent; width: 100%; /* margin: .25rem 0px; */ } .modkey-Shift { /* opacity: .5; */ background-color: var(--colorB); border-color: var(--colorFree); } .modkey-Ctrl { /* opacity: .5; */ background-color: var(--colorB); border-color: var(--colorLimit); } .modkey-Alt { /* opacity: .5; */ background-color: var(--colorB); border-color: var(--color-selected); } .modkey-Meta { /* opacity: .5; */ background-color: var(--colorB); border-color: var(--colorD); } .modkey-Idle { background-color: var(--color-night); } @media only screen and (max-width: 420px) { .gameElts { display: flex; flex-wrap: wrap; } .navAnnoLow { display: none; } .navAnnoType { display: none; } .NAVinput { width: 80%; } .navAnnoMid { margin: .25rem 0px .25rem 0px; } .navstringWrap { width: 100%; margin: 0px 0px .5rem 0px; /* margin-bottom: .5rem; */ } .chessPreview, .navPreview, .navPad { width: 30%; margin-right: .6rem; } .modkeyWrap { margin-right: 0px; order: 1; flex-direction: row; } }
0.38318
0.20044
* { padding:0; margin:0; font-size:12px; } a{ color:#333; } ul li{ height:25px; } /*------- Prompt Style -------*/ .popup_prompt{ border:1px solid #909090; background:#FFF; } .popup_prompt .popup_header{ } .popup_prompt h1 { height:25px; margin:1px; font-size:13px; color:#F4793A; font-weight:bold; text-indent:10px; padding-top:7px; } .popup_prompt .popup_content { margin:1px; padding:10px; font-size:13px; } .popup_prompt .buttonRow { height:30px; line-height:30px; text-align:right; margin:1px; } .popup_prompt input { color:#555; border:1px solid #808080; margin-right:5px; height:20px; line-height:18px; padding:0px 3px; } /*------- Tip Style -------*/ .popup_tip { border:1px #684E02 solid; vertical-align:middle; filter:Alpha(Opacity=80); -moz-opacity:0.8; } .popup_tip .popup_content { color:#000; background:#FCFBE0; text-align:center; } .popup_tip img { vertical-align:middle; } /*------- Help Style -------*/ .popup_help_up,.popup_help_down { width:271px; filter:Alpha(Opacity=85); } .popup_help_up { background:url(../images/help_t1.gif) left top no-repeat; } .popup_help_down { background:url(../images/help_t2.gif) left top no-repeat; } .popup_help_up a:link,.popup_help_down a:link { text-decoration:underline; } .popup_help_up .popup_header { margin-top:9px; } .popup_help_down .popup_header { margin-top:22px; } .popup_help_up .popup_header,.popup_help_down .popup_header { height:18px; border-left:1px #000 solid; border-right:1px #000 solid; background:#FFFFE1; } .popup_help_up .popup_header h1,.popup_help_down .popup_header h1 { font-size:13px; text-indent:28px; background:url(../images/action.gif) 10px 0px no-repeat; } .popup_help_up .popup_content,.popup_help_down .popup_content { line-height:16px; padding:5px 10px; border-left:1px #000 solid; border-right:1px #000 solid; background:#FFFFE1; } .popup_help_up .popup_bottom { height:22px; background:url(../images/help_b1.gif) left top no-repeat; } .popup_help_down .popup_bottom { height:9px; background:url(../images/help_b2.gif) left top no-repeat; }
myweb/mydreamer/ui/widget/popup_helper/css/Popup.css
* { padding:0; margin:0; font-size:12px; } a{ color:#333; } ul li{ height:25px; } /*------- Prompt Style -------*/ .popup_prompt{ border:1px solid #909090; background:#FFF; } .popup_prompt .popup_header{ } .popup_prompt h1 { height:25px; margin:1px; font-size:13px; color:#F4793A; font-weight:bold; text-indent:10px; padding-top:7px; } .popup_prompt .popup_content { margin:1px; padding:10px; font-size:13px; } .popup_prompt .buttonRow { height:30px; line-height:30px; text-align:right; margin:1px; } .popup_prompt input { color:#555; border:1px solid #808080; margin-right:5px; height:20px; line-height:18px; padding:0px 3px; } /*------- Tip Style -------*/ .popup_tip { border:1px #684E02 solid; vertical-align:middle; filter:Alpha(Opacity=80); -moz-opacity:0.8; } .popup_tip .popup_content { color:#000; background:#FCFBE0; text-align:center; } .popup_tip img { vertical-align:middle; } /*------- Help Style -------*/ .popup_help_up,.popup_help_down { width:271px; filter:Alpha(Opacity=85); } .popup_help_up { background:url(../images/help_t1.gif) left top no-repeat; } .popup_help_down { background:url(../images/help_t2.gif) left top no-repeat; } .popup_help_up a:link,.popup_help_down a:link { text-decoration:underline; } .popup_help_up .popup_header { margin-top:9px; } .popup_help_down .popup_header { margin-top:22px; } .popup_help_up .popup_header,.popup_help_down .popup_header { height:18px; border-left:1px #000 solid; border-right:1px #000 solid; background:#FFFFE1; } .popup_help_up .popup_header h1,.popup_help_down .popup_header h1 { font-size:13px; text-indent:28px; background:url(../images/action.gif) 10px 0px no-repeat; } .popup_help_up .popup_content,.popup_help_down .popup_content { line-height:16px; padding:5px 10px; border-left:1px #000 solid; border-right:1px #000 solid; background:#FFFFE1; } .popup_help_up .popup_bottom { height:22px; background:url(../images/help_b1.gif) left top no-repeat; } .popup_help_down .popup_bottom { height:9px; background:url(../images/help_b2.gif) left top no-repeat; }
0.18407
0.042424
:root { --font-Crete: "Crete Round", serif; --font-Inter: "Inter", sans-serif; --font-Poppins: "Poppins", sans-serif; --font-Robot: "Roboto", sans-serif; --color-text: #fff5e1; } * { margin: 0; padding: 0; box-sizing: content-box; } body { font-family: var(--font-Inter); } /* Pop up styles */ .popOverlay { width: 100%; height: 100%; position: fixed; z-index: 9; top: 0; bottom: 0; right: 0; left: 0; background-color: rgba(0, 0, 0, 0.5); } .popTech { display: flex; align-items: center; justify-content: flex-start; } .popTech li { list-style-type: none; padding: 5px; margin-right: 10px; border: 1px solid black; font-family: var(--font-Poppins); font-weight: 600; font-size: 13px; color: #3c3a39; } .stopScroll { width: 100vw; height: 100vh; overflow: hidden; } .popContainer { overflow-y: auto; position: fixed; height: 90%; margin: 20px; padding: 20px; top: 0; left: 0; bottom: 0; z-index: 10; background-color: rgb(255, 255, 255); } .popBtnClose { position: absolute; top: 0; right: 0; margin: 5px; width: 2rem; height: 2rem; } .popBtnClose i { font-size: 20px; } .popTitle { font-family: var(--font-Robot); font-style: normal; font-weight: 700; font-size: 26px; width: 90%; color: #172b4d; margin-bottom: 20px; } .popImage { height: 20%; width: 100%; } .infoDiv { margin-top: 30px; margin-bottom: 0; } .popDescr { margin-top: 16px; margin-bottom: 16px; font-family: var(--font-Inter); font-style: normal; font-weight: normal; font-size: 16px; line-height: 24px; color: #344563; } .popBtn { display: flex; justify-content: space-between; text-decoration: none; font-weight: bold; font-size: 1.1rem; text-align: center; } .popBtn a { text-decoration: none; background-color: #ff6b00; color: #fff; padding: 15px; margin-right: 10px; width: 40%; } .closeBtn i { display: none; } .popBtn a i { margin-left: 5px; } @media screen and (min-width: 700px) { .infoDiv { display: flex; flex-direction: row; } .descBtn { flex: 1; margin-left: 30px; display: flex; flex-flow: column; justify-content: space-between; } .popDescr { width: 100%; padding-top: 0; padding-bottom: 10%; } .popImage { flex: 2; } .popTitle { font-size: 32px; } .popTech li { font-size: 15px; padding: 0.5rem 1rem 0.5rem 1rem; } } /* pop up style done */ .logo a { text-decoration: none; color: var(--color-text); } header { background-color: #3c3a39; min-height: 60px; display: flex; justify-content: space-between; align-items: center; } header p { font-family: var(--font-inter); font-size: 18px; padding-left: 20px; font-weight: 700; } .mobile-menu { height: 100vh; position: fixed; top: 0; left: 0; right: 0; z-index: 2; display: flex; flex-flow: column; justify-content: flex-start; font-size: 1.4rem; font-weight: bold; background-color: #3c3a39; align-items: flex-start; padding-top: 1rem; padding-right: 1.5rem; padding-left: 1.5rem; } .mobile-nav { width: 100%; display: flex; flex-flow: column; justify-content: flex-start; list-style-type: none; } .nav-strech { width: 100%; } .mobile-nav .closeBtn { border: none; } .icons-list li a i { width: 20px; height: 20px; } .mobile-nav .closeBtn i { display: inline; float: right; color: #5b5957; } .mobile-nav li { width: 100%; margin-bottom: 2rem; border-bottom: 2px solid rgb(221, 202, 202); padding-left: 0.5rem; padding-top: 0.6rem; padding-bottom: 0.4rem; } .mobile-nav li a { text-decoration: none; color: var(--color-text); } .visible { display: none; } nav { align-items: center; } nav img { height: 24px; width: 24px; margin-right: 1rem; } nav ul { display: none; } main { background-color: #1c1a19; height: 100%; } .intro { padding-left: 18px; padding-right: 18px; padding-top: 80px; height: 590px; align-items: center; } .intro h1 { color: #ff6b00; font-size: 40px; font-family: var(--font-Crete); } .intro h2 { font-family: var(--font-Robot); font-size: 20px; color: var(--color-text); } .intro p { font-family: var(--font-Poppins); padding-top: 10px; font-size: 16px; color: white; } .social-links { margin-top: 15px; display: flex; width: 200px; justify-content: space-between; flex-wrap: wrap; } .btn img { height: 24px; width: 24px; } button { background: none; border: none; } .victor { position: absolute; right: 0%; top: 30%; z-index: 1; } .vector1 { width: 10px; height: 10px; } .my-projects { display: grid; background-color: white; grid-template-columns: 1fr; min-width: 375px; padding: 120px 0.1px 0.1px 0.1px; justify-content: center; grid-gap: 5px; } .big-project { display: grid; background-color: white; grid-template-columns: repeat(auto-fit, minmax(324px, 1fr)); padding: 0.1px 0.1px 120px 0.1px; justify-content: space-between; grid-gap: 10px; } .my-recent-work { display: flex; flex-direction: column; margin: 80px 24px 24px 24px; height: min-content; } .title1 h2 { font-family: var(--font-Crete); text-align: center; min-width: 327px; font-size: 40px; line-height: 52px; } .line { border-bottom: 2px solid #e5e5e5; padding-left: 24px; padding-right: 24px; margin-top: 30px; } .placeholder { min-width: 327px; height: auto; margin: 24px auto 24px auto; width: 100%; } .my-recent-work h3 { font-family: var(--font-Crete); font-size: 32px; line-height: 44px; align-items: center; } .my-recent-work p { font-size: 16px; line-height: 24px; align-items: center; margin: 5px 0.1px; } .my-recent-work ul { display: flex; flex-direction: row; } .icons-list li { margin-right: 10px; color: #505f79; } .my-recent-work ul li { margin-right: 5px; border: 1px solid #8993a4; background: white; align-items: center; padding: 3px 12px; font-size: 15px; line-height: 20px; list-style-type: none; width: fit-content; } .btn-language:hover { background-color: orange; color: white; } .btn-project { background: #ff6b00; border: none; color: white; position: static; left: 0.1px; max-width: 128px; min-height: 48px; height: auto; margin: 5px 0.1px; align-items: center; font-weight: 700; font-size: 17px; line-height: 24px; padding: 3px 10px; cursor: pointer; } .btn-project:active { background: white; } .btn-project:hover { background-color: orange; } .project { background: url(img/Placeholder1.png); background-size: cover; display: flex; flex-direction: column; margin: 0.1px 24px 0.1px 24px; min-height: 356px; height: auto; min-width: 327px; } .project h3 { font-family: var(--font-Crete); color: white; font-size: 32px; line-height: 44px; min-height: 81px; height: auto; padding-left: 12px; margin-top: 100px; } .project p { color: white; font-size: 16px; line-height: 20px; padding-left: 12px; margin-top: 5px; } .languages { display: flex; flex-wrap: wrap; } .btn-lng { background: rgba(255, 255, 255, 0.24); align-items: center; padding: 10px 12px; margin: 10px 10px 10px 10px; font-size: 13px; line-height: 20px; color: white; list-style-type: none; } .see-Project { position: static; bottom: 0.1px; background: #ff6b00; border: none; color: white; min-width: 327px; height: 50px; align-items: center; font-weight: 700; font-size: 17px; line-height: 24px; cursor: pointer; } .see-Project:active { background-color: white; } .see-Project:hover { background-color: white; color: #ff6b00; } .about-me { background-color: black; display: flex; flex-direction: column; color: bisque; padding: 0.1px 24px; padding-bottom: 130px; } .about-me h2 { font-family: var(--font-Crete); font-size: 72px; color: #ff6b00; margin-top: 120px; max-width: 327px; } .about-me p { font-weight: 400; text-align: left; font-size: 16px; line-height: 24px; color: white; margin-top: 24px; } .get { border: none; position: static; background-color: #ff6b00; margin-top: 24px; width: 160px; height: 48px; display: flex; align-items: center; justify-content: center; text-align: center; color: white; letter-spacing: 0.03em; font-weight: 700; cursor: pointer; } .get:active { background: rgb(255, 255, 255); } .get:hover { background-color: orange; } .line-1 img { position: absolute; justify-content: end; right: -24px; bottom: 10px; } .line-1 { position: relative; width: 100%; height: 160px; border-bottom: 2px solid white; margin-bottom: 100px; } .skills { display: flex; justify-content: center; flex-direction: column; text-align: center; } .skills h3 { color: white; font-size: 50px; margin-bottom: 45px; } .skills ul li { list-style-type: none; font-size: 22px; margin-bottom: 32px; color: white; } .footer-form { background-color: #fff; display: grid; grid-template-columns: 1fr; grid-template-rows: auto; grid-gap: 1rem; padding: 0 24px; border-bottom: 1px solid#dfe1e6; padding-bottom: 130px; } .footer-form p { font-weight: bold; font-size: 32px; line-height: 44px; text-align: center; color: #172b4d; margin-top: 120px; } .footer-form form { display: flex; flex-direction: column; } .footer-form form label { display: flex; justify-content: center; align-items: center; } small { padding: 1rem; color: red; } .error { box-shadow: 0 3px rgb(255, 0, 0, 0.6); } .success { border-bottom: 2px solid rgb(79, 221, 66); } .footer-form form label input { width: 100%; height: 2rem; border: none; border-bottom: 1px solid #dbd8d7; margin-bottom: 15px; padding-bottom: 5px; padding-left: 5px; } .footer-form form label input:focus { border-bottom: 3px solid #ffbe90; } .footer-form form label textarea { background-color: #fbf8f7; border: none; padding-top: 5px; padding-left: 5px; width: 100%; height: 114px; margin-bottom: 24px; } .footer-form form label textarea:focus { border-bottom: 3px solid #ffbe90; } .footer-form form label textarea::placeholder { color: #3c3a39; } .footer-form form label button { background: #ff6b00; width: 131px; min-height: 48px; height: auto; color: #fff; font-weight: bold; font-size: 17px; line-height: 24px; align-items: center; text-align: center; letter-spacing: 0.03em; justify-content: center; cursor: pointer; } .footer-form form label button:hover { background: #ffbe90; color: #ff6b00; } .icons-list { display: flex; flex-direction: row; justify-content: center; list-style: none; margin-top: 7px; margin-left: 10px; margin-bottom: 10px; } .icons-list li a { color: inherit; text-decoration: inherit; } .line-2 { display: flex; justify-content: center; } .line-2-1 { border-bottom: 5px solid #0d151e; width: 130px; } .empty { display: none; background: url(/img/Placeholder4.png); border: 2px solid black; } @media screen and (min-width: 720px) { .see-Project { display: none; } .logo { margin-left: 141px; flex: 2; } nav { flex: 1; margin-right: 50px; } nav img { display: none; } nav ul { display: flex; justify-content: space-between; color: white; list-style: none; } nav a { color: inherit; text-decoration: inherit; } .intro { min-height: 800px; height: auto; padding-left: 141px; } .intro h1 { margin-top: 150px; font-size: 72px; } .intro h2 { font-size: 32px; } .intro p { font-size: 20px; max-width: 560px; } .social-links { width: 50px; position: absolute; left: 10px; top: 370px; display: flex; flex-direction: column; justify-content: center; } .title1 { display: flex; flex-direction: row; align-items: center; margin: 0.1px 0.1px 114px 0.1px; grid-column: 1/4; grid-row: 1; } .line { max-width: 794px; width: 100%; margin-top: 0.1px; border-bottom: 2px solid #212121; } .my-recent-work { display: flex; flex-flow: row; align-items: stretch; justify-content: flex-start; grid-column: 1/4; grid-row: 2; margin: 0.1px 0.1px 0.1px 0.1px; } .content1 { display: flex; flex-direction: column; margin: 0.1px 24px 0.1px 0.1px; max-width: 448px; } .placeholder { order: -1; align-self: flex-start; margin: 0.1px 10px 24px 0.1px; width: 100%; height: auto; max-width: 684px; } .content1 p { font-size: 20px; } .content1 h3 { font-size: 40px; } .my-projects { display: grid; grid-template-columns: repeat(auto-fit, 100%); padding-left: 24px; padding-right: 24px; } .big-project { display: grid; grid-template-columns: repeat(auto-fit, minmax(327px, 327px)); padding-left: 24px; padding-right: 24px; grid-gap: 5px; padding-bottom: 130px; padding-top: 24px; } .project { height: auto; width: 327px; min-height: 386px; margin: 0.1px; } .about-me { padding-left: 142px; padding-right: 142px; } .about-me h2 { font-size: 72px; } .about-me p { font-size: 20px; max-width: 566px; height: auto; } .more-skills { display: flex; flex-direction: row; justify-content: space-between; align-items: flex-start; margin-bottom: 130px; flex-wrap: wrap; } .footer-form { display: flex; flex-direction: row; padding-left: 141px; padding-right: 141px; } .footer-form form { margin-top: 141px; width: 100%; flex: 1; } .footer-form p { max-width: 455px; margin-top: 130px; flex: 1; } .footer-form label textarea { max-width: 684px; } .footer-form label input { max-width: 684px; } .line-1 img { right: -141px; } .empty { display: flex; flex-direction: column; justify-content: flex-end; } .empty button { display: inline-block; } } @media screen and (min-width: 1024px) { .my-projects { padding-left: 141px; padding-right: 141px; } .project { width: 369px; min-height: 435px; height: auto; margin: 0.1px; } .big-project { grid-template-columns: repeat(auto-fit, 369px); padding-left: 141px; padding-right: 141px; } } @media screen and (min-width: 1200px) { .vector1 { position: absolute; top: 70px; right: 0.1px; width: 662px; height: 875px; } }
style.css
:root { --font-Crete: "Crete Round", serif; --font-Inter: "Inter", sans-serif; --font-Poppins: "Poppins", sans-serif; --font-Robot: "Roboto", sans-serif; --color-text: #fff5e1; } * { margin: 0; padding: 0; box-sizing: content-box; } body { font-family: var(--font-Inter); } /* Pop up styles */ .popOverlay { width: 100%; height: 100%; position: fixed; z-index: 9; top: 0; bottom: 0; right: 0; left: 0; background-color: rgba(0, 0, 0, 0.5); } .popTech { display: flex; align-items: center; justify-content: flex-start; } .popTech li { list-style-type: none; padding: 5px; margin-right: 10px; border: 1px solid black; font-family: var(--font-Poppins); font-weight: 600; font-size: 13px; color: #3c3a39; } .stopScroll { width: 100vw; height: 100vh; overflow: hidden; } .popContainer { overflow-y: auto; position: fixed; height: 90%; margin: 20px; padding: 20px; top: 0; left: 0; bottom: 0; z-index: 10; background-color: rgb(255, 255, 255); } .popBtnClose { position: absolute; top: 0; right: 0; margin: 5px; width: 2rem; height: 2rem; } .popBtnClose i { font-size: 20px; } .popTitle { font-family: var(--font-Robot); font-style: normal; font-weight: 700; font-size: 26px; width: 90%; color: #172b4d; margin-bottom: 20px; } .popImage { height: 20%; width: 100%; } .infoDiv { margin-top: 30px; margin-bottom: 0; } .popDescr { margin-top: 16px; margin-bottom: 16px; font-family: var(--font-Inter); font-style: normal; font-weight: normal; font-size: 16px; line-height: 24px; color: #344563; } .popBtn { display: flex; justify-content: space-between; text-decoration: none; font-weight: bold; font-size: 1.1rem; text-align: center; } .popBtn a { text-decoration: none; background-color: #ff6b00; color: #fff; padding: 15px; margin-right: 10px; width: 40%; } .closeBtn i { display: none; } .popBtn a i { margin-left: 5px; } @media screen and (min-width: 700px) { .infoDiv { display: flex; flex-direction: row; } .descBtn { flex: 1; margin-left: 30px; display: flex; flex-flow: column; justify-content: space-between; } .popDescr { width: 100%; padding-top: 0; padding-bottom: 10%; } .popImage { flex: 2; } .popTitle { font-size: 32px; } .popTech li { font-size: 15px; padding: 0.5rem 1rem 0.5rem 1rem; } } /* pop up style done */ .logo a { text-decoration: none; color: var(--color-text); } header { background-color: #3c3a39; min-height: 60px; display: flex; justify-content: space-between; align-items: center; } header p { font-family: var(--font-inter); font-size: 18px; padding-left: 20px; font-weight: 700; } .mobile-menu { height: 100vh; position: fixed; top: 0; left: 0; right: 0; z-index: 2; display: flex; flex-flow: column; justify-content: flex-start; font-size: 1.4rem; font-weight: bold; background-color: #3c3a39; align-items: flex-start; padding-top: 1rem; padding-right: 1.5rem; padding-left: 1.5rem; } .mobile-nav { width: 100%; display: flex; flex-flow: column; justify-content: flex-start; list-style-type: none; } .nav-strech { width: 100%; } .mobile-nav .closeBtn { border: none; } .icons-list li a i { width: 20px; height: 20px; } .mobile-nav .closeBtn i { display: inline; float: right; color: #5b5957; } .mobile-nav li { width: 100%; margin-bottom: 2rem; border-bottom: 2px solid rgb(221, 202, 202); padding-left: 0.5rem; padding-top: 0.6rem; padding-bottom: 0.4rem; } .mobile-nav li a { text-decoration: none; color: var(--color-text); } .visible { display: none; } nav { align-items: center; } nav img { height: 24px; width: 24px; margin-right: 1rem; } nav ul { display: none; } main { background-color: #1c1a19; height: 100%; } .intro { padding-left: 18px; padding-right: 18px; padding-top: 80px; height: 590px; align-items: center; } .intro h1 { color: #ff6b00; font-size: 40px; font-family: var(--font-Crete); } .intro h2 { font-family: var(--font-Robot); font-size: 20px; color: var(--color-text); } .intro p { font-family: var(--font-Poppins); padding-top: 10px; font-size: 16px; color: white; } .social-links { margin-top: 15px; display: flex; width: 200px; justify-content: space-between; flex-wrap: wrap; } .btn img { height: 24px; width: 24px; } button { background: none; border: none; } .victor { position: absolute; right: 0%; top: 30%; z-index: 1; } .vector1 { width: 10px; height: 10px; } .my-projects { display: grid; background-color: white; grid-template-columns: 1fr; min-width: 375px; padding: 120px 0.1px 0.1px 0.1px; justify-content: center; grid-gap: 5px; } .big-project { display: grid; background-color: white; grid-template-columns: repeat(auto-fit, minmax(324px, 1fr)); padding: 0.1px 0.1px 120px 0.1px; justify-content: space-between; grid-gap: 10px; } .my-recent-work { display: flex; flex-direction: column; margin: 80px 24px 24px 24px; height: min-content; } .title1 h2 { font-family: var(--font-Crete); text-align: center; min-width: 327px; font-size: 40px; line-height: 52px; } .line { border-bottom: 2px solid #e5e5e5; padding-left: 24px; padding-right: 24px; margin-top: 30px; } .placeholder { min-width: 327px; height: auto; margin: 24px auto 24px auto; width: 100%; } .my-recent-work h3 { font-family: var(--font-Crete); font-size: 32px; line-height: 44px; align-items: center; } .my-recent-work p { font-size: 16px; line-height: 24px; align-items: center; margin: 5px 0.1px; } .my-recent-work ul { display: flex; flex-direction: row; } .icons-list li { margin-right: 10px; color: #505f79; } .my-recent-work ul li { margin-right: 5px; border: 1px solid #8993a4; background: white; align-items: center; padding: 3px 12px; font-size: 15px; line-height: 20px; list-style-type: none; width: fit-content; } .btn-language:hover { background-color: orange; color: white; } .btn-project { background: #ff6b00; border: none; color: white; position: static; left: 0.1px; max-width: 128px; min-height: 48px; height: auto; margin: 5px 0.1px; align-items: center; font-weight: 700; font-size: 17px; line-height: 24px; padding: 3px 10px; cursor: pointer; } .btn-project:active { background: white; } .btn-project:hover { background-color: orange; } .project { background: url(img/Placeholder1.png); background-size: cover; display: flex; flex-direction: column; margin: 0.1px 24px 0.1px 24px; min-height: 356px; height: auto; min-width: 327px; } .project h3 { font-family: var(--font-Crete); color: white; font-size: 32px; line-height: 44px; min-height: 81px; height: auto; padding-left: 12px; margin-top: 100px; } .project p { color: white; font-size: 16px; line-height: 20px; padding-left: 12px; margin-top: 5px; } .languages { display: flex; flex-wrap: wrap; } .btn-lng { background: rgba(255, 255, 255, 0.24); align-items: center; padding: 10px 12px; margin: 10px 10px 10px 10px; font-size: 13px; line-height: 20px; color: white; list-style-type: none; } .see-Project { position: static; bottom: 0.1px; background: #ff6b00; border: none; color: white; min-width: 327px; height: 50px; align-items: center; font-weight: 700; font-size: 17px; line-height: 24px; cursor: pointer; } .see-Project:active { background-color: white; } .see-Project:hover { background-color: white; color: #ff6b00; } .about-me { background-color: black; display: flex; flex-direction: column; color: bisque; padding: 0.1px 24px; padding-bottom: 130px; } .about-me h2 { font-family: var(--font-Crete); font-size: 72px; color: #ff6b00; margin-top: 120px; max-width: 327px; } .about-me p { font-weight: 400; text-align: left; font-size: 16px; line-height: 24px; color: white; margin-top: 24px; } .get { border: none; position: static; background-color: #ff6b00; margin-top: 24px; width: 160px; height: 48px; display: flex; align-items: center; justify-content: center; text-align: center; color: white; letter-spacing: 0.03em; font-weight: 700; cursor: pointer; } .get:active { background: rgb(255, 255, 255); } .get:hover { background-color: orange; } .line-1 img { position: absolute; justify-content: end; right: -24px; bottom: 10px; } .line-1 { position: relative; width: 100%; height: 160px; border-bottom: 2px solid white; margin-bottom: 100px; } .skills { display: flex; justify-content: center; flex-direction: column; text-align: center; } .skills h3 { color: white; font-size: 50px; margin-bottom: 45px; } .skills ul li { list-style-type: none; font-size: 22px; margin-bottom: 32px; color: white; } .footer-form { background-color: #fff; display: grid; grid-template-columns: 1fr; grid-template-rows: auto; grid-gap: 1rem; padding: 0 24px; border-bottom: 1px solid#dfe1e6; padding-bottom: 130px; } .footer-form p { font-weight: bold; font-size: 32px; line-height: 44px; text-align: center; color: #172b4d; margin-top: 120px; } .footer-form form { display: flex; flex-direction: column; } .footer-form form label { display: flex; justify-content: center; align-items: center; } small { padding: 1rem; color: red; } .error { box-shadow: 0 3px rgb(255, 0, 0, 0.6); } .success { border-bottom: 2px solid rgb(79, 221, 66); } .footer-form form label input { width: 100%; height: 2rem; border: none; border-bottom: 1px solid #dbd8d7; margin-bottom: 15px; padding-bottom: 5px; padding-left: 5px; } .footer-form form label input:focus { border-bottom: 3px solid #ffbe90; } .footer-form form label textarea { background-color: #fbf8f7; border: none; padding-top: 5px; padding-left: 5px; width: 100%; height: 114px; margin-bottom: 24px; } .footer-form form label textarea:focus { border-bottom: 3px solid #ffbe90; } .footer-form form label textarea::placeholder { color: #3c3a39; } .footer-form form label button { background: #ff6b00; width: 131px; min-height: 48px; height: auto; color: #fff; font-weight: bold; font-size: 17px; line-height: 24px; align-items: center; text-align: center; letter-spacing: 0.03em; justify-content: center; cursor: pointer; } .footer-form form label button:hover { background: #ffbe90; color: #ff6b00; } .icons-list { display: flex; flex-direction: row; justify-content: center; list-style: none; margin-top: 7px; margin-left: 10px; margin-bottom: 10px; } .icons-list li a { color: inherit; text-decoration: inherit; } .line-2 { display: flex; justify-content: center; } .line-2-1 { border-bottom: 5px solid #0d151e; width: 130px; } .empty { display: none; background: url(/img/Placeholder4.png); border: 2px solid black; } @media screen and (min-width: 720px) { .see-Project { display: none; } .logo { margin-left: 141px; flex: 2; } nav { flex: 1; margin-right: 50px; } nav img { display: none; } nav ul { display: flex; justify-content: space-between; color: white; list-style: none; } nav a { color: inherit; text-decoration: inherit; } .intro { min-height: 800px; height: auto; padding-left: 141px; } .intro h1 { margin-top: 150px; font-size: 72px; } .intro h2 { font-size: 32px; } .intro p { font-size: 20px; max-width: 560px; } .social-links { width: 50px; position: absolute; left: 10px; top: 370px; display: flex; flex-direction: column; justify-content: center; } .title1 { display: flex; flex-direction: row; align-items: center; margin: 0.1px 0.1px 114px 0.1px; grid-column: 1/4; grid-row: 1; } .line { max-width: 794px; width: 100%; margin-top: 0.1px; border-bottom: 2px solid #212121; } .my-recent-work { display: flex; flex-flow: row; align-items: stretch; justify-content: flex-start; grid-column: 1/4; grid-row: 2; margin: 0.1px 0.1px 0.1px 0.1px; } .content1 { display: flex; flex-direction: column; margin: 0.1px 24px 0.1px 0.1px; max-width: 448px; } .placeholder { order: -1; align-self: flex-start; margin: 0.1px 10px 24px 0.1px; width: 100%; height: auto; max-width: 684px; } .content1 p { font-size: 20px; } .content1 h3 { font-size: 40px; } .my-projects { display: grid; grid-template-columns: repeat(auto-fit, 100%); padding-left: 24px; padding-right: 24px; } .big-project { display: grid; grid-template-columns: repeat(auto-fit, minmax(327px, 327px)); padding-left: 24px; padding-right: 24px; grid-gap: 5px; padding-bottom: 130px; padding-top: 24px; } .project { height: auto; width: 327px; min-height: 386px; margin: 0.1px; } .about-me { padding-left: 142px; padding-right: 142px; } .about-me h2 { font-size: 72px; } .about-me p { font-size: 20px; max-width: 566px; height: auto; } .more-skills { display: flex; flex-direction: row; justify-content: space-between; align-items: flex-start; margin-bottom: 130px; flex-wrap: wrap; } .footer-form { display: flex; flex-direction: row; padding-left: 141px; padding-right: 141px; } .footer-form form { margin-top: 141px; width: 100%; flex: 1; } .footer-form p { max-width: 455px; margin-top: 130px; flex: 1; } .footer-form label textarea { max-width: 684px; } .footer-form label input { max-width: 684px; } .line-1 img { right: -141px; } .empty { display: flex; flex-direction: column; justify-content: flex-end; } .empty button { display: inline-block; } } @media screen and (min-width: 1024px) { .my-projects { padding-left: 141px; padding-right: 141px; } .project { width: 369px; min-height: 435px; height: auto; margin: 0.1px; } .big-project { grid-template-columns: repeat(auto-fit, 369px); padding-left: 141px; padding-right: 141px; } } @media screen and (min-width: 1200px) { .vector1 { position: absolute; top: 70px; right: 0.1px; width: 662px; height: 875px; } }
0.451568
0.108779
@charset "utf-8"; /* CSS Document */ @media only screen and ( max-width: 768px) and ( min-width: 0px) { .top_block, .list_mails { text-align: center; } .nav-pills>li { float: right; } .top_block .list_social, .nav-pills>li { float: none; display: inline-block; } .top_block .list_social { margin-top: 5px } .account { margin-left: 0; margin-bottom: 5px; display: block; } .headed_logo_block { text-align: center; padding: 10px 0; } .header_calls { text-align: right; display: none; } .header_calls2 { text-align: left; } .logo { text-align: center; } .logo a { padding: 20px; } .headed_logo_block:before { bottom: 0; content: ""; } .nav_menu nav ul>li.active>a:before { background: #443ab9; } .nav_menu nav ul>li.active>a { color: #443ab9; } .nav_menu nav ul>li:hover a:before { background: #443ab9; } .nav_menu nav ul>li:hover a { color: #443ab9; } .nav_menu nav>ul>li>a { color: #665bff; text-shadow: none; } .slider_blog>img { height: 335px; width: 100%; } .intro_detail { bottom: 40px; } .intro_detail h2 { margin: 0 0 10px; font-size: 25px; line-height: 28px; max-height: 26px; } .intro_detail p { font-size: 15px; margin-bottom: 15px; } .single_blogs { margin-top: -20px; margin-bottom: 65px; } .nopaddrig { padding-left: 15px; } .nopaddlef { padding-right: 15px; } .make-appointment-content { display: block; align-items: center; } .make-appointment-content .blogdets .icon, .make-appointment-content .blogdets .title { display: block; margin: 0 auto 15px; } .make-appointment-content .blogdets { display: block; max-width: 100%; } .make-appointment-content .blogdets .title { padding-right: 0; text-align: center; } .make-appointment-content .blogdets2 { text-align: center; } .about_block { text-align: center; } .title_style .decor { margin: 10px auto !important; } .about_content .inner_aboutcontent .single-box { text-align: right; } .about_content .inner_aboutcontent .know-more-box .button, .about_content .inner_aboutcontent .know-more-box .title { display: block; } .about_content .inner_aboutcontent .know-more-box .title { padding-right: 0; padding: 25px; } .videos_blogs iframe { height: 320px; } .single-fact-counter { margin-bottom: 40px; } .title_style2 h2 { font-size: 30px; } .persons_blog>.par_clients { padding: 40px 20px 130px; } .par_clients .intitle_style .decor_dashri, .par_clients .intitle_style .decor_dashle { display: none; } .single-pricing-box { padding: 10px; } .coponimg a img { max-width: 180px; } .coponimg { height: 80px; } .title_style, .footer-area { text-align: center; } .single-footer-widget .title { padding-bottom: 15px; } .single-footer-widget { margin-bottom: 47px; } .single-footer-widget .decor { margin: 15px auto; } .single-footer-widget .usefull-links ul:before { display: none; } .single-footer-widget .usefull-links ul li { display: inline-block; margin-left: 10px; } .single-footer-widget .usefull-links ul { margin-bottom: 0; } .single-footer-widget .recent-news li .img-holder { position: relative; margin: 0 auto; } .single-footer-widget .recent-news li .title-holder { padding-right: 0; padding-top: 20px; } .single-footer-widget .recent-news li { padding-right: 0; } .single-footer-widget .subscribe-form { margin: 0 auto; } .image_blockabout .img_holder { text-align: center; } .account_blogrows .media-right, .account_blogrows .media-left, .account_blogrows .media-body { display: block; width: 100%; padding: 0; } .account_image { margin-bottom: 20px; } .readmore-button2 button { margin-bottom: 15px; } .ininput_newblog_three>div { width: 100%; float: none; margin-left: 0; margin-bottom: 25px; } .ininput_newblog_double>div { width: 100%; float: none; margin-left: 0; margin-bottom: 25px; } .sky-tabs>label { width: 100%; } .accountpage .title_style, .login_page .title_style, .contact_page .title_style { text-align: right } .accountpage .title_style .decor, .contact_page .title_style .decor, .login_page .title_style .decor { margin: 10px 0 0 !important; } .filterlist button i { font-size: 20px; } } @media only screen and ( max-width: 992px) and ( min-width: 757px) { .top_block, .list_mails { text-align: center; } .nav-pills>li { float: right; } .top_block .list_social, .nav-pills>li { float: none; display: inline-block; } .top_block .list_social { margin-top: 5px } .account { margin-left: 0; margin-bottom: 5px; display: block; } .headed_logo_block { text-align: center; padding: 10px 0; } .header_calls { text-align: right; display: none; } .header_calls2 { text-align: left; } .logo { text-align: center; } .logo a { padding: 20px; } .headed_logo_block:before { bottom: 0; content: ""; } .nav_menu nav ul>li.active>a:before { background: #443ab9; } .nav_menu nav ul>li.active>a { color: #443ab9; } .nav_menu nav ul>li:hover a:before { background: #443ab9; } .nav_menu nav ul>li:hover a { color: #443ab9; } .nav_menu nav>ul>li>a { color: #665bff; text-shadow: none; } .slider_blog>img { height: 380px; } .intro_detail { bottom: 40px; } .intro_detail h2 { font-size: 55px; max-height: 60px; } .intro_detail p { font-size: 18px; margin-bottom: 15px; } .single_blogs { margin-top: -20px; margin-bottom: 65px; } .nopaddrig { padding-left: 15px; } .nopaddlef { padding-right: 15px; } .make-appointment-content { display: block; align-items: center; } .make-appointment-content .blogdets .icon, .make-appointment-content .blogdets .title { display: block; margin: 0 auto 15px; } .make-appointment-content .blogdets { display: block; max-width: 100%; } .make-appointment-content .blogdets .title { padding-right: 0; text-align: center; } .make-appointment-content .blogdets2 { text-align: center; } .about_block { text-align: center; } .title_style .decor { margin: 10px auto !important; } .about_content .inner_aboutcontent .single-box { text-align: right; } .about_content .inner_aboutcontent .know-more-box .button, .about_content .inner_aboutcontent .know-more-box .title { display: block; } .about_content .inner_aboutcontent .know-more-box .title { padding-right: 0; padding: 25px; } .single-fact-counter { margin-bottom: 40px; } .title_style2 h2 { font-size: 30px; } .persons_blog>.par_clients { padding: 40px 20px 130px; } .par_clients .intitle_style .decor_dashri, .par_clients .intitle_style .decor_dashle { display: none; } .single-pricing-box { padding: 10px; } .coponimg a img { max-width: 180px; } .coponimg { height: 80px; } .title_style, .footer-area { text-align: center; } .single-footer-widget .title { padding-bottom: 15px; } .single-footer-widget { margin-bottom: 47px; } .single-footer-widget .decor { margin: 15px auto; } .single-footer-widget .usefull-links ul:before { display: none; } .single-footer-widget .usefull-links ul li { display: inline-block; margin-left: 10px; } .single-footer-widget .usefull-links ul { margin-bottom: 0; } .single-footer-widget .recent-news li .img-holder { position: relative; margin: 0 auto; } .single-footer-widget .recent-news li .title-holder { padding-right: 0; padding-top: 20px; } .single-footer-widget .recent-news li { padding-right: 0; } .single-footer-widget .subscribe-form { margin: 0 auto; } .image_blockabout .img_holder { text-align: center; } .dropdown-menu { left: -28px; } .accountpage .title_style, .login_page .title_style, .contact_page .title_style { text-align: right } .accountpage .title_style .decor, .contact_page .title_style .decor, .login_page .title_style .decor { margin: 10px 0 0 !important; } } @media only screen and ( max-width: 1169px) and ( min-width: 993px) { .single_blogs .img_single_blogs img { height: 395px; } .clearres { clear: both; } .footer-area { padding-bottom: 30px; } .single-footer-widget { margin-bottom: 50px; } }
public/user/ar/css/responsive.css
@charset "utf-8"; /* CSS Document */ @media only screen and ( max-width: 768px) and ( min-width: 0px) { .top_block, .list_mails { text-align: center; } .nav-pills>li { float: right; } .top_block .list_social, .nav-pills>li { float: none; display: inline-block; } .top_block .list_social { margin-top: 5px } .account { margin-left: 0; margin-bottom: 5px; display: block; } .headed_logo_block { text-align: center; padding: 10px 0; } .header_calls { text-align: right; display: none; } .header_calls2 { text-align: left; } .logo { text-align: center; } .logo a { padding: 20px; } .headed_logo_block:before { bottom: 0; content: ""; } .nav_menu nav ul>li.active>a:before { background: #443ab9; } .nav_menu nav ul>li.active>a { color: #443ab9; } .nav_menu nav ul>li:hover a:before { background: #443ab9; } .nav_menu nav ul>li:hover a { color: #443ab9; } .nav_menu nav>ul>li>a { color: #665bff; text-shadow: none; } .slider_blog>img { height: 335px; width: 100%; } .intro_detail { bottom: 40px; } .intro_detail h2 { margin: 0 0 10px; font-size: 25px; line-height: 28px; max-height: 26px; } .intro_detail p { font-size: 15px; margin-bottom: 15px; } .single_blogs { margin-top: -20px; margin-bottom: 65px; } .nopaddrig { padding-left: 15px; } .nopaddlef { padding-right: 15px; } .make-appointment-content { display: block; align-items: center; } .make-appointment-content .blogdets .icon, .make-appointment-content .blogdets .title { display: block; margin: 0 auto 15px; } .make-appointment-content .blogdets { display: block; max-width: 100%; } .make-appointment-content .blogdets .title { padding-right: 0; text-align: center; } .make-appointment-content .blogdets2 { text-align: center; } .about_block { text-align: center; } .title_style .decor { margin: 10px auto !important; } .about_content .inner_aboutcontent .single-box { text-align: right; } .about_content .inner_aboutcontent .know-more-box .button, .about_content .inner_aboutcontent .know-more-box .title { display: block; } .about_content .inner_aboutcontent .know-more-box .title { padding-right: 0; padding: 25px; } .videos_blogs iframe { height: 320px; } .single-fact-counter { margin-bottom: 40px; } .title_style2 h2 { font-size: 30px; } .persons_blog>.par_clients { padding: 40px 20px 130px; } .par_clients .intitle_style .decor_dashri, .par_clients .intitle_style .decor_dashle { display: none; } .single-pricing-box { padding: 10px; } .coponimg a img { max-width: 180px; } .coponimg { height: 80px; } .title_style, .footer-area { text-align: center; } .single-footer-widget .title { padding-bottom: 15px; } .single-footer-widget { margin-bottom: 47px; } .single-footer-widget .decor { margin: 15px auto; } .single-footer-widget .usefull-links ul:before { display: none; } .single-footer-widget .usefull-links ul li { display: inline-block; margin-left: 10px; } .single-footer-widget .usefull-links ul { margin-bottom: 0; } .single-footer-widget .recent-news li .img-holder { position: relative; margin: 0 auto; } .single-footer-widget .recent-news li .title-holder { padding-right: 0; padding-top: 20px; } .single-footer-widget .recent-news li { padding-right: 0; } .single-footer-widget .subscribe-form { margin: 0 auto; } .image_blockabout .img_holder { text-align: center; } .account_blogrows .media-right, .account_blogrows .media-left, .account_blogrows .media-body { display: block; width: 100%; padding: 0; } .account_image { margin-bottom: 20px; } .readmore-button2 button { margin-bottom: 15px; } .ininput_newblog_three>div { width: 100%; float: none; margin-left: 0; margin-bottom: 25px; } .ininput_newblog_double>div { width: 100%; float: none; margin-left: 0; margin-bottom: 25px; } .sky-tabs>label { width: 100%; } .accountpage .title_style, .login_page .title_style, .contact_page .title_style { text-align: right } .accountpage .title_style .decor, .contact_page .title_style .decor, .login_page .title_style .decor { margin: 10px 0 0 !important; } .filterlist button i { font-size: 20px; } } @media only screen and ( max-width: 992px) and ( min-width: 757px) { .top_block, .list_mails { text-align: center; } .nav-pills>li { float: right; } .top_block .list_social, .nav-pills>li { float: none; display: inline-block; } .top_block .list_social { margin-top: 5px } .account { margin-left: 0; margin-bottom: 5px; display: block; } .headed_logo_block { text-align: center; padding: 10px 0; } .header_calls { text-align: right; display: none; } .header_calls2 { text-align: left; } .logo { text-align: center; } .logo a { padding: 20px; } .headed_logo_block:before { bottom: 0; content: ""; } .nav_menu nav ul>li.active>a:before { background: #443ab9; } .nav_menu nav ul>li.active>a { color: #443ab9; } .nav_menu nav ul>li:hover a:before { background: #443ab9; } .nav_menu nav ul>li:hover a { color: #443ab9; } .nav_menu nav>ul>li>a { color: #665bff; text-shadow: none; } .slider_blog>img { height: 380px; } .intro_detail { bottom: 40px; } .intro_detail h2 { font-size: 55px; max-height: 60px; } .intro_detail p { font-size: 18px; margin-bottom: 15px; } .single_blogs { margin-top: -20px; margin-bottom: 65px; } .nopaddrig { padding-left: 15px; } .nopaddlef { padding-right: 15px; } .make-appointment-content { display: block; align-items: center; } .make-appointment-content .blogdets .icon, .make-appointment-content .blogdets .title { display: block; margin: 0 auto 15px; } .make-appointment-content .blogdets { display: block; max-width: 100%; } .make-appointment-content .blogdets .title { padding-right: 0; text-align: center; } .make-appointment-content .blogdets2 { text-align: center; } .about_block { text-align: center; } .title_style .decor { margin: 10px auto !important; } .about_content .inner_aboutcontent .single-box { text-align: right; } .about_content .inner_aboutcontent .know-more-box .button, .about_content .inner_aboutcontent .know-more-box .title { display: block; } .about_content .inner_aboutcontent .know-more-box .title { padding-right: 0; padding: 25px; } .single-fact-counter { margin-bottom: 40px; } .title_style2 h2 { font-size: 30px; } .persons_blog>.par_clients { padding: 40px 20px 130px; } .par_clients .intitle_style .decor_dashri, .par_clients .intitle_style .decor_dashle { display: none; } .single-pricing-box { padding: 10px; } .coponimg a img { max-width: 180px; } .coponimg { height: 80px; } .title_style, .footer-area { text-align: center; } .single-footer-widget .title { padding-bottom: 15px; } .single-footer-widget { margin-bottom: 47px; } .single-footer-widget .decor { margin: 15px auto; } .single-footer-widget .usefull-links ul:before { display: none; } .single-footer-widget .usefull-links ul li { display: inline-block; margin-left: 10px; } .single-footer-widget .usefull-links ul { margin-bottom: 0; } .single-footer-widget .recent-news li .img-holder { position: relative; margin: 0 auto; } .single-footer-widget .recent-news li .title-holder { padding-right: 0; padding-top: 20px; } .single-footer-widget .recent-news li { padding-right: 0; } .single-footer-widget .subscribe-form { margin: 0 auto; } .image_blockabout .img_holder { text-align: center; } .dropdown-menu { left: -28px; } .accountpage .title_style, .login_page .title_style, .contact_page .title_style { text-align: right } .accountpage .title_style .decor, .contact_page .title_style .decor, .login_page .title_style .decor { margin: 10px 0 0 !important; } } @media only screen and ( max-width: 1169px) and ( min-width: 993px) { .single_blogs .img_single_blogs img { height: 395px; } .clearres { clear: both; } .footer-area { padding-bottom: 30px; } .single-footer-widget { margin-bottom: 50px; } }
0.331444
0.084455
@import url('../generales/variables.css'); * { font-family: var(--text-font) } .publicidad > h1 { margin-top: 5.5%; text-align: center; } .publicidad > p{ text-align: center; } .publicidad .prioridades { display: flex; justify-content: space-evenly; width: 70%; margin-left: 15%; margin-bottom: 2%; } .publicidad .prioridades .baja, .publicidad .prioridades .media, .publicidad .prioridades .alta { width: 15%; cursor: pointer; } .publicidad .prioridades .baja:hover, .publicidad .prioridades .media:hover, .publicidad .prioridades .alta:hover { border: 1px solid var(--primary-color); border-radius: var(--border-radius); } .publicidad .prioridades .baja > h3, .publicidad .prioridades .media > h3, .publicidad .prioridades .alta > h3, .publicidad .prioridades .baja > p, .publicidad .prioridades .media > p, .publicidad .prioridades .alta > p { text-align: center; } .publicidad .datos { display: flex; justify-content: space-evenly; width: 60%; margin-left: 20%; margin-bottom: 2%; } .publicidad .datos .datosPublicidad, .publicidad .datos .datosPago { width: 300px; border-radius: 5px; background-color: #e2d8e4; padding-left: 4%; padding-bottom: 4%; } .publicidad .datos .datosPublicidad > form > h3, .publicidad .datos .datosPago > form > h3 { text-align: center; } .publicidad .datos .datosPublicidad > form > input, .publicidad .datos .datosPago > form > input { margin-bottom: 5%; } .publicidad > a { display: flex; justify-content: center; text-decoration: none; } .publicidad > a > button { min-width: 130px; height: 40px; color: #fff; padding: 5px 10px; font-weight: bold; font-size: 20px; cursor: pointer; transition: all 0.3s ease; position: relative; display: inline-block; outline: none; overflow: hidden; border-radius: 5px; border: none; background-color: var(--primary-color); opacity: 0.5; } .publicidad > a > button:hover { border-radius: 5px; padding-right: 24px; padding-left:8px; } .publicidad > a > button:hover:after { opacity: 1; right: 10px; } .publicidad > a > button:after { content: "\00BB"; position: absolute; opacity: 0; font-size: 20px; line-height: 40px; top: 0; right: -20px; transition: 0.4s; }
css/especificos/publicidad.css
@import url('../generales/variables.css'); * { font-family: var(--text-font) } .publicidad > h1 { margin-top: 5.5%; text-align: center; } .publicidad > p{ text-align: center; } .publicidad .prioridades { display: flex; justify-content: space-evenly; width: 70%; margin-left: 15%; margin-bottom: 2%; } .publicidad .prioridades .baja, .publicidad .prioridades .media, .publicidad .prioridades .alta { width: 15%; cursor: pointer; } .publicidad .prioridades .baja:hover, .publicidad .prioridades .media:hover, .publicidad .prioridades .alta:hover { border: 1px solid var(--primary-color); border-radius: var(--border-radius); } .publicidad .prioridades .baja > h3, .publicidad .prioridades .media > h3, .publicidad .prioridades .alta > h3, .publicidad .prioridades .baja > p, .publicidad .prioridades .media > p, .publicidad .prioridades .alta > p { text-align: center; } .publicidad .datos { display: flex; justify-content: space-evenly; width: 60%; margin-left: 20%; margin-bottom: 2%; } .publicidad .datos .datosPublicidad, .publicidad .datos .datosPago { width: 300px; border-radius: 5px; background-color: #e2d8e4; padding-left: 4%; padding-bottom: 4%; } .publicidad .datos .datosPublicidad > form > h3, .publicidad .datos .datosPago > form > h3 { text-align: center; } .publicidad .datos .datosPublicidad > form > input, .publicidad .datos .datosPago > form > input { margin-bottom: 5%; } .publicidad > a { display: flex; justify-content: center; text-decoration: none; } .publicidad > a > button { min-width: 130px; height: 40px; color: #fff; padding: 5px 10px; font-weight: bold; font-size: 20px; cursor: pointer; transition: all 0.3s ease; position: relative; display: inline-block; outline: none; overflow: hidden; border-radius: 5px; border: none; background-color: var(--primary-color); opacity: 0.5; } .publicidad > a > button:hover { border-radius: 5px; padding-right: 24px; padding-left:8px; } .publicidad > a > button:hover:after { opacity: 1; right: 10px; } .publicidad > a > button:after { content: "\00BB"; position: absolute; opacity: 0; font-size: 20px; line-height: 40px; top: 0; right: -20px; transition: 0.4s; }
0.515376
0.161287
body{font-family: SourceHanSans;} .two-banner-description{font-size: 50px; margin: 0 auto 40px auto; font-weight: bold; pointer-events: none; color: #333; text-align: center;position: relative; letter-spacing: 4px;-webkit-user-select:none;-moz-user-select:none; -ms-user-select:none;user-select:none; } .two-banner-title{color:white;font-size: 40px;position: absolute;left: 0;right: 0; bottom: 0;margin: auto;font-weight: 100;text-transform: uppercase;} .two-submit-diy{text-align: center;} .two-submit-diy > form > div > input{font-size: 16px;color: white;background: #333;padding: 10px 10px 10px 20px;border: 2px solid #444;} .two-submit-diy > form > div > button{font-size: 16px;margin-left: -50px;color: white;} .two-nav{ text-align: center; position: absolute; left: 50%; } .two-nav a{color: white; text-align: center;font-size: 18px;} .two-nav span{color: white;font-size: 18px;} .two-diy{max-width:1200px;margin:0 auto;} .two-posts-description{font-size: 50px; font-weight: bold; color: #333;position: relative; letter-spacing: 4px;-webkit-user-select:none;-moz-user-select:none; -ms-user-select:none;user-select:none;font-family: SourceHanSans;border-bottom:1px solid; margin-bottom: 30px;margin-top: -30px;text-transform:uppercase;} .two-posts-title{color:white;font-size: 24px;position: absolute;left: 0;right: 0; bottom: 0;margin: auto;font-weight: 100;font-family: SourceHanSans;text-transform: uppercase;} .two-pages{font-size:14px;letter-spacing:0.5px;color:white;font-weight:400;bottom: 0; right: 0;position: absolute;opacity:0.8;} .two-pages i{ font-size: 20px;} .two-bw-posts{ padding-bottom: 20px; padding-left: 10px;padding-right: 10px; } .two-bw-posts img{ width: 100%;object-fit: cover;border-radius: 10px;} .two-over-text a{text-decoration:none; cursor:pointer;} .two-bwxyz-text {margin:0 0 5px;} .two-bwxyz-category { text-align:left;margin:0px;font-size: 12px;} .two-bwxyz-time{text-align:right;float:right;} .two-footer{text-align:center;letter-spacing:0.8px; font-size: 13px;} .two-index-nav{height: 50px;box-sizing: border-box;z-index:100;position: relative; left: -50%;} .two-nav-frame{width: 1200px;margin: 0 auto;} .two-nav-frame-line{float: left;position: relative;display: block;outline: none;cursor: pointer;width: 100px;line-height: 46px;text-align: center;font-weight: 200;} .two-nav-frame-line-center{opacity: 0;height: 0;position: absolute;overflow: hidden;width: 100%;transition: all 0.5s;-webkit-transition: all 0.5s;-moz-transition: all 0.5s;/* Firefox 4 */-o-transition: all 0.5s; /* Opera */} .two-nav-frame-line-li{width: 100%;font-weight: 100;text-align: center;background:#222;} .two-nav-frame-line-li:hover{background: #333;color: white;background: #333;} .two-nav-frame-line-li:hover a{background: #333;color: white;} .two-nav-frame-line-focus:focus{display: none;} .two-nav-frame-line:hover .two-nav-frame-line-center{height:auto;opacity: 1;} .two-mobile-pages{font-size: 14px;margin-top: 10px;} .two-mobile-display-block{display:none;} .two-posts-archive-title a{color: white; font-size: 24px;text-decoration:none;} .page-navigator > li > a{font-size: 14px;} .bw-over > a > img{height:220px;} .two-nav-frame-line-li a{font-size:14px;} @media screen and (max-width: 992px) { .two-mobile-display-none{display:none;} .two-mobile-display-block{display:block;} .bw-over > a > img{height:240px;} }
css/two/two.css
body{font-family: SourceHanSans;} .two-banner-description{font-size: 50px; margin: 0 auto 40px auto; font-weight: bold; pointer-events: none; color: #333; text-align: center;position: relative; letter-spacing: 4px;-webkit-user-select:none;-moz-user-select:none; -ms-user-select:none;user-select:none; } .two-banner-title{color:white;font-size: 40px;position: absolute;left: 0;right: 0; bottom: 0;margin: auto;font-weight: 100;text-transform: uppercase;} .two-submit-diy{text-align: center;} .two-submit-diy > form > div > input{font-size: 16px;color: white;background: #333;padding: 10px 10px 10px 20px;border: 2px solid #444;} .two-submit-diy > form > div > button{font-size: 16px;margin-left: -50px;color: white;} .two-nav{ text-align: center; position: absolute; left: 50%; } .two-nav a{color: white; text-align: center;font-size: 18px;} .two-nav span{color: white;font-size: 18px;} .two-diy{max-width:1200px;margin:0 auto;} .two-posts-description{font-size: 50px; font-weight: bold; color: #333;position: relative; letter-spacing: 4px;-webkit-user-select:none;-moz-user-select:none; -ms-user-select:none;user-select:none;font-family: SourceHanSans;border-bottom:1px solid; margin-bottom: 30px;margin-top: -30px;text-transform:uppercase;} .two-posts-title{color:white;font-size: 24px;position: absolute;left: 0;right: 0; bottom: 0;margin: auto;font-weight: 100;font-family: SourceHanSans;text-transform: uppercase;} .two-pages{font-size:14px;letter-spacing:0.5px;color:white;font-weight:400;bottom: 0; right: 0;position: absolute;opacity:0.8;} .two-pages i{ font-size: 20px;} .two-bw-posts{ padding-bottom: 20px; padding-left: 10px;padding-right: 10px; } .two-bw-posts img{ width: 100%;object-fit: cover;border-radius: 10px;} .two-over-text a{text-decoration:none; cursor:pointer;} .two-bwxyz-text {margin:0 0 5px;} .two-bwxyz-category { text-align:left;margin:0px;font-size: 12px;} .two-bwxyz-time{text-align:right;float:right;} .two-footer{text-align:center;letter-spacing:0.8px; font-size: 13px;} .two-index-nav{height: 50px;box-sizing: border-box;z-index:100;position: relative; left: -50%;} .two-nav-frame{width: 1200px;margin: 0 auto;} .two-nav-frame-line{float: left;position: relative;display: block;outline: none;cursor: pointer;width: 100px;line-height: 46px;text-align: center;font-weight: 200;} .two-nav-frame-line-center{opacity: 0;height: 0;position: absolute;overflow: hidden;width: 100%;transition: all 0.5s;-webkit-transition: all 0.5s;-moz-transition: all 0.5s;/* Firefox 4 */-o-transition: all 0.5s; /* Opera */} .two-nav-frame-line-li{width: 100%;font-weight: 100;text-align: center;background:#222;} .two-nav-frame-line-li:hover{background: #333;color: white;background: #333;} .two-nav-frame-line-li:hover a{background: #333;color: white;} .two-nav-frame-line-focus:focus{display: none;} .two-nav-frame-line:hover .two-nav-frame-line-center{height:auto;opacity: 1;} .two-mobile-pages{font-size: 14px;margin-top: 10px;} .two-mobile-display-block{display:none;} .two-posts-archive-title a{color: white; font-size: 24px;text-decoration:none;} .page-navigator > li > a{font-size: 14px;} .bw-over > a > img{height:220px;} .two-nav-frame-line-li a{font-size:14px;} @media screen and (max-width: 992px) { .two-mobile-display-none{display:none;} .two-mobile-display-block{display:block;} .bw-over > a > img{height:240px;} }
0.31732
0.072571
:root { --primary-color: #2875d9; } @font-face { font-family: 'Computer Modern'; font-style: normal; font-weight: normal; src: url('./paper/cmunrm.ttf'); } @font-face { font-family: 'Computer Modern'; font-style: italic; font-weight: normal; src: url('./paper/cmunti.ttf'); } @font-face { font-family: 'Computer Modern'; font-style: normal; font-weight: bold; src: url('./paper/cmunbx.ttf'); } @font-face { font-family: 'Computer Modern'; font-style: italic; font-weight: bold; src: url('./paper/cmunbi.ttf'); } * { box-sizing: border-box; } html, body, #write { font-family: 'Computer Modern'; } h1, h2, h3, h4, h5, h6 { font-family: 'Computer Modern'; } h1 { font-size: 2rem; } h2 { font-size: 1.8rem; } h3 { font-size: 1.6rem; } h4 { font-size: 1.4rem; } h5 { font-size: 1.2rem; } h6 { font-size: 1rem; } html { font-size: 20px; } body, #write { max-width: 914px; text-align: justify; display: block; margin: auto; } p { font-size: 1rem; } a { color: var(--primary-color); } /* Stuff */ sup.md-footnote { background-color: transparent; color: var(--primary-color); padding: 1px; margin: 0; } code, .md-fences, .sourceCode { background: #f2f2f2; } .md-fences, pre.sourceCode { font-size: .7em; padding: .5rem; } .show-fences-line-number .md-fences { padding-left: .5rem; } blockquote { margin: 2rem .2rem; padding: .3rem .5rem; color: #6f6f6f; border-left: .4rem solid gray; } blockquote p { padding: .2rem 1.5rem; } mark { background: yellow; } figure { margin: .5rem auto; max-width: 100%; display: block; margin: auto; } figcaption { text-align: center; margin: .5rem auto; } img { max-width: 100%; display: block; margin: auto; } /* Print Mode and page breaks. WkhtmlToPDF does not work on @print mode */ @media (max-width: 210mm) { img { max-height: 8cm; } html { font-size: 16px; } div[title="pb"], page-break { display: block; page-break-after: always; break-after: page; } nav { font-size: .9rem; page-break-after: always; page-break-before: always; } nav a { color: black; } /* Move top-level headings to a new page on the right-hand side: */ h1, h2 { page-break-before: right; break-before: recto; } /* Override the previous ruleset for the very first heading: */ h1:first-of-type, section>h1:first-child { page-break-before: avoid; break-before: avoid; } /* Headings should not be the last paragraph on a page: */ h1, h2, h3, h4, h5, h6 { page-break-after: avoid; } /* Consecutive headings with deepening level should not be split across pages: */ h1+h2, h2+h3, h3+h4, h4+h5, h5+h6 { page-break-before: avoid; } }
paper.css
:root { --primary-color: #2875d9; } @font-face { font-family: 'Computer Modern'; font-style: normal; font-weight: normal; src: url('./paper/cmunrm.ttf'); } @font-face { font-family: 'Computer Modern'; font-style: italic; font-weight: normal; src: url('./paper/cmunti.ttf'); } @font-face { font-family: 'Computer Modern'; font-style: normal; font-weight: bold; src: url('./paper/cmunbx.ttf'); } @font-face { font-family: 'Computer Modern'; font-style: italic; font-weight: bold; src: url('./paper/cmunbi.ttf'); } * { box-sizing: border-box; } html, body, #write { font-family: 'Computer Modern'; } h1, h2, h3, h4, h5, h6 { font-family: 'Computer Modern'; } h1 { font-size: 2rem; } h2 { font-size: 1.8rem; } h3 { font-size: 1.6rem; } h4 { font-size: 1.4rem; } h5 { font-size: 1.2rem; } h6 { font-size: 1rem; } html { font-size: 20px; } body, #write { max-width: 914px; text-align: justify; display: block; margin: auto; } p { font-size: 1rem; } a { color: var(--primary-color); } /* Stuff */ sup.md-footnote { background-color: transparent; color: var(--primary-color); padding: 1px; margin: 0; } code, .md-fences, .sourceCode { background: #f2f2f2; } .md-fences, pre.sourceCode { font-size: .7em; padding: .5rem; } .show-fences-line-number .md-fences { padding-left: .5rem; } blockquote { margin: 2rem .2rem; padding: .3rem .5rem; color: #6f6f6f; border-left: .4rem solid gray; } blockquote p { padding: .2rem 1.5rem; } mark { background: yellow; } figure { margin: .5rem auto; max-width: 100%; display: block; margin: auto; } figcaption { text-align: center; margin: .5rem auto; } img { max-width: 100%; display: block; margin: auto; } /* Print Mode and page breaks. WkhtmlToPDF does not work on @print mode */ @media (max-width: 210mm) { img { max-height: 8cm; } html { font-size: 16px; } div[title="pb"], page-break { display: block; page-break-after: always; break-after: page; } nav { font-size: .9rem; page-break-after: always; page-break-before: always; } nav a { color: black; } /* Move top-level headings to a new page on the right-hand side: */ h1, h2 { page-break-before: right; break-before: recto; } /* Override the previous ruleset for the very first heading: */ h1:first-of-type, section>h1:first-child { page-break-before: avoid; break-before: avoid; } /* Headings should not be the last paragraph on a page: */ h1, h2, h3, h4, h5, h6 { page-break-after: avoid; } /* Consecutive headings with deepening level should not be split across pages: */ h1+h2, h2+h3, h3+h4, h4+h5, h5+h6 { page-break-before: avoid; } }
0.303319
0.132683
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* Horizontal enabled */ .autorepeatbutton-up[orient="horizontal"], .scrollbutton-up[orient="horizontal"] { list-style-image: url("chrome://global/skin/arrow/arrow-lft-sharp.gif"); -moz-image-region: auto; /* cut off inheritance */ } .autorepeatbutton-down[orient="horizontal"], .scrollbutton-down[orient="horizontal"] { list-style-image: url("chrome://global/skin/arrow/arrow-rit-sharp.gif"); -moz-image-region: auto; /* cut off inheritance */ } /* Horizontal disabled */ .autorepeatbutton-up[orient="horizontal"][disabled="true"], .scrollbutton-up[orient="horizontal"][disabled="true"] { list-style-image: url("chrome://global/skin/arrow/arrow-lft-dis.gif"); -moz-image-region: auto; /* cut off inheritance */ } .autorepeatbutton-down[orient="horizontal"][disabled="true"], .scrollbutton-down[orient="horizontal"][disabled="true"] { list-style-image: url("chrome://global/skin/arrow/arrow-rit-dis.gif"); -moz-image-region: auto; /* cut off inheritance */ } /* Vertical enabled */ .autorepeatbutton-up:not([orient="horizontal"]) { padding-bottom: 5px; } .autorepeatbutton-down:not([orient="horizontal"]) { padding-top: 5px; } .autorepeatbutton-up:not([orient="horizontal"]) > .autorepeatbutton-icon { -moz-transform: rotate(-90deg); } .autorepeatbutton-down:not([orient="horizontal"]) > .autorepeatbutton-icon { -moz-transform: rotate(90deg); } .scrollbutton-up { list-style-image: url("chrome://global/skin/arrow/arrow-up-sharp.gif"); -moz-image-region: auto; /* cut off inheritance */ } .scrollbutton-down { list-style-image: url("chrome://global/skin/arrow/arrow-dn-sharp.gif"); -moz-image-region: auto; /* cut off inheritance */ } /* Vertical disabled */ .autorepeatbutton-up[disabled="true"]:not([orient="horizontal"]), .autorepeatbutton-down[disabled="true"]:not([orient="horizontal"]) { -moz-image-region: rect(0, 24px, 10px, 16px); } .scrollbutton-up[disabled="true"] { list-style-image: url("chrome://global/skin/arrow/arrow-up-dis.gif"); -moz-image-region: auto; /* cut off inheritance */ } .scrollbutton-down[disabled="true"] { list-style-image: url("chrome://global/skin/arrow/arrow-dn-dis.gif"); -moz-image-region: auto; /* cut off inheritance */ } .scrollbutton-up > .toolbarbutton-text, .scrollbutton-down > .toolbarbutton-text { display: none; } autorepeatbutton { list-style-image: url("chrome://global/skin/menu/menu-arrow.png"); -moz-image-region: rect(0, 8px, 10px, 0); -moz-box-align: center; -moz-box-pack: center; padding: 1px; }
ElasticWolf.app/Contents/Frameworks/XUL.framework/Versions/13.0/chrome/toolkit/skin/classic/global/scrollbox.css
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* Horizontal enabled */ .autorepeatbutton-up[orient="horizontal"], .scrollbutton-up[orient="horizontal"] { list-style-image: url("chrome://global/skin/arrow/arrow-lft-sharp.gif"); -moz-image-region: auto; /* cut off inheritance */ } .autorepeatbutton-down[orient="horizontal"], .scrollbutton-down[orient="horizontal"] { list-style-image: url("chrome://global/skin/arrow/arrow-rit-sharp.gif"); -moz-image-region: auto; /* cut off inheritance */ } /* Horizontal disabled */ .autorepeatbutton-up[orient="horizontal"][disabled="true"], .scrollbutton-up[orient="horizontal"][disabled="true"] { list-style-image: url("chrome://global/skin/arrow/arrow-lft-dis.gif"); -moz-image-region: auto; /* cut off inheritance */ } .autorepeatbutton-down[orient="horizontal"][disabled="true"], .scrollbutton-down[orient="horizontal"][disabled="true"] { list-style-image: url("chrome://global/skin/arrow/arrow-rit-dis.gif"); -moz-image-region: auto; /* cut off inheritance */ } /* Vertical enabled */ .autorepeatbutton-up:not([orient="horizontal"]) { padding-bottom: 5px; } .autorepeatbutton-down:not([orient="horizontal"]) { padding-top: 5px; } .autorepeatbutton-up:not([orient="horizontal"]) > .autorepeatbutton-icon { -moz-transform: rotate(-90deg); } .autorepeatbutton-down:not([orient="horizontal"]) > .autorepeatbutton-icon { -moz-transform: rotate(90deg); } .scrollbutton-up { list-style-image: url("chrome://global/skin/arrow/arrow-up-sharp.gif"); -moz-image-region: auto; /* cut off inheritance */ } .scrollbutton-down { list-style-image: url("chrome://global/skin/arrow/arrow-dn-sharp.gif"); -moz-image-region: auto; /* cut off inheritance */ } /* Vertical disabled */ .autorepeatbutton-up[disabled="true"]:not([orient="horizontal"]), .autorepeatbutton-down[disabled="true"]:not([orient="horizontal"]) { -moz-image-region: rect(0, 24px, 10px, 16px); } .scrollbutton-up[disabled="true"] { list-style-image: url("chrome://global/skin/arrow/arrow-up-dis.gif"); -moz-image-region: auto; /* cut off inheritance */ } .scrollbutton-down[disabled="true"] { list-style-image: url("chrome://global/skin/arrow/arrow-dn-dis.gif"); -moz-image-region: auto; /* cut off inheritance */ } .scrollbutton-up > .toolbarbutton-text, .scrollbutton-down > .toolbarbutton-text { display: none; } autorepeatbutton { list-style-image: url("chrome://global/skin/menu/menu-arrow.png"); -moz-image-region: rect(0, 8px, 10px, 0); -moz-box-align: center; -moz-box-pack: center; padding: 1px; }
0.314156
0.09886
body { width: 100%; height: 100%; margin: 0; } .landing-div { width: 100%; min-height: 100%; margin: 0; background-color: #333433; overflow: auto; /*background-color: #333333;*/ } .logo-div { width: 100%; height: 6.875rem; max-width: 25rem; margin: 4.375rem 0 0 4.375rem; font-family: 'Open Sans script=all rev=2', 'Adobe Blank', serif; } .logo-img { width: 6.59375rem; height: 3.4375rem; display: inline-block; } .logo-brand-text { color: #d89747; font-size: 4.375rem; font-style: italic; font-weight: 300; margin: 0; text-align: center; display: inline-block; line-height: 3.4375rem; vertical-align: middle; } .logo-version-test { color: #d89747; font-size: 1.1875rem; margin: 0; line-height: 3.4375rem; font-weight: 300; text-align: center; } .column-position { width: 25rem; margin: 6.25rem auto 0 auto; } .column-content-holder { width: 100%; display: table; } .column-content-text { color: #CCC; font-size: 1.1875rem; font-weight: 300; text-align: left; font-family: 'Open Sans', sans-serif; } .column-content-text > strong { font-weight: 700; } .column-content-loading-div { display: none; width: 100%; vertical-align: middle; } .alert-fix { /* d84646 e33b3b */ background-color: transparent; border: 0.0625rem solid #d84646; color: #d84646; } .alert-fix > button { opacity: 1; text-shadow: none; } .alert-fix > button:hover { color: hsla(0,0%,60%,.2); } .input-inbed { border: 0; color: #CCC; /*background: rgba(0, 0, 0, 0.2);*/ background: #222; padding: 0.625rem 0.9375rem; text-align: center; } .input-inbed:focus { outline: 0; color: #CCC; background: #222; -webkit-box-shadow: 0 0 0 0.2rem rgba(233, 144, 2, 0.5); box-shadow: 0 0 0 0.2rem rgba(233, 144, 2, 0.5); } .sharp { border-radius: 0 !important; } .btn-glm { /*background-color: #d89747; color: #ffffff;*/ border-radius: 0 !important; } .btn-glm:focus { /*background-color: #E99002;*/ border-color: #aa6901; background-color: transparent; color: #bbb; } .btn-glm:hover { cursor: pointer; } .form-control { color: #CCCCCC; /*color: #d89747;*/ } .form-control:focus { color: #CCCCCC; /*color: #d89747;*/ } .c-invalid-feedback { width: 100%; margin-top: .25rem; font-size: 80%; color: #f44336; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } .loading { border-radius: 50%; width: 1.875rem; height: 1.875rem; border: .25rem solid rgba(255, 255, 255, 0.2); border-top-color: #d89747; animation: spin 1s infinite linear; margin: 0 auto 1rem auto; } .map-div { z-index: -1; position: absolute; top: 0; left: 0; } .outer { display: table; position: absolute; height: 100%; width: 100%; margin-top: -11.25rem; } .middle { display: table-cell; vertical-align: middle; } .inner { margin-left: auto; margin-right: auto; width: 25rem; }
src/css/custom.css
body { width: 100%; height: 100%; margin: 0; } .landing-div { width: 100%; min-height: 100%; margin: 0; background-color: #333433; overflow: auto; /*background-color: #333333;*/ } .logo-div { width: 100%; height: 6.875rem; max-width: 25rem; margin: 4.375rem 0 0 4.375rem; font-family: 'Open Sans script=all rev=2', 'Adobe Blank', serif; } .logo-img { width: 6.59375rem; height: 3.4375rem; display: inline-block; } .logo-brand-text { color: #d89747; font-size: 4.375rem; font-style: italic; font-weight: 300; margin: 0; text-align: center; display: inline-block; line-height: 3.4375rem; vertical-align: middle; } .logo-version-test { color: #d89747; font-size: 1.1875rem; margin: 0; line-height: 3.4375rem; font-weight: 300; text-align: center; } .column-position { width: 25rem; margin: 6.25rem auto 0 auto; } .column-content-holder { width: 100%; display: table; } .column-content-text { color: #CCC; font-size: 1.1875rem; font-weight: 300; text-align: left; font-family: 'Open Sans', sans-serif; } .column-content-text > strong { font-weight: 700; } .column-content-loading-div { display: none; width: 100%; vertical-align: middle; } .alert-fix { /* d84646 e33b3b */ background-color: transparent; border: 0.0625rem solid #d84646; color: #d84646; } .alert-fix > button { opacity: 1; text-shadow: none; } .alert-fix > button:hover { color: hsla(0,0%,60%,.2); } .input-inbed { border: 0; color: #CCC; /*background: rgba(0, 0, 0, 0.2);*/ background: #222; padding: 0.625rem 0.9375rem; text-align: center; } .input-inbed:focus { outline: 0; color: #CCC; background: #222; -webkit-box-shadow: 0 0 0 0.2rem rgba(233, 144, 2, 0.5); box-shadow: 0 0 0 0.2rem rgba(233, 144, 2, 0.5); } .sharp { border-radius: 0 !important; } .btn-glm { /*background-color: #d89747; color: #ffffff;*/ border-radius: 0 !important; } .btn-glm:focus { /*background-color: #E99002;*/ border-color: #aa6901; background-color: transparent; color: #bbb; } .btn-glm:hover { cursor: pointer; } .form-control { color: #CCCCCC; /*color: #d89747;*/ } .form-control:focus { color: #CCCCCC; /*color: #d89747;*/ } .c-invalid-feedback { width: 100%; margin-top: .25rem; font-size: 80%; color: #f44336; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } .loading { border-radius: 50%; width: 1.875rem; height: 1.875rem; border: .25rem solid rgba(255, 255, 255, 0.2); border-top-color: #d89747; animation: spin 1s infinite linear; margin: 0 auto 1rem auto; } .map-div { z-index: -1; position: absolute; top: 0; left: 0; } .outer { display: table; position: absolute; height: 100%; width: 100%; margin-top: -11.25rem; } .middle { display: table-cell; vertical-align: middle; } .inner { margin-left: auto; margin-right: auto; width: 25rem; }
0.532911
0.092565
body { margin: 0; padding: 0; font-family: sans-serif; background-color: #fafafa; } nav.navbar { background-color: #42A5F5; } .hidden { visibility: hidden; } .cloud_container { transition: opacity 1.15s ease-in-out; position: relative; display: flex; z-index: 00000000000; top: -110px; left: 75px; opacity: 0.9; } .cloud_container.hidden { opacity: 0; } .towers_container { margin-top: 10px; } .towers_container > .blocks_row { display: -webkit-flex; display: flex; } .block { background: #838385; height: 42px; width: 45px; border: 1px solid #e4e1e1; border-radius: 6px; } .block.hidden { opacity: 0; } .block.non_visible { visibility: hidden; } .block.water_block { transition: opacity 2.55s ease-in-out; opacity: 0.8; background-color: #5890AE; } .cloud_container .result_count { color: #69aaea; position: absolute; top: 120px; left: 222px; z-index: 9; font-size: 4.4em; } .row.center, .column.center { -webkit-align-items: center; align-items: center; -webkit-justify-content: center; justify-content: center; } .bigitem { -webkit-flex: 2 0 0; flex: 2 0 0; } input.bigitem { margin-right: 15px; } .smallitem { -webkit-flex: 1 0 0; flex: 1 0 0; } .flexcontainer { display: -webkit-flex; display: flex; justify-content: center; margin: 2rem auto; max-width: 750px; -webkit-flex-flow: row wrap; flex-flow: row wrap; -webkit-align-content: flex-end; align-content: flex-end; -webkit-align-items: center; align-items: flex-end; } .colored_container { background-color: #dce7f2; border: 1px solid #d0d8e0; min-height: 300px; max-height: 450px; box-shadow: -1px 2px 11px 0px #b7b7b7; border-radius: 3px; } .aboutPage .page-header { padding-bottom: 9px; margin: 40px 0 20px; border-bottom: 1px solid #eee; } .bigitem.form-control.error { border: 1px solid #ff033e; } .hint { display: flex; justify-content: center; margin-top: 29px; font-size: 17px; font-weight: 500; }
src/style/style.css
body { margin: 0; padding: 0; font-family: sans-serif; background-color: #fafafa; } nav.navbar { background-color: #42A5F5; } .hidden { visibility: hidden; } .cloud_container { transition: opacity 1.15s ease-in-out; position: relative; display: flex; z-index: 00000000000; top: -110px; left: 75px; opacity: 0.9; } .cloud_container.hidden { opacity: 0; } .towers_container { margin-top: 10px; } .towers_container > .blocks_row { display: -webkit-flex; display: flex; } .block { background: #838385; height: 42px; width: 45px; border: 1px solid #e4e1e1; border-radius: 6px; } .block.hidden { opacity: 0; } .block.non_visible { visibility: hidden; } .block.water_block { transition: opacity 2.55s ease-in-out; opacity: 0.8; background-color: #5890AE; } .cloud_container .result_count { color: #69aaea; position: absolute; top: 120px; left: 222px; z-index: 9; font-size: 4.4em; } .row.center, .column.center { -webkit-align-items: center; align-items: center; -webkit-justify-content: center; justify-content: center; } .bigitem { -webkit-flex: 2 0 0; flex: 2 0 0; } input.bigitem { margin-right: 15px; } .smallitem { -webkit-flex: 1 0 0; flex: 1 0 0; } .flexcontainer { display: -webkit-flex; display: flex; justify-content: center; margin: 2rem auto; max-width: 750px; -webkit-flex-flow: row wrap; flex-flow: row wrap; -webkit-align-content: flex-end; align-content: flex-end; -webkit-align-items: center; align-items: flex-end; } .colored_container { background-color: #dce7f2; border: 1px solid #d0d8e0; min-height: 300px; max-height: 450px; box-shadow: -1px 2px 11px 0px #b7b7b7; border-radius: 3px; } .aboutPage .page-header { padding-bottom: 9px; margin: 40px 0 20px; border-bottom: 1px solid #eee; } .bigitem.form-control.error { border: 1px solid #ff033e; } .hint { display: flex; justify-content: center; margin-top: 29px; font-size: 17px; font-weight: 500; }
0.51879
0.092893
@charset "UTF8"; @font-face { font-family: "IDroid"; src: url("../fontes/idroid.otf") format("opentype"); font-weight: normal; font-style: normal; } :root { --cor0: #91AD9E; --cor1: #8deeb8; --cor2: #84E1AD; --cor3: #3AD17E; --cor4: #007910; --cor5: #185533; } body { background-color: var(--cor1); } header { font-family: Arial, Helvetica, sans-serif; text-align: center; color: white; background-image: linear-gradient(to bottom, var(--cor3), var(--cor5)); padding: 15px; margin: -8px; } header > h1 { font-size: 26px; text-shadow: 2px 2px rgba(0, 0, 0, 0.404); } header > p { text-align: center; } nav { text-align: left; padding: 5px; padding-bottom: 0px; margin: 5px; margin-bottom: -2px; margin-top: 30px; } nav > a { color: white; text-decoration: none; font-weight: bold; padding: 10px; padding-bottom: 14px; } nav > a:hover { text-decoration: underline; background-color: var(--cor3); color: var(--cor5); border-radius: 5px; transition-duration: .5s; } main { padding-top: 10px; padding-right: 10px; padding-bottom: 10px; padding-left: 10px; margin-top: 9px; margin-right: 50px; margin-bottom: 5px; margin-left: 50px; border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; box-shadow: 2px 3px 9px 3px rgba(0, 0, 0, 0.404); background-color: white; } main p { text-align: justify; text-indent: 20px; line-height: 2em; } article#historia > h1 { color: var(--cor4); font-family: "IDroid", Times, serif } article#historia > p { font-family: Arial, Helvetica, sans-serif; text-align: justify; } article#historia > h2 { font-family: "IDroid", Times, serif; font-size: 20px; color: var(--cor4); background-image: linear-gradient(to right, #8deeb8, white); } a.sobre { text-decoration: none; color: #1A5C38; background-color: #54bd83; font-weight: bold; } a.sobre:hover { text-decoration: underline; color: var(--cor4); } main img { width: 100%; } main img.pequeno { display: block; max-width: 350px; margin: auto; } div.centralizar { text-align: center; } article > div > iframe { background-color: var(--cor5); margin: auto; } article > h3 { font-family: Arial, Helvetica, sans-serif; font-size: 18px; background-color: #2FA866; color: white; border-top-left-radius: 5px; border-top-right-radius: 5px; border-bottom: 0px; padding-top: 10px; padding-right: 20px; padding-bottom: 10px; padding-left: 20px; } div#detalhes { font-family: Arial, Helvetica, sans-serif; padding-top: 6px; padding-right: 2px; padding-bottom: 1px; padding-left: 19px; margin-top: -18px; margin-right: 0px; margin-bottom: 12px; margin-left: 0px; background-color: var(--cor0); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; } p { font-family: Arial, Helvetica, sans-serif; text-align: justify; } aside { box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.356); } aside > div#detalhes > ul { list-style-type: "\2714\00A0\00A0"; columns: 2; } div.video { background-color: var(--cor5); margin: 0px -10px 30px -10px; padding: 20px; padding-bottom: 58%; position: relative; } div.video > iframe { position: absolute; top: 5%; left: 5%; width: 90%; height: 90%; } aside > h3 { padding: 15px 1px 15px 10px; margin: 20px 0px 18px 0px; background-color: #2FA866; border-top-left-radius: 6px; border-top-right-radius: 6px; }
ex/ex025/estilo/style.css
@charset "UTF8"; @font-face { font-family: "IDroid"; src: url("../fontes/idroid.otf") format("opentype"); font-weight: normal; font-style: normal; } :root { --cor0: #91AD9E; --cor1: #8deeb8; --cor2: #84E1AD; --cor3: #3AD17E; --cor4: #007910; --cor5: #185533; } body { background-color: var(--cor1); } header { font-family: Arial, Helvetica, sans-serif; text-align: center; color: white; background-image: linear-gradient(to bottom, var(--cor3), var(--cor5)); padding: 15px; margin: -8px; } header > h1 { font-size: 26px; text-shadow: 2px 2px rgba(0, 0, 0, 0.404); } header > p { text-align: center; } nav { text-align: left; padding: 5px; padding-bottom: 0px; margin: 5px; margin-bottom: -2px; margin-top: 30px; } nav > a { color: white; text-decoration: none; font-weight: bold; padding: 10px; padding-bottom: 14px; } nav > a:hover { text-decoration: underline; background-color: var(--cor3); color: var(--cor5); border-radius: 5px; transition-duration: .5s; } main { padding-top: 10px; padding-right: 10px; padding-bottom: 10px; padding-left: 10px; margin-top: 9px; margin-right: 50px; margin-bottom: 5px; margin-left: 50px; border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; box-shadow: 2px 3px 9px 3px rgba(0, 0, 0, 0.404); background-color: white; } main p { text-align: justify; text-indent: 20px; line-height: 2em; } article#historia > h1 { color: var(--cor4); font-family: "IDroid", Times, serif } article#historia > p { font-family: Arial, Helvetica, sans-serif; text-align: justify; } article#historia > h2 { font-family: "IDroid", Times, serif; font-size: 20px; color: var(--cor4); background-image: linear-gradient(to right, #8deeb8, white); } a.sobre { text-decoration: none; color: #1A5C38; background-color: #54bd83; font-weight: bold; } a.sobre:hover { text-decoration: underline; color: var(--cor4); } main img { width: 100%; } main img.pequeno { display: block; max-width: 350px; margin: auto; } div.centralizar { text-align: center; } article > div > iframe { background-color: var(--cor5); margin: auto; } article > h3 { font-family: Arial, Helvetica, sans-serif; font-size: 18px; background-color: #2FA866; color: white; border-top-left-radius: 5px; border-top-right-radius: 5px; border-bottom: 0px; padding-top: 10px; padding-right: 20px; padding-bottom: 10px; padding-left: 20px; } div#detalhes { font-family: Arial, Helvetica, sans-serif; padding-top: 6px; padding-right: 2px; padding-bottom: 1px; padding-left: 19px; margin-top: -18px; margin-right: 0px; margin-bottom: 12px; margin-left: 0px; background-color: var(--cor0); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; } p { font-family: Arial, Helvetica, sans-serif; text-align: justify; } aside { box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.356); } aside > div#detalhes > ul { list-style-type: "\2714\00A0\00A0"; columns: 2; } div.video { background-color: var(--cor5); margin: 0px -10px 30px -10px; padding: 20px; padding-bottom: 58%; position: relative; } div.video > iframe { position: absolute; top: 5%; left: 5%; width: 90%; height: 90%; } aside > h3 { padding: 15px 1px 15px 10px; margin: 20px 0px 18px 0px; background-color: #2FA866; border-top-left-radius: 6px; border-top-right-radius: 6px; }
0.414425
0.115511
body, h1, h2, h3, h4, h5, h6, p, blockquote, pre, hr, dl, dd, ol, ul, figure { margin: 0; padding: 0; } /** * Basic styling */ body { font: 400 16px/1.5 "PT Sans", Helvetica, Arial, sans-serif; color: #111; background-color: #fdfdfd; -webkit-text-size-adjust: 100%; -webkit-font-feature-settings: "kern" 1; -moz-font-feature-settings: "kern" 1; -o-font-feature-settings: "kern" 1; font-feature-settings: "kern" 1; font-kerning: normal; } /** * Set `margin-bottom` to maintain vertical rhythm */ h1, h2, h3, h4, h5, h6, p, blockquote, pre, ul, ol, dl, figure { margin-bottom: 12.5px; } /** * Images */ img { max-width: 100%; vertical-align: middle; } /** * Figures */ figure > img { display: block; } figcaption { font-size: 14px; } /** * Lists */ ul, ol { margin-left: 25px; } li > ul, li > ol { margin-bottom: 0; } /** * Headings */ h1, h2, h3, h4, h5, h6 { font-weight: 400; } /** * Links */ a { color: #37ADB5 !important; text-decoration: none; } a:visited { color: #25757a; } a:hover { color: #37ADB5 !important; border-bottom: 1px dotted black; } a.page-link { color: #aaa !important; } a.page-link:hover { color: #111; border-bottom: 1px dotted black; } a.postLink { color: black !important; } a.postLink:hover { border-bottom: 1px dotted black; } a.postLink:visited { color: "crimson" !important; } a.post-title-link { color: black !important; } a.post-title-link:hover { border-bottom: 1px dotted black !important; } a.post-title-link:visited { color: "crimson" !important; } a.cookies-eu-more-link { color: #aaa !important; } /** * Blockquotes */ blockquote { color: #828282; border-left: 4px solid #e8e8e8; padding-left: 12.5px; font-size: 18px; letter-spacing: -1px; font-style: italic; } blockquote > :last-child { margin-bottom: 0; } /** * Code formatting */ pre, code { font-size: 12px; font-family: "menlo", consolas, monospace; border: 1px solid #e8e8e8; border-radius: 3px; } code { padding: 1px 5px; } pre { padding: 8px 12px; overflow-x: auto; } pre > code { border: 0; padding-right: 0; padding-left: 0; } /** * Wrapper */ .wrapper { max-width: -webkit-calc(900px - (25px * 2)); max-width: calc(900px - (25px * 2)); margin-right: auto; margin-left: auto; padding-right: 25px; padding-left: 25px; } @media screen and (max-width: 800px) { .wrapper { max-width: -webkit-calc(900px - (25px)); max-width: calc(900px - (25px)); padding-right: 12.5px; padding-left: 12.5px; } } /** * Clearfix */ .wrapper:after, .footer-col-wrapper:after { content: ""; display: table; clear: both; } /** * Icons */ .icon > svg { display: inline-block; width: 16px; height: 16px; vertical-align: middle; } .icon > svg path { fill: #828282; } .post { font-family: "Source Sans Pro"; font-size: 18px; font-weight: 300; padding-top: 0; } .home { padding-bottom: 5em; } .download { padding: 10px; } .authorKeyword { text-transform: uppercase; font-size: 16px; letter-spacing: 2px; text-indent: 2px; padding-top: 0.5em; } .writtenBy { letter-spacing: 0; text-indent: 0; text-transform: uppercase; } .archive-intro { font-size: 14px; text-transform: uppercase; letter-spacing: 2px; text-indent: 2px; } .archiveIntro { text-align: center; } .hint { text-transform: uppercase; font-size: 11px; letter-spacing: 2px; text-indent: 2px; } .example { font-family: 'Menlo'; padding: 10px; } .manual { text-transform: uppercase; font-size: 16px; letter-spacing: 2px; text-indent: 2px; } .postContent { padding-top: 3.5em; text-align: center; } .postDate { float: left; text-transform: uppercase; font-family: "Source Sans Pro"; font-size: 16px; font-weight: 300; letter-spacing: 2px; text-indent: 2px; } .postTag { float: right; } .postTitle { font-weight: 400; text-align: center; text-transform: uppercase; letter-spacing: 2px; text-indent: 3px; } /** * Site header */ .site-header { border-top: 5px solid #424242; border-bottom: 1px solid #e8e8e8; min-height: 56px; position: relative; } .site-title { font-size: 56px; font-weight: 100; font-family: 'PT Sans'; text-transform: capitalize; font-weight: 500; margin-top: 1em; } .site-title, .site-title:visited { color: #424242; } .site-description { font-size: 14px; letter-spacing: 1px; text-indent: 6px; font-family: 'PT Sans'; } .exclamationMark { padding-left: 2em; padding-right: 2em; } .site-navigation { color: #aaa; text-transform: uppercase; font-size: 14px; letter-spacing: 2px; text-indent: 6px; text-align: center; font-family: 'Josefin Sans'; font-weight: 300; padding-top: 5em; } .page-title { text-transform: uppercase; letter-spacing: 2px; text-indent: 2px; font-family: "PT Sans"; font-size: 12px; } .page-tagline { font-size: 18px; font-family: "PT Sans"; color: #aaaaaa; text-align: center; text-transform: lowercase; } .page-link { color: #aaaaaa; } .site-nav .page-link { color: #111; line-height: 1.5; } .site-nav .page-link:not(:last-child) { margin-right: 20px; } @media screen and (max-width: 600px) { .site-nav { position: absolute; top: 9px; right: 12.5px; background-color: #fdfdfd; border: 1px solid #e8e8e8; border-radius: 5px; text-align: right; } .site-nav .menu-icon { display: block; float: right; width: 36px; height: 26px; line-height: 0; padding-top: 10px; text-align: center; } .site-nav .menu-icon > svg { width: 18px; height: 15px; } .site-nav .menu-icon > svg path { fill: #424242; } .site-nav .trigger { clear: both; display: none; } .site-nav:hover .trigger { display: block; padding-bottom: 5px; } .site-nav .page-link { display: block; padding: 5px 10px; margin-left: 20px; } .site-nav .page-link:not(:last-child) { margin-right: 0; } } /** * Site footer */ .site-footer { border-top: 1px solid #e8e8e8; padding: 25px 0; } .footer-heading { font-size: 18px; margin-bottom: 12.5px; } .contact-list, .social-media-list { list-style: none; margin-left: 0; } .small-site-title { font-family: "PT Sans"; } .footer-col-wrapper { font-size: 15px; color: #828282; margin-left: -12.5px; } .footer-content { font-family: "Josefin Sans"; font-weight: 300; letter-spacing: 1px; } .footer-col { float: left; margin-bottom: 12.5px; padding-left: 12.5px; } .footer-col-1 { width: -webkit-calc(35% - (25px / 2)); width: calc(35% - (25px / 2)); } .footer-col-2 { width: -webkit-calc(20% - (25px / 2)); width: calc(20% - (25px / 2)); } .footer-col-3 { width: -webkit-calc(45% - (25px / 2)); width: calc(45% - (25px / 2)); } @media screen and (max-width: 800px) { .footer-col-1, .footer-col-2 { width: -webkit-calc(50% - (25px / 2)); width: calc(50% - (25px / 2)); } .footer-col-3 { width: -webkit-calc(100% - (25px / 2)); width: calc(100% - (25px / 2)); } } @media screen and (max-width: 600px) { .footer-col { float: none; width: -webkit-calc(100% - (25px / 2)); width: calc(100% - (25px / 2)); } } /** * Page content */ .page-content { padding: 0; } .page-heading { font-size: 20px; } .post-list { margin-left: 0; list-style: none; } .post-list > li { margin-bottom: 25px; } .post-meta { font-size: 14px; color: #828282; text-transform: uppercase; font-size: 16px; } .post-link { display: block; font-size: 24px; } /** * Posts */ .post-header { margin-bottom: 25px; } .post-title { font-size: 36px; text-align: center; font-family: "PT Sans"; font-weight: 900; } @media screen and (max-width: 800px) { .post-title { font-size: 36px; } } .post-content { margin-bottom: 25px; padding-bottom: 3em !important; } .post-content p { font-size: 1.2rem; } .post-content h2 { font-size: 32px; } @media screen and (max-width: 800px) { .post-content h2 { font-size: 28px; } } .post-content h3 { font-size: 26px; } @media screen and (max-width: 800px) { .post-content h3 { font-size: 22px; } } .post-content h4 { font-size: 20px; } @media screen and (max-width: 800px) { .post-content h4 { font-size: 18px; } } /** * Syntax highlighting styles */ /* Name: Base16 Solarized Light Author: <NAME> (http://ethanschoonover.com/solarized) Pygments template by <NAME> (https://github.com/idleberg) Created with Base16 Builder by <NAME> (https://github.com/chriskempson/base16-builder) */ .highlight .hll { background-color: #eee8d5; } .highlight { background: #fdf6e3; color: #002b36; } .highlight .c { color: #839496; } /* Comment */ .highlight .err { color: #dc322f; } /* Error */ .highlight .k { color: #6c71c4; } /* Keyword */ .highlight .l { color: #cb4b16; } /* Literal */ .highlight .n { color: #002b36; } /* Name */ .highlight .o { color: #2aa198; } /* Operator */ .highlight .p { color: #002b36; } /* Punctuation */ .highlight .cm { color: #839496; } /* Comment.Multiline */ .highlight .cp { color: #839496; } /* Comment.Preproc */ .highlight .c1 { color: #839496; } /* Comment.Single */ .highlight .cs { color: #839496; } /* Comment.Special */ .highlight .gd { color: #dc322f; } /* Generic.Deleted */ .highlight .ge { font-style: italic; } /* Generic.Emph */ .highlight .gh { color: #002b36; font-weight: bold; } /* Generic.Heading */ .highlight .gi { color: #859900; } /* Generic.Inserted */ .highlight .gp { color: #839496; font-weight: bold; } /* Generic.Prompt */ .highlight .gs { font-weight: bold; } /* Generic.Strong */ .highlight .gu { color: #2aa198; font-weight: bold; } /* Generic.Subheading */ .highlight .kc { color: #6c71c4; } /* Keyword.Constant */ .highlight .kd { color: #6c71c4; } /* Keyword.Declaration */ .highlight .kn { color: #2aa198; } /* Keyword.Namespace */ .highlight .kp { color: #6c71c4; } /* Keyword.Pseudo */ .highlight .kr { color: #6c71c4; } /* Keyword.Reserved */ .highlight .kt { color: #b58900; } /* Keyword.Type */ .highlight .ld { color: #859900; } /* Literal.Date */ .highlight .m { color: #cb4b16; } /* Literal.Number */ .highlight .s { color: #859900; } /* Literal.String */ .highlight .na { color: #268bd2; } /* Name.Attribute */ .highlight .nb { color: #002b36; } /* Name.Builtin */ .highlight .nc { color: #b58900; } /* Name.Class */ .highlight .no { color: #dc322f; } /* Name.Constant */ .highlight .nd { color: #2aa198; } /* Name.Decorator */ .highlight .ni { color: #002b36; } /* Name.Entity */ .highlight .ne { color: #dc322f; } /* Name.Exception */ .highlight .nf { color: #268bd2; } /* Name.Function */ .highlight .nl { color: #002b36; } /* Name.Label */ .highlight .nn { color: #b58900; } /* Name.Namespace */ .highlight .nx { color: #268bd2; } /* Name.Other */ .highlight .py { color: #002b36; } /* Name.Property */ .highlight .nt { color: #2aa198; } /* Name.Tag */ .highlight .nv { color: #dc322f; } /* Name.Variable */ .highlight .ow { color: #2aa198; } /* Operator.Word */ .highlight .w { color: #002b36; } /* Text.Whitespace */ .highlight .mf { color: #cb4b16; } /* Literal.Number.Float */ .highlight .mh { color: #cb4b16; } /* Literal.Number.Hex */ .highlight .mi { color: #cb4b16; } /* Literal.Number.Integer */ .highlight .mo { color: #cb4b16; } /* Literal.Number.Oct */ .highlight .sb { color: #859900; } /* Literal.String.Backtick */ .highlight .sc { color: #002b36; } /* Literal.String.Char */ .highlight .sd { color: #839496; } /* Literal.String.Doc */ .highlight .s2 { color: #859900; } /* Literal.String.Double */ .highlight .se { color: #cb4b16; } /* Literal.String.Escape */ .highlight .sh { color: #859900; } /* Literal.String.Heredoc */ .highlight .si { color: #cb4b16; } /* Literal.String.Interpol */ .highlight .sx { color: #859900; } /* Literal.String.Other */ .highlight .sr { color: #859900; } /* Literal.String.Regex */ .highlight .s1 { color: #859900; } /* Literal.String.Single */ .highlight .ss { color: #859900; } /* Literal.String.Symbol */ .highlight .bp { color: #002b36; } /* Name.Builtin.Pseudo */ .highlight .vc { color: #dc322f; } /* Name.Variable.Class */ .highlight .vg { color: #dc322f; } /* Name.Variable.Global */ .highlight .vi { color: #dc322f; } /* Name.Variable.Instance */ .highlight .il { color: #cb4b16; } /* Literal.Number.Integer.Long */ img + em { display: block; text-align: center; } #cookies-eu-banner { background: #828282; color: #fff; padding: 6px; font-size: 13px; text-align: center; position: fixed; bottom: 0; left: 0; width: 100%; } #cookies-eu-more, #cookies-eu-accept, #cookies-eu-reject { line-height: normal; display: inline-block; text-decoration: none; background: #424242; color: #fff; border: 1px solid #424242; border-radius: 2px; cursor: pointer; padding: 4px 7px; margin: 0px 0; font-size: 13px; font-weight: bold; transition: background 0.07s, color 0.07s, border-color 0.07s; } #cookies-eu-more:hover, #cookies-eu-more:focus, #cookies-eu-accept:hover, #cookies-eu-accept:focus { background: #292929; } #cookies-eu-more { margin-left: 7px; } #cookies-eu-accept { padding-bottom: 6px; }
_site/css/style.css
body, h1, h2, h3, h4, h5, h6, p, blockquote, pre, hr, dl, dd, ol, ul, figure { margin: 0; padding: 0; } /** * Basic styling */ body { font: 400 16px/1.5 "PT Sans", Helvetica, Arial, sans-serif; color: #111; background-color: #fdfdfd; -webkit-text-size-adjust: 100%; -webkit-font-feature-settings: "kern" 1; -moz-font-feature-settings: "kern" 1; -o-font-feature-settings: "kern" 1; font-feature-settings: "kern" 1; font-kerning: normal; } /** * Set `margin-bottom` to maintain vertical rhythm */ h1, h2, h3, h4, h5, h6, p, blockquote, pre, ul, ol, dl, figure { margin-bottom: 12.5px; } /** * Images */ img { max-width: 100%; vertical-align: middle; } /** * Figures */ figure > img { display: block; } figcaption { font-size: 14px; } /** * Lists */ ul, ol { margin-left: 25px; } li > ul, li > ol { margin-bottom: 0; } /** * Headings */ h1, h2, h3, h4, h5, h6 { font-weight: 400; } /** * Links */ a { color: #37ADB5 !important; text-decoration: none; } a:visited { color: #25757a; } a:hover { color: #37ADB5 !important; border-bottom: 1px dotted black; } a.page-link { color: #aaa !important; } a.page-link:hover { color: #111; border-bottom: 1px dotted black; } a.postLink { color: black !important; } a.postLink:hover { border-bottom: 1px dotted black; } a.postLink:visited { color: "crimson" !important; } a.post-title-link { color: black !important; } a.post-title-link:hover { border-bottom: 1px dotted black !important; } a.post-title-link:visited { color: "crimson" !important; } a.cookies-eu-more-link { color: #aaa !important; } /** * Blockquotes */ blockquote { color: #828282; border-left: 4px solid #e8e8e8; padding-left: 12.5px; font-size: 18px; letter-spacing: -1px; font-style: italic; } blockquote > :last-child { margin-bottom: 0; } /** * Code formatting */ pre, code { font-size: 12px; font-family: "menlo", consolas, monospace; border: 1px solid #e8e8e8; border-radius: 3px; } code { padding: 1px 5px; } pre { padding: 8px 12px; overflow-x: auto; } pre > code { border: 0; padding-right: 0; padding-left: 0; } /** * Wrapper */ .wrapper { max-width: -webkit-calc(900px - (25px * 2)); max-width: calc(900px - (25px * 2)); margin-right: auto; margin-left: auto; padding-right: 25px; padding-left: 25px; } @media screen and (max-width: 800px) { .wrapper { max-width: -webkit-calc(900px - (25px)); max-width: calc(900px - (25px)); padding-right: 12.5px; padding-left: 12.5px; } } /** * Clearfix */ .wrapper:after, .footer-col-wrapper:after { content: ""; display: table; clear: both; } /** * Icons */ .icon > svg { display: inline-block; width: 16px; height: 16px; vertical-align: middle; } .icon > svg path { fill: #828282; } .post { font-family: "Source Sans Pro"; font-size: 18px; font-weight: 300; padding-top: 0; } .home { padding-bottom: 5em; } .download { padding: 10px; } .authorKeyword { text-transform: uppercase; font-size: 16px; letter-spacing: 2px; text-indent: 2px; padding-top: 0.5em; } .writtenBy { letter-spacing: 0; text-indent: 0; text-transform: uppercase; } .archive-intro { font-size: 14px; text-transform: uppercase; letter-spacing: 2px; text-indent: 2px; } .archiveIntro { text-align: center; } .hint { text-transform: uppercase; font-size: 11px; letter-spacing: 2px; text-indent: 2px; } .example { font-family: 'Menlo'; padding: 10px; } .manual { text-transform: uppercase; font-size: 16px; letter-spacing: 2px; text-indent: 2px; } .postContent { padding-top: 3.5em; text-align: center; } .postDate { float: left; text-transform: uppercase; font-family: "Source Sans Pro"; font-size: 16px; font-weight: 300; letter-spacing: 2px; text-indent: 2px; } .postTag { float: right; } .postTitle { font-weight: 400; text-align: center; text-transform: uppercase; letter-spacing: 2px; text-indent: 3px; } /** * Site header */ .site-header { border-top: 5px solid #424242; border-bottom: 1px solid #e8e8e8; min-height: 56px; position: relative; } .site-title { font-size: 56px; font-weight: 100; font-family: 'PT Sans'; text-transform: capitalize; font-weight: 500; margin-top: 1em; } .site-title, .site-title:visited { color: #424242; } .site-description { font-size: 14px; letter-spacing: 1px; text-indent: 6px; font-family: 'PT Sans'; } .exclamationMark { padding-left: 2em; padding-right: 2em; } .site-navigation { color: #aaa; text-transform: uppercase; font-size: 14px; letter-spacing: 2px; text-indent: 6px; text-align: center; font-family: 'Josefin Sans'; font-weight: 300; padding-top: 5em; } .page-title { text-transform: uppercase; letter-spacing: 2px; text-indent: 2px; font-family: "PT Sans"; font-size: 12px; } .page-tagline { font-size: 18px; font-family: "PT Sans"; color: #aaaaaa; text-align: center; text-transform: lowercase; } .page-link { color: #aaaaaa; } .site-nav .page-link { color: #111; line-height: 1.5; } .site-nav .page-link:not(:last-child) { margin-right: 20px; } @media screen and (max-width: 600px) { .site-nav { position: absolute; top: 9px; right: 12.5px; background-color: #fdfdfd; border: 1px solid #e8e8e8; border-radius: 5px; text-align: right; } .site-nav .menu-icon { display: block; float: right; width: 36px; height: 26px; line-height: 0; padding-top: 10px; text-align: center; } .site-nav .menu-icon > svg { width: 18px; height: 15px; } .site-nav .menu-icon > svg path { fill: #424242; } .site-nav .trigger { clear: both; display: none; } .site-nav:hover .trigger { display: block; padding-bottom: 5px; } .site-nav .page-link { display: block; padding: 5px 10px; margin-left: 20px; } .site-nav .page-link:not(:last-child) { margin-right: 0; } } /** * Site footer */ .site-footer { border-top: 1px solid #e8e8e8; padding: 25px 0; } .footer-heading { font-size: 18px; margin-bottom: 12.5px; } .contact-list, .social-media-list { list-style: none; margin-left: 0; } .small-site-title { font-family: "PT Sans"; } .footer-col-wrapper { font-size: 15px; color: #828282; margin-left: -12.5px; } .footer-content { font-family: "Josefin Sans"; font-weight: 300; letter-spacing: 1px; } .footer-col { float: left; margin-bottom: 12.5px; padding-left: 12.5px; } .footer-col-1 { width: -webkit-calc(35% - (25px / 2)); width: calc(35% - (25px / 2)); } .footer-col-2 { width: -webkit-calc(20% - (25px / 2)); width: calc(20% - (25px / 2)); } .footer-col-3 { width: -webkit-calc(45% - (25px / 2)); width: calc(45% - (25px / 2)); } @media screen and (max-width: 800px) { .footer-col-1, .footer-col-2 { width: -webkit-calc(50% - (25px / 2)); width: calc(50% - (25px / 2)); } .footer-col-3 { width: -webkit-calc(100% - (25px / 2)); width: calc(100% - (25px / 2)); } } @media screen and (max-width: 600px) { .footer-col { float: none; width: -webkit-calc(100% - (25px / 2)); width: calc(100% - (25px / 2)); } } /** * Page content */ .page-content { padding: 0; } .page-heading { font-size: 20px; } .post-list { margin-left: 0; list-style: none; } .post-list > li { margin-bottom: 25px; } .post-meta { font-size: 14px; color: #828282; text-transform: uppercase; font-size: 16px; } .post-link { display: block; font-size: 24px; } /** * Posts */ .post-header { margin-bottom: 25px; } .post-title { font-size: 36px; text-align: center; font-family: "PT Sans"; font-weight: 900; } @media screen and (max-width: 800px) { .post-title { font-size: 36px; } } .post-content { margin-bottom: 25px; padding-bottom: 3em !important; } .post-content p { font-size: 1.2rem; } .post-content h2 { font-size: 32px; } @media screen and (max-width: 800px) { .post-content h2 { font-size: 28px; } } .post-content h3 { font-size: 26px; } @media screen and (max-width: 800px) { .post-content h3 { font-size: 22px; } } .post-content h4 { font-size: 20px; } @media screen and (max-width: 800px) { .post-content h4 { font-size: 18px; } } /** * Syntax highlighting styles */ /* Name: Base16 Solarized Light Author: <NAME> (http://ethanschoonover.com/solarized) Pygments template by <NAME> (https://github.com/idleberg) Created with Base16 Builder by <NAME> (https://github.com/chriskempson/base16-builder) */ .highlight .hll { background-color: #eee8d5; } .highlight { background: #fdf6e3; color: #002b36; } .highlight .c { color: #839496; } /* Comment */ .highlight .err { color: #dc322f; } /* Error */ .highlight .k { color: #6c71c4; } /* Keyword */ .highlight .l { color: #cb4b16; } /* Literal */ .highlight .n { color: #002b36; } /* Name */ .highlight .o { color: #2aa198; } /* Operator */ .highlight .p { color: #002b36; } /* Punctuation */ .highlight .cm { color: #839496; } /* Comment.Multiline */ .highlight .cp { color: #839496; } /* Comment.Preproc */ .highlight .c1 { color: #839496; } /* Comment.Single */ .highlight .cs { color: #839496; } /* Comment.Special */ .highlight .gd { color: #dc322f; } /* Generic.Deleted */ .highlight .ge { font-style: italic; } /* Generic.Emph */ .highlight .gh { color: #002b36; font-weight: bold; } /* Generic.Heading */ .highlight .gi { color: #859900; } /* Generic.Inserted */ .highlight .gp { color: #839496; font-weight: bold; } /* Generic.Prompt */ .highlight .gs { font-weight: bold; } /* Generic.Strong */ .highlight .gu { color: #2aa198; font-weight: bold; } /* Generic.Subheading */ .highlight .kc { color: #6c71c4; } /* Keyword.Constant */ .highlight .kd { color: #6c71c4; } /* Keyword.Declaration */ .highlight .kn { color: #2aa198; } /* Keyword.Namespace */ .highlight .kp { color: #6c71c4; } /* Keyword.Pseudo */ .highlight .kr { color: #6c71c4; } /* Keyword.Reserved */ .highlight .kt { color: #b58900; } /* Keyword.Type */ .highlight .ld { color: #859900; } /* Literal.Date */ .highlight .m { color: #cb4b16; } /* Literal.Number */ .highlight .s { color: #859900; } /* Literal.String */ .highlight .na { color: #268bd2; } /* Name.Attribute */ .highlight .nb { color: #002b36; } /* Name.Builtin */ .highlight .nc { color: #b58900; } /* Name.Class */ .highlight .no { color: #dc322f; } /* Name.Constant */ .highlight .nd { color: #2aa198; } /* Name.Decorator */ .highlight .ni { color: #002b36; } /* Name.Entity */ .highlight .ne { color: #dc322f; } /* Name.Exception */ .highlight .nf { color: #268bd2; } /* Name.Function */ .highlight .nl { color: #002b36; } /* Name.Label */ .highlight .nn { color: #b58900; } /* Name.Namespace */ .highlight .nx { color: #268bd2; } /* Name.Other */ .highlight .py { color: #002b36; } /* Name.Property */ .highlight .nt { color: #2aa198; } /* Name.Tag */ .highlight .nv { color: #dc322f; } /* Name.Variable */ .highlight .ow { color: #2aa198; } /* Operator.Word */ .highlight .w { color: #002b36; } /* Text.Whitespace */ .highlight .mf { color: #cb4b16; } /* Literal.Number.Float */ .highlight .mh { color: #cb4b16; } /* Literal.Number.Hex */ .highlight .mi { color: #cb4b16; } /* Literal.Number.Integer */ .highlight .mo { color: #cb4b16; } /* Literal.Number.Oct */ .highlight .sb { color: #859900; } /* Literal.String.Backtick */ .highlight .sc { color: #002b36; } /* Literal.String.Char */ .highlight .sd { color: #839496; } /* Literal.String.Doc */ .highlight .s2 { color: #859900; } /* Literal.String.Double */ .highlight .se { color: #cb4b16; } /* Literal.String.Escape */ .highlight .sh { color: #859900; } /* Literal.String.Heredoc */ .highlight .si { color: #cb4b16; } /* Literal.String.Interpol */ .highlight .sx { color: #859900; } /* Literal.String.Other */ .highlight .sr { color: #859900; } /* Literal.String.Regex */ .highlight .s1 { color: #859900; } /* Literal.String.Single */ .highlight .ss { color: #859900; } /* Literal.String.Symbol */ .highlight .bp { color: #002b36; } /* Name.Builtin.Pseudo */ .highlight .vc { color: #dc322f; } /* Name.Variable.Class */ .highlight .vg { color: #dc322f; } /* Name.Variable.Global */ .highlight .vi { color: #dc322f; } /* Name.Variable.Instance */ .highlight .il { color: #cb4b16; } /* Literal.Number.Integer.Long */ img + em { display: block; text-align: center; } #cookies-eu-banner { background: #828282; color: #fff; padding: 6px; font-size: 13px; text-align: center; position: fixed; bottom: 0; left: 0; width: 100%; } #cookies-eu-more, #cookies-eu-accept, #cookies-eu-reject { line-height: normal; display: inline-block; text-decoration: none; background: #424242; color: #fff; border: 1px solid #424242; border-radius: 2px; cursor: pointer; padding: 4px 7px; margin: 0px 0; font-size: 13px; font-weight: bold; transition: background 0.07s, color 0.07s, border-color 0.07s; } #cookies-eu-more:hover, #cookies-eu-more:focus, #cookies-eu-accept:hover, #cookies-eu-accept:focus { background: #292929; } #cookies-eu-more { margin-left: 7px; } #cookies-eu-accept { padding-bottom: 6px; }
0.45181
0.101545
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed&display=swap'); :root { --header-height: 3rem; --font-semi: 600; } /*===== COLORS =====*/ :root { --first-color: #845fe6; --second-color: #525252; --third-color: #444444; --fourth-color: #f3f3f3; --fifth-color: #FFD875; --sixth-color: #FFBD59; --seventh-color: #ffffff; --eighth-color: #4d7cff; --ninth-color: #ff4b4b; --tenth-color: #ffb03a; --eleventh-color: #000000; } :root { --body-font: 'Poppins', sans-serif; --big-font-size: 2rem; --bigger-font-size: 4.5rem --h2-font-size: 1.25rem; --normal-font-size: 0.938rem; } @media screen and (min-width: 768px) { :root { --big-font-size: 3.5rem; --bigger-font-size: 4.5rem; --h2-font-size: 2rem; --normal-font-size: 1rem; } } /* ===== MARGIN-BOTTOM ===== */ :root { --mb-1: 0.5rem; --mb-2: 1rem; --mb-3: 1.5rem; --mb-4: 2rem; --mb-5: 2.5rem; --mb-6: 3rem; --mb-7: 4rem; --mb-8: 5rem; } /*===== z-index =====*/ :root { --z-back: -10; --z-normal: 1; --z-tooltip: 10; --z-fixed: 100; } /*===== BASE =====*/ *, ::before, ::after { box-sizing: border-box; } html { scroll-behavior: smooth; } body { margin: var(--header-height) 0 0 0; font-family: var(--body-font); font-size: var(--normal-font-size); color: var(--second-color); background-color: var(--fourth-color); } h1, h2, p { margin: 0; } ul { margin: 0; padding: 0; list-style: none; } a { text-decoration: none; } img { max-width: 100%; height: auto; display: block; } /* .section-title { position: relative; font-size: var(--big-font-size); color: var(--first-color); margin-top: var(--mb-1); margin-bottom: var(--mb-4); text-align: center; /* } */ /* .section-title::after { position: absolute; content: ''; width: 64px; height: 0.18rem; left: 0; right: 0; margin: auto; top: 4rem; background-color: var(--first-color); } */ .section { padding-bottom: 2rem; } /*===== LAYOUT =====*/ .bd-grid { max-width: 1024px; display: grid; grid-template-columns: 100%; grid-column-gap: 2rem; width: calc(100% - 2rem); margin-left: var(--mb-2); margin-right: var(--mb-2); } .l-header { width: 100%; position: fixed; top: 0; left: 0; z-index: var(--z-fixed); background-color: var(--fourth-color); box-shadow: 0 1px 4px rgba(146, 161, 176, 0.15); } /*===== NAV =====*/ @media (max-width: 768px) { .nav__menu { position: fixed; top: var(--header-height); right: -100%; width: 80%; height: 100%; padding: 2rem; background-color: var(--second-color); transition: 0.5s; } } .nav { height: var(--header-height); display: flex; justify-content: space-between; align-items: center; font-weight: var(--font-semi); } .nav__item { margin-bottom: var(--mb-4); } .nav__link { position: relative; color: #fff; } .nav__link:hover { position: relative; } /* .nav__link:hover::after { position: absolute; content: ''; width: 100%; height: 0.18rem; left: 0; top: 2rem; background-color: var(--first-color); } */ .nav__link:hover { color: #ffa959; background-size: 105% 100%; transition-duration: 0.9s; transform: translate(5px) rotate(-2deg); transition: all .4s ease-in; } .nav__logo { color: var(--second-color); position: relative; font-size: 20px; } .nav__toggle { color: var(--second-color); font-size: 1.5rem; cursor: pointer; } /*=== ACTIVE MENU ===*/ .active::after { position: absolute; content: ''; height: 45px; width: 100%; left: 0; top: .5rem; background-image: url(../img/navbar_brush3.png); background-size: 100% 100%; background-repeat: no-repeat; transform: translate(5px) rotate(-1deg); opacity: 80%; } /*=== SHOW MENU ===*/ .show { right: 0; } /*=== WAVE ===*/ .wave { width: 50px; margin-left: 305px; margin-top: -62px; margin-bottom: 10px; /*=== ANIMATION ===*/ animation-name: wave-animation; animation-duration: 2.6s; transform-origin: 40% 90%; animation: wave-animation 2.1s 0.6s; } .wave:hover { animation: wave-animation 2.1s 0.6s infinite; cursor: pointer; } /*===== HOME =====*/ .home { height: calc(100vh - 3rem); row-gap: 1rem; } .home__data { align-self: center; margin-top: 120px; } .home__title { font-size: var(--big-font-size); margin-bottom: var(--mb-1); } .home__name-color { color: var(--third-color); } .home__name-color:hover { color: var(--tenth-color); background-size: 105% 100%; transition-duration: 0.9s; } .home__title-color { color: var(--third-color); background: linear-gradient(transparent 10%, #FFD875 0) left/0% 100% no-repeat; } .home__title-color:hover { color: var(--third-color); background-size: 105% 100%; transition-duration: 0.9s; } .home__city-color { color: var(--third-color); } .home__city-color:hover { color: var(--eighth-color); background-size: 105% 100%; transition-duration: 0.9s; } .home__country-color { color: var(--third-color); } .home__country-color:hover { color: var(--ninth-color); background-size: 105% 100%; transition-duration: 0.9s; } .home__title-description { margin-bottom: var(--mb-1); font-size: var(--h2-font-size); } .home__social { display: flex; flex-direction: column; position: relative; top: -5%; } .home__social-icon { width: max-content; margin-bottom: var(--mb-2); font-size: 1.5rem; color: var(--second-color); } .home__social-icon:hover { color: var(--sixth-color); transition-duration: 0.9s; transition: all .3s ease-in; transform: translateY(5px); } .home__img { position: relative; left: 10%; top: -26%; } /*===== BUTTONS =====*/ .button { display: inline-block; background-color: var(--third-color); color: #fff; padding: 0.75rem 2.5rem; font-weight: var(--font-semi); border-radius: 0.5rem; } .button:hover { box-shadow: 0 10px 36px rgba(0, 0, 0, 0.15); color: var(--seventh-color); background-color: var(--sixth-color); } /* ===== ABOUT =====*/ .about { height: 70vh; } .about__data { margin-top: 90px; } .about__title { font-size: var(--big-font-size); margin-bottom: var(--mb-1); } .about__subtitle { display: flex; position: relative; right: 46%; margin-top: -130px; margin-bottom: -25px; margin-left: 770px; } .about__text { display:flex; position: relative; left: -5%; margin-left: 350px; font-size: 18px; overflow-wrap: break-word; } .about__title-color { color: var(--sixth-color); } .about__title-description { margin-bottom: var(--mb-1); font-size: var(--big-font-size); margin-left: 120px; } .about__social { display: flex; flex-direction: column; position: relative; top: -227%; left: 23%; margin-right: auto; } .about__social-icon { width: max-content; margin-bottom: var(--mb-2); font-size: 2rem; color: var(--second-color); } .about__social-icon:hover { color: var(--sixth-color); transition-duration: 0.9s; transition: all .3s ease-in; transform: translateY(5px); } .about__dabbled { color: gray; } .about__language { display: flex; position: relative; top: -750%; left: -14%; margin-left: 437px; } .about__language-icon { width: max-content; font-size: 1.4rem; white-space: nowrap; color: var(--second-color); margin-left: 5px; margin-right: 10px; transition: background-size 0.4s ease; background: linear-gradient(transparent 5%, #ffe263 0) left/0% 100% no-repeat; } .about__language-icon:hover { color: var(--third-color); background-size: 105% 100%; transition-duration: 0.9s; transform: translate(5px) rotate(-2deg); transition: all .4s ease-in; } .about__language-icon-reverse { width: max-content; font-size: 1.4rem; white-space: nowrap; color: var(--second-color); margin-left: 5px; margin-right: 10px; transition: background-size 0.4s ease; background: linear-gradient(transparent 5%, #ffe263 0) left/0% 100% no-repeat; } .about__language-icon-reverse:hover { color: var(--third-color); background-size: 105% 100%; transition-duration: 0.9s; transform: translate(5px) rotate(2deg); transition: all .4s ease-in; } /* ===== PROJECTS =====*/ .project2 { margin-top: 250px; } .project3 { margin-top: 250px; } .projects__data { margin-top: 90px; margin-bottom: -90px; } .projects__title { font-size: var(--big-font-size); margin-bottom: var(--mb-1); } .projects__text { margin-right: -350px; margin-left: 350px; font-size: 18px; height: 100%; } .projects__title-color { color: var(--sixth-color); } .projects__title-description { margin-bottom: var(--mb-1); font-size: var(--big-font-size); position: relative; } /* ===== PROJECT SOCIAL MEDIA =====*/ .projects__social { display: flex; flex-direction: column; position: relative; left: -64.5%; top: -19%; margin-left: auto; } .projects__social-icon { width: max-content; margin-bottom: var(--mb-2); font-size: 2rem; color: var(--second-color); } .projects__social-icon:hover { color: var(--sixth-color); /* ===== PROJECT ANIMATION =====*/ transition-duration: 0.9s; transition: all .3s ease-in; transform: translateY(5px); } /* === IMAGE SECTION ===*/ /* .projects__container{ row-gap: 2rem; margin-top: -120px; } */ .projects__img{ box-shadow: 0 1rem 1rem 0 rgba(0, 0, 0, 0.2); border-radius: 1rem 1rem 1rem 1rem; display: flex; position: relative; overflow: hidden; } .projects__img img{ transition: 1s; cursor: pointer; } .projects__img img:hover{ transform: scale(1.1); } .projects__img-title { position: relative; top: -170%; left: 40%; font-size: 1.5rem; font-weight: 700; width: 53%; color: var(--second-color); } .projects__img-description { position: relative; left: -14.5%; margin-left: 570px; margin-top: -227px; font-size: .9rem; } .projects__img-marketplace { position: relative; left: -40%; margin-top: 10px; margin-left: 830px; font-weight: 700; font-size: 15px; } .projects__title-arrow { position: relative; display: inline-block; margin-bottom: 5px; color: var(--second-color); } .projects__title-arrow:hover { transition: all .2s ease-in-out; transition-duration: 0.9s; transform: translate(20px); color: var(--tenth-color); } /* ===== LINKS =====*/ /* .project__link-title { color: var(--third-color); } */ /* .project__link-title:hover { color: var(--fifth-color); } */ .project__link { color: var(--second-color); transition: background-size 0.4s ease; background: linear-gradient( transparent 10%, #ffdc16 0) left/0% 100% no-repeat; } .project__link:hover { color: var(--second-color); /* === PROJECT ANIMATION HOVER ===*/ background-size: 105% 100%; transition-duration: 0.9s; } /* ===== CONTACT =====*/ /* .contact__container { display: flex; margin-left: auto; margin-right: auto; } */ .section-title { text-align: center; position: relative; margin-right: auto; margin-top: 200px; margin-bottom: 20px; color: var(--second-color); } .contact__input { width: 100%; font-size: var(--normal-font-size); font-weight: var(--font-semi); padding: 1rem; border-radius: 0.5rem; border: 1.5px solid var(--second-color); outline: none; margin-bottom: var(--mb-4); } .contact__button { display: block; border: none; outline: none; font-size: var(--normal-font-size); cursor: pointer; margin-left: auto; } /* ===== FOOTER =====*/ .footer { display: fixed; color: var(--second-color); text-align: center; font-weight: var(--font-semi); height: auto; left: 0; bottom: 0; width: 100%; padding-top: var(--mb-7); margin-top:calc(5% + 60px); } .footer__title { font-size: 2rem; margin-bottom: var(--mb-4); } .footer__social { margin-bottom: var(--mb-2); } .footer__icon { font-size: 1.5rem; color: var(--second-color); margin: 0 var(--mb-2); } .footer__icon:hover { color: var(--sixth-color); } /* ===== MEDIA QUERIES =====*/ /* @media screen and (min-width: 320px) { .home__img { right: 50%; bottom: -200%; width: 50px; } } */ /* iPhone 6/7/8 PLUS */ @media screen and (max-width: 414px) { .home__title { font-size: 55px; } .l-main { margin-left: 10px; margin-top: -75px; } .home__social-icon { margin-top: 1px; } .home__img { right: 5%; bottom: -2%; width: 270px; } } /* iPhone X */ @media screen and (max-width: 375px) { .home__title { font-size: 55px; } .l-main { margin-left: 10px; margin-top: -75px; } .home__social-icon { margin-top: 1px; } .home__img { right: 5%; bottom: -2%; width: 270px; } } /* iPhone 5 */ @media screen and (max-width: 320px) { .home__title { font-size: 45px; } .l-main { margin-left: 10px; margin-top: -90px; } .home__social-icon { margin-top: -1px; } .home__img { right: 5%; bottom: -2%; width: 230px; } } /* iPad */ @media (min-width: 768px) { .l-main { margin-left: 5%; margin-top: -10px; } .nav__link { color: var(--second-color); } .nav__list { display: flex; padding-top: 25px; } .nav__menu { margin-right: 20px; font-size: 20px; } .nav__item { margin-left: 25px; } .nav__toggle { display: none; } .home__data { margin-top: 200px; } .home__social { padding-top: 0; padding-bottom: 3.5rem; flex-direction: row; } .home__social-icon { margin-bottom: 0; margin-right: var(--mb-4); } .home__img { right: 7%; bottom: -5%; width: 70%; } } /* .bd-grid { margin-left: auto; margin-right: auto; } */ /* Desktop */ @media (min-width: 1024px) { .l-header { padding-top: 15px; } .nav__list { display: flex; margin-top: -35px; } .nav__menu { display: flex; position: relative; left: 10%; font-size: 23px; } .nav__item { margin-bottom: 0; } .nav__toggle { display: none; } /* .home__social { flex-direction: row; } */ .home__social-icon { font-size: 2rem; } .nav__link { color: var(--second-color); } /* .l-main { display: flex; position: relative; top: 80px; } */ /* .home__img { position: relative; left: 60%; top: -82%; width: 60%; } */ } /* TEST */ @media screen and (min-width: 1024px){ .bd-grid{ margin-left: auto; margin-right: auto; } .home__img{ right: 10%; } .home { margin-top: -120px; } } /* iPad Pro */ /* @media (max-width: 1024px) { .nav__menu { margin-left: -20px; } .nav__list { margin-right: 25px; } .l-main { margin-right: 100px; margin-top: -90px; } .home__title { font-size: var(--bigger-font-size); } .home__social-icon { margin-top: -35px; } .home__img { right: 5%; bottom: -5%; width: 6900px; } } */ @keyframes wave-animation { 0% { transform: rotate(0deg); } 10% { transform: rotate(14deg); } 20% { transform: rotate(-8deg); } 30% { transform: rotate(14deg); } 40% { transform: rotate(-4deg); } 50% { transform: rotate(10deg); } 60% { transform: rotate(0deg); } 100% { transform: rotate(0deg); } }
css/style.css
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed&display=swap'); :root { --header-height: 3rem; --font-semi: 600; } /*===== COLORS =====*/ :root { --first-color: #845fe6; --second-color: #525252; --third-color: #444444; --fourth-color: #f3f3f3; --fifth-color: #FFD875; --sixth-color: #FFBD59; --seventh-color: #ffffff; --eighth-color: #4d7cff; --ninth-color: #ff4b4b; --tenth-color: #ffb03a; --eleventh-color: #000000; } :root { --body-font: 'Poppins', sans-serif; --big-font-size: 2rem; --bigger-font-size: 4.5rem --h2-font-size: 1.25rem; --normal-font-size: 0.938rem; } @media screen and (min-width: 768px) { :root { --big-font-size: 3.5rem; --bigger-font-size: 4.5rem; --h2-font-size: 2rem; --normal-font-size: 1rem; } } /* ===== MARGIN-BOTTOM ===== */ :root { --mb-1: 0.5rem; --mb-2: 1rem; --mb-3: 1.5rem; --mb-4: 2rem; --mb-5: 2.5rem; --mb-6: 3rem; --mb-7: 4rem; --mb-8: 5rem; } /*===== z-index =====*/ :root { --z-back: -10; --z-normal: 1; --z-tooltip: 10; --z-fixed: 100; } /*===== BASE =====*/ *, ::before, ::after { box-sizing: border-box; } html { scroll-behavior: smooth; } body { margin: var(--header-height) 0 0 0; font-family: var(--body-font); font-size: var(--normal-font-size); color: var(--second-color); background-color: var(--fourth-color); } h1, h2, p { margin: 0; } ul { margin: 0; padding: 0; list-style: none; } a { text-decoration: none; } img { max-width: 100%; height: auto; display: block; } /* .section-title { position: relative; font-size: var(--big-font-size); color: var(--first-color); margin-top: var(--mb-1); margin-bottom: var(--mb-4); text-align: center; /* } */ /* .section-title::after { position: absolute; content: ''; width: 64px; height: 0.18rem; left: 0; right: 0; margin: auto; top: 4rem; background-color: var(--first-color); } */ .section { padding-bottom: 2rem; } /*===== LAYOUT =====*/ .bd-grid { max-width: 1024px; display: grid; grid-template-columns: 100%; grid-column-gap: 2rem; width: calc(100% - 2rem); margin-left: var(--mb-2); margin-right: var(--mb-2); } .l-header { width: 100%; position: fixed; top: 0; left: 0; z-index: var(--z-fixed); background-color: var(--fourth-color); box-shadow: 0 1px 4px rgba(146, 161, 176, 0.15); } /*===== NAV =====*/ @media (max-width: 768px) { .nav__menu { position: fixed; top: var(--header-height); right: -100%; width: 80%; height: 100%; padding: 2rem; background-color: var(--second-color); transition: 0.5s; } } .nav { height: var(--header-height); display: flex; justify-content: space-between; align-items: center; font-weight: var(--font-semi); } .nav__item { margin-bottom: var(--mb-4); } .nav__link { position: relative; color: #fff; } .nav__link:hover { position: relative; } /* .nav__link:hover::after { position: absolute; content: ''; width: 100%; height: 0.18rem; left: 0; top: 2rem; background-color: var(--first-color); } */ .nav__link:hover { color: #ffa959; background-size: 105% 100%; transition-duration: 0.9s; transform: translate(5px) rotate(-2deg); transition: all .4s ease-in; } .nav__logo { color: var(--second-color); position: relative; font-size: 20px; } .nav__toggle { color: var(--second-color); font-size: 1.5rem; cursor: pointer; } /*=== ACTIVE MENU ===*/ .active::after { position: absolute; content: ''; height: 45px; width: 100%; left: 0; top: .5rem; background-image: url(../img/navbar_brush3.png); background-size: 100% 100%; background-repeat: no-repeat; transform: translate(5px) rotate(-1deg); opacity: 80%; } /*=== SHOW MENU ===*/ .show { right: 0; } /*=== WAVE ===*/ .wave { width: 50px; margin-left: 305px; margin-top: -62px; margin-bottom: 10px; /*=== ANIMATION ===*/ animation-name: wave-animation; animation-duration: 2.6s; transform-origin: 40% 90%; animation: wave-animation 2.1s 0.6s; } .wave:hover { animation: wave-animation 2.1s 0.6s infinite; cursor: pointer; } /*===== HOME =====*/ .home { height: calc(100vh - 3rem); row-gap: 1rem; } .home__data { align-self: center; margin-top: 120px; } .home__title { font-size: var(--big-font-size); margin-bottom: var(--mb-1); } .home__name-color { color: var(--third-color); } .home__name-color:hover { color: var(--tenth-color); background-size: 105% 100%; transition-duration: 0.9s; } .home__title-color { color: var(--third-color); background: linear-gradient(transparent 10%, #FFD875 0) left/0% 100% no-repeat; } .home__title-color:hover { color: var(--third-color); background-size: 105% 100%; transition-duration: 0.9s; } .home__city-color { color: var(--third-color); } .home__city-color:hover { color: var(--eighth-color); background-size: 105% 100%; transition-duration: 0.9s; } .home__country-color { color: var(--third-color); } .home__country-color:hover { color: var(--ninth-color); background-size: 105% 100%; transition-duration: 0.9s; } .home__title-description { margin-bottom: var(--mb-1); font-size: var(--h2-font-size); } .home__social { display: flex; flex-direction: column; position: relative; top: -5%; } .home__social-icon { width: max-content; margin-bottom: var(--mb-2); font-size: 1.5rem; color: var(--second-color); } .home__social-icon:hover { color: var(--sixth-color); transition-duration: 0.9s; transition: all .3s ease-in; transform: translateY(5px); } .home__img { position: relative; left: 10%; top: -26%; } /*===== BUTTONS =====*/ .button { display: inline-block; background-color: var(--third-color); color: #fff; padding: 0.75rem 2.5rem; font-weight: var(--font-semi); border-radius: 0.5rem; } .button:hover { box-shadow: 0 10px 36px rgba(0, 0, 0, 0.15); color: var(--seventh-color); background-color: var(--sixth-color); } /* ===== ABOUT =====*/ .about { height: 70vh; } .about__data { margin-top: 90px; } .about__title { font-size: var(--big-font-size); margin-bottom: var(--mb-1); } .about__subtitle { display: flex; position: relative; right: 46%; margin-top: -130px; margin-bottom: -25px; margin-left: 770px; } .about__text { display:flex; position: relative; left: -5%; margin-left: 350px; font-size: 18px; overflow-wrap: break-word; } .about__title-color { color: var(--sixth-color); } .about__title-description { margin-bottom: var(--mb-1); font-size: var(--big-font-size); margin-left: 120px; } .about__social { display: flex; flex-direction: column; position: relative; top: -227%; left: 23%; margin-right: auto; } .about__social-icon { width: max-content; margin-bottom: var(--mb-2); font-size: 2rem; color: var(--second-color); } .about__social-icon:hover { color: var(--sixth-color); transition-duration: 0.9s; transition: all .3s ease-in; transform: translateY(5px); } .about__dabbled { color: gray; } .about__language { display: flex; position: relative; top: -750%; left: -14%; margin-left: 437px; } .about__language-icon { width: max-content; font-size: 1.4rem; white-space: nowrap; color: var(--second-color); margin-left: 5px; margin-right: 10px; transition: background-size 0.4s ease; background: linear-gradient(transparent 5%, #ffe263 0) left/0% 100% no-repeat; } .about__language-icon:hover { color: var(--third-color); background-size: 105% 100%; transition-duration: 0.9s; transform: translate(5px) rotate(-2deg); transition: all .4s ease-in; } .about__language-icon-reverse { width: max-content; font-size: 1.4rem; white-space: nowrap; color: var(--second-color); margin-left: 5px; margin-right: 10px; transition: background-size 0.4s ease; background: linear-gradient(transparent 5%, #ffe263 0) left/0% 100% no-repeat; } .about__language-icon-reverse:hover { color: var(--third-color); background-size: 105% 100%; transition-duration: 0.9s; transform: translate(5px) rotate(2deg); transition: all .4s ease-in; } /* ===== PROJECTS =====*/ .project2 { margin-top: 250px; } .project3 { margin-top: 250px; } .projects__data { margin-top: 90px; margin-bottom: -90px; } .projects__title { font-size: var(--big-font-size); margin-bottom: var(--mb-1); } .projects__text { margin-right: -350px; margin-left: 350px; font-size: 18px; height: 100%; } .projects__title-color { color: var(--sixth-color); } .projects__title-description { margin-bottom: var(--mb-1); font-size: var(--big-font-size); position: relative; } /* ===== PROJECT SOCIAL MEDIA =====*/ .projects__social { display: flex; flex-direction: column; position: relative; left: -64.5%; top: -19%; margin-left: auto; } .projects__social-icon { width: max-content; margin-bottom: var(--mb-2); font-size: 2rem; color: var(--second-color); } .projects__social-icon:hover { color: var(--sixth-color); /* ===== PROJECT ANIMATION =====*/ transition-duration: 0.9s; transition: all .3s ease-in; transform: translateY(5px); } /* === IMAGE SECTION ===*/ /* .projects__container{ row-gap: 2rem; margin-top: -120px; } */ .projects__img{ box-shadow: 0 1rem 1rem 0 rgba(0, 0, 0, 0.2); border-radius: 1rem 1rem 1rem 1rem; display: flex; position: relative; overflow: hidden; } .projects__img img{ transition: 1s; cursor: pointer; } .projects__img img:hover{ transform: scale(1.1); } .projects__img-title { position: relative; top: -170%; left: 40%; font-size: 1.5rem; font-weight: 700; width: 53%; color: var(--second-color); } .projects__img-description { position: relative; left: -14.5%; margin-left: 570px; margin-top: -227px; font-size: .9rem; } .projects__img-marketplace { position: relative; left: -40%; margin-top: 10px; margin-left: 830px; font-weight: 700; font-size: 15px; } .projects__title-arrow { position: relative; display: inline-block; margin-bottom: 5px; color: var(--second-color); } .projects__title-arrow:hover { transition: all .2s ease-in-out; transition-duration: 0.9s; transform: translate(20px); color: var(--tenth-color); } /* ===== LINKS =====*/ /* .project__link-title { color: var(--third-color); } */ /* .project__link-title:hover { color: var(--fifth-color); } */ .project__link { color: var(--second-color); transition: background-size 0.4s ease; background: linear-gradient( transparent 10%, #ffdc16 0) left/0% 100% no-repeat; } .project__link:hover { color: var(--second-color); /* === PROJECT ANIMATION HOVER ===*/ background-size: 105% 100%; transition-duration: 0.9s; } /* ===== CONTACT =====*/ /* .contact__container { display: flex; margin-left: auto; margin-right: auto; } */ .section-title { text-align: center; position: relative; margin-right: auto; margin-top: 200px; margin-bottom: 20px; color: var(--second-color); } .contact__input { width: 100%; font-size: var(--normal-font-size); font-weight: var(--font-semi); padding: 1rem; border-radius: 0.5rem; border: 1.5px solid var(--second-color); outline: none; margin-bottom: var(--mb-4); } .contact__button { display: block; border: none; outline: none; font-size: var(--normal-font-size); cursor: pointer; margin-left: auto; } /* ===== FOOTER =====*/ .footer { display: fixed; color: var(--second-color); text-align: center; font-weight: var(--font-semi); height: auto; left: 0; bottom: 0; width: 100%; padding-top: var(--mb-7); margin-top:calc(5% + 60px); } .footer__title { font-size: 2rem; margin-bottom: var(--mb-4); } .footer__social { margin-bottom: var(--mb-2); } .footer__icon { font-size: 1.5rem; color: var(--second-color); margin: 0 var(--mb-2); } .footer__icon:hover { color: var(--sixth-color); } /* ===== MEDIA QUERIES =====*/ /* @media screen and (min-width: 320px) { .home__img { right: 50%; bottom: -200%; width: 50px; } } */ /* iPhone 6/7/8 PLUS */ @media screen and (max-width: 414px) { .home__title { font-size: 55px; } .l-main { margin-left: 10px; margin-top: -75px; } .home__social-icon { margin-top: 1px; } .home__img { right: 5%; bottom: -2%; width: 270px; } } /* iPhone X */ @media screen and (max-width: 375px) { .home__title { font-size: 55px; } .l-main { margin-left: 10px; margin-top: -75px; } .home__social-icon { margin-top: 1px; } .home__img { right: 5%; bottom: -2%; width: 270px; } } /* iPhone 5 */ @media screen and (max-width: 320px) { .home__title { font-size: 45px; } .l-main { margin-left: 10px; margin-top: -90px; } .home__social-icon { margin-top: -1px; } .home__img { right: 5%; bottom: -2%; width: 230px; } } /* iPad */ @media (min-width: 768px) { .l-main { margin-left: 5%; margin-top: -10px; } .nav__link { color: var(--second-color); } .nav__list { display: flex; padding-top: 25px; } .nav__menu { margin-right: 20px; font-size: 20px; } .nav__item { margin-left: 25px; } .nav__toggle { display: none; } .home__data { margin-top: 200px; } .home__social { padding-top: 0; padding-bottom: 3.5rem; flex-direction: row; } .home__social-icon { margin-bottom: 0; margin-right: var(--mb-4); } .home__img { right: 7%; bottom: -5%; width: 70%; } } /* .bd-grid { margin-left: auto; margin-right: auto; } */ /* Desktop */ @media (min-width: 1024px) { .l-header { padding-top: 15px; } .nav__list { display: flex; margin-top: -35px; } .nav__menu { display: flex; position: relative; left: 10%; font-size: 23px; } .nav__item { margin-bottom: 0; } .nav__toggle { display: none; } /* .home__social { flex-direction: row; } */ .home__social-icon { font-size: 2rem; } .nav__link { color: var(--second-color); } /* .l-main { display: flex; position: relative; top: 80px; } */ /* .home__img { position: relative; left: 60%; top: -82%; width: 60%; } */ } /* TEST */ @media screen and (min-width: 1024px){ .bd-grid{ margin-left: auto; margin-right: auto; } .home__img{ right: 10%; } .home { margin-top: -120px; } } /* iPad Pro */ /* @media (max-width: 1024px) { .nav__menu { margin-left: -20px; } .nav__list { margin-right: 25px; } .l-main { margin-right: 100px; margin-top: -90px; } .home__title { font-size: var(--bigger-font-size); } .home__social-icon { margin-top: -35px; } .home__img { right: 5%; bottom: -5%; width: 6900px; } } */ @keyframes wave-animation { 0% { transform: rotate(0deg); } 10% { transform: rotate(14deg); } 20% { transform: rotate(-8deg); } 30% { transform: rotate(14deg); } 40% { transform: rotate(-4deg); } 50% { transform: rotate(10deg); } 60% { transform: rotate(0deg); } 100% { transform: rotate(0deg); } }
0.37777
0.09426
.App { width: 85%; margin: 10vh auto; text-align: center; box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.5); border-radius: 4px; background-color: #fafafa; padding-bottom: 120px; } .panel { height: 95px; width: 100%; background-color: #ffffff; display: flex; justify-content: space-between; padding: 50px 100px; margin: 0; align-items: center; } .logo { font-family: "Montserrat", sans-serif; font-size: 30px; font-weight: bold; font-style: normal; font-stretch: normal; line-height: normal; letter-spacing: normal; color: #0290ff; margin: 0 47px 0 0; } .menu { display: flex; justify-content: space-between; align-items: center; } .panelIcon { display: flex; justify-content: flex-end; align-items: center; flex: 1; } .profileIcon { font-size: 45px; color: #0290ff; border-radius: 50%; border: 1px solid #e8e8e8; padding: 9px; } .categoryFilter { margin: 20px auto; } .select { height: 45px; border-radius: 4px; border: 1px solid #e8e8e8; background-color: #fff; padding: 5px; font-family: Montserrat; font-size: 16px; letter-spacing: -0.15px; } .book { width: 100%; border-radius: 4px; margin: 15px auto; padding: 15px 20px; border: solid 1px #e8e8e8; background-color: #ffffff; display: flex; justify-content: space-between; align-items: center; } .btn-row span { cursor: pointer; height: 19px; border: none; background: none; font-family: "Roboto Slab", serif; font-size: 14px; font-weight: 300; font-style: normal; font-stretch: normal; line-height: normal; letter-spacing: normal; color: #4386bf; margin: 10px; } .btn-row span:first-child { margin-left: 0; } .right-part { display: flex; } .progress-status { margin-left: 14px; font-family: Montserrat; font-weight: normal; font-style: normal; font-stretch: normal; line-height: normal; letter-spacing: normal; color: #121212; text-align: left; } .textPercent { height: 39px; font-size: 30px; margin: 0; } .circular-chart { display: block; margin: 10px auto; width: 60px; height: 60px; } .circle { stroke: #4386bf; fill: none; stroke-width: 2.8; stroke-linecap: round; animation: progress 1s ease-out forwards; } .circle { stroke: #ddd; fill: none; stroke-width: 2.8; stroke-linecap: round; } .completed { height: 18px; opacity: 0.5; font-size: 14px; } .status { display: flex; justify-content: center; align-items: center; } .cont { width: 80%; display: flex; flex-wrap: wrap; margin: auto; } /* our styles */ .BOOKS { width: 59px; height: 16px; margin: 0 41px 0 0; font-family: Montserrat; font-size: 13px; font-weight: normal; font-stretch: normal; font-style: normal; line-height: normal; letter-spacing: 1.9px; color: #121212; } .CATEGORIES { margin: 0; width: 105px; height: 16px; opacity: 0.5; font-family: Montserrat; font-size: 13px; font-weight: normal; font-stretch: normal; font-style: normal; line-height: normal; letter-spacing: 1.9px; color: #121212; } .Lesson-Panel { width: 80%; border: solid 1px #e8e8e8; background-color: #ffffff; display: flex; justify-content: space-between; margin: 15px auto; } .book_details > span { cursor: pointer; } .panel-bg { width: 1400px; height: 95px; margin: 0 0 38px; padding: 23px 99px 27px 100px; background-color: #ffffff; display: flex; } .Bookstore-CMS { width: 1600px; height: 1434px; padding: 149px 60px 123px 100px; background-color: var(--pale-grey); } .Bookstore-CMS2 { width: 240px; height: 37px; margin: 6px 47px 2px 0; font-family: Montserrat; font-size: 30px; font-weight: bold; font-stretch: normal; font-style: normal; line-height: normal; letter-spacing: normal; color: var(--azure); } .School-of { opacity: 0.5; font-family: Montserrat; font-size: 14px; font-weight: bold; font-stretch: normal; font-style: normal; line-height: normal; letter-spacing: normal; color: #121212; margin-bottom: 10px; } .title { font-family: RobotoSlab; font-size: 22px; font-weight: bold; font-stretch: normal; font-style: normal; line-height: normal; letter-spacing: -0.2px; color: #121212; margin: 0; } .Suzanne-Collins { font-family: RobotoSlab; font-size: 14px; font-weight: 300; font-stretch: normal; font-style: normal; line-height: normal; letter-spacing: normal; color: #4386bf; margin: 5px 0 15px 0; } .Comments { font-family: RobotoSlab; font-size: 14px; font-weight: 300; font-stretch: normal; font-style: normal; line-height: normal; letter-spacing: normal; color: #4386bf; } .Remove { font-family: RobotoSlab; font-size: 14px; font-weight: 300; font-stretch: normal; font-style: normal; line-height: normal; letter-spacing: normal; color: #4386bf; } .Edit { font-family: RobotoSlab; font-size: 14px; font-weight: 300; font-stretch: normal; font-style: normal; line-height: normal; letter-spacing: normal; color: #4386bf; } .Oval-2 { width: 68px; height: 68px; border-style: solid; border-width: 5px; border-image-source: linear-gradient( to bottom, var(--medium-blue), var(--dodger-blue) ); border-image-slice: 1; } .-textPercent { margin: 0; font-family: Montserrat; font-size: 32px; font-weight: normal; font-stretch: normal; font-style: normal; line-height: normal; letter-spacing: normal; color: #121212; } .Completed { opacity: 0.5; font-family: Montserrat; font-size: 14px; font-weight: normal; font-stretch: normal; font-style: normal; line-height: normal; letter-spacing: normal; color: #121212; } .Line-2 { width: 2px; height: 70px; margin: 0px 29px 0 29px; border: solid 1px #e8e8e8; align-self: center; background-color: #e8e8e8; } .Current-Chapter { opacity: 0.5; font-family: RobotoSlab; font-size: 13px; font-weight: 300; font-stretch: normal; font-style: normal; line-height: normal; letter-spacing: normal; color: #121212; margin-bottom: 10px; } .Current-Lesson { font-family: RobotoSlab; font-size: 16px; font-weight: 300; font-stretch: normal; font-style: normal; line-height: normal; letter-spacing: -0.4px; color: #121212; } .Rectangle-2 { width: 184px; border-radius: 3px; text-align: center; background-color: #0069d9; } .book_details { display: flex; flex-direction: column; align-items: flex-start; padding: 3%; } .book_completed { display: flex; } .book_remove { display: flex; flex-direction: column; align-items: baseline; justify-content: center; margin: 0px 50px; } .Line { width: 80%; height: 2px; margin: 20px auto; border: solid 1px #e8e8e8; } .Title_two { width: 174px; height: 24px; margin: 29px 524px 19px 0; font-family: Montserrat; font-size: 20px; font-weight: bold; font-stretch: normal; font-style: normal; line-height: normal; letter-spacing: -0.18px; color: #888888; } form { display: flex; } .input_field { height: 45px; width: 430px; border-radius: 4px; border: solid 1px #e8e8e8; background-color: #ffffff; } .category_field { width: 200px; height: 45px; margin: 0 34px 0; padding: 6px 15px 9px 16px; border-radius: 4px; border: solid 1px #e8e8e8; background-color: #ffffff; } .submit_form { width: 150px; height: 45px; margin: 0 0 0 15px; border-radius: 3px; }
src/styles/App.css
.App { width: 85%; margin: 10vh auto; text-align: center; box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.5); border-radius: 4px; background-color: #fafafa; padding-bottom: 120px; } .panel { height: 95px; width: 100%; background-color: #ffffff; display: flex; justify-content: space-between; padding: 50px 100px; margin: 0; align-items: center; } .logo { font-family: "Montserrat", sans-serif; font-size: 30px; font-weight: bold; font-style: normal; font-stretch: normal; line-height: normal; letter-spacing: normal; color: #0290ff; margin: 0 47px 0 0; } .menu { display: flex; justify-content: space-between; align-items: center; } .panelIcon { display: flex; justify-content: flex-end; align-items: center; flex: 1; } .profileIcon { font-size: 45px; color: #0290ff; border-radius: 50%; border: 1px solid #e8e8e8; padding: 9px; } .categoryFilter { margin: 20px auto; } .select { height: 45px; border-radius: 4px; border: 1px solid #e8e8e8; background-color: #fff; padding: 5px; font-family: Montserrat; font-size: 16px; letter-spacing: -0.15px; } .book { width: 100%; border-radius: 4px; margin: 15px auto; padding: 15px 20px; border: solid 1px #e8e8e8; background-color: #ffffff; display: flex; justify-content: space-between; align-items: center; } .btn-row span { cursor: pointer; height: 19px; border: none; background: none; font-family: "Roboto Slab", serif; font-size: 14px; font-weight: 300; font-style: normal; font-stretch: normal; line-height: normal; letter-spacing: normal; color: #4386bf; margin: 10px; } .btn-row span:first-child { margin-left: 0; } .right-part { display: flex; } .progress-status { margin-left: 14px; font-family: Montserrat; font-weight: normal; font-style: normal; font-stretch: normal; line-height: normal; letter-spacing: normal; color: #121212; text-align: left; } .textPercent { height: 39px; font-size: 30px; margin: 0; } .circular-chart { display: block; margin: 10px auto; width: 60px; height: 60px; } .circle { stroke: #4386bf; fill: none; stroke-width: 2.8; stroke-linecap: round; animation: progress 1s ease-out forwards; } .circle { stroke: #ddd; fill: none; stroke-width: 2.8; stroke-linecap: round; } .completed { height: 18px; opacity: 0.5; font-size: 14px; } .status { display: flex; justify-content: center; align-items: center; } .cont { width: 80%; display: flex; flex-wrap: wrap; margin: auto; } /* our styles */ .BOOKS { width: 59px; height: 16px; margin: 0 41px 0 0; font-family: Montserrat; font-size: 13px; font-weight: normal; font-stretch: normal; font-style: normal; line-height: normal; letter-spacing: 1.9px; color: #121212; } .CATEGORIES { margin: 0; width: 105px; height: 16px; opacity: 0.5; font-family: Montserrat; font-size: 13px; font-weight: normal; font-stretch: normal; font-style: normal; line-height: normal; letter-spacing: 1.9px; color: #121212; } .Lesson-Panel { width: 80%; border: solid 1px #e8e8e8; background-color: #ffffff; display: flex; justify-content: space-between; margin: 15px auto; } .book_details > span { cursor: pointer; } .panel-bg { width: 1400px; height: 95px; margin: 0 0 38px; padding: 23px 99px 27px 100px; background-color: #ffffff; display: flex; } .Bookstore-CMS { width: 1600px; height: 1434px; padding: 149px 60px 123px 100px; background-color: var(--pale-grey); } .Bookstore-CMS2 { width: 240px; height: 37px; margin: 6px 47px 2px 0; font-family: Montserrat; font-size: 30px; font-weight: bold; font-stretch: normal; font-style: normal; line-height: normal; letter-spacing: normal; color: var(--azure); } .School-of { opacity: 0.5; font-family: Montserrat; font-size: 14px; font-weight: bold; font-stretch: normal; font-style: normal; line-height: normal; letter-spacing: normal; color: #121212; margin-bottom: 10px; } .title { font-family: RobotoSlab; font-size: 22px; font-weight: bold; font-stretch: normal; font-style: normal; line-height: normal; letter-spacing: -0.2px; color: #121212; margin: 0; } .Suzanne-Collins { font-family: RobotoSlab; font-size: 14px; font-weight: 300; font-stretch: normal; font-style: normal; line-height: normal; letter-spacing: normal; color: #4386bf; margin: 5px 0 15px 0; } .Comments { font-family: RobotoSlab; font-size: 14px; font-weight: 300; font-stretch: normal; font-style: normal; line-height: normal; letter-spacing: normal; color: #4386bf; } .Remove { font-family: RobotoSlab; font-size: 14px; font-weight: 300; font-stretch: normal; font-style: normal; line-height: normal; letter-spacing: normal; color: #4386bf; } .Edit { font-family: RobotoSlab; font-size: 14px; font-weight: 300; font-stretch: normal; font-style: normal; line-height: normal; letter-spacing: normal; color: #4386bf; } .Oval-2 { width: 68px; height: 68px; border-style: solid; border-width: 5px; border-image-source: linear-gradient( to bottom, var(--medium-blue), var(--dodger-blue) ); border-image-slice: 1; } .-textPercent { margin: 0; font-family: Montserrat; font-size: 32px; font-weight: normal; font-stretch: normal; font-style: normal; line-height: normal; letter-spacing: normal; color: #121212; } .Completed { opacity: 0.5; font-family: Montserrat; font-size: 14px; font-weight: normal; font-stretch: normal; font-style: normal; line-height: normal; letter-spacing: normal; color: #121212; } .Line-2 { width: 2px; height: 70px; margin: 0px 29px 0 29px; border: solid 1px #e8e8e8; align-self: center; background-color: #e8e8e8; } .Current-Chapter { opacity: 0.5; font-family: RobotoSlab; font-size: 13px; font-weight: 300; font-stretch: normal; font-style: normal; line-height: normal; letter-spacing: normal; color: #121212; margin-bottom: 10px; } .Current-Lesson { font-family: RobotoSlab; font-size: 16px; font-weight: 300; font-stretch: normal; font-style: normal; line-height: normal; letter-spacing: -0.4px; color: #121212; } .Rectangle-2 { width: 184px; border-radius: 3px; text-align: center; background-color: #0069d9; } .book_details { display: flex; flex-direction: column; align-items: flex-start; padding: 3%; } .book_completed { display: flex; } .book_remove { display: flex; flex-direction: column; align-items: baseline; justify-content: center; margin: 0px 50px; } .Line { width: 80%; height: 2px; margin: 20px auto; border: solid 1px #e8e8e8; } .Title_two { width: 174px; height: 24px; margin: 29px 524px 19px 0; font-family: Montserrat; font-size: 20px; font-weight: bold; font-stretch: normal; font-style: normal; line-height: normal; letter-spacing: -0.18px; color: #888888; } form { display: flex; } .input_field { height: 45px; width: 430px; border-radius: 4px; border: solid 1px #e8e8e8; background-color: #ffffff; } .category_field { width: 200px; height: 45px; margin: 0 34px 0; padding: 6px 15px 9px 16px; border-radius: 4px; border: solid 1px #e8e8e8; background-color: #ffffff; } .submit_form { width: 150px; height: 45px; margin: 0 0 0 15px; border-radius: 3px; }
0.38168
0.08548
* { color: #4f01ef; box-sizing: border-box; font-family: Ubuntu, Helvetica, Verdana, Arial, sans-serif; font-weight: bold; background-color: #f9f9f900; } body { padding: 20px; } h1 { padding: 1rem 0; text-align: center; } hr { margin: 1rem 0; } .container1 > *, .container2 > *, .container3 > *, .container4 > *, .container5 > * { border-radius: 5px; padding: 25px; text-align: center; font-family: Ubuntu, sans-serif; font-size: 20px; background-color: #85939b; } /* Layout 1 CSS */ .container1 { display: grid; grid-template-rows: 60px 240px 120px; grid-template-columns: auto auto auto; grid-gap: 10px; } .header { grid-row: 1 / span 1; grid-column: 1 / span 3; background-color: #85939b; } .main { grid-row: 2 / span 1; grid-column: 1 / span 2; background-color: #cccfd1; } .sidebar { grid-row: 2 / span 1; grid-column: 3 / span 1; background-color: #afb8bc; } .footer { grid-row: 3 / span 1; grid-column: 1 / span 3; background-color: #747487; } /* Layout 2 CSS */ .container2 { display: grid; grid-template: repeat(2, 100px) / repeat(4, auto); grid-gap: 10px; } .container2 > div { background-color: #afb8bc; } div:nth-child(1) { order: 2; } div:nth-child(3) { order: -1; } div:nth-child(5) { order: 1; } /* Layout 3 CSS */ .container3 { display: grid; grid-template: 60px 120px 240px 120px 60px / repeat(4, 1fr); grid-template-areas: 'header header header header' 'image image text text' 'main main main main' 'links links links ads' 'footer footer footer footer'; grid-gap: 10px; } .header-l3 { grid-area: header; background-color: #747487; } .hero-img { grid-area: image; background-color: #c2c2d8; } .hero-text { grid-area: text; background-color: #74749e; } .content { grid-area: main; background-color: #d4cbd2; } .content-img { grid-area: links; background-color: #69859c; } .content-text { grid-area: ads; background-color: #69859c; } .footer-l3 { grid-area: footer; background-color: #747487; } /* Layout 4 CSS */ .container4 { display: grid; grid-template: repeat(6, 50px) / repeat(12, 1fr); grid-gap: 5px; } /* Layout 5 CSS */ .container5 { display: grid; width: 540px; grid-gap: 10px; grid-template-rows: repeat(2, 1fr); /* grid-template-columns: repeat(auto-fill, minmax(100px, 200px)); */ /* grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); */ /* grid-template-columns: repeat(auto-fit, minmax(100px, 200px)); */ grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); }
layout/css/layout.css
* { color: #4f01ef; box-sizing: border-box; font-family: Ubuntu, Helvetica, Verdana, Arial, sans-serif; font-weight: bold; background-color: #f9f9f900; } body { padding: 20px; } h1 { padding: 1rem 0; text-align: center; } hr { margin: 1rem 0; } .container1 > *, .container2 > *, .container3 > *, .container4 > *, .container5 > * { border-radius: 5px; padding: 25px; text-align: center; font-family: Ubuntu, sans-serif; font-size: 20px; background-color: #85939b; } /* Layout 1 CSS */ .container1 { display: grid; grid-template-rows: 60px 240px 120px; grid-template-columns: auto auto auto; grid-gap: 10px; } .header { grid-row: 1 / span 1; grid-column: 1 / span 3; background-color: #85939b; } .main { grid-row: 2 / span 1; grid-column: 1 / span 2; background-color: #cccfd1; } .sidebar { grid-row: 2 / span 1; grid-column: 3 / span 1; background-color: #afb8bc; } .footer { grid-row: 3 / span 1; grid-column: 1 / span 3; background-color: #747487; } /* Layout 2 CSS */ .container2 { display: grid; grid-template: repeat(2, 100px) / repeat(4, auto); grid-gap: 10px; } .container2 > div { background-color: #afb8bc; } div:nth-child(1) { order: 2; } div:nth-child(3) { order: -1; } div:nth-child(5) { order: 1; } /* Layout 3 CSS */ .container3 { display: grid; grid-template: 60px 120px 240px 120px 60px / repeat(4, 1fr); grid-template-areas: 'header header header header' 'image image text text' 'main main main main' 'links links links ads' 'footer footer footer footer'; grid-gap: 10px; } .header-l3 { grid-area: header; background-color: #747487; } .hero-img { grid-area: image; background-color: #c2c2d8; } .hero-text { grid-area: text; background-color: #74749e; } .content { grid-area: main; background-color: #d4cbd2; } .content-img { grid-area: links; background-color: #69859c; } .content-text { grid-area: ads; background-color: #69859c; } .footer-l3 { grid-area: footer; background-color: #747487; } /* Layout 4 CSS */ .container4 { display: grid; grid-template: repeat(6, 50px) / repeat(12, 1fr); grid-gap: 5px; } /* Layout 5 CSS */ .container5 { display: grid; width: 540px; grid-gap: 10px; grid-template-rows: repeat(2, 1fr); /* grid-template-columns: repeat(auto-fill, minmax(100px, 200px)); */ /* grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); */ /* grid-template-columns: repeat(auto-fit, minmax(100px, 200px)); */ grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); }
0.328745
0.157202
#logo{ width: 105px; height: 50px; } .nav-item{ font-size: 18px; font-family: Lucida Console; text-transform: uppercase; font-weight: bold; } main nav{ background: #1f1f1f; } /*----------------------x------------------------navbar------------------------x----------------------*/ /*---------------------------------------------- Home -----------------------------------------------*/ /* --------------- Site title ---------------- */ main .home-site-title{ background: url("C:/Users/HP/Desktop/Learn/ATT Project/img/titlebackground7.jpg"); background-size: cover; height: 110vh; display: flex; justify-content: center; } main .home-site-title .home-site-background{ padding-top: 19rem; text-align: center; } main .home-site-title h1, h3{ font-family: "20th Century Font"; background-color: #010145; background-image: linear-gradient(220deg, #000000, #ff0019, #08025e); -webkit-background-clip: text; -webkit-text-fill-color: transparent; -moz-background-clip: text; -moz-text-fill-color: transparent; } main .home-site-title .btn{ margin: 1.8rem; padding: .7rem 2rem; border: 1px solid #cbcacf; border-radius: 30px; background: linear-gradient(-90deg, #CF77F3 0%, #009BFF 47%, #2AC9DB 100%); color: #000000; font-style: bolder; } main .home-site-title .btn:hover{ background: #b2d426; color: #ffffff; font-style: bolder; } /* --------x------ Site title --------x------- */ /* --------------- Body Carousel ------------ */ main .home-slide{ background: url('../img/Abract02.png'); background-repeat: no-repeat; background-position: right; height: 100vh; width: 100%; background-size: 70%; } main .home-slide .slide-post{ padding-top: 6rem; } main .slide-post .slide-content{ display: flex; flex-direction: column; text-align: center; width: 80%; margin: 3rem 2rem; box-shadow: 0 15px 20px rgba(0, 0, 0, 0.2); } main .slide-post .slide-content:hover{ transition: ; } main .slide-content .slide-title{ padding: 1rem 0; } main .slide-content .btn-slide{ padding: .7rem 2rem; border-radius: 30px; background: linear-gradient(-90deg, #CF77F3 0%, #009BFF 47%, #2AC9DB 100%); margin: .5rem; } main .slide-content .btn-slide:hover{ background: #b2d426; color: #ffffff; font-style: bolder; } section .container .owl-nav{ position: relative; margin: 0 auto; width: 100%; } .owl-nav .owl-prev .owl-nav-prev, .owl-nav .owl-next .owl-nav-next{ color: var(--text-gray); background: transparent; font-size: 2rem; } .owl-theme .owl-nav [class*='owl-']:hover{ background: transparent; color: var(--midnight); } .owl-theme .owl-nav [class*='owl-']{ outline: none; } /* -------x------- Body Carousel -----x------ */ /*---------------------------------------------- Home -----------------------------------------------*/ /*--------------------------------------------- Module ----------------------------------------------*/ /* --------------- Site title ---------------- */ main .module-site{ background-size: cover; display: flex; justify-content: center; background: #1f1f1f; } main .module-site-title{ color: #ffffff; text-align: center; margin-top: 10px; } main .module-site-title h1{ color: #b2d426; line-height: 56px; font-family: "Bauhaus 93"; font-size: 50px; } main .module-site-dtl{ color: #ffffff; text-align: center; } main .module-site-nav { display: flex; flex-wrap: wrap; list-style: none; color: #ffffff; justify-content: center; position: relative; } main .module-site-nav-item { font-size: 17.5px; font-weight: bold; font-family: proxima_nova_rgbold; color: #ffffff; margin-top: 25px; padding: 0.5rem 1rem; text-decoration: none; transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out; cursor: pointer; border-bottom: solid #ffffff 0.5px; } main .module-site-nav-item active { color: #ffffff; } main .module-site-nav-item:hover{ color: #0064fa; } /*main .module-site-title .row{ margin-top: 50px; margin-bottom: 50px; }*/ main .row h1{ color: #b2d426; line-height: 56px; margin-bottom: 30px; font-family: "Bauhaus 93"; } main .row p{ color: #ffffff; margin-top: 15px; } main .row li{ color: #ffffff; } main .row img{ max-width: 100%; height: 98%; } main .breadcrumb{ background: #1f1f1f; padding-left: 20px; padding-bottom: 20px; padding-top: 20px; } /* --------x------ Site title --------x------- */ /*--------------------------------------------- Module ----------------------------------------------*/ /*--------------------------------------------- About -----------------------------------------------*/ /* --------------- Site title ---------------- */ main .about-site{ background-size: cover; } main .about-site{ display: flex; justify-content: center; background: #1f1f1f; } main .about-site .section-title{ text-align: center; padding-bottom: 38px; } main .about-site .section-body{ color: #ffffff; } main .about-site h2 span{ background: url(../img/section-title.png) no-repeat bottom center; padding: 0 20px 20px; font-family: 'Bauhaus 93'; font-size: 50px; line-height: 56px; word-spacing: 5px; color: #b2d426; } main .about-site p{ text-align: center; font-family: 'Cooper Black'; color: #b2d426; } /* --------x------ Site title --------x------- */ main .about-site .section-body span{ font-size: 16px; } main .about-site h6{ color: #ffffff; text-align: center; animation-name: text-animation; animation-duration: 4s; animation-iteration-count: infinite; } @keyframes text-animation { from {color: #ffffff;} to {color: #b2d426;} } main .about-site h6:hover{ transform: ; } main .about-site .row img{ max-width: 100%; min-height: 98%; transition: transform .2s; } main .about-site .row img:hover { transform: scale(1.2); } main .about-site .row video{ max-width: 100%; height: 100%; padding-top: 22px; padding-bottom: 22px; background-color: #111111; } main .about-site .row video:hover{ transform: scale(1.2); } main .about-site .section-foot h2{ text-align: center; color: #b2d426; font-family: 'Bauhaus 93'; text-decoration: underline; } main .slide-content .abt-slide-title{ padding: 1rem 0; background: #88a805; } /*---------------------x------------------------ About -------------------------x----------------------*/ /*--------------------------------------------- Contact -----------------------------------------------*/ /* --------------- Site title ---------------- */ main .contact-site-title{ background: #1f1f1f; } main .contact-site-title .module-site-background{ text-align: center; } main .contact-site-title .row h1{ color: #b2d426; line-height: 56px; margin-bottom: 30px; margin-top: 30px; font-family: "Bauhaus 93"; font-size: 60px; } main .contact-site-title .row h5{ color: #b2d426; line-height: 56px; margin-bottom: 30px; margin-top: 30px; font-family: "Bauhaus 93"; text-transform: uppercase; } main .contact-site-title .form-control{ background: transparent; color: #b2d426; } main .contact-site-title label{ color: #ffffff; margin-left: 10px; } main .contact-site-title .form-select{ background: transparent; color: #b2d426; } main .contact-site-title option{ color: #000000; } main .contact-site-title .btn-contact{ background: transparent; color: #b2d426; border: solid; border-color: #ffffff; margin-bottom: 2rem; padding: .7rem 2rem; border-radius: 10px; } main .contact-site-title .btn-contact:hover{ background: #b2d426; color: #ffffff; border: solid; border-color: #b2d426; font-weight: bolder; } #left-box{ padding-right: 80px; } #contact-row{ margin-bottom: 30px; } main .contact-site-title .contact-icon{ width: 35px; height: 35px; } main .contact-site-title .col-lg-11{ color: #ffffff; } main .contact-site-title .col-lg-11 a{ text-decoration: none; color: #ffffff; } main .contact-site-title .col-lg-11 a:hover{ color: #b2d426; } main .contact-follow a{ text-decoration: none; color: #ffffff; font-size: 18px; } main .contact-follow a:hover{ color: #b2d426; } /*socialMediaBtn*/ .fa-facebook-square{ color: #4267B2; margin-right: 10px; } .fa-instagram-square{ color: #8a3ab9; margin-right: 10px; } .fa-twitter-square{ color: #1DA1F2; margin-right: 10px; } .fa-youtube{ color: #FF0000; margin-right: 10px; } /* --------x------ Site title --------x------- */ /*--------------------------------------------- Contact ---------------------------------------------*/ /*navFooter*/ .btn-pre{ background: radial-gradient(circle, rgba(238,174,202,1) 0%, rgba(148,187,233,1) 100%); } /*footer*/ .footer{ margin-top: 20px; width: 100%; font-size: 15px; background-color: #252525; text-align: left; } .footer div span a{ color: #999999; text-decoration: none; } .footer div span a:hover{ color: #e0e0e0; }
css/style.css
#logo{ width: 105px; height: 50px; } .nav-item{ font-size: 18px; font-family: Lucida Console; text-transform: uppercase; font-weight: bold; } main nav{ background: #1f1f1f; } /*----------------------x------------------------navbar------------------------x----------------------*/ /*---------------------------------------------- Home -----------------------------------------------*/ /* --------------- Site title ---------------- */ main .home-site-title{ background: url("C:/Users/HP/Desktop/Learn/ATT Project/img/titlebackground7.jpg"); background-size: cover; height: 110vh; display: flex; justify-content: center; } main .home-site-title .home-site-background{ padding-top: 19rem; text-align: center; } main .home-site-title h1, h3{ font-family: "20th Century Font"; background-color: #010145; background-image: linear-gradient(220deg, #000000, #ff0019, #08025e); -webkit-background-clip: text; -webkit-text-fill-color: transparent; -moz-background-clip: text; -moz-text-fill-color: transparent; } main .home-site-title .btn{ margin: 1.8rem; padding: .7rem 2rem; border: 1px solid #cbcacf; border-radius: 30px; background: linear-gradient(-90deg, #CF77F3 0%, #009BFF 47%, #2AC9DB 100%); color: #000000; font-style: bolder; } main .home-site-title .btn:hover{ background: #b2d426; color: #ffffff; font-style: bolder; } /* --------x------ Site title --------x------- */ /* --------------- Body Carousel ------------ */ main .home-slide{ background: url('../img/Abract02.png'); background-repeat: no-repeat; background-position: right; height: 100vh; width: 100%; background-size: 70%; } main .home-slide .slide-post{ padding-top: 6rem; } main .slide-post .slide-content{ display: flex; flex-direction: column; text-align: center; width: 80%; margin: 3rem 2rem; box-shadow: 0 15px 20px rgba(0, 0, 0, 0.2); } main .slide-post .slide-content:hover{ transition: ; } main .slide-content .slide-title{ padding: 1rem 0; } main .slide-content .btn-slide{ padding: .7rem 2rem; border-radius: 30px; background: linear-gradient(-90deg, #CF77F3 0%, #009BFF 47%, #2AC9DB 100%); margin: .5rem; } main .slide-content .btn-slide:hover{ background: #b2d426; color: #ffffff; font-style: bolder; } section .container .owl-nav{ position: relative; margin: 0 auto; width: 100%; } .owl-nav .owl-prev .owl-nav-prev, .owl-nav .owl-next .owl-nav-next{ color: var(--text-gray); background: transparent; font-size: 2rem; } .owl-theme .owl-nav [class*='owl-']:hover{ background: transparent; color: var(--midnight); } .owl-theme .owl-nav [class*='owl-']{ outline: none; } /* -------x------- Body Carousel -----x------ */ /*---------------------------------------------- Home -----------------------------------------------*/ /*--------------------------------------------- Module ----------------------------------------------*/ /* --------------- Site title ---------------- */ main .module-site{ background-size: cover; display: flex; justify-content: center; background: #1f1f1f; } main .module-site-title{ color: #ffffff; text-align: center; margin-top: 10px; } main .module-site-title h1{ color: #b2d426; line-height: 56px; font-family: "Bauhaus 93"; font-size: 50px; } main .module-site-dtl{ color: #ffffff; text-align: center; } main .module-site-nav { display: flex; flex-wrap: wrap; list-style: none; color: #ffffff; justify-content: center; position: relative; } main .module-site-nav-item { font-size: 17.5px; font-weight: bold; font-family: proxima_nova_rgbold; color: #ffffff; margin-top: 25px; padding: 0.5rem 1rem; text-decoration: none; transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out; cursor: pointer; border-bottom: solid #ffffff 0.5px; } main .module-site-nav-item active { color: #ffffff; } main .module-site-nav-item:hover{ color: #0064fa; } /*main .module-site-title .row{ margin-top: 50px; margin-bottom: 50px; }*/ main .row h1{ color: #b2d426; line-height: 56px; margin-bottom: 30px; font-family: "Bauhaus 93"; } main .row p{ color: #ffffff; margin-top: 15px; } main .row li{ color: #ffffff; } main .row img{ max-width: 100%; height: 98%; } main .breadcrumb{ background: #1f1f1f; padding-left: 20px; padding-bottom: 20px; padding-top: 20px; } /* --------x------ Site title --------x------- */ /*--------------------------------------------- Module ----------------------------------------------*/ /*--------------------------------------------- About -----------------------------------------------*/ /* --------------- Site title ---------------- */ main .about-site{ background-size: cover; } main .about-site{ display: flex; justify-content: center; background: #1f1f1f; } main .about-site .section-title{ text-align: center; padding-bottom: 38px; } main .about-site .section-body{ color: #ffffff; } main .about-site h2 span{ background: url(../img/section-title.png) no-repeat bottom center; padding: 0 20px 20px; font-family: 'Bauhaus 93'; font-size: 50px; line-height: 56px; word-spacing: 5px; color: #b2d426; } main .about-site p{ text-align: center; font-family: 'Cooper Black'; color: #b2d426; } /* --------x------ Site title --------x------- */ main .about-site .section-body span{ font-size: 16px; } main .about-site h6{ color: #ffffff; text-align: center; animation-name: text-animation; animation-duration: 4s; animation-iteration-count: infinite; } @keyframes text-animation { from {color: #ffffff;} to {color: #b2d426;} } main .about-site h6:hover{ transform: ; } main .about-site .row img{ max-width: 100%; min-height: 98%; transition: transform .2s; } main .about-site .row img:hover { transform: scale(1.2); } main .about-site .row video{ max-width: 100%; height: 100%; padding-top: 22px; padding-bottom: 22px; background-color: #111111; } main .about-site .row video:hover{ transform: scale(1.2); } main .about-site .section-foot h2{ text-align: center; color: #b2d426; font-family: 'Bauhaus 93'; text-decoration: underline; } main .slide-content .abt-slide-title{ padding: 1rem 0; background: #88a805; } /*---------------------x------------------------ About -------------------------x----------------------*/ /*--------------------------------------------- Contact -----------------------------------------------*/ /* --------------- Site title ---------------- */ main .contact-site-title{ background: #1f1f1f; } main .contact-site-title .module-site-background{ text-align: center; } main .contact-site-title .row h1{ color: #b2d426; line-height: 56px; margin-bottom: 30px; margin-top: 30px; font-family: "Bauhaus 93"; font-size: 60px; } main .contact-site-title .row h5{ color: #b2d426; line-height: 56px; margin-bottom: 30px; margin-top: 30px; font-family: "Bauhaus 93"; text-transform: uppercase; } main .contact-site-title .form-control{ background: transparent; color: #b2d426; } main .contact-site-title label{ color: #ffffff; margin-left: 10px; } main .contact-site-title .form-select{ background: transparent; color: #b2d426; } main .contact-site-title option{ color: #000000; } main .contact-site-title .btn-contact{ background: transparent; color: #b2d426; border: solid; border-color: #ffffff; margin-bottom: 2rem; padding: .7rem 2rem; border-radius: 10px; } main .contact-site-title .btn-contact:hover{ background: #b2d426; color: #ffffff; border: solid; border-color: #b2d426; font-weight: bolder; } #left-box{ padding-right: 80px; } #contact-row{ margin-bottom: 30px; } main .contact-site-title .contact-icon{ width: 35px; height: 35px; } main .contact-site-title .col-lg-11{ color: #ffffff; } main .contact-site-title .col-lg-11 a{ text-decoration: none; color: #ffffff; } main .contact-site-title .col-lg-11 a:hover{ color: #b2d426; } main .contact-follow a{ text-decoration: none; color: #ffffff; font-size: 18px; } main .contact-follow a:hover{ color: #b2d426; } /*socialMediaBtn*/ .fa-facebook-square{ color: #4267B2; margin-right: 10px; } .fa-instagram-square{ color: #8a3ab9; margin-right: 10px; } .fa-twitter-square{ color: #1DA1F2; margin-right: 10px; } .fa-youtube{ color: #FF0000; margin-right: 10px; } /* --------x------ Site title --------x------- */ /*--------------------------------------------- Contact ---------------------------------------------*/ /*navFooter*/ .btn-pre{ background: radial-gradient(circle, rgba(238,174,202,1) 0%, rgba(148,187,233,1) 100%); } /*footer*/ .footer{ margin-top: 20px; width: 100%; font-size: 15px; background-color: #252525; text-align: left; } .footer div span a{ color: #999999; text-decoration: none; } .footer div span a:hover{ color: #e0e0e0; }
0.235196
0.066478
.st_seat_lay_row #c1[type="checkbox"] + label:before { content:"1"; } .st_seat_lay_row #c2[type="checkbox"] + label:before { content:"2"; } .st_seat_lay_row #c3[type="checkbox"] + label:before { content:"3"; } .st_seat_lay_row #c4[type="checkbox"] + label:before { content:"4"; } .st_seat_lay_row #c5[type="checkbox"] + label:before { content:"5"; } .st_seat_lay_row #c6[type="checkbox"] + label:before { content:"6"; } .st_seat_lay_row #c7[type="checkbox"] + label:before { content:"7"; } .st_seat_lay_row #c8[type="checkbox"] + label:before { content:"8"; } .st_seat_lay_row #c9[type="checkbox"] + label:before { content:"9"; } .st_seat_lay_row #c10[type="checkbox"] + label:before { content:"10"; } .st_seat_lay_row #c11[type="checkbox"] + label:before { content:"11"; } .st_seat_lay_row #c12[type="checkbox"] + label:before { content:"12"; } .st_seat_lay_row #c13[type="checkbox"] + label:before { content:"13"; } .st_seat_lay_row #c14[type="checkbox"] + label:before { content:"14"; } .st_seat_lay_row #c15[type="checkbox"] + label:before { content:"15"; } .st_seat_lay_row #c16[type="checkbox"] + label:before { content:"16"; } .st_seat_lay_row #c17[type="checkbox"] + label:before { content:"17"; } .st_seat_lay_row #c18[type="checkbox"] + label:before { content:"18"; } .st_seat_lay_row #c19[type="checkbox"] + label:before { content:"19"; } .st_seat_lay_row #c20[type="checkbox"] + label:before { content:"20"; } .st_seat_lay_row #c21[type="checkbox"] + label:before { content:"21"; } .st_seat_lay_row #c22[type="checkbox"] + label:before { content:"22"; } .st_seat_lay_row #c23[type="checkbox"] + label:before { content:"23"; } .st_seat_lay_row #c24[type="checkbox"] + label:before { content:"1"; } .st_seat_lay_row #c25[type="checkbox"] + label:before { content:"2"; } .st_seat_lay_row #c26[type="checkbox"] + label:before { content:"3"; } .st_seat_lay_row #c27[type="checkbox"] + label:before { content:"4"; } .st_seat_lay_row #c28[type="checkbox"] + label:before { content:"5"; } .st_seat_lay_row #c29[type="checkbox"] + label:before { content:"6"; } .st_seat_lay_row #c30[type="checkbox"] + label:before { content:"7"; } .st_seat_lay_row #c31[type="checkbox"] + label:before { content:"8"; } .st_seat_lay_row #c32[type="checkbox"] + label:before { content:"9"; } .st_seat_lay_row #c33[type="checkbox"] + label:before { content:"10"; } .st_seat_lay_row #c34[type="checkbox"] + label:before { content:"11"; } .st_seat_lay_row #c35[type="checkbox"] + label:before { content:"12"; } .st_seat_lay_row #c36[type="checkbox"] + label:before { content:"13"; } .st_seat_lay_row #c37[type="checkbox"] + label:before { content:"14"; } .st_seat_lay_row #c38[type="checkbox"] + label:before { content:"15"; } .st_seat_lay_row #c39[type="checkbox"] + label:before { content:"16"; } .st_seat_lay_row #c40[type="checkbox"] + label:before { content:"17"; } .st_seat_lay_row #c41[type="checkbox"] + label:before { content:"18"; } .st_seat_lay_row #c42[type="checkbox"] + label:before { content:"19"; } .st_seat_lay_row #c43[type="checkbox"] + label:before { content:"20"; } .st_seat_lay_row #c44[type="checkbox"] + label:before { content:"21"; } .st_seat_lay_row #c45[type="checkbox"] + label:before { content:"22"; } .st_seat_lay_row #c46[type="checkbox"] + label:before { content:"23"; } .st_seat_lay_row #c47[type="checkbox"] + label:before { content:"1"; } .st_seat_lay_row #c48[type="checkbox"] + label:before { content:"2"; } .st_seat_lay_row #c49[type="checkbox"] + label:before { content:"3"; } .st_seat_lay_row #c50[type="checkbox"] + label:before { content:"4"; } .st_seat_lay_row #c51[type="checkbox"] + label:before { content:"5"; } .st_seat_lay_row #c52[type="checkbox"] + label:before { content:"6"; } .st_seat_lay_row #c53[type="checkbox"] + label:before { content:"7"; } .st_seat_lay_row #c54[type="checkbox"] + label:before { content:"8"; } .st_seat_lay_row #c55[type="checkbox"] + label:before { content:"9"; } .st_seat_lay_row #c56[type="checkbox"] + label:before { content:"10"; } .st_seat_lay_row #c57[type="checkbox"] + label:before { content:"11"; } .st_seat_lay_row #c58[type="checkbox"] + label:before { content:"12"; } .st_seat_lay_row #c59[type="checkbox"] + label:before { content:"13"; } .st_seat_lay_row #c60[type="checkbox"] + label:before { content:"14"; } .st_seat_lay_row #c61[type="checkbox"] + label:before { content:"15"; } .st_seat_lay_row #c62[type="checkbox"] + label:before { content:"16"; } .st_seat_lay_row #c63[type="checkbox"] + label:before { content:"17"; } .st_seat_lay_row #c64[type="checkbox"] + label:before { content:"18"; } .st_seat_lay_row #c65[type="checkbox"] + label:before { content:"19"; } .st_seat_lay_row #c66[type="checkbox"] + label:before { content:"20"; } .st_seat_lay_row #c67[type="checkbox"] + label:before { content:"21"; } .st_seat_lay_row #c68[type="checkbox"] + label:before { content:"22"; } .st_seat_lay_row #c69[type="checkbox"] + label:before { content:"23"; } .st_seat_lay_row #c70[type="checkbox"] + label:before { content:"1"; } .st_seat_lay_row #c71[type="checkbox"] + label:before { content:"2"; } .st_seat_lay_row #c72[type="checkbox"] + label:before { content:"3"; } .st_seat_lay_row #c73[type="checkbox"] + label:before { content:"4"; } .st_seat_lay_row #c74[type="checkbox"] + label:before { content:"5"; } .st_seat_lay_row #c75[type="checkbox"] + label:before { content:"6"; } .st_seat_lay_row #c76[type="checkbox"] + label:before { content:"7"; } .st_seat_lay_row #c77[type="checkbox"] + label:before { content:"8"; } .st_seat_lay_row #c78[type="checkbox"] + label:before { content:"9"; } .st_seat_lay_row #c79[type="checkbox"] + label:before { content:"10"; } .st_seat_lay_row #c80[type="checkbox"] + label:before { content:"11"; } .st_seat_lay_row #c81[type="checkbox"] + label:before { content:"12"; } .st_seat_lay_row #c82[type="checkbox"] + label:before { content:"13"; } .st_seat_lay_row #c83[type="checkbox"] + label:before { content:"14"; } .st_seat_lay_row #c84[type="checkbox"] + label:before { content:"15"; } .st_seat_lay_row #c85[type="checkbox"] + label:before { content:"16"; } .st_seat_lay_row #c86[type="checkbox"] + label:before { content:"17"; } .st_seat_lay_row #c87[type="checkbox"] + label:before { content:"18"; } .st_seat_lay_row #c88[type="checkbox"] + label:before { content:"19"; } .st_seat_lay_row #c89[type="checkbox"] + label:before { content:"20"; } .st_seat_lay_row #c90[type="checkbox"] + label:before { content:"21"; } .st_seat_lay_row #c91[type="checkbox"] + label:before { content:"22"; } .st_seat_lay_row #c92[type="checkbox"] + label:before { content:"23"; }
public/frontend/css/seat.css
.st_seat_lay_row #c1[type="checkbox"] + label:before { content:"1"; } .st_seat_lay_row #c2[type="checkbox"] + label:before { content:"2"; } .st_seat_lay_row #c3[type="checkbox"] + label:before { content:"3"; } .st_seat_lay_row #c4[type="checkbox"] + label:before { content:"4"; } .st_seat_lay_row #c5[type="checkbox"] + label:before { content:"5"; } .st_seat_lay_row #c6[type="checkbox"] + label:before { content:"6"; } .st_seat_lay_row #c7[type="checkbox"] + label:before { content:"7"; } .st_seat_lay_row #c8[type="checkbox"] + label:before { content:"8"; } .st_seat_lay_row #c9[type="checkbox"] + label:before { content:"9"; } .st_seat_lay_row #c10[type="checkbox"] + label:before { content:"10"; } .st_seat_lay_row #c11[type="checkbox"] + label:before { content:"11"; } .st_seat_lay_row #c12[type="checkbox"] + label:before { content:"12"; } .st_seat_lay_row #c13[type="checkbox"] + label:before { content:"13"; } .st_seat_lay_row #c14[type="checkbox"] + label:before { content:"14"; } .st_seat_lay_row #c15[type="checkbox"] + label:before { content:"15"; } .st_seat_lay_row #c16[type="checkbox"] + label:before { content:"16"; } .st_seat_lay_row #c17[type="checkbox"] + label:before { content:"17"; } .st_seat_lay_row #c18[type="checkbox"] + label:before { content:"18"; } .st_seat_lay_row #c19[type="checkbox"] + label:before { content:"19"; } .st_seat_lay_row #c20[type="checkbox"] + label:before { content:"20"; } .st_seat_lay_row #c21[type="checkbox"] + label:before { content:"21"; } .st_seat_lay_row #c22[type="checkbox"] + label:before { content:"22"; } .st_seat_lay_row #c23[type="checkbox"] + label:before { content:"23"; } .st_seat_lay_row #c24[type="checkbox"] + label:before { content:"1"; } .st_seat_lay_row #c25[type="checkbox"] + label:before { content:"2"; } .st_seat_lay_row #c26[type="checkbox"] + label:before { content:"3"; } .st_seat_lay_row #c27[type="checkbox"] + label:before { content:"4"; } .st_seat_lay_row #c28[type="checkbox"] + label:before { content:"5"; } .st_seat_lay_row #c29[type="checkbox"] + label:before { content:"6"; } .st_seat_lay_row #c30[type="checkbox"] + label:before { content:"7"; } .st_seat_lay_row #c31[type="checkbox"] + label:before { content:"8"; } .st_seat_lay_row #c32[type="checkbox"] + label:before { content:"9"; } .st_seat_lay_row #c33[type="checkbox"] + label:before { content:"10"; } .st_seat_lay_row #c34[type="checkbox"] + label:before { content:"11"; } .st_seat_lay_row #c35[type="checkbox"] + label:before { content:"12"; } .st_seat_lay_row #c36[type="checkbox"] + label:before { content:"13"; } .st_seat_lay_row #c37[type="checkbox"] + label:before { content:"14"; } .st_seat_lay_row #c38[type="checkbox"] + label:before { content:"15"; } .st_seat_lay_row #c39[type="checkbox"] + label:before { content:"16"; } .st_seat_lay_row #c40[type="checkbox"] + label:before { content:"17"; } .st_seat_lay_row #c41[type="checkbox"] + label:before { content:"18"; } .st_seat_lay_row #c42[type="checkbox"] + label:before { content:"19"; } .st_seat_lay_row #c43[type="checkbox"] + label:before { content:"20"; } .st_seat_lay_row #c44[type="checkbox"] + label:before { content:"21"; } .st_seat_lay_row #c45[type="checkbox"] + label:before { content:"22"; } .st_seat_lay_row #c46[type="checkbox"] + label:before { content:"23"; } .st_seat_lay_row #c47[type="checkbox"] + label:before { content:"1"; } .st_seat_lay_row #c48[type="checkbox"] + label:before { content:"2"; } .st_seat_lay_row #c49[type="checkbox"] + label:before { content:"3"; } .st_seat_lay_row #c50[type="checkbox"] + label:before { content:"4"; } .st_seat_lay_row #c51[type="checkbox"] + label:before { content:"5"; } .st_seat_lay_row #c52[type="checkbox"] + label:before { content:"6"; } .st_seat_lay_row #c53[type="checkbox"] + label:before { content:"7"; } .st_seat_lay_row #c54[type="checkbox"] + label:before { content:"8"; } .st_seat_lay_row #c55[type="checkbox"] + label:before { content:"9"; } .st_seat_lay_row #c56[type="checkbox"] + label:before { content:"10"; } .st_seat_lay_row #c57[type="checkbox"] + label:before { content:"11"; } .st_seat_lay_row #c58[type="checkbox"] + label:before { content:"12"; } .st_seat_lay_row #c59[type="checkbox"] + label:before { content:"13"; } .st_seat_lay_row #c60[type="checkbox"] + label:before { content:"14"; } .st_seat_lay_row #c61[type="checkbox"] + label:before { content:"15"; } .st_seat_lay_row #c62[type="checkbox"] + label:before { content:"16"; } .st_seat_lay_row #c63[type="checkbox"] + label:before { content:"17"; } .st_seat_lay_row #c64[type="checkbox"] + label:before { content:"18"; } .st_seat_lay_row #c65[type="checkbox"] + label:before { content:"19"; } .st_seat_lay_row #c66[type="checkbox"] + label:before { content:"20"; } .st_seat_lay_row #c67[type="checkbox"] + label:before { content:"21"; } .st_seat_lay_row #c68[type="checkbox"] + label:before { content:"22"; } .st_seat_lay_row #c69[type="checkbox"] + label:before { content:"23"; } .st_seat_lay_row #c70[type="checkbox"] + label:before { content:"1"; } .st_seat_lay_row #c71[type="checkbox"] + label:before { content:"2"; } .st_seat_lay_row #c72[type="checkbox"] + label:before { content:"3"; } .st_seat_lay_row #c73[type="checkbox"] + label:before { content:"4"; } .st_seat_lay_row #c74[type="checkbox"] + label:before { content:"5"; } .st_seat_lay_row #c75[type="checkbox"] + label:before { content:"6"; } .st_seat_lay_row #c76[type="checkbox"] + label:before { content:"7"; } .st_seat_lay_row #c77[type="checkbox"] + label:before { content:"8"; } .st_seat_lay_row #c78[type="checkbox"] + label:before { content:"9"; } .st_seat_lay_row #c79[type="checkbox"] + label:before { content:"10"; } .st_seat_lay_row #c80[type="checkbox"] + label:before { content:"11"; } .st_seat_lay_row #c81[type="checkbox"] + label:before { content:"12"; } .st_seat_lay_row #c82[type="checkbox"] + label:before { content:"13"; } .st_seat_lay_row #c83[type="checkbox"] + label:before { content:"14"; } .st_seat_lay_row #c84[type="checkbox"] + label:before { content:"15"; } .st_seat_lay_row #c85[type="checkbox"] + label:before { content:"16"; } .st_seat_lay_row #c86[type="checkbox"] + label:before { content:"17"; } .st_seat_lay_row #c87[type="checkbox"] + label:before { content:"18"; } .st_seat_lay_row #c88[type="checkbox"] + label:before { content:"19"; } .st_seat_lay_row #c89[type="checkbox"] + label:before { content:"20"; } .st_seat_lay_row #c90[type="checkbox"] + label:before { content:"21"; } .st_seat_lay_row #c91[type="checkbox"] + label:before { content:"22"; } .st_seat_lay_row #c92[type="checkbox"] + label:before { content:"23"; }
0.212069
0.104477
* { margin: 0; padding: 0; box-sizing: border-box; } .container { position: relative; display: flex; justify-content: center; align-items: center; width: 100%; height: 100vh; background-color: white; } /* Posicionamos el header arriba a la derecha */ .header { position: absolute; display: flex; justify-content: flex-end; flex-direction: row; align-items: flex-end; text-align: right; font-size: 13px; font-family: arial, sans-serif; color: black; padding: 10px; /* background-color: red; */ top: 1vmin; right: 5vmin; } .textoGmail { margin: 4px; padding-left: 10px; padding-right: 10px; padding-top: 10px; padding-bottom: 10px; } .textoImg { margin: 4px; padding-left: 10px; padding-right: 10px; padding-top: 10px; padding-bottom: 10px; } .forma { margin: 4px; padding-left: 16px; padding-right: 16px; padding-top: 16px; padding-bottom: 16px; background-image: url("../img/cuadricula.png"); background-size: cover; } .signIn { margin: 4px; margin-left: 20px; background-color: #1a508b; padding-left: 10px; padding-right: 10px; padding-top: 10px; padding-bottom: 10px; border-radius: 5px; color: white; font-weight: bold; } /* Empezamos con el el div del logo de Google */ .logo { position: absolute; display: flex; justify-content: center; align-items: center; background-image: url("../img/googlelogo.png"); width: 270px; height: 200px; background-repeat: no-repeat; top: 15vmin; } /* Input buscador google */ .buscador { position: absolute; display: flex; justify-content: center; align-items: center; width: 480px; height: 50px; /* background-color: yellow; */ /* border: 1px solid #cdcdcd; */ border-radius: 1px 1px 1px 1px; } input:focus{ outline: none; box-shadow: none; } #searchbar { position: absolute; width: 480px; height: 50px; border: 1px solid #cdcdcd; border-radius: 15px; text-align: center; box-shadow: 2px 2px 6px #888888; top: -10vmin; } .lupa { position: absolute; display: flex; justify-content: center; align-items: center; background-image: url("../img/lupa.png"); background-color: transparent; width: 20px; height: 20px; background-repeat: no-repeat; top: -7vmin; right: 2vmin; } /* Botón Google y botón "voy a tener suerte" */ .textoGoogle { position: absolute; display: flex; justify-content: center; align-items: center; cursor: pointer; border-radius: 4px; margin: 11px 4px; padding: 0 16px; line-height: 27px; height: 36px; width: 54px; text-align: center; top: -2vmin; left: 10vmin; } #textoGoogle { position: absolute; border-radius: 4px; height: 38px; width: 170px; text-align: center; margin: 11px 4px; padding: 0 16px; line-height: 27px; font-size: 14px; user-select: none; font-family: arial, sans-serif; background-color: #f8f9fa; } input[type="submit"]:hover { box-shadow: 0 1px 1px rgba(0,0,0,.1); background-color: #f8f9fa; border: 1px solid #dadce0; color: #202124; cursor: pointer; } .textoSuerte { position: absolute; display: flex; justify-content: center; align-items: center; cursor: pointer; border-radius: 4px; margin: 11px 4px; padding: 0 16px; line-height: 27px; height: 36px; width: 54px; text-align: center; top: -2vmin; right: 8vmin; } #textoSuerte { position: absolute; display: flex; justify-content: center; align-items: center; border-radius: 4px; height: 38px; width: 170px; text-align: center; margin: 11px 4px; padding: 0 16px; line-height: 27px; font-size: 14px; user-select: none; font-family: arial, sans-serif; background-color: #f8f9fa; } /* Acabamos con el div del footer */ .footerGoogle { position: absolute; display: flex; justify-content: end; align-items: flex-end; width: 100%; height: 50px; background-color: #f8f9fa; border: 1px solid #cdcdcd; bottom: 0vmin; } .textoIzquierda { position: absolute; display: flex; justify-content: flex-start; align-items: center; width: 100%; height: 50px; bottom: 0vmin; } .textoAdver { position: absolute; display: flex; flex-direction: row; align-items: flex-start; left: 1vmin; font-family: arial,sans-serif; font-size: 14px; line-height: 8px; white-space: nowrap; } /* .textoAdver a:hover { text-decoration: underline; } */ .textoBusi { position: absolute; display: flex; flex-direction: row; align-items: flex-start; left: 15vmin; font-family: arial,sans-serif; font-size: 14px; line-height: 8px; white-space: nowrap; } .textoAbout { position: absolute; display: flex; flex-direction: row; align-items: flex-start; left: 27vmin; font-family: arial,sans-serif; font-size: 14px; line-height: 8px; white-space: nowrap; } .textoDerecha { position: absolute; display: flex; justify-content: flex-end; align-items: center; width: 100%; height: 50px; bottom: 0vmin; } .textoPriva { position: absolute; display: flex; flex-direction: row; align-items: flex-end; right: 33vmin; font-family: arial,sans-serif; font-size: 14px; line-height: 8px; white-space: nowrap; } .textoTerm { position: absolute; display: flex; flex-direction: row; align-items: flex-end; right: 20vmin; font-family: arial,sans-serif; font-size: 14px; line-height: 8px; white-space: nowrap; } .textoSett { position: absolute; display: flex; flex-direction: row; align-items: flex-end; right: 2vmin; font-family: arial,sans-serif; font-size: 14px; line-height: 8px; white-space: nowrap; }
css/style.css
* { margin: 0; padding: 0; box-sizing: border-box; } .container { position: relative; display: flex; justify-content: center; align-items: center; width: 100%; height: 100vh; background-color: white; } /* Posicionamos el header arriba a la derecha */ .header { position: absolute; display: flex; justify-content: flex-end; flex-direction: row; align-items: flex-end; text-align: right; font-size: 13px; font-family: arial, sans-serif; color: black; padding: 10px; /* background-color: red; */ top: 1vmin; right: 5vmin; } .textoGmail { margin: 4px; padding-left: 10px; padding-right: 10px; padding-top: 10px; padding-bottom: 10px; } .textoImg { margin: 4px; padding-left: 10px; padding-right: 10px; padding-top: 10px; padding-bottom: 10px; } .forma { margin: 4px; padding-left: 16px; padding-right: 16px; padding-top: 16px; padding-bottom: 16px; background-image: url("../img/cuadricula.png"); background-size: cover; } .signIn { margin: 4px; margin-left: 20px; background-color: #1a508b; padding-left: 10px; padding-right: 10px; padding-top: 10px; padding-bottom: 10px; border-radius: 5px; color: white; font-weight: bold; } /* Empezamos con el el div del logo de Google */ .logo { position: absolute; display: flex; justify-content: center; align-items: center; background-image: url("../img/googlelogo.png"); width: 270px; height: 200px; background-repeat: no-repeat; top: 15vmin; } /* Input buscador google */ .buscador { position: absolute; display: flex; justify-content: center; align-items: center; width: 480px; height: 50px; /* background-color: yellow; */ /* border: 1px solid #cdcdcd; */ border-radius: 1px 1px 1px 1px; } input:focus{ outline: none; box-shadow: none; } #searchbar { position: absolute; width: 480px; height: 50px; border: 1px solid #cdcdcd; border-radius: 15px; text-align: center; box-shadow: 2px 2px 6px #888888; top: -10vmin; } .lupa { position: absolute; display: flex; justify-content: center; align-items: center; background-image: url("../img/lupa.png"); background-color: transparent; width: 20px; height: 20px; background-repeat: no-repeat; top: -7vmin; right: 2vmin; } /* Botón Google y botón "voy a tener suerte" */ .textoGoogle { position: absolute; display: flex; justify-content: center; align-items: center; cursor: pointer; border-radius: 4px; margin: 11px 4px; padding: 0 16px; line-height: 27px; height: 36px; width: 54px; text-align: center; top: -2vmin; left: 10vmin; } #textoGoogle { position: absolute; border-radius: 4px; height: 38px; width: 170px; text-align: center; margin: 11px 4px; padding: 0 16px; line-height: 27px; font-size: 14px; user-select: none; font-family: arial, sans-serif; background-color: #f8f9fa; } input[type="submit"]:hover { box-shadow: 0 1px 1px rgba(0,0,0,.1); background-color: #f8f9fa; border: 1px solid #dadce0; color: #202124; cursor: pointer; } .textoSuerte { position: absolute; display: flex; justify-content: center; align-items: center; cursor: pointer; border-radius: 4px; margin: 11px 4px; padding: 0 16px; line-height: 27px; height: 36px; width: 54px; text-align: center; top: -2vmin; right: 8vmin; } #textoSuerte { position: absolute; display: flex; justify-content: center; align-items: center; border-radius: 4px; height: 38px; width: 170px; text-align: center; margin: 11px 4px; padding: 0 16px; line-height: 27px; font-size: 14px; user-select: none; font-family: arial, sans-serif; background-color: #f8f9fa; } /* Acabamos con el div del footer */ .footerGoogle { position: absolute; display: flex; justify-content: end; align-items: flex-end; width: 100%; height: 50px; background-color: #f8f9fa; border: 1px solid #cdcdcd; bottom: 0vmin; } .textoIzquierda { position: absolute; display: flex; justify-content: flex-start; align-items: center; width: 100%; height: 50px; bottom: 0vmin; } .textoAdver { position: absolute; display: flex; flex-direction: row; align-items: flex-start; left: 1vmin; font-family: arial,sans-serif; font-size: 14px; line-height: 8px; white-space: nowrap; } /* .textoAdver a:hover { text-decoration: underline; } */ .textoBusi { position: absolute; display: flex; flex-direction: row; align-items: flex-start; left: 15vmin; font-family: arial,sans-serif; font-size: 14px; line-height: 8px; white-space: nowrap; } .textoAbout { position: absolute; display: flex; flex-direction: row; align-items: flex-start; left: 27vmin; font-family: arial,sans-serif; font-size: 14px; line-height: 8px; white-space: nowrap; } .textoDerecha { position: absolute; display: flex; justify-content: flex-end; align-items: center; width: 100%; height: 50px; bottom: 0vmin; } .textoPriva { position: absolute; display: flex; flex-direction: row; align-items: flex-end; right: 33vmin; font-family: arial,sans-serif; font-size: 14px; line-height: 8px; white-space: nowrap; } .textoTerm { position: absolute; display: flex; flex-direction: row; align-items: flex-end; right: 20vmin; font-family: arial,sans-serif; font-size: 14px; line-height: 8px; white-space: nowrap; } .textoSett { position: absolute; display: flex; flex-direction: row; align-items: flex-end; right: 2vmin; font-family: arial,sans-serif; font-size: 14px; line-height: 8px; white-space: nowrap; }
0.474875
0.096238
body { background-color: rgb(25, 25, 25); position: relative; --nodes-size: 70px; } /* ----------------------------------------------------------------- */ /* Settings Menu */ /* ----------------------------------------------------------------- */ div#settings { height: 100vh; width: 250px; position: fixed; top: 0; left: 0; z-index: 5; background: rgb(50, 50, 50); font-family: "Montserrat", sans-serif; display: none; } /* Slide Menu */ @keyframes slideMenuOn { 0% { transform: translateX(-100%); } 100% { transform: translateX(0%); } } @keyframes slideMenuOff { 0% { transform: translateX(0%); } 100% { transform: translateX(-100%); } } /* Increase Opacity to highlight menu */ @keyframes decreaseOpacity { 0% { opacity: 1; } 100% { opacity: 0.5; } } @keyframes increaseOpacity { 0% { opacity: 0.5; } 100% { opacity: 1; } } div.menu-header { display: grid; grid-template-columns: 5% 90% 5%; place-items: center; margin: 20px 0 35px 0; width: 100%; } div#close-menu { transform: translateX(25px); cursor: pointer; font-size: 1rem; color: #fff; } div.menu-header > div:nth-child(2) { width: 90%; } div.menu-header > div:nth-child(2) h2 { font-size: 1.8rem; padding-bottom: 10px; border-bottom: 1px solid #fff; margin: 0; text-align: center; color: #fff; } div.settings-container { width: 90%; margin: 0 auto; box-sizing: border-box; text-align: center; color: #fff; } div#settings input { width: 80%; } div#settings button { height: 32px; width: 90%; margin-top: 34px; border: none; border-radius: 5px; background: linear-gradient(-125deg, #0067ff, #8900e8); font-weight: bold; color: #fff; } /* ----------------------------------------------------------------- */ /* Header */ /* ----------------------------------------------------------------- */ div.header-container { display: grid; grid-template-columns: 1fr 5fr 1fr; place-items: center; } header h1 { font-family: "Montserrat", sans-serif; text-align: center; color: #fff; } header h1 span { font-style: italic; color: #8900e8; } div#settings-menu, div#theme-switcher { font-size: 2rem; color: #fff; cursor: pointer; } div.gradient-border { width: 95%; height: 1px; margin: 0 auto; background: linear-gradient(to right, #0067ff, #8900e8); } /* ----------------------------------------------------------------- */ /* List */ /* ----------------------------------------------------------------- */ section.list { width: 95%; padding-left: 5%; padding-top: 40px; padding-bottom: 35px; margin-bottom: 0; display: flex; flex-wrap: nowrap; overflow-x: auto; overflow-y: hidden; } section.list > div { flex: 0 0 auto; display: inline-block; vertical-align: top; } /* Webkit browsers custom scrollbar */ ::-webkit-scrollbar { height: 10px; } ::-webkit-scrollbar-track { box-shadow: inset 0 0 5px #4d4de0; border-radius: 10px; } ::-webkit-scrollbar-thumb { border-radius: 15px; background: #7e7eed; } /* Firefox */ section.list { scrollbar-color: #7474fd rgb(202, 190, 255); scrollbar-width: thin; } /* ----------------------------------------------------------------- */ /* Node */ /* ----------------------------------------------------------------- */ div.node { background: #8900e8; width: var(--nodes-size); height: var(--nodes-size); text-align: center; border-radius: 50%; } @keyframes grow { 0% { transform: scale(0); } 80% { transform: scale(1.2); } 100% { transform: scale(1); } } @keyframes highlightNode { 50% { transform: scale(1.3); } 100% { transform: scale(1); } } @keyframes deleteNode { 50% { transform: scale(1.3); } 100% { transform: scale(0); } } @keyframes moveLeftNode { 0% { transform: translateX(200%); } 70% { transform: translateX(250%); } 100% { transform: translateX(0%); } } @keyframes moveRightNode { 50% { transform: translateX(250%); } 100% { transform: translateX(200%); } } /* ----------------------------------------------------------------- */ /* Number */ /* ----------------------------------------------------------------- */ div.node p.number { margin: 0; line-height: var(--nodes-size); font-family: "Oswald", sans-serif; font-size: 1.6rem; font-weight: bold; color: #fff; } @keyframes fadeNumberOut { 70% { transform: scale(1.7); } 100% { transform: scale(0); } } @keyframes fadeNumberIn { 0% { transform: scale(0); } 80% { transform: scale(1.1); } 100% { transform: scale(1); } } /* ----------------------------------------------------------------- */ /* Pointer */ /* ----------------------------------------------------------------- */ div.pointer { position: relative; width: var(--nodes-size); height: var(--nodes-size); z-index: -1; } div.pointer img { width: 60px; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); } @keyframes slide { 0% { transform: translateX(-100%); } 80% { transform: translateX(10%); } 100% { transform: translateX(0%); } } @keyframes highlightPointer { 33% { transform: rotate(10deg); } 66% { transform: rotate(-10deg); } 100% { transform: rotate(0deg); } } @keyframes deletePointer { 50% { transform: scale(1.3); } 100% { transform: scale(0); } } /* ----------------------------------------------------------------- */ /* Operations */ /* ----------------------------------------------------------------- */ section.operations { position: fixed; bottom: 5%; width: 100%; } div.wrapper { width: 95%; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(120px, auto); text-align: center; } div.wrapper p, div.wrapper input, div.wrapper button { font-family: Arial, sans-serif; width: 80%; } div.wrapper p { margin: 10px auto 4px auto; color: #fff; } div.wrapper input { padding: 5px; border: none; display: block; margin: 0 auto; box-sizing: border-box; margin-top: 10px; } div.wrapper input::placeholder { font-style: italic; } /* ----------------------------------------------------------------- */ /* Buttons */ /* ----------------------------------------------------------------- */ button.button { border: none; background: linear-gradient(-125deg, #0067ff, #8900e8); padding: 10px; font-size: 1.5rem; font-weight: bold; font-style: italic; color: #fff; display: block; margin: 0 auto; cursor: pointer; transition: all 0.2s ease-in-out; } button.button:hover { transform: scale(1.03); } div.remove input { display: none; } /* ----------------------------------------------------------------- */ /* Remove Button */ /* ----------------------------------------------------------------- */ div.remove { width: 80%; margin: 0 auto; display: flex; transition: all 0.2s ease-in-out; position: relative; z-index: 3; } div.remove:hover { transform: scale(1.03); } div.wrapper > div:nth-child(4) input { display: none; } button#remove-btn { width: 70%; background: linear-gradient(to right, #ff002b, #9f0000); } button#remove-settings { width: 30%; font-size: 1.3rem; background: #9f0000; } button#remove-btn:hover, button#remove-settings:hover { transform: none; } @keyframes removeAnimationOn { 100% { transform: rotate(-90deg); } } @keyframes removeAnimationOff { 100% { transform: rotate(90deg); } } button.remove-option { background: #fff; padding: 3px; font-style: italic; transition: 0.05s all ease-in-out; display: none; margin: 0 auto; position: relative; color: rgb(25, 25, 25); } button.remove-option:hover { border: 2px solid #ff4c6a; font-weight: bold; } button#remove-index-btn { z-index: 2; } button#remove-data-btn { z-index: 1; } @keyframes toggleMenuDown { 0% { transform: translate(0, -100%); } 100% { transform: translate(0, 0); } } @keyframes toggleMenuDown200 { 0% { transform: translate(0, -200%); } 100% { transform: translate(0, 0); } } @keyframes toggleMenuUp { 100% { transform: translate(0, -100%); } } @keyframes toggleMenuUp200 { 100% { transform: translate(0, -200%); } } /* ----------------------------------------------------------------- */ /* Errors */ /* ----------------------------------------------------------------- */ section.errors { width: 90%; margin: 0 auto; } div.success, div.error-message { font-family: "Livvic", sans-serif; font-size: 16px; font-weight: bold; font-style: italic; margin-top: 30px; height: 32px; } div.error-message { color: rgb(218, 23, 23); } div.success { color: green; } div.error-message p { margin: 0; }
CONTENT/Resources/visualizations/Linked-List-Visualization/css/style.css
body { background-color: rgb(25, 25, 25); position: relative; --nodes-size: 70px; } /* ----------------------------------------------------------------- */ /* Settings Menu */ /* ----------------------------------------------------------------- */ div#settings { height: 100vh; width: 250px; position: fixed; top: 0; left: 0; z-index: 5; background: rgb(50, 50, 50); font-family: "Montserrat", sans-serif; display: none; } /* Slide Menu */ @keyframes slideMenuOn { 0% { transform: translateX(-100%); } 100% { transform: translateX(0%); } } @keyframes slideMenuOff { 0% { transform: translateX(0%); } 100% { transform: translateX(-100%); } } /* Increase Opacity to highlight menu */ @keyframes decreaseOpacity { 0% { opacity: 1; } 100% { opacity: 0.5; } } @keyframes increaseOpacity { 0% { opacity: 0.5; } 100% { opacity: 1; } } div.menu-header { display: grid; grid-template-columns: 5% 90% 5%; place-items: center; margin: 20px 0 35px 0; width: 100%; } div#close-menu { transform: translateX(25px); cursor: pointer; font-size: 1rem; color: #fff; } div.menu-header > div:nth-child(2) { width: 90%; } div.menu-header > div:nth-child(2) h2 { font-size: 1.8rem; padding-bottom: 10px; border-bottom: 1px solid #fff; margin: 0; text-align: center; color: #fff; } div.settings-container { width: 90%; margin: 0 auto; box-sizing: border-box; text-align: center; color: #fff; } div#settings input { width: 80%; } div#settings button { height: 32px; width: 90%; margin-top: 34px; border: none; border-radius: 5px; background: linear-gradient(-125deg, #0067ff, #8900e8); font-weight: bold; color: #fff; } /* ----------------------------------------------------------------- */ /* Header */ /* ----------------------------------------------------------------- */ div.header-container { display: grid; grid-template-columns: 1fr 5fr 1fr; place-items: center; } header h1 { font-family: "Montserrat", sans-serif; text-align: center; color: #fff; } header h1 span { font-style: italic; color: #8900e8; } div#settings-menu, div#theme-switcher { font-size: 2rem; color: #fff; cursor: pointer; } div.gradient-border { width: 95%; height: 1px; margin: 0 auto; background: linear-gradient(to right, #0067ff, #8900e8); } /* ----------------------------------------------------------------- */ /* List */ /* ----------------------------------------------------------------- */ section.list { width: 95%; padding-left: 5%; padding-top: 40px; padding-bottom: 35px; margin-bottom: 0; display: flex; flex-wrap: nowrap; overflow-x: auto; overflow-y: hidden; } section.list > div { flex: 0 0 auto; display: inline-block; vertical-align: top; } /* Webkit browsers custom scrollbar */ ::-webkit-scrollbar { height: 10px; } ::-webkit-scrollbar-track { box-shadow: inset 0 0 5px #4d4de0; border-radius: 10px; } ::-webkit-scrollbar-thumb { border-radius: 15px; background: #7e7eed; } /* Firefox */ section.list { scrollbar-color: #7474fd rgb(202, 190, 255); scrollbar-width: thin; } /* ----------------------------------------------------------------- */ /* Node */ /* ----------------------------------------------------------------- */ div.node { background: #8900e8; width: var(--nodes-size); height: var(--nodes-size); text-align: center; border-radius: 50%; } @keyframes grow { 0% { transform: scale(0); } 80% { transform: scale(1.2); } 100% { transform: scale(1); } } @keyframes highlightNode { 50% { transform: scale(1.3); } 100% { transform: scale(1); } } @keyframes deleteNode { 50% { transform: scale(1.3); } 100% { transform: scale(0); } } @keyframes moveLeftNode { 0% { transform: translateX(200%); } 70% { transform: translateX(250%); } 100% { transform: translateX(0%); } } @keyframes moveRightNode { 50% { transform: translateX(250%); } 100% { transform: translateX(200%); } } /* ----------------------------------------------------------------- */ /* Number */ /* ----------------------------------------------------------------- */ div.node p.number { margin: 0; line-height: var(--nodes-size); font-family: "Oswald", sans-serif; font-size: 1.6rem; font-weight: bold; color: #fff; } @keyframes fadeNumberOut { 70% { transform: scale(1.7); } 100% { transform: scale(0); } } @keyframes fadeNumberIn { 0% { transform: scale(0); } 80% { transform: scale(1.1); } 100% { transform: scale(1); } } /* ----------------------------------------------------------------- */ /* Pointer */ /* ----------------------------------------------------------------- */ div.pointer { position: relative; width: var(--nodes-size); height: var(--nodes-size); z-index: -1; } div.pointer img { width: 60px; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); } @keyframes slide { 0% { transform: translateX(-100%); } 80% { transform: translateX(10%); } 100% { transform: translateX(0%); } } @keyframes highlightPointer { 33% { transform: rotate(10deg); } 66% { transform: rotate(-10deg); } 100% { transform: rotate(0deg); } } @keyframes deletePointer { 50% { transform: scale(1.3); } 100% { transform: scale(0); } } /* ----------------------------------------------------------------- */ /* Operations */ /* ----------------------------------------------------------------- */ section.operations { position: fixed; bottom: 5%; width: 100%; } div.wrapper { width: 95%; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(120px, auto); text-align: center; } div.wrapper p, div.wrapper input, div.wrapper button { font-family: Arial, sans-serif; width: 80%; } div.wrapper p { margin: 10px auto 4px auto; color: #fff; } div.wrapper input { padding: 5px; border: none; display: block; margin: 0 auto; box-sizing: border-box; margin-top: 10px; } div.wrapper input::placeholder { font-style: italic; } /* ----------------------------------------------------------------- */ /* Buttons */ /* ----------------------------------------------------------------- */ button.button { border: none; background: linear-gradient(-125deg, #0067ff, #8900e8); padding: 10px; font-size: 1.5rem; font-weight: bold; font-style: italic; color: #fff; display: block; margin: 0 auto; cursor: pointer; transition: all 0.2s ease-in-out; } button.button:hover { transform: scale(1.03); } div.remove input { display: none; } /* ----------------------------------------------------------------- */ /* Remove Button */ /* ----------------------------------------------------------------- */ div.remove { width: 80%; margin: 0 auto; display: flex; transition: all 0.2s ease-in-out; position: relative; z-index: 3; } div.remove:hover { transform: scale(1.03); } div.wrapper > div:nth-child(4) input { display: none; } button#remove-btn { width: 70%; background: linear-gradient(to right, #ff002b, #9f0000); } button#remove-settings { width: 30%; font-size: 1.3rem; background: #9f0000; } button#remove-btn:hover, button#remove-settings:hover { transform: none; } @keyframes removeAnimationOn { 100% { transform: rotate(-90deg); } } @keyframes removeAnimationOff { 100% { transform: rotate(90deg); } } button.remove-option { background: #fff; padding: 3px; font-style: italic; transition: 0.05s all ease-in-out; display: none; margin: 0 auto; position: relative; color: rgb(25, 25, 25); } button.remove-option:hover { border: 2px solid #ff4c6a; font-weight: bold; } button#remove-index-btn { z-index: 2; } button#remove-data-btn { z-index: 1; } @keyframes toggleMenuDown { 0% { transform: translate(0, -100%); } 100% { transform: translate(0, 0); } } @keyframes toggleMenuDown200 { 0% { transform: translate(0, -200%); } 100% { transform: translate(0, 0); } } @keyframes toggleMenuUp { 100% { transform: translate(0, -100%); } } @keyframes toggleMenuUp200 { 100% { transform: translate(0, -200%); } } /* ----------------------------------------------------------------- */ /* Errors */ /* ----------------------------------------------------------------- */ section.errors { width: 90%; margin: 0 auto; } div.success, div.error-message { font-family: "Livvic", sans-serif; font-size: 16px; font-weight: bold; font-style: italic; margin-top: 30px; height: 32px; } div.error-message { color: rgb(218, 23, 23); } div.success { color: green; } div.error-message p { margin: 0; }
0.396769
0.076098
@charset "utf-8"; /* CSS Document */ @import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap'); body { background-color: #f6f5f5; margin: 0px; padding: 0px; font-family: 'Montserrat', sans-serif; } ul { list-style: none; } a { text-decoration: none; } section { width: 100%; height: 100vh; background-color: #DEDEDE; background-size: cover; background-repeat: no-repeat; position: relative; } nav { display: flex; justify-content: space-between; align-items: center; height: 60px; background-color: #ffffff; box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.2); padding: 0px 5%; margin-left: 13%; margin-right: 13%; } nav ul { display: flex; } .toggle { display: none; } nav ul li a { margin: 30px; color: #505050; font-size: 15px; font-weight: 700; } .logo { height: 50px; width: 50px; padding: 1%; } .active { color: #2d2a2a; font-weight: bold; } .hero { height: 530px; position: absolute; bottom: 40px; left: 40%; opacity: 0.6; } .text-container>p { font-size: 50px; font-weight: bold; margin: 45px 0px 25px; letter-spacing: 1px; line-height: 1.15em; color: #454545; } .text-container { position: absolute; left: 13%; top: 25%; transform: translate(25% 25%); width: 65%; } .down-resume { display: inline-block; text-align: center; text-decoration: none; width: 150px; height: 60px; border-radius: 14px; font-family: 'Montserrat', sans-serif; font-weight: bold; font-size: 18px; outline: none; margin: 0px; padding: 4px 4px; background-color: #0B0B0B; color: #fff; cursor: pointer; /* border: none; */ } button:active { transform: scale(1.1); } .footer-items { display: flex; flex-direction: row; justify-content: space-between; align-items: center; align-content: center; } footer { margin-left: 25%; margin-right: 25%; } #icons { margin: 12px; }
css/style.css
@charset "utf-8"; /* CSS Document */ @import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap'); body { background-color: #f6f5f5; margin: 0px; padding: 0px; font-family: 'Montserrat', sans-serif; } ul { list-style: none; } a { text-decoration: none; } section { width: 100%; height: 100vh; background-color: #DEDEDE; background-size: cover; background-repeat: no-repeat; position: relative; } nav { display: flex; justify-content: space-between; align-items: center; height: 60px; background-color: #ffffff; box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.2); padding: 0px 5%; margin-left: 13%; margin-right: 13%; } nav ul { display: flex; } .toggle { display: none; } nav ul li a { margin: 30px; color: #505050; font-size: 15px; font-weight: 700; } .logo { height: 50px; width: 50px; padding: 1%; } .active { color: #2d2a2a; font-weight: bold; } .hero { height: 530px; position: absolute; bottom: 40px; left: 40%; opacity: 0.6; } .text-container>p { font-size: 50px; font-weight: bold; margin: 45px 0px 25px; letter-spacing: 1px; line-height: 1.15em; color: #454545; } .text-container { position: absolute; left: 13%; top: 25%; transform: translate(25% 25%); width: 65%; } .down-resume { display: inline-block; text-align: center; text-decoration: none; width: 150px; height: 60px; border-radius: 14px; font-family: 'Montserrat', sans-serif; font-weight: bold; font-size: 18px; outline: none; margin: 0px; padding: 4px 4px; background-color: #0B0B0B; color: #fff; cursor: pointer; /* border: none; */ } button:active { transform: scale(1.1); } .footer-items { display: flex; flex-direction: row; justify-content: space-between; align-items: center; align-content: center; } footer { margin-left: 25%; margin-right: 25%; } #icons { margin: 12px; }
0.378115
0.072999
body { font-size:20px; font-family: 'Roboto'; color: #fff; text-align:center; background: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) ), url('http://i67.tinypic.com/33y2be1.png') no-repeat center center fixed; /* background: url('http://wallup.net/wp-content/uploads/2015/12/32043-NBA-basketball-Allen_Iverson-Philadelphia_76ers-Philadelphia.jpg'); /* -webkit-filter: grayscale(1); filter: grayscale(1);*/ -webkit-background-size: cover; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; } .toph1{ font-family: 'Roboto', sans-serif; font-size: 50px; font-weight: bolder; color: #0000FF; text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black; background-color: rgba(200,200,255, .7); border: 1px solid black; width: 40%; margin-left: 30%; border-radius: 5px; } .open .dropdown-menu { display:block; } #realStats{ margin-bottom: 2%; } .navbar-custom { background-color: rgba(0,0,0,.1) } .datacell{ background-color: rgba(65,105,225, .7); color: #F0F0F0; text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black; font-family: 'Montserrat', sans-serif; border: 1px solid black; border-radius: 8px; margin-left: 30px; padding: 20px; display: inline-block; margin-bottom: 3%; } .stats{ margin-top: -15px; } .change { width: 80%; color: #000; } #tweets { display: inline-block; width: 100%; background: url('http://i.cdn.turner.com/drp/nba/sixers/sites/default/files/140812-schedule-crowd-plain1500_15.jpg') no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; } #aDownFun { color: #000000; } #aDownFun:hover { color: #00F; } #mod{ /* background: url('http://i.cdn.turner.com/nba/nba/teamsites/images/legacy/sixers/ai-logo.jpg?1392156378') repeat center center fixed; background-repeat: repeat-x; background-size: 10%; background-position: 1% 20%;*/ } .inline{ margin-top: 5%; float: left; width: 35%; border: 1px solid black; border-radius: 5px; background-color: rgba(000,000,000,.7); } #addPlayer{ margin-left: 10%; } .clearBoth { clear:both; } #outer{ /* background: url('http://www.siwallpaperhd.com/wp-content/uploads/2015/06/nba_basketball_allen_iverson_wallpaper_hd_4.jpg') no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;*/ } .square { border: 2px solid white; float:left; position: relative; width: 15%; min-height: 50px; padding-bottom : 20%; margin:1.66%; background-position:center center; background-color: #99FFAA; background-repeat:no-repeat; background-size:cover; /* you change this to "contain" if you don't want the images to be cropped */ } #added { text-align: center; } button { border:1px solid #616261; -webkit-border-radius: 3px; -moz-border-radius: 3px;border-radius: 3px;font-size:12px;font-family:arial, helvetica, sans-serif; padding: 10px 10px 10px 10px; text-decoration:none; display:inline-block;text-shadow: -1px -1px 0 rgba(0,0,0,0.3);font-weight:bold; color: #FFFFFF; background-color: #7d7e7d; background-image: -webkit-gradient(linear, left top, left bottom, from(#7d7e7d), to(#0e0e0e)); background-image: -webkit-linear-gradient(top, #7d7e7d, #0e0e0e); background-image: -moz-linear-gradient(top, #7d7e7d, #0e0e0e); background-image: -ms-linear-gradient(top, #7d7e7d, #0e0e0e); background-image: -o-linear-gradient(top, #7d7e7d, #0e0e0e); background-image: linear-gradient(to bottom, #7d7e7d, #0e0e0e);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#7d7e7d, endColorstr=#0e0e0e); } button:hover{ border:1px solid #4a4b4a; background-color: #646464; background-image: -webkit-gradient(linear, left top, left bottom, from(#646464), to(#282828)); background-image: -webkit-linear-gradient(top, #646464, #282828); background-image: -moz-linear-gradient(top, #646464, #282828); background-image: -ms-linear-gradient(top, #646464, #282828); background-image: -o-linear-gradient(top, #646464, #282828); background-image: linear-gradient(to bottom, #646464, #282828);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#646464, endColorstr=#282828); } .tBtn{ margin-top : 1%; margin-bottom: 1%; } button:focus {outline:0;} .navbar-nav > li { margin-left:20px; margin-right: 20px; margin-top: 20px; color: #BDBDBD; } .navbar-nav > li a { color: #BDBDBD; } .navbar { margin-bottom: 3%; } #navdown{ color: #000; } #navdown:hover{ color: #00F; } h3 { font-family: 'Montserrat'; color: #FAFAFA; text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black; } #top2 a, #top a{ font-family: 'Montserrat'; color: #FAFAFA; text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black; } #top2, #top { background-color: rgba(0,0,0, .6); border-radius: 5px; border: 1px solid black; } #top2 h3 { color: #FAFAFA; } .navbar-nav > li a{ text-decoration: none; color: #BDBDBD; } .navbar-nav > li a:hover{ color: #FFF; } .navbar-nav > li:hover{ color: #FFF; filter:brightness(118%); } .navbar-brand { margin-top: 3px; color: #BDBDBD; } .navbar-brand:hover { color: #FFF; filter:brightness(118%); } #texts{ color: #D3D3D3; } #texts:hover{ color: #D3D3D3; } .inner a { color: #D3D3D3; } #iContainer { filter:brightness(90%); white-space:nowrap; } #iContainer:hover { background-color: #BDBDBD; filter:brightness(90%); } #iContainer2 { padding-left: 5%; color: #000; filter:brightness(100%); } #iContainer2:hover { background-color: #BDBDBD; filter:brightness(100%); } #iContainer2 a:hover { background-color: #BDBDBD; } .tools { color: #000; filter:brightness(100%); } .tools:hover { color: #000; filter:brightness(100%); background-color: #BDBDBD; } .shimmer { /* basic styling */ font-family: 'Montserrat', sans-serif; font-weight:300; font-size:3em; margin:20px auto; padding: 0 40px; text-align: center; color: rgba(255,255,255,0.1); } .shimmer { /* animation details */ background: -webkit-gradient(linear,left top,right top,from(#0000ff),to(#00f),color-stop(.5,#ccccff)); background: -moz-gradient(linear,left top,right top,from(#00f),to(#00f),color-stop(.5,#ccccff)); background: gradient(linear,left top,right top,from(#00f),to(#00f),color-stop(.5,#ccccff)); -webkit-background-size: 125px 100%; -moz-background-size: 125px 100%; background-size: 125px 100%; -webkit-background-clip: text; -moz-background-clip: text; background-clip: text; -webkit-animation-name: shimmer; -moz-animation-name: shimmer; -webkit-animation-name: shimmer; animation-name: shimmer; -webkit-animation-duration: 2s; -moz-animation-duration: 2s; -webkit-animation-duration: 2s; animation-duration: 2s; -webkit-animation-iteration-count: 4; -moz-animation-iteration-count: 4; -webkit-animation-iteration-count: 4; animation-iteration-count: 4; background-repeat: no-repeat; background-position: 0 0; background-color: #222; } @-moz-keyframes shimmer { 0% { background-position: top left; } 100% { background-position: top right; } } @-webkit-keyframes shimmer { 0% { background-position: top left; } 100% { background-position: top right; } } @-o-keyframes shimmer { 0% { background-position: top left; } 100% { background-position: top right; } } @-ms-keyframes shimmer { 0% { background-position: top left; } 100% { background-position: top right; } } @keyframes shimmer { 0% { background-position: top left; } 100% { background-position: top right; } }
stylesheets/funStatsStyles.css
body { font-size:20px; font-family: 'Roboto'; color: #fff; text-align:center; background: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) ), url('http://i67.tinypic.com/33y2be1.png') no-repeat center center fixed; /* background: url('http://wallup.net/wp-content/uploads/2015/12/32043-NBA-basketball-Allen_Iverson-Philadelphia_76ers-Philadelphia.jpg'); /* -webkit-filter: grayscale(1); filter: grayscale(1);*/ -webkit-background-size: cover; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; } .toph1{ font-family: 'Roboto', sans-serif; font-size: 50px; font-weight: bolder; color: #0000FF; text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black; background-color: rgba(200,200,255, .7); border: 1px solid black; width: 40%; margin-left: 30%; border-radius: 5px; } .open .dropdown-menu { display:block; } #realStats{ margin-bottom: 2%; } .navbar-custom { background-color: rgba(0,0,0,.1) } .datacell{ background-color: rgba(65,105,225, .7); color: #F0F0F0; text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black; font-family: 'Montserrat', sans-serif; border: 1px solid black; border-radius: 8px; margin-left: 30px; padding: 20px; display: inline-block; margin-bottom: 3%; } .stats{ margin-top: -15px; } .change { width: 80%; color: #000; } #tweets { display: inline-block; width: 100%; background: url('http://i.cdn.turner.com/drp/nba/sixers/sites/default/files/140812-schedule-crowd-plain1500_15.jpg') no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; } #aDownFun { color: #000000; } #aDownFun:hover { color: #00F; } #mod{ /* background: url('http://i.cdn.turner.com/nba/nba/teamsites/images/legacy/sixers/ai-logo.jpg?1392156378') repeat center center fixed; background-repeat: repeat-x; background-size: 10%; background-position: 1% 20%;*/ } .inline{ margin-top: 5%; float: left; width: 35%; border: 1px solid black; border-radius: 5px; background-color: rgba(000,000,000,.7); } #addPlayer{ margin-left: 10%; } .clearBoth { clear:both; } #outer{ /* background: url('http://www.siwallpaperhd.com/wp-content/uploads/2015/06/nba_basketball_allen_iverson_wallpaper_hd_4.jpg') no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;*/ } .square { border: 2px solid white; float:left; position: relative; width: 15%; min-height: 50px; padding-bottom : 20%; margin:1.66%; background-position:center center; background-color: #99FFAA; background-repeat:no-repeat; background-size:cover; /* you change this to "contain" if you don't want the images to be cropped */ } #added { text-align: center; } button { border:1px solid #616261; -webkit-border-radius: 3px; -moz-border-radius: 3px;border-radius: 3px;font-size:12px;font-family:arial, helvetica, sans-serif; padding: 10px 10px 10px 10px; text-decoration:none; display:inline-block;text-shadow: -1px -1px 0 rgba(0,0,0,0.3);font-weight:bold; color: #FFFFFF; background-color: #7d7e7d; background-image: -webkit-gradient(linear, left top, left bottom, from(#7d7e7d), to(#0e0e0e)); background-image: -webkit-linear-gradient(top, #7d7e7d, #0e0e0e); background-image: -moz-linear-gradient(top, #7d7e7d, #0e0e0e); background-image: -ms-linear-gradient(top, #7d7e7d, #0e0e0e); background-image: -o-linear-gradient(top, #7d7e7d, #0e0e0e); background-image: linear-gradient(to bottom, #7d7e7d, #0e0e0e);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#7d7e7d, endColorstr=#0e0e0e); } button:hover{ border:1px solid #4a4b4a; background-color: #646464; background-image: -webkit-gradient(linear, left top, left bottom, from(#646464), to(#282828)); background-image: -webkit-linear-gradient(top, #646464, #282828); background-image: -moz-linear-gradient(top, #646464, #282828); background-image: -ms-linear-gradient(top, #646464, #282828); background-image: -o-linear-gradient(top, #646464, #282828); background-image: linear-gradient(to bottom, #646464, #282828);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#646464, endColorstr=#282828); } .tBtn{ margin-top : 1%; margin-bottom: 1%; } button:focus {outline:0;} .navbar-nav > li { margin-left:20px; margin-right: 20px; margin-top: 20px; color: #BDBDBD; } .navbar-nav > li a { color: #BDBDBD; } .navbar { margin-bottom: 3%; } #navdown{ color: #000; } #navdown:hover{ color: #00F; } h3 { font-family: 'Montserrat'; color: #FAFAFA; text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black; } #top2 a, #top a{ font-family: 'Montserrat'; color: #FAFAFA; text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black; } #top2, #top { background-color: rgba(0,0,0, .6); border-radius: 5px; border: 1px solid black; } #top2 h3 { color: #FAFAFA; } .navbar-nav > li a{ text-decoration: none; color: #BDBDBD; } .navbar-nav > li a:hover{ color: #FFF; } .navbar-nav > li:hover{ color: #FFF; filter:brightness(118%); } .navbar-brand { margin-top: 3px; color: #BDBDBD; } .navbar-brand:hover { color: #FFF; filter:brightness(118%); } #texts{ color: #D3D3D3; } #texts:hover{ color: #D3D3D3; } .inner a { color: #D3D3D3; } #iContainer { filter:brightness(90%); white-space:nowrap; } #iContainer:hover { background-color: #BDBDBD; filter:brightness(90%); } #iContainer2 { padding-left: 5%; color: #000; filter:brightness(100%); } #iContainer2:hover { background-color: #BDBDBD; filter:brightness(100%); } #iContainer2 a:hover { background-color: #BDBDBD; } .tools { color: #000; filter:brightness(100%); } .tools:hover { color: #000; filter:brightness(100%); background-color: #BDBDBD; } .shimmer { /* basic styling */ font-family: 'Montserrat', sans-serif; font-weight:300; font-size:3em; margin:20px auto; padding: 0 40px; text-align: center; color: rgba(255,255,255,0.1); } .shimmer { /* animation details */ background: -webkit-gradient(linear,left top,right top,from(#0000ff),to(#00f),color-stop(.5,#ccccff)); background: -moz-gradient(linear,left top,right top,from(#00f),to(#00f),color-stop(.5,#ccccff)); background: gradient(linear,left top,right top,from(#00f),to(#00f),color-stop(.5,#ccccff)); -webkit-background-size: 125px 100%; -moz-background-size: 125px 100%; background-size: 125px 100%; -webkit-background-clip: text; -moz-background-clip: text; background-clip: text; -webkit-animation-name: shimmer; -moz-animation-name: shimmer; -webkit-animation-name: shimmer; animation-name: shimmer; -webkit-animation-duration: 2s; -moz-animation-duration: 2s; -webkit-animation-duration: 2s; animation-duration: 2s; -webkit-animation-iteration-count: 4; -moz-animation-iteration-count: 4; -webkit-animation-iteration-count: 4; animation-iteration-count: 4; background-repeat: no-repeat; background-position: 0 0; background-color: #222; } @-moz-keyframes shimmer { 0% { background-position: top left; } 100% { background-position: top right; } } @-webkit-keyframes shimmer { 0% { background-position: top left; } 100% { background-position: top right; } } @-o-keyframes shimmer { 0% { background-position: top left; } 100% { background-position: top right; } } @-ms-keyframes shimmer { 0% { background-position: top left; } 100% { background-position: top right; } } @keyframes shimmer { 0% { background-position: top left; } 100% { background-position: top right; } }
0.400398
0.118003
.glow { display: inline-block; opacity: 1; box-shadow: inset 0px 0px 1px transparent; transform: translateZ(0px); transition-property: opacity; transition-duration: 0.3s; -webkit-transform: translateZ(0); -webkit-transition-duration: 0.3s; -webkit-transition-property: opacity; } .glow:hover { opacity: 0.7; box-shadow: inset 0px 0px 8px rgba(0,0,0,0.6); } .text-decoration { text-decoration: none; } .text-decoration:hover { text-decoration: underline; } .inv-clearfix::after { height: 0px; clear: both; display: block; visibility: hidden; content: ""; } .groups-view-row-default .views-row::after { height: 0px; clear: both; display: block; visibility: hidden; content: ""; } .no-select { -ms-user-select: none; -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; user-select: none; } .default-modal { margin: 0px; padding: 65px 0px 0px; border-radius: 6px; border: currentColor; border-image: none; height: auto !important; color: rgb(51, 51, 51); max-width: 1200px; box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.5); -moz-border-radius: 6px; -webkit-border-radius: 6px; -moz-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5); -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5); } .default-modal .ui-dialog-buttonpane { background: rgb(240, 238, 232); margin: 0px; padding: 10px 20px; border-radius: 0px 0px 6px 6px; border-top-color: rgb(212, 207, 198); border-top-width: 1px; border-top-style: solid; display: block; -moz-border-radius: 0 0 6px 6px; -webkit-border-radius: 0; } .default-modal .ui-dialog-buttonpane .ui-dialog-buttonset { float: none; } .default-modal .ui-dialog-buttonpane .ui-dialog-buttonset button { margin: 0px 10px 0px 0px; } .default-modal .ui-dialog-buttonpane .ui-dialog-buttonset button.ui-button { margin: 0px 10px 0px 0px; height: 34px; line-height: 34px; font-size: 14px; } .default-modal .ui-dialog-buttonpane .ui-dialog-buttonset button.ui-button.fake-cancel { background: none; } .default-modal .ui-dialog-buttonpane .ui-dialog-buttonset button.input-standard-button { background: white; } .default-modal .ui-dialog-buttonpane .ui-dialog-buttonset button.input-standard-button:hover { background: rgba(0, 0, 0, 0.05); } .default-modal .ui-widget-header { background: rgb(240, 238, 232); margin: -65px 0px 0px; padding: 10px 20px; border-radius: 6px 6px 0px 0px; text-align: center; border-bottom-color: rgb(212, 207, 198); border-bottom-width: 1px; border-bottom-style: solid; -moz-border-radius: 6px 6px 0 0; -webkit-border-radius: 6px; } .default-modal .ui-widget-header .ui-dialog-title { margin: 0px; color: rgb(51, 51, 51); line-height: 120%; font-size: 20px; font-weight: normal; float: none; } .default-modal .ui-widget-header .ui-dialog-titlebar-close { background: none; margin: 0px; padding: 0px; border: currentColor !important; border-image: none !important; width: 20px; height: 20px; overflow: hidden; font-family: "FontAwesome"; font-weight: normal !important; text-decoration: none; float: right; position: static; } .default-modal .ui-widget-header .ui-dialog-titlebar-close::before { text-align: right; color: rgb(117, 117, 117); line-height: 24px; font-size: 16px; display: block; content: "\f00d"; } .default-modal .ui-widget-header .ui-dialog-titlebar-close span { display: none; } .default-modal .ui-dialog-content { padding: 20px; position: relative; } .default-modal .ui-dialog-content.media-modal-frame { padding: 0px; height: auto !important; } .default-modal .ui-dialog-content.media-modal-frame .form-actions { display: none; } .ui-dialog.ui-widget.media-wrapper .ui-dialog-buttonpane { display: none; } .element-invisible { height: 1px; overflow: hidden; position: absolute !important; clip: rect(1px, 1px, 1px, 1px); } .nav-tab-style { background: none; border-width: 1px 0px; border-style: solid; border-color: rgb(192, 190, 186); padding: 4px 0px 0px; } .nav-tab-style li { margin: 0px 0px 4px; display: block; } .nav-tab-style li a { background: none; padding: 12px 14px; border-radius: 3px; border: currentColor; border-image: none; color: rgb(51, 51, 51); line-height: 20px; font-size: 14px; text-decoration: none; display: block; -moz-border-radius: 3px; -webkit-border-radius: 3px; } .nav-tab-style li a:hover { background: rgb(220, 220, 220); } .nav-tab-style li a.active { border-width: 1px 1px 1px 4px; border-style: solid; border-color: rgb(157, 156, 156) rgb(157, 156, 156) rgb(157, 156, 156) rgb(84, 106, 143); border-radius: 5px; border-image: none; color: rgb(51, 51, 51); letter-spacing: 0.4px; font-weight: 600; background-color: white; -moz-border-radius: 5px; -webkit-border-radius: 5px; } .nav-tab-style li a.active:hover { background: white; } .list-links-style li { padding: 10px 0px; line-height: 20px; border-bottom-color: rgb(192, 190, 186); border-bottom-width: 1px; border-bottom-style: solid; -ms-word-wrap: break-word; } .list-links-style li.last { border-bottom-color: currentColor; border-bottom-width: medium; border-bottom-style: none; } .default-search-form-with-focus form { position: relative; max-width: 300px; } @media all and (max-width:480px) { .default-search-form-with-focus form { max-width: 100%; } } .default-search-form-with-focus form .form-text { padding: 10px 40px 10px 10px; border-radius: 3px 0px 0px 3px; border: 1px solid rgb(111, 119, 123); border-image: none; width: 100%; height: 40px; color: rgb(111, 119, 123); line-height: 16px; max-width: 100%; -moz-border-radius: 3px 0 0 3px; -webkit-border-radius: 3px; } .default-search-form-with-focus form .form-text:focus { border: 2px solid rgb(255, 191, 71); border-image: none; color: rgb(0, 0, 0); } .default-search-form-with-focus form button { background: rgb(84, 106, 143); margin: 0px; padding: 0px; border-radius: 0px 3px 3px 0px; border: 1px solid rgb(84, 106, 143); border-image: none; width: 48px; height: 38px; right: -1px; bottom: 0px; color: white; position: absolute; z-index: 2; min-width: 0px; box-sizing: content-box; box-shadow: none; -moz-box-sizing: content-box; -webkit-box-sizing: content-box; -moz-border-radius: 0 3px 3px 0; -webkit-border-radius: 0; -moz-box-shadow: none; -webkit-box-shadow: none; } .default-search-form-with-focus form .form-submit { background: rgb(84, 106, 143); margin: 0px; padding: 0px; border-radius: 0px 3px 3px 0px; border: 1px solid rgb(84, 106, 143); border-image: none; width: 48px; height: 38px; right: -1px; bottom: 0px; color: white; position: absolute; z-index: 2; min-width: 0px; box-sizing: content-box; box-shadow: none; -moz-box-sizing: content-box; -webkit-box-sizing: content-box; -moz-border-radius: 0 3px 3px 0; -webkit-border-radius: 0; -moz-box-shadow: none; -webkit-box-shadow: none; } .default-search-form-with-focus form button::after { width: 36px; height: 36px; text-align: center; line-height: 36px; font-family: "FontAwesome"; font-size: 21px; content: "\f002"; } .default-search-form-with-focus form .form-submit::after { width: 36px; height: 36px; text-align: center; line-height: 36px; font-family: "FontAwesome"; font-size: 21px; content: "\f002"; } .default-search-form-with-focus form button.submit:hover { color: white; } .default-search-form-with-focus form button.submit:focus { color: white; } .default-search-form-with-focus form .form-submit.submit:hover { color: white; } .default-search-form-with-focus form .form-submit.submit:focus { color: white; } .default-search-form-with-focus form button.submit:focus { background: rgb(84, 106, 143); } .default-search-form-with-focus form .form-submit.submit:focus { background: rgb(84, 106, 143); } .default-search-form-with-focus form button.submit:hover { background: rgb(71, 90, 121); border: 1px solid rgb(71, 90, 121); border-image: none; } .default-search-form-with-focus form .form-submit.submit:hover { background: rgb(71, 90, 121); border: 1px solid rgb(71, 90, 121); border-image: none; } .default-search-form-with-focus form button.submit:active { background: rgb(55, 68, 91); color: rgb(255, 255, 255); } .default-search-form-with-focus form .form-submit.submit:active { background: rgb(55, 68, 91); color: rgb(255, 255, 255); } .default-search-form-with-focus form button.focus { outline: rgb(255, 191, 71) solid 2px; box-shadow: 0px 2px 4px 2px rgba(0,0,0,0.5), inset 0px 2px 4px 2px rgba(0,0,0,0.5); -moz-box-shadow: 0px 2px 4px 2px rgba(0, 0, 0, 0.5), inset 0px 2px 4px 2px rgba(0, 0, 0, 0.5); -webkit-box-shadow: 0px 2px 4px 2px rgba(0, 0, 0, 0.5), inset 0px 2px 4px 2px rgba(0, 0, 0, 0.5); } .default-search-form-with-focus form #sbmt-btn-focus { display: none !important; } .default-search-form-with-focus form.focus .form-type-textfield { margin-right: 49px; } .default-search-form-with-focus form.focus .form-type-textfield .form-text { padding-right: 5px; } .groups-view-row-default .views-row { padding-left: 75px; } .groups-view-row-default .views-field-picture { margin: 0px 0px 0px -75px; float: left; } .groups-view-row-default .views-field-picture img { border-radius: 50px; -moz-border-radius: 50px; -webkit-border-radius: 50px; } .groups-view-row-default .views-field-name { line-height: 14px; font-weight: 700; margin-bottom: 4px; } .groups-view-row-default .views-field-field-job-role { color: rgb(101, 101, 101); line-height: 18px; } .inherit-text-style { margin: 0px; line-height: inherit; letter-spacing: inherit; font-size: inherit; font-weight: inherit; } .add-member-checkboxes .checker { margin: 0px 2px 0px 0px; } .add-member-checkboxes .checker span { background: rgb(223, 223, 230); border-radius: 3px 0px 0px 3px; width: 27px; height: 27px; text-align: center; -moz-border-radius: 3px 0 0 3px; -webkit-border-radius: 3px; } .add-member-checkboxes .checker span input { width: 27px; height: 27px; cursor: pointer; } .add-member-checkboxes .checker span::before { width: 27px; height: 27px; color: rgb(101, 101, 101); line-height: 27px; content: "\f00d"; } .add-member-checkboxes .checker.focus span.checked { outline: rgb(255, 191, 71) solid 2px; } .add-member-checkboxes .checker.focus span { outline: rgb(255, 191, 71) solid 2px; } .add-member-checkboxes label { background: rgb(223, 223, 230); padding: 5px 12px; border-radius: 0px 3px 3px 0px; line-height: 17px; vertical-align: top; display: inline-block; -moz-border-radius: 0 3px 3px 0; -webkit-border-radius: 0; } .default-search-content-form { padding: 0px 120px 20px 0px; overflow: hidden; } .default-search-content-form .form-type-textfield { margin: 0px; width: 100%; float: left; } .default-search-content-form .form-text { border-width: 1px; border-color: rgb(179, 175, 174); margin: 0px; border-radius: 3px; width: 100%; max-width: 500px; -moz-border-radius: 3px; -webkit-border-radius: 3px; } .default-search-content-form .form-text:focus { border-color: rgb(255, 191, 71); outline: rgb(255, 191, 71) solid 1px; } .default-search-content-form .form-submit { margin: 3px -120px 3px 0px; padding: 0px 28px; width: 50px; height: 32px; line-height: 32px; font-size: 14px; float: right; display: block; min-width: 0px; } .default-search-content-form .form-item-text { width: 346px; } .default-search-content-form .form-item-text input[type='text'] { border-radius: 3px; border: 1px solid rgb(179, 175, 174); border-image: none; width: 100%; height: 40px; background-color: white; } @media all and (max-width:320px) { .default-search-content-form .form-item-text { width: 200px; } } @media all and (max-width:768px) { .default-search-content-form { margin: 0px -16px; padding: 16px 140px 16px 16px; } } @media all and (max-width:360px) { .default-search-content-form .form-submit { padding: 0px 10px; } } .icon-link-text { color: transparent; font-size: 0px; } .comments-and-likes .like-flag-wrapper .like-widget .like-text { color: transparent; font-size: 0px; } .comments-and-likes .like-flag-wrapper .flag-wrapper a { color: transparent; font-size: 0px; } .comments-and-likes { padding: 8px 0px 6px; color: rgb(101, 101, 101); line-height: 24px; clear: both; font-size: 12px; margin-top: 12px; border-top-color: rgb(221, 223, 226); border-top-width: 1px; border-top-style: solid; display: block; white-space: nowrap; } .comments-and-likes .like-flag-wrapper { text-align: right; margin-top: 2px; float: right; } .comments-and-likes .like-flag-wrapper a .fcs-state { background: none; } .comments-and-likes .like-flag-wrapper .like-widget { float: right; display: inline; white-space: normal; } .comments-and-likes .like-flag-wrapper .like-widget a { padding: 8px 0px 2px; vertical-align: top; } .comments-and-likes .like-flag-wrapper .like-widget a .fa::before { padding: 0px 3px; color: rgb(101, 101, 101); line-height: 18px; font-size: 20px; } .comments-and-likes .like-flag-wrapper .like-widget a.focus { outline: rgb(255, 191, 71) solid 3px; } .comments-and-likes .like-flag-wrapper .like-widget a.voted .fa::before { color: rgb(84, 106, 138); } .comments-and-likes .like-flag-wrapper .flag-wrapper { line-height: 17px; float: left; } @media all and (max-width:320px) { .comments-and-likes .like-flag-wrapper .flag-wrapper { line-height: 20px; } } .comments-and-likes .like-flag-wrapper .flag-wrapper a { padding: 19px 4px 4px 3px; width: 20px; height: 20px; margin-right: 3px; margin-left: 5px; } @media all and (max-width:320px) { .comments-and-likes .like-flag-wrapper .flag-wrapper a { margin: 0px; padding: 0px 10px 0px 0px; float: left; } } .comments-and-likes .like-flag-wrapper .flag-wrapper .flag-throbber { display: none; } .comments-and-likes .delimiter-bullet { margin: 5px; } @media all and (max-width:960px) { #color_scheme_form #placeholder { position: static; } #color_scheme_form .pallete-buttons { position: static; } .page-node- .block-system-main { margin-top: 0px; } #zone-content { margin-top: 0px; } .grid-1 { width: auto; margin-right: 6px; margin-left: 6px; float: none; } .grid-2 { width: auto; margin-right: 6px; margin-left: 6px; float: none; } .grid-3 { width: auto; margin-right: 6px; margin-left: 6px; float: none; } .grid-4 { width: auto; margin-right: 6px; margin-left: 6px; float: none; } .grid-5 { width: auto; margin-right: 6px; margin-left: 6px; float: none; } .grid-6 { width: auto; margin-right: 6px; margin-left: 6px; float: none; } .grid-7 { width: auto; margin-right: 6px; margin-left: 6px; float: none; } .grid-8 { width: auto; margin-right: 6px; margin-left: 6px; float: none; } .grid-9 { width: auto; margin-right: 6px; margin-left: 6px; float: none; } .grid-10 { width: auto; margin-right: 6px; margin-left: 6px; float: none; } .grid-11 { width: auto; margin-right: 6px; margin-left: 6px; float: none; } .grid-12 { width: auto; margin-right: 6px; margin-left: 6px; float: none; } .grid-13 { width: auto; margin-right: 6px; margin-left: 6px; float: none; } .grid-14 { width: auto; margin-right: 6px; margin-left: 6px; float: none; } .grid-15 { width: auto; margin-right: 6px; margin-left: 6px; float: none; } .grid-16 { width: auto; margin-right: 6px; margin-left: 6px; float: none; } .grid-17 { width: auto; margin-right: 6px; margin-left: 6px; float: none; } .grid-18 { width: auto; margin-right: 6px; margin-left: 6px; float: none; } .grid-19 { width: auto; margin-right: 6px; margin-left: 6px; float: none; } .grid-20 { width: auto; margin-right: 6px; margin-left: 6px; float: none; } .grid-21 { width: auto; margin-right: 6px; margin-left: 6px; float: none; } .grid-22 { width: auto; margin-right: 6px; margin-left: 6px; float: none; } .grid-23 { width: auto; margin-right: 6px; margin-left: 6px; float: none; } .grid-24 { width: auto; margin-right: 6px; margin-left: 6px; float: none; } #region-content { margin: 0px 6px; } } @media all and (max-width:600px) { .container-12 .block .omega-grid { margin-right: 0px; margin-left: 0px; } .container-16 .block .omega-grid { margin-right: 0px; margin-left: 0px; } .container-24 .block .omega-grid { margin-right: 0px; margin-left: 0px; } .region-branding-inner > div { padding: 0px; } .ui-tabs.tabs-left { padding-left: 0px; } .ui-tabs.tabs-left .ui-tabs-nav { width: auto; padding-top: 5px; margin-bottom: 20px; margin-left: 0px; float: none; } .ui-tabs.tabs-left .ui-tabs-nav li { margin: 5px 5px 0px 0px; display: inline-block; } .ui-tabs.tabs-left .ui-tabs-nav li.ui-tabs-selected { padding: 0px; } .ui-tabs.tabs-left .ui-tabs-nav li.ui-state-active a { background: rgb(255, 255, 255); border-width: 0px 0px 3px; border-style: solid; border-color: rgb(84, 106, 143); padding: 10px 10px 7px; } .ui-tabs.tabs-left .ui-tabs-nav li.ui-state-hover a { background: rgb(255, 255, 255); border-width: 0px 0px 3px; border-style: solid; border-color: rgb(84, 106, 143); padding: 10px 10px 7px; } } @media all and (max-width:432px) { .mobile-hidden { display: none; } } @media all and (max-width:375px) { .rate-widget-fivestar .item-list { min-width: 110px; } #mini-panel-actions { margin: 0px; } .pane-invotra-actions { margin: 0px; } .pane-actions .panel-pane.pane-rate-widget { margin: 0px; } .pane-invotra-actions .panel-pane.pane-rate-widget { margin: 0px; } .pane-actions .panel-pane.pane-flag-link { margin: 0px; } .pane-invotra-actions .panel-pane.pane-flag-link { margin: 0px; } .node-type-blog .pane-invotra-actions { border: currentColor; border-image: none; } .node-type-blog .pane-node-field-tags { margin-bottom: 15px; } .node-type-blog #comment-form { margin-top: 25px; } .node-type-blog .pane-node-comment-form { margin-top: 25px; } div.rate-widget-fivestar div.item-list ul { padding: 5px 0px; } .page-node- .pane-node-field-image { margin-right: 0px; float: none; } } @media all and (max-width:479px) and (min-width:376px) { .pane-related-stuff .pane-content { padding-bottom: 18px; } .pane-secondary-details .pane-content { padding-bottom: 18px; } .pane-primary-details .pane-content { padding-bottom: 18px; } .pane-related-stuff .panel-panel .panel-separator { background: rgb(204, 204, 204); height: 1px; clear: both; margin-top: 20px; margin-bottom: 20px; display: block; } .pane-secondary-details .panel-panel .panel-separator { background: rgb(204, 204, 204); height: 1px; clear: both; margin-top: 20px; margin-bottom: 20px; display: block; } .pane-primary-details .panel-panel .panel-separator { background: rgb(204, 204, 204); height: 1px; clear: both; margin-top: 20px; margin-bottom: 20px; display: block; } .pane-related-stuff .pane-content .panel-pane { margin: 0px; width: auto; float: none; display: block; } .pane-secondary-details .pane-content .panel-pane { margin: 0px; width: auto; float: none; display: block; } .pane-primary-details .pane-content .panel-pane { margin: 0px; width: auto; float: none; display: block; } .page-node- .pane-node-field-image { margin-right: 0px; float: none; } } @media all and (max-width:767px) and (min-width:480px) { .pane-related-stuff .panel-panel :nth-child(8n).panel-separator { display: none; } .pane-secondary-details .panel-panel :nth-child(8n).panel-separator { display: none; } .pane-primary-details .panel-panel :nth-child(8n).panel-separator { display: none; } .pane-related-stuff .panel-panel :nth-child(4n).panel-separator { background: rgb(204, 204, 204); height: 1px; clear: both; margin-bottom: 20px; display: block; } .pane-secondary-details .panel-panel :nth-child(4n).panel-separator { background: rgb(204, 204, 204); height: 1px; clear: both; margin-bottom: 20px; display: block; } .pane-primary-details .panel-panel :nth-child(4n).panel-separator { background: rgb(204, 204, 204); height: 1px; clear: both; margin-bottom: 20px; display: block; } .pane-related-stuff .pane-content .panel-pane { width: 45%; margin-right: 5%; } .pane-secondary-details .pane-content .panel-pane { width: 45%; margin-right: 5%; } .pane-primary-details .pane-content .panel-pane { width: 45%; margin-right: 5%; } } @media all and (max-width:960px) and (min-width:768px) { #mini-panel-actions { text-align: left; margin-right: 20px; } .pane-invotra-actions { text-align: left; margin-right: 20px; } #mini-panel-actions #breadcrumb { margin: 0px 0px 10px; width: auto; float: none; max-width: 100%; } .pane-invotra-actions #breadcrumb { margin: 0px 0px 10px; width: auto; float: none; max-width: 100%; } #mini-panel-actions .panel-panel { margin: 20px 0px 0px; width: auto; float: none; } .pane-invotra-actions .panel-panel { margin: 20px 0px 0px; width: auto; float: none; } #mini-panel-actions .panel-panel #tabs-show { margin: 0px 20px 10px 0px; } #mini-panel-actions .panel-panel .panel-pane { margin: 0px 20px 10px 0px; } .pane-invotra-actions .panel-panel #tabs-show { margin: 0px 20px 10px 0px; } .pane-invotra-actions .panel-panel .panel-pane { margin: 0px 20px 10px 0px; } } @media all and (min-width:1200px) { .responsive-layout-mobile .pane-related-stuff .panel-panel :nth-child(8n).panel-separator { display: none; } .responsive-layout-mobile .pane-secondary-details .panel-panel :nth-child(8n).panel-separator { display: none; } .responsive-layout-mobile .pane-primary-details .panel-panel :nth-child(8n).panel-separator { display: none; } .responsive-layout-mobile .pane-related-stuff .panel-panel :nth-child(10n).panel-separator { background: rgb(204, 204, 204); height: 1px; clear: both; margin-bottom: 20px; display: block; } .responsive-layout-mobile .pane-secondary-details .panel-panel :nth-child(10n).panel-separator { background: rgb(204, 204, 204); height: 1px; clear: both; margin-bottom: 20px; display: block; } .responsive-layout-mobile .pane-primary-details .panel-panel :nth-child(10n).panel-separator { background: rgb(204, 204, 204); height: 1px; clear: both; margin-bottom: 20px; display: block; } .responsive-layout-mobile .pane-related-stuff .pane-content .panel-pane { width: 18%; margin-right: 2%; } .responsive-layout-mobile .pane-secondary-details .pane-content .panel-pane { width: 18%; margin-right: 2%; } .responsive-layout-mobile .pane-primary-details .pane-content .panel-pane { width: 18%; margin-right: 2%; } } body.mobile-detected { background: rgb(51, 51, 51); height: 100%; } body.mobile-detected #page { overflow: hidden; position: relative; min-height: 100%; } body.mobile-detected #region-content { position: static; } body.mobile-detected .zone-content { margin: 0px auto; } body.mobile-detected .branding-data { padding: 0px; width: auto; float: none; } body.mobile-detected .logo-img { margin: 60px 0px; width: auto; height: auto; line-height: normal; position: static; } body.mobile-detected .logo-img a { background: url("../i/white-logo.png") no-repeat 0px 0px / 129px 31px; margin: 0px auto; width: 129px; height: 31px; display: block; } body.mobile-detected .logo-img a img { display: none; } body.mobile-detected.page-user.not-logged-in .container-12.zone-content { margin: 0px; border-radius: 0px; width: 100%; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; } body.mobile-detected.page-user-login .container-12.zone-content { margin: 0px; border-radius: 0px; width: 100%; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; } body.mobile-detected.page-user-password .container-12.zone-content { margin: 0px; border-radius: 0px; width: 100%; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; } body.mobile-detected.page-user.not-logged-in .container-12.zone-content .grid-12#region-content { margin: 0px; min-height: 555px; } body.mobile-detected.page-user-login .container-12.zone-content .grid-12#region-content { margin: 0px; min-height: 555px; } body.mobile-detected.page-user-password .container-12.zone-content .grid-12#region-content { margin: 0px; min-height: 555px; } body.mobile-detected.page-user.not-logged-in .container-12.zone-content #messages { } body.mobile-detected.page-user-login .container-12.zone-content #messages { } body.mobile-detected.page-user-password .container-12.zone-content #messages { } html { height: 100%; } #mobile-loader-wrapper { background: rgb(51, 51, 51); left: 0px; top: 0px; height: 100%; right: 0px; bottom: 0px; position: absolute; z-index: 9999; } #mobile-loader-wrapper #mobile-loader-progress-wrap { margin: -96px auto 0px; top: 50%; width: 130px; position: relative; } #mobile-loader-wrapper #mobile-loader-progress { margin: 0px auto; width: 1em; height: 1em; font-size: 96px; position: relative; } #mobile-loader-wrapper #mobile-loader-progress::after { border-radius: 50%; border: 6px solid rgb(94, 94, 94); border-image: none; left: 0px; top: 0px; width: 84px; height: 84px; display: block; content: ""; -moz-border-radius: 50%; -webkit-border-radius: 50%; } #mobile-loader-wrapper #mobile-loader-progress .circle { width: 1em; height: 1em; position: absolute; clip: rect(0px, 96px, 96px, 48px); } #mobile-loader-wrapper #mobile-loader-progress .circle.clipauto { clip: rect(auto, auto, auto, auto); } #mobile-loader-wrapper #mobile-loader-progress .circle .bar { border-radius: 50%; border: 6px solid rgb(74, 183, 138); border-image: none; width: 84px; height: 84px; position: absolute; clip: rect(0px, 48px, 96px, 0px); transform: rotate(18deg); -moz-border-radius: 50%; -webkit-border-radius: 50%; -webkit-transform: rotate(18deg); -moz-transform: rotate(18deg); -o-transform: rotate(18deg); } #mobile-loader-wrapper #mobile-loader-progress .circle .fill { border-radius: 50%; border: 6px solid rgb(74, 183, 138); border-image: none; width: 84px; height: 84px; position: absolute; clip: rect(0px, 48px, 96px, 0px); transform: rotate(18deg); -moz-border-radius: 50%; -webkit-border-radius: 50%; -webkit-transform: rotate(18deg); -moz-transform: rotate(18deg); -o-transform: rotate(18deg); } #mobile-loader-wrapper #mobile-loader-progress .circle .fill { transform: rotate(20deg); -webkit-transform: rotate(20deg); -moz-transform: rotate(20deg); -o-transform: rotate(20deg); } img { height: auto; max-width: 100%; } @media all and (max-width:960px) { body.html { position: relative; } .messages li { -ms-word-wrap: break-word; } .zone-menu-wrapper { min-height: 0px; } #block-menu-menu-quick-links { text-align: left; display: none; } #block-menu-menu-quick-links ul.menu { margin: 0px 8px 4px; padding: 0px; text-align: left; } #block-menu-menu-quick-links ul.menu li { padding: 0px 10px 0px 0px; } #mobile-bar { background: inherit; display: block; } .region-page-top-inner { height: auto !important; } .region-menu-inner { display: none; } #invotra-toolbar-wrapper { display: none; } .logo-img { position: static; } .branding-data { margin: 14px 0px 14px 8px; width: auto; } .branding-data .logo-img { width: 100px; height: auto; line-height: normal; } #block-invotra-search-and-do-search-lite { margin: 0px 8px 14px; padding: 0px; display: none; max-width: 100%; } #block-invotra-search-and-do-search-lite form { padding: 0px; } #block-invotra-search-and-do-search-lite .form-item { float: none; } #block-invotra-search-and-do-search-lite .form-text { border-width: 1px; border-color: rgb(84, 106, 143); padding: 0px 20px; width: 100%; height: 40px; line-height: 40px; float: none; max-width: 100%; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; } #block-invotra-search-and-do-search-lite .form-submit { display: none; } } @media all and (max-width:600px) { #breadcrumb { margin-bottom: 16px; } } @media all and (max-width:960px) and (min-width:600px) { #breadcrumb { margin-bottom: 16px; } .region-branding-inner .branding-data { padding: 0px; margin-left: 8px; } } @media all and (max-width:1280px) and (min-width:960px) { .zone-content { padding-top: 80px; } } @media all and (min-width:480px) { .mobile-facet-link { display: none; } } @media all and (max-width:480px) { .page-invotra-my-workplace .brenham-container.brenham-header { margin-bottom: 0px; } } @media all and (max-width:321px) { body { color: rgb(51, 51, 51); letter-spacing: 0.2px; } a { letter-spacing: 0.2px; } .region-content h1 { color: rgb(51, 51, 51); font-weight: bold; } h1 { color: rgb(51, 51, 51); font-weight: bold; } h2 { color: rgb(51, 51, 51); font-weight: bold; } h3 { color: rgb(51, 51, 51); font-weight: bold; } h4 { color: rgb(51, 51, 51); font-weight: bold; } h1 { line-height: 28px; font-size: 24px; } h1#page-title { line-height: 28px; font-size: 24px; } h2 { line-height: 24px; font-size: 20px; } h3 { line-height: 20px; font-size: 16px; } h4 { line-height: 20px; font-size: 14px; } } @media all and (max-width:737px) { body.html h1#page-title { color: rgb(0, 0, 0); line-height: 28px; font-size: 24px !important; font-weight: bold; } body.html .pane-node-title h1 { color: rgb(0, 0, 0); font-weight: bold; } body.html .pane-node-title h2 { color: rgb(0, 0, 0); font-weight: bold; } body.html .pane-node-title h3 { color: rgb(0, 0, 0); font-weight: bold; } body.html .pane-node-title h4 { color: rgb(0, 0, 0); font-weight: bold; } body.html .pane-node-title h5 { color: rgb(0, 0, 0); font-weight: bold; } body.html .pane-node-title h6 { color: rgb(0, 0, 0); font-weight: bold; } body.html .field-node-body h1 { color: rgb(0, 0, 0); font-weight: bold; } body.html .field-node-body h2 { color: rgb(0, 0, 0); font-weight: bold; } body.html .field-node-body h3 { color: rgb(0, 0, 0); font-weight: bold; } body.html .field-node-body h4 { color: rgb(0, 0, 0); font-weight: bold; } body.html .field-node-body h5 { color: rgb(0, 0, 0); font-weight: bold; } body.html .field-node-body h6 { color: rgb(0, 0, 0); font-weight: bold; } body.html .field-type-text-with-summary h1 { color: rgb(0, 0, 0); font-weight: bold; } body.html .field-type-text-with-summary h2 { color: rgb(0, 0, 0); font-weight: bold; } body.html .field-type-text-with-summary h3 { color: rgb(0, 0, 0); font-weight: bold; } body.html .field-type-text-with-summary h4 { color: rgb(0, 0, 0); font-weight: bold; } body.html .field-type-text-with-summary h5 { color: rgb(0, 0, 0); font-weight: bold; } body.html .field-type-text-with-summary h6 { color: rgb(0, 0, 0); font-weight: bold; } body.html .views-field-body h1 { color: rgb(0, 0, 0); font-weight: bold; } body.html .views-field-body h2 { color: rgb(0, 0, 0); font-weight: bold; } body.html .views-field-body h3 { color: rgb(0, 0, 0); font-weight: bold; } body.html .views-field-body h4 { color: rgb(0, 0, 0); font-weight: bold; } body.html .views-field-body h5 { color: rgb(0, 0, 0); font-weight: bold; } body.html .views-field-body h6 { color: rgb(0, 0, 0); font-weight: bold; } body.html .pane-term-description .pane-content h1 { color: rgb(0, 0, 0); font-weight: bold; } body.html .pane-term-description .pane-content h2 { color: rgb(0, 0, 0); font-weight: bold; } body.html .pane-term-description .pane-content h3 { color: rgb(0, 0, 0); font-weight: bold; } body.html .pane-term-description .pane-content h4 { color: rgb(0, 0, 0); font-weight: bold; } body.html .pane-term-description .pane-content h5 { color: rgb(0, 0, 0); font-weight: bold; } body.html .pane-term-description .pane-content h6 { color: rgb(0, 0, 0); font-weight: bold; } body.html .pane-custom .pane-content h1 { color: rgb(0, 0, 0); font-weight: bold; } body.html .pane-custom .pane-content h2 { color: rgb(0, 0, 0); font-weight: bold; } body.html .pane-custom .pane-content h3 { color: rgb(0, 0, 0); font-weight: bold; } body.html .pane-custom .pane-content h4 { color: rgb(0, 0, 0); font-weight: bold; } body.html .pane-custom .pane-content h5 { color: rgb(0, 0, 0); font-weight: bold; } body.html .pane-custom .pane-content h6 { color: rgb(0, 0, 0); font-weight: bold; } body.html .pane-node-title h1 { line-height: 28px; font-size: 24px; } body.html .field-node-body h1 { line-height: 28px; font-size: 24px; } body.html .field-type-text-with-summary h1 { line-height: 28px; font-size: 24px; } body.html .views-field-body h1 { line-height: 28px; font-size: 24px; } body.html .pane-term-description .pane-content h1 { line-height: 28px; font-size: 24px; } body.html .pane-custom .pane-content h1 { line-height: 28px; font-size: 24px; } body.html .pane-node-title h2 { line-height: 24px; font-size: 20px; } body.html .field-node-body h2 { line-height: 24px; font-size: 20px; } body.html .field-type-text-with-summary h2 { line-height: 24px; font-size: 20px; } body.html .views-field-body h2 { line-height: 24px; font-size: 20px; } body.html .pane-term-description .pane-content h2 { line-height: 24px; font-size: 20px; } body.html .pane-custom .pane-content h2 { line-height: 24px; font-size: 20px; } body.html .pane-node-title h3 { line-height: 20px; font-size: 18px; } body.html .field-node-body h3 { line-height: 20px; font-size: 18px; } body.html .field-type-text-with-summary h3 { line-height: 20px; font-size: 18px; } body.html .views-field-body h3 { line-height: 20px; font-size: 18px; } body.html .pane-term-description .pane-content h3 { line-height: 20px; font-size: 18px; } body.html .pane-custom .pane-content h3 { line-height: 20px; font-size: 18px; } body.html .pane-node-title h4 { line-height: 20px; font-size: 16px; } body.html .field-node-body h4 { line-height: 20px; font-size: 16px; } body.html .field-type-text-with-summary h4 { line-height: 20px; font-size: 16px; } body.html .views-field-body h4 { line-height: 20px; font-size: 16px; } body.html .pane-term-description .pane-content h4 { line-height: 20px; font-size: 16px; } body.html .pane-custom .pane-content h4 { line-height: 20px; font-size: 16px; } body.html .pane-node-title h5 { line-height: 20px; font-size: 14px; } body.html .field-node-body h5 { line-height: 20px; font-size: 14px; } body.html .field-type-text-with-summary h5 { line-height: 20px; font-size: 14px; } body.html .views-field-body h5 { line-height: 20px; font-size: 14px; } body.html .pane-term-description .pane-content h5 { line-height: 20px; font-size: 14px; } body.html .pane-custom .pane-content h5 { line-height: 20px; font-size: 14px; } body.html .pane-node-title h6 { line-height: 14px; font-size: 10px; } body.html .field-node-body h6 { line-height: 14px; font-size: 10px; } body.html .field-type-text-with-summary h6 { line-height: 14px; font-size: 10px; } body.html .views-field-body h6 { line-height: 14px; font-size: 10px; } body.html .pane-term-description .pane-content h6 { line-height: 14px; font-size: 10px; } body.html .pane-custom .pane-content h6 { line-height: 14px; font-size: 10px; } } #user-profile .pane-user-profile-details-mobile { margin-bottom: 10px; border-bottom-color: rgb(239, 237, 231); border-bottom-width: 20px; border-bottom-style: solid; display: none; } #user-profile .pane-user-profile-details-mobile .sutro-header { background: rgb(239, 237, 231); padding: 20px; } #user-profile .pane-user-profile-details-mobile .sutro-header-inner { padding-left: 74px; } #user-profile .pane-user-profile-details-mobile .pane-user-picture-style { margin: 0px 14px 0px -74px; width: auto; float: left; } #user-profile .pane-user-profile-details-mobile .pane-user-field-job-role { font-size: 16px; font-weight: 500; -ms-word-wrap: break-word; } #user-profile .pane-user-profile-details-mobile .username { font-size: 16px; font-weight: 500; -ms-word-wrap: break-word; } #user-profile .pane-user-profile-details-mobile .pane-user-field-job-role .field-item { margin: 0px; } #user-profile .pane-user-profile-details-mobile .sutro-column-content .sutro-column { width: auto; float: none; } #user-profile .pane-user-profile-details-mobile .sutro-column-content .sutro-column .panel-panel-inner { margin: 0px; } #user-profile .pane-user-profile-details-mobile .sutro-footer { padding: 0px 20px; } #user-profile .pane-user-profile-details-mobile .details-switch { margin: 0px 20px; font-size: 14px; font-weight: 700; } #user-profile .pane-user-profile-details-mobile .details-switch p { margin: 0px; font-weight: 700; } #user-profile .pane-user-profile-details-mobile .details-switch.processed { position: relative; cursor: pointer; } #user-profile .pane-user-profile-details-mobile .details-switch.processed::after { top: 0px; right: 0px; color: rgb(224, 224, 224); font-family: "FontAwesome"; font-size: 14px; position: absolute; content: "\f067"; } #user-profile .pane-user-profile-details-mobile .details-switch.processed.open::after { content: "\f068"; } #user-profile .pane-user-profile-org-mobile { display: none; } #user-profile .pane-user-profile-org-mobile .ui-tabs .ui-tabs-nav { background: none; padding: 0px; margin-bottom: 17px; border-bottom-color: rgb(233, 230, 225); border-bottom-width: 4px; border-bottom-style: solid; white-space: nowrap; } #user-profile .pane-user-profile-org-mobile .ui-tabs .ui-tabs-nav li { margin: 0px 15px -4px 0px !important; top: 0px; float: none; display: inline-block; white-space: nowrap; } #user-profile .pane-user-profile-org-mobile .ui-tabs .ui-tabs-nav li a { background: none; margin: 0px; padding: 10px 0px; color: rgb(224, 224, 224); } #user-profile .pane-user-profile-org-mobile .ui-tabs .ui-tabs-nav li.ui-state-active a { border-width: 0px 0px 4px !important; padding: 10px 0px; color: rgb(0, 94, 165); } #user-profile .pane-user-profile-org-mobile .ui-tabs .ui-tabs-nav li.ui-state-hover a { color: rgb(0, 94, 165); border-bottom-width: 0px; } #user-profile .pane-user-profile-org-mobile .pane-title { font-size: 16px; font-weight: 500; } #user-profile .pane-user-profile-org-mobile .pane-user-field-organisational-unit { font-size: 14px; font-weight: normal; margin-bottom: 20px; } #user-profile .pane-user-profile-org-mobile .pane-user-field-organisational-unit .field-item.sep { padding-right: 5px; } #user-profile .pane-user-profile-org-mobile .pane-user-field-organisational-unit .field-item.sep::after { display: inline; content: ","; } #user-profile .pane-user-profile-org-mobile .pane-u-comments-panel-pane-3 .pane-content { background: none; padding: 0px; } #user-profile .pane-user-profile-org-mobile .pane-u-comments-panel-pane-3 .view { background: none; padding: 0px; -moz-border-radius: none; -webkit-border-radius: none; } #user-profile .pane-user-profile-org-mobile .pane-u-comments-panel-pane-3 .views-field-created { color: rgb(85, 85, 85); } #user-profile .pane-user-profile-org-mobile .pane-u-comments-panel-pane-3 em { font-style: normal; } #user-profile .pane-user-profile-org-mobile .pane-u-comments-panel-pane-3 .views-row { padding-bottom: 15px; margin-bottom: 15px; border-bottom-color: rgb(204, 204, 204); border-bottom-width: 1px; border-bottom-style: solid; position: relative; } #user-profile .pane-user-profile-org-mobile .pane-u-comments-panel-pane-3 .views-row::after { border: solid transparent; border-image: none; left: 90%; top: 100%; width: 0px; height: 0px; position: absolute; content: " "; pointer-events: none; } #user-profile .pane-user-profile-org-mobile .pane-u-comments-panel-pane-3 .views-row::before { border: solid transparent; border-image: none; left: 90%; top: 100%; width: 0px; height: 0px; position: absolute; content: " "; pointer-events: none; } #user-profile .pane-user-profile-org-mobile .pane-u-comments-panel-pane-3 .views-row::after { border-width: 10px; border-color: rgb(255, 255, 255) transparent transparent; margin-left: -10px; } #user-profile .pane-user-profile-org-mobile .pane-u-comments-panel-pane-3 .views-row::before { border-width: 11px; border-color: rgb(204, 204, 204) transparent transparent; margin-left: -11px; } @media all and (max-width:960px) { #user-profile .sutro-double-column { margin: 0px; width: auto; float: none; } #user-profile .sutro-double-first-column-content .sutro-double-column2-inner { border: currentColor; border-image: none; padding-left: 0px; } #user-profile .pane-user-profile-org-mobile { display: none; } #user-profile .pane-user-profile-details-mobile { display: none; } } @media all and (max-width:960px) { .moscone-flipped #mini-panel-actions .panel-pane { float: none; display: block; } .moscone-flipped .pane-invotra-actions .panel-pane { float: none; display: block; } .moscone-flipped #mini-panel-actions .panel-pane.pane-lists { width: auto; margin-right: 0px; } .moscone-flipped .pane-invotra-actions .panel-pane.pane-lists { width: auto; margin-right: 0px; } .moscone-flipped #mini-panel-actions .panel-pane.pane-lists .pane-title.active { background-position: 85px -109px; padding: 9px 40px 14px 14px !important; } .moscone-flipped .pane-invotra-actions .panel-pane.pane-lists .pane-title.active { background-position: 85px -109px; padding: 9px 40px 14px 14px !important; } .moscone-flipped #mini-panel-actions .panel-pane.pane-lists #invotra-list-wrapper form .column { margin-bottom: 0px; } .moscone-flipped .pane-invotra-actions .panel-pane.pane-lists #invotra-list-wrapper form .column { margin-bottom: 0px; } .moscone-flipped #mini-panel-actions .panel-pane.pane-lists #invotra-list-wrapper form .form-submit { margin-top: 10px; } .moscone-flipped #mini-panel-actions .panel-pane.pane-lists #invotra-list-wrapper form .cancel { margin-top: 10px; } .moscone-flipped .pane-invotra-actions .panel-pane.pane-lists #invotra-list-wrapper form .form-submit { margin-top: 10px; } .moscone-flipped .pane-invotra-actions .panel-pane.pane-lists #invotra-list-wrapper form .cancel { margin-top: 10px; } .moscone-flipped #mini-panel-actions .panel-pane.pane-add-to-favourites-list { float: none; } .moscone-flipped .pane-invotra-actions .panel-pane.pane-add-to-favourites-list { float: none; } #mini-panel-actions .panel-pane { width: 150px; } .pane-invotra-actions .panel-pane { width: 150px; } #mini-panel-actions .panel-pane.pane-rate-widget { width: 160px; } .pane-invotra-actions .panel-pane.pane-rate-widget { width: 160px; } #mini-panel-actions .panel-pane.pane-lists .pane-title.active { background-position: 85px -104px; } .pane-invotra-actions .panel-pane.pane-lists .pane-title.active { background-position: 85px -104px; } #mini-panel-actions .panel-pane.pane-lists #invotra-list-wrapper form .column { width: 100%; margin-bottom: 0px; min-width: 211px; } .pane-invotra-actions .panel-pane.pane-lists #invotra-list-wrapper form .column { width: 100%; margin-bottom: 0px; min-width: 211px; } #mini-panel-actions .panel-pane.pane-lists #invotra-list-wrapper form .form-submit { margin-top: 10px; } #mini-panel-actions .panel-pane.pane-lists #invotra-list-wrapper form .cancel { margin-top: 10px; } .pane-invotra-actions .panel-pane.pane-lists #invotra-list-wrapper form .form-submit { margin-top: 10px; } .pane-invotra-actions .panel-pane.pane-lists #invotra-list-wrapper form .cancel { margin-top: 10px; } #mini-panel-actions .panel-pane.pane-add-to-favourites-list { width: 150px; } .pane-invotra-actions .panel-pane.pane-add-to-favourites-list { width: 150px; } } @media all and (max-width:800px) { .pane-mini-tree-term .nav-style6 { border: currentColor; border-image: none; } .pane-mini-tree-term .nav-style6 li { padding: 0px; width: 33.3%; line-height: normal; font-size: 14px; font-weight: normal; min-width: 142px; } .pane-mini-tree-term .nav-style6 li a { background: rgb(242, 242, 242); margin: 0px 1px 1px 0px; padding: 10px; height: 20px; text-align: center; color: rgb(51, 51, 51); line-height: 20px; display: block; } .pane-mini-tree-term .nav-style6 li a:hover { background: rgb(255, 255, 255); padding: 9px; border: 1px solid rgb(242, 242, 242); color: rgb(0, 94, 165); text-decoration: none; } .pane-mini-tree-term .nav-style6 li a.active { background: rgb(255, 255, 255); border-width: 1px 1px 2px; border-style: solid; border-color: rgb(242, 242, 242) rgb(242, 242, 242) rgb(84, 106, 143); padding: 9px 9px 8px; color: rgb(0, 94, 165); } } @media all and (max-width:740px) { #mini-panel-actions .panel-pane { float: none; display: block; } .pane-invotra-actions .panel-pane { float: none; display: block; } #mini-panel-actions .panel-pane.pane-lists { width: auto; margin-right: 0px; } .pane-invotra-actions .panel-pane.pane-lists { width: auto; margin-right: 0px; } #mini-panel-actions .panel-pane.pane-lists .pane-title.active { background-position: 85px -109px; padding: 9px 40px 14px 14px !important; } .pane-invotra-actions .panel-pane.pane-lists .pane-title.active { background-position: 85px -109px; padding: 9px 40px 14px 14px !important; } #mini-panel-actions .panel-pane.pane-lists #invotra-list-wrapper form .column { margin-bottom: 0px; } .pane-invotra-actions .panel-pane.pane-lists #invotra-list-wrapper form .column { margin-bottom: 0px; } #mini-panel-actions .panel-pane.pane-lists #invotra-list-wrapper form .form-submit { margin-top: 10px; } #mini-panel-actions .panel-pane.pane-lists #invotra-list-wrapper form .cancel { margin-top: 10px; } .pane-invotra-actions .panel-pane.pane-lists #invotra-list-wrapper form .form-submit { margin-top: 10px; } .pane-invotra-actions .panel-pane.pane-lists #invotra-list-wrapper form .cancel { margin-top: 10px; } #mini-panel-actions .panel-pane.pane-add-to-favourites-list { float: none; } .pane-invotra-actions .panel-pane.pane-add-to-favourites-list { float: none; } } @media all and (max-width:479px) { .pane-mini-tree-term .nav-style6 li { width: 50%; } .pane-invotra-actions .panel-pane { width: auto; margin-right: 5px; display: inline-block; } .pane-invotra-actions .panel-pane.pane-rate-widget { width: auto; } } @media all and (min-width:1024px) { .alpha-fluid .general-22-content { max-width: 1000px; } .alpha-fluid .general-22-content ul.general-22 li { width: 320px; min-height: 368px; } .alpha-fluid .general-22-content .views-row { width: 320px; min-height: 368px; } } @media all and (max-width:960px) { .general-styles-content.general-22-content { max-width: 620px; } .general-styles.general-22-content { max-width: 620px; } .general-styles-content.general-22-content ul.general-22 li { width: 193px; min-height: 290px; } .general-styles-content.general-22-content .views-row { width: 193px; min-height: 290px; } .general-styles.general-22-content ul.general-22 li { width: 193px; min-height: 290px; } .general-styles.general-22-content .views-row { width: 193px; min-height: 290px; } .general-styles-content.general-22-content ul.general-22 li .title { line-height: 20px; font-size: 14px; -ms-word-wrap: break-word; max-height: 60px; } .general-styles-content.general-22-content ul.general-22 li .views-field-title { line-height: 20px; font-size: 14px; -ms-word-wrap: break-word; max-height: 60px; } .general-styles-content.general-22-content .views-row .title { line-height: 20px; font-size: 14px; -ms-word-wrap: break-word; max-height: 60px; } .general-styles-content.general-22-content .views-row .views-field-title { line-height: 20px; font-size: 14px; -ms-word-wrap: break-word; max-height: 60px; } .general-styles.general-22-content ul.general-22 li .title { line-height: 20px; font-size: 14px; -ms-word-wrap: break-word; max-height: 60px; } .general-styles.general-22-content ul.general-22 li .views-field-title { line-height: 20px; font-size: 14px; -ms-word-wrap: break-word; max-height: 60px; } .general-styles.general-22-content .views-row .title { line-height: 20px; font-size: 14px; -ms-word-wrap: break-word; max-height: 60px; } .general-styles.general-22-content .views-row .views-field-title { line-height: 20px; font-size: 14px; -ms-word-wrap: break-word; max-height: 60px; } } @media all and (max-width:620px) { .general-styles-content.general-22-content { max-width: 300px; } .general-styles.general-22-content { max-width: 300px; } .general-styles-content.general-22-content .view-content { margin: 0px; } .general-styles-content.general-22-content .general-22 { margin: 0px; } .general-styles.general-22-content .view-content { margin: 0px; } .general-styles.general-22-content .general-22 { margin: 0px; } .general-styles-content.general-22-content ul.general-22 li { margin: 0px; width: 300px; display: block; min-height: 344px; } .general-styles-content.general-22-content .views-row { margin: 0px; width: 300px; display: block; min-height: 344px; } .general-styles.general-22-content ul.general-22 li { margin: 0px; width: 300px; display: block; min-height: 344px; } .general-styles.general-22-content .views-row { margin: 0px; width: 300px; display: block; min-height: 344px; } } @media all and (max-width:480px) { .general-styles-content.general-22-content { max-width: 100%; } .general-styles.general-22-content { max-width: 100%; } .general-styles-content.general-22-content ul.general-22 li { width: 100%; } .general-styles-content.general-22-content .views-row { width: 100%; } .general-styles.general-22-content ul.general-22 li { width: 100%; } .general-styles.general-22-content .views-row { width: 100%; } } @media all and (max-width:360px) { .general-styles-content.general-22-content ul.general-22 li { width: 100%; } .general-styles-content.general-22-content .views-row { width: 100%; } .general-styles.general-22-content ul.general-22 li { width: 100%; } .general-styles.general-22-content .views-row { width: 100%; } } @media all and (max-width:414px) { body .general-styles-content img.mobile { display: block; } body .general-styles .views-field-field-image img.mobile { display: block; } body .general-styles-content img.desktop { display: none !important; } body .general-styles .views-field-field-image img.desktop { display: none !important; } body .general-styles .views-field-field-image { margin: 2px 0px 14px; float: none; } body .general-styles-content li.item img { margin: 2px 0px 14px; } body .general-styles-content li.home-news { width: 100%; margin-right: 0px; float: none; } } @media all and (min-width:415px) { body .general-styles-content img.mobile { display: none !important; } body .general-styles .views-field-field-image img.mobile { display: none !important; } }
app/assets/sass/intranet/responsive.css
.glow { display: inline-block; opacity: 1; box-shadow: inset 0px 0px 1px transparent; transform: translateZ(0px); transition-property: opacity; transition-duration: 0.3s; -webkit-transform: translateZ(0); -webkit-transition-duration: 0.3s; -webkit-transition-property: opacity; } .glow:hover { opacity: 0.7; box-shadow: inset 0px 0px 8px rgba(0,0,0,0.6); } .text-decoration { text-decoration: none; } .text-decoration:hover { text-decoration: underline; } .inv-clearfix::after { height: 0px; clear: both; display: block; visibility: hidden; content: ""; } .groups-view-row-default .views-row::after { height: 0px; clear: both; display: block; visibility: hidden; content: ""; } .no-select { -ms-user-select: none; -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; user-select: none; } .default-modal { margin: 0px; padding: 65px 0px 0px; border-radius: 6px; border: currentColor; border-image: none; height: auto !important; color: rgb(51, 51, 51); max-width: 1200px; box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.5); -moz-border-radius: 6px; -webkit-border-radius: 6px; -moz-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5); -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5); } .default-modal .ui-dialog-buttonpane { background: rgb(240, 238, 232); margin: 0px; padding: 10px 20px; border-radius: 0px 0px 6px 6px; border-top-color: rgb(212, 207, 198); border-top-width: 1px; border-top-style: solid; display: block; -moz-border-radius: 0 0 6px 6px; -webkit-border-radius: 0; } .default-modal .ui-dialog-buttonpane .ui-dialog-buttonset { float: none; } .default-modal .ui-dialog-buttonpane .ui-dialog-buttonset button { margin: 0px 10px 0px 0px; } .default-modal .ui-dialog-buttonpane .ui-dialog-buttonset button.ui-button { margin: 0px 10px 0px 0px; height: 34px; line-height: 34px; font-size: 14px; } .default-modal .ui-dialog-buttonpane .ui-dialog-buttonset button.ui-button.fake-cancel { background: none; } .default-modal .ui-dialog-buttonpane .ui-dialog-buttonset button.input-standard-button { background: white; } .default-modal .ui-dialog-buttonpane .ui-dialog-buttonset button.input-standard-button:hover { background: rgba(0, 0, 0, 0.05); } .default-modal .ui-widget-header { background: rgb(240, 238, 232); margin: -65px 0px 0px; padding: 10px 20px; border-radius: 6px 6px 0px 0px; text-align: center; border-bottom-color: rgb(212, 207, 198); border-bottom-width: 1px; border-bottom-style: solid; -moz-border-radius: 6px 6px 0 0; -webkit-border-radius: 6px; } .default-modal .ui-widget-header .ui-dialog-title { margin: 0px; color: rgb(51, 51, 51); line-height: 120%; font-size: 20px; font-weight: normal; float: none; } .default-modal .ui-widget-header .ui-dialog-titlebar-close { background: none; margin: 0px; padding: 0px; border: currentColor !important; border-image: none !important; width: 20px; height: 20px; overflow: hidden; font-family: "FontAwesome"; font-weight: normal !important; text-decoration: none; float: right; position: static; } .default-modal .ui-widget-header .ui-dialog-titlebar-close::before { text-align: right; color: rgb(117, 117, 117); line-height: 24px; font-size: 16px; display: block; content: "\f00d"; } .default-modal .ui-widget-header .ui-dialog-titlebar-close span { display: none; } .default-modal .ui-dialog-content { padding: 20px; position: relative; } .default-modal .ui-dialog-content.media-modal-frame { padding: 0px; height: auto !important; } .default-modal .ui-dialog-content.media-modal-frame .form-actions { display: none; } .ui-dialog.ui-widget.media-wrapper .ui-dialog-buttonpane { display: none; } .element-invisible { height: 1px; overflow: hidden; position: absolute !important; clip: rect(1px, 1px, 1px, 1px); } .nav-tab-style { background: none; border-width: 1px 0px; border-style: solid; border-color: rgb(192, 190, 186); padding: 4px 0px 0px; } .nav-tab-style li { margin: 0px 0px 4px; display: block; } .nav-tab-style li a { background: none; padding: 12px 14px; border-radius: 3px; border: currentColor; border-image: none; color: rgb(51, 51, 51); line-height: 20px; font-size: 14px; text-decoration: none; display: block; -moz-border-radius: 3px; -webkit-border-radius: 3px; } .nav-tab-style li a:hover { background: rgb(220, 220, 220); } .nav-tab-style li a.active { border-width: 1px 1px 1px 4px; border-style: solid; border-color: rgb(157, 156, 156) rgb(157, 156, 156) rgb(157, 156, 156) rgb(84, 106, 143); border-radius: 5px; border-image: none; color: rgb(51, 51, 51); letter-spacing: 0.4px; font-weight: 600; background-color: white; -moz-border-radius: 5px; -webkit-border-radius: 5px; } .nav-tab-style li a.active:hover { background: white; } .list-links-style li { padding: 10px 0px; line-height: 20px; border-bottom-color: rgb(192, 190, 186); border-bottom-width: 1px; border-bottom-style: solid; -ms-word-wrap: break-word; } .list-links-style li.last { border-bottom-color: currentColor; border-bottom-width: medium; border-bottom-style: none; } .default-search-form-with-focus form { position: relative; max-width: 300px; } @media all and (max-width:480px) { .default-search-form-with-focus form { max-width: 100%; } } .default-search-form-with-focus form .form-text { padding: 10px 40px 10px 10px; border-radius: 3px 0px 0px 3px; border: 1px solid rgb(111, 119, 123); border-image: none; width: 100%; height: 40px; color: rgb(111, 119, 123); line-height: 16px; max-width: 100%; -moz-border-radius: 3px 0 0 3px; -webkit-border-radius: 3px; } .default-search-form-with-focus form .form-text:focus { border: 2px solid rgb(255, 191, 71); border-image: none; color: rgb(0, 0, 0); } .default-search-form-with-focus form button { background: rgb(84, 106, 143); margin: 0px; padding: 0px; border-radius: 0px 3px 3px 0px; border: 1px solid rgb(84, 106, 143); border-image: none; width: 48px; height: 38px; right: -1px; bottom: 0px; color: white; position: absolute; z-index: 2; min-width: 0px; box-sizing: content-box; box-shadow: none; -moz-box-sizing: content-box; -webkit-box-sizing: content-box; -moz-border-radius: 0 3px 3px 0; -webkit-border-radius: 0; -moz-box-shadow: none; -webkit-box-shadow: none; } .default-search-form-with-focus form .form-submit { background: rgb(84, 106, 143); margin: 0px; padding: 0px; border-radius: 0px 3px 3px 0px; border: 1px solid rgb(84, 106, 143); border-image: none; width: 48px; height: 38px; right: -1px; bottom: 0px; color: white; position: absolute; z-index: 2; min-width: 0px; box-sizing: content-box; box-shadow: none; -moz-box-sizing: content-box; -webkit-box-sizing: content-box; -moz-border-radius: 0 3px 3px 0; -webkit-border-radius: 0; -moz-box-shadow: none; -webkit-box-shadow: none; } .default-search-form-with-focus form button::after { width: 36px; height: 36px; text-align: center; line-height: 36px; font-family: "FontAwesome"; font-size: 21px; content: "\f002"; } .default-search-form-with-focus form .form-submit::after { width: 36px; height: 36px; text-align: center; line-height: 36px; font-family: "FontAwesome"; font-size: 21px; content: "\f002"; } .default-search-form-with-focus form button.submit:hover { color: white; } .default-search-form-with-focus form button.submit:focus { color: white; } .default-search-form-with-focus form .form-submit.submit:hover { color: white; } .default-search-form-with-focus form .form-submit.submit:focus { color: white; } .default-search-form-with-focus form button.submit:focus { background: rgb(84, 106, 143); } .default-search-form-with-focus form .form-submit.submit:focus { background: rgb(84, 106, 143); } .default-search-form-with-focus form button.submit:hover { background: rgb(71, 90, 121); border: 1px solid rgb(71, 90, 121); border-image: none; } .default-search-form-with-focus form .form-submit.submit:hover { background: rgb(71, 90, 121); border: 1px solid rgb(71, 90, 121); border-image: none; } .default-search-form-with-focus form button.submit:active { background: rgb(55, 68, 91); color: rgb(255, 255, 255); } .default-search-form-with-focus form .form-submit.submit:active { background: rgb(55, 68, 91); color: rgb(255, 255, 255); } .default-search-form-with-focus form button.focus { outline: rgb(255, 191, 71) solid 2px; box-shadow: 0px 2px 4px 2px rgba(0,0,0,0.5), inset 0px 2px 4px 2px rgba(0,0,0,0.5); -moz-box-shadow: 0px 2px 4px 2px rgba(0, 0, 0, 0.5), inset 0px 2px 4px 2px rgba(0, 0, 0, 0.5); -webkit-box-shadow: 0px 2px 4px 2px rgba(0, 0, 0, 0.5), inset 0px 2px 4px 2px rgba(0, 0, 0, 0.5); } .default-search-form-with-focus form #sbmt-btn-focus { display: none !important; } .default-search-form-with-focus form.focus .form-type-textfield { margin-right: 49px; } .default-search-form-with-focus form.focus .form-type-textfield .form-text { padding-right: 5px; } .groups-view-row-default .views-row { padding-left: 75px; } .groups-view-row-default .views-field-picture { margin: 0px 0px 0px -75px; float: left; } .groups-view-row-default .views-field-picture img { border-radius: 50px; -moz-border-radius: 50px; -webkit-border-radius: 50px; } .groups-view-row-default .views-field-name { line-height: 14px; font-weight: 700; margin-bottom: 4px; } .groups-view-row-default .views-field-field-job-role { color: rgb(101, 101, 101); line-height: 18px; } .inherit-text-style { margin: 0px; line-height: inherit; letter-spacing: inherit; font-size: inherit; font-weight: inherit; } .add-member-checkboxes .checker { margin: 0px 2px 0px 0px; } .add-member-checkboxes .checker span { background: rgb(223, 223, 230); border-radius: 3px 0px 0px 3px; width: 27px; height: 27px; text-align: center; -moz-border-radius: 3px 0 0 3px; -webkit-border-radius: 3px; } .add-member-checkboxes .checker span input { width: 27px; height: 27px; cursor: pointer; } .add-member-checkboxes .checker span::before { width: 27px; height: 27px; color: rgb(101, 101, 101); line-height: 27px; content: "\f00d"; } .add-member-checkboxes .checker.focus span.checked { outline: rgb(255, 191, 71) solid 2px; } .add-member-checkboxes .checker.focus span { outline: rgb(255, 191, 71) solid 2px; } .add-member-checkboxes label { background: rgb(223, 223, 230); padding: 5px 12px; border-radius: 0px 3px 3px 0px; line-height: 17px; vertical-align: top; display: inline-block; -moz-border-radius: 0 3px 3px 0; -webkit-border-radius: 0; } .default-search-content-form { padding: 0px 120px 20px 0px; overflow: hidden; } .default-search-content-form .form-type-textfield { margin: 0px; width: 100%; float: left; } .default-search-content-form .form-text { border-width: 1px; border-color: rgb(179, 175, 174); margin: 0px; border-radius: 3px; width: 100%; max-width: 500px; -moz-border-radius: 3px; -webkit-border-radius: 3px; } .default-search-content-form .form-text:focus { border-color: rgb(255, 191, 71); outline: rgb(255, 191, 71) solid 1px; } .default-search-content-form .form-submit { margin: 3px -120px 3px 0px; padding: 0px 28px; width: 50px; height: 32px; line-height: 32px; font-size: 14px; float: right; display: block; min-width: 0px; } .default-search-content-form .form-item-text { width: 346px; } .default-search-content-form .form-item-text input[type='text'] { border-radius: 3px; border: 1px solid rgb(179, 175, 174); border-image: none; width: 100%; height: 40px; background-color: white; } @media all and (max-width:320px) { .default-search-content-form .form-item-text { width: 200px; } } @media all and (max-width:768px) { .default-search-content-form { margin: 0px -16px; padding: 16px 140px 16px 16px; } } @media all and (max-width:360px) { .default-search-content-form .form-submit { padding: 0px 10px; } } .icon-link-text { color: transparent; font-size: 0px; } .comments-and-likes .like-flag-wrapper .like-widget .like-text { color: transparent; font-size: 0px; } .comments-and-likes .like-flag-wrapper .flag-wrapper a { color: transparent; font-size: 0px; } .comments-and-likes { padding: 8px 0px 6px; color: rgb(101, 101, 101); line-height: 24px; clear: both; font-size: 12px; margin-top: 12px; border-top-color: rgb(221, 223, 226); border-top-width: 1px; border-top-style: solid; display: block; white-space: nowrap; } .comments-and-likes .like-flag-wrapper { text-align: right; margin-top: 2px; float: right; } .comments-and-likes .like-flag-wrapper a .fcs-state { background: none; } .comments-and-likes .like-flag-wrapper .like-widget { float: right; display: inline; white-space: normal; } .comments-and-likes .like-flag-wrapper .like-widget a { padding: 8px 0px 2px; vertical-align: top; } .comments-and-likes .like-flag-wrapper .like-widget a .fa::before { padding: 0px 3px; color: rgb(101, 101, 101); line-height: 18px; font-size: 20px; } .comments-and-likes .like-flag-wrapper .like-widget a.focus { outline: rgb(255, 191, 71) solid 3px; } .comments-and-likes .like-flag-wrapper .like-widget a.voted .fa::before { color: rgb(84, 106, 138); } .comments-and-likes .like-flag-wrapper .flag-wrapper { line-height: 17px; float: left; } @media all and (max-width:320px) { .comments-and-likes .like-flag-wrapper .flag-wrapper { line-height: 20px; } } .comments-and-likes .like-flag-wrapper .flag-wrapper a { padding: 19px 4px 4px 3px; width: 20px; height: 20px; margin-right: 3px; margin-left: 5px; } @media all and (max-width:320px) { .comments-and-likes .like-flag-wrapper .flag-wrapper a { margin: 0px; padding: 0px 10px 0px 0px; float: left; } } .comments-and-likes .like-flag-wrapper .flag-wrapper .flag-throbber { display: none; } .comments-and-likes .delimiter-bullet { margin: 5px; } @media all and (max-width:960px) { #color_scheme_form #placeholder { position: static; } #color_scheme_form .pallete-buttons { position: static; } .page-node- .block-system-main { margin-top: 0px; } #zone-content { margin-top: 0px; } .grid-1 { width: auto; margin-right: 6px; margin-left: 6px; float: none; } .grid-2 { width: auto; margin-right: 6px; margin-left: 6px; float: none; } .grid-3 { width: auto; margin-right: 6px; margin-left: 6px; float: none; } .grid-4 { width: auto; margin-right: 6px; margin-left: 6px; float: none; } .grid-5 { width: auto; margin-right: 6px; margin-left: 6px; float: none; } .grid-6 { width: auto; margin-right: 6px; margin-left: 6px; float: none; } .grid-7 { width: auto; margin-right: 6px; margin-left: 6px; float: none; } .grid-8 { width: auto; margin-right: 6px; margin-left: 6px; float: none; } .grid-9 { width: auto; margin-right: 6px; margin-left: 6px; float: none; } .grid-10 { width: auto; margin-right: 6px; margin-left: 6px; float: none; } .grid-11 { width: auto; margin-right: 6px; margin-left: 6px; float: none; } .grid-12 { width: auto; margin-right: 6px; margin-left: 6px; float: none; } .grid-13 { width: auto; margin-right: 6px; margin-left: 6px; float: none; } .grid-14 { width: auto; margin-right: 6px; margin-left: 6px; float: none; } .grid-15 { width: auto; margin-right: 6px; margin-left: 6px; float: none; } .grid-16 { width: auto; margin-right: 6px; margin-left: 6px; float: none; } .grid-17 { width: auto; margin-right: 6px; margin-left: 6px; float: none; } .grid-18 { width: auto; margin-right: 6px; margin-left: 6px; float: none; } .grid-19 { width: auto; margin-right: 6px; margin-left: 6px; float: none; } .grid-20 { width: auto; margin-right: 6px; margin-left: 6px; float: none; } .grid-21 { width: auto; margin-right: 6px; margin-left: 6px; float: none; } .grid-22 { width: auto; margin-right: 6px; margin-left: 6px; float: none; } .grid-23 { width: auto; margin-right: 6px; margin-left: 6px; float: none; } .grid-24 { width: auto; margin-right: 6px; margin-left: 6px; float: none; } #region-content { margin: 0px 6px; } } @media all and (max-width:600px) { .container-12 .block .omega-grid { margin-right: 0px; margin-left: 0px; } .container-16 .block .omega-grid { margin-right: 0px; margin-left: 0px; } .container-24 .block .omega-grid { margin-right: 0px; margin-left: 0px; } .region-branding-inner > div { padding: 0px; } .ui-tabs.tabs-left { padding-left: 0px; } .ui-tabs.tabs-left .ui-tabs-nav { width: auto; padding-top: 5px; margin-bottom: 20px; margin-left: 0px; float: none; } .ui-tabs.tabs-left .ui-tabs-nav li { margin: 5px 5px 0px 0px; display: inline-block; } .ui-tabs.tabs-left .ui-tabs-nav li.ui-tabs-selected { padding: 0px; } .ui-tabs.tabs-left .ui-tabs-nav li.ui-state-active a { background: rgb(255, 255, 255); border-width: 0px 0px 3px; border-style: solid; border-color: rgb(84, 106, 143); padding: 10px 10px 7px; } .ui-tabs.tabs-left .ui-tabs-nav li.ui-state-hover a { background: rgb(255, 255, 255); border-width: 0px 0px 3px; border-style: solid; border-color: rgb(84, 106, 143); padding: 10px 10px 7px; } } @media all and (max-width:432px) { .mobile-hidden { display: none; } } @media all and (max-width:375px) { .rate-widget-fivestar .item-list { min-width: 110px; } #mini-panel-actions { margin: 0px; } .pane-invotra-actions { margin: 0px; } .pane-actions .panel-pane.pane-rate-widget { margin: 0px; } .pane-invotra-actions .panel-pane.pane-rate-widget { margin: 0px; } .pane-actions .panel-pane.pane-flag-link { margin: 0px; } .pane-invotra-actions .panel-pane.pane-flag-link { margin: 0px; } .node-type-blog .pane-invotra-actions { border: currentColor; border-image: none; } .node-type-blog .pane-node-field-tags { margin-bottom: 15px; } .node-type-blog #comment-form { margin-top: 25px; } .node-type-blog .pane-node-comment-form { margin-top: 25px; } div.rate-widget-fivestar div.item-list ul { padding: 5px 0px; } .page-node- .pane-node-field-image { margin-right: 0px; float: none; } } @media all and (max-width:479px) and (min-width:376px) { .pane-related-stuff .pane-content { padding-bottom: 18px; } .pane-secondary-details .pane-content { padding-bottom: 18px; } .pane-primary-details .pane-content { padding-bottom: 18px; } .pane-related-stuff .panel-panel .panel-separator { background: rgb(204, 204, 204); height: 1px; clear: both; margin-top: 20px; margin-bottom: 20px; display: block; } .pane-secondary-details .panel-panel .panel-separator { background: rgb(204, 204, 204); height: 1px; clear: both; margin-top: 20px; margin-bottom: 20px; display: block; } .pane-primary-details .panel-panel .panel-separator { background: rgb(204, 204, 204); height: 1px; clear: both; margin-top: 20px; margin-bottom: 20px; display: block; } .pane-related-stuff .pane-content .panel-pane { margin: 0px; width: auto; float: none; display: block; } .pane-secondary-details .pane-content .panel-pane { margin: 0px; width: auto; float: none; display: block; } .pane-primary-details .pane-content .panel-pane { margin: 0px; width: auto; float: none; display: block; } .page-node- .pane-node-field-image { margin-right: 0px; float: none; } } @media all and (max-width:767px) and (min-width:480px) { .pane-related-stuff .panel-panel :nth-child(8n).panel-separator { display: none; } .pane-secondary-details .panel-panel :nth-child(8n).panel-separator { display: none; } .pane-primary-details .panel-panel :nth-child(8n).panel-separator { display: none; } .pane-related-stuff .panel-panel :nth-child(4n).panel-separator { background: rgb(204, 204, 204); height: 1px; clear: both; margin-bottom: 20px; display: block; } .pane-secondary-details .panel-panel :nth-child(4n).panel-separator { background: rgb(204, 204, 204); height: 1px; clear: both; margin-bottom: 20px; display: block; } .pane-primary-details .panel-panel :nth-child(4n).panel-separator { background: rgb(204, 204, 204); height: 1px; clear: both; margin-bottom: 20px; display: block; } .pane-related-stuff .pane-content .panel-pane { width: 45%; margin-right: 5%; } .pane-secondary-details .pane-content .panel-pane { width: 45%; margin-right: 5%; } .pane-primary-details .pane-content .panel-pane { width: 45%; margin-right: 5%; } } @media all and (max-width:960px) and (min-width:768px) { #mini-panel-actions { text-align: left; margin-right: 20px; } .pane-invotra-actions { text-align: left; margin-right: 20px; } #mini-panel-actions #breadcrumb { margin: 0px 0px 10px; width: auto; float: none; max-width: 100%; } .pane-invotra-actions #breadcrumb { margin: 0px 0px 10px; width: auto; float: none; max-width: 100%; } #mini-panel-actions .panel-panel { margin: 20px 0px 0px; width: auto; float: none; } .pane-invotra-actions .panel-panel { margin: 20px 0px 0px; width: auto; float: none; } #mini-panel-actions .panel-panel #tabs-show { margin: 0px 20px 10px 0px; } #mini-panel-actions .panel-panel .panel-pane { margin: 0px 20px 10px 0px; } .pane-invotra-actions .panel-panel #tabs-show { margin: 0px 20px 10px 0px; } .pane-invotra-actions .panel-panel .panel-pane { margin: 0px 20px 10px 0px; } } @media all and (min-width:1200px) { .responsive-layout-mobile .pane-related-stuff .panel-panel :nth-child(8n).panel-separator { display: none; } .responsive-layout-mobile .pane-secondary-details .panel-panel :nth-child(8n).panel-separator { display: none; } .responsive-layout-mobile .pane-primary-details .panel-panel :nth-child(8n).panel-separator { display: none; } .responsive-layout-mobile .pane-related-stuff .panel-panel :nth-child(10n).panel-separator { background: rgb(204, 204, 204); height: 1px; clear: both; margin-bottom: 20px; display: block; } .responsive-layout-mobile .pane-secondary-details .panel-panel :nth-child(10n).panel-separator { background: rgb(204, 204, 204); height: 1px; clear: both; margin-bottom: 20px; display: block; } .responsive-layout-mobile .pane-primary-details .panel-panel :nth-child(10n).panel-separator { background: rgb(204, 204, 204); height: 1px; clear: both; margin-bottom: 20px; display: block; } .responsive-layout-mobile .pane-related-stuff .pane-content .panel-pane { width: 18%; margin-right: 2%; } .responsive-layout-mobile .pane-secondary-details .pane-content .panel-pane { width: 18%; margin-right: 2%; } .responsive-layout-mobile .pane-primary-details .pane-content .panel-pane { width: 18%; margin-right: 2%; } } body.mobile-detected { background: rgb(51, 51, 51); height: 100%; } body.mobile-detected #page { overflow: hidden; position: relative; min-height: 100%; } body.mobile-detected #region-content { position: static; } body.mobile-detected .zone-content { margin: 0px auto; } body.mobile-detected .branding-data { padding: 0px; width: auto; float: none; } body.mobile-detected .logo-img { margin: 60px 0px; width: auto; height: auto; line-height: normal; position: static; } body.mobile-detected .logo-img a { background: url("../i/white-logo.png") no-repeat 0px 0px / 129px 31px; margin: 0px auto; width: 129px; height: 31px; display: block; } body.mobile-detected .logo-img a img { display: none; } body.mobile-detected.page-user.not-logged-in .container-12.zone-content { margin: 0px; border-radius: 0px; width: 100%; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; } body.mobile-detected.page-user-login .container-12.zone-content { margin: 0px; border-radius: 0px; width: 100%; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; } body.mobile-detected.page-user-password .container-12.zone-content { margin: 0px; border-radius: 0px; width: 100%; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; } body.mobile-detected.page-user.not-logged-in .container-12.zone-content .grid-12#region-content { margin: 0px; min-height: 555px; } body.mobile-detected.page-user-login .container-12.zone-content .grid-12#region-content { margin: 0px; min-height: 555px; } body.mobile-detected.page-user-password .container-12.zone-content .grid-12#region-content { margin: 0px; min-height: 555px; } body.mobile-detected.page-user.not-logged-in .container-12.zone-content #messages { } body.mobile-detected.page-user-login .container-12.zone-content #messages { } body.mobile-detected.page-user-password .container-12.zone-content #messages { } html { height: 100%; } #mobile-loader-wrapper { background: rgb(51, 51, 51); left: 0px; top: 0px; height: 100%; right: 0px; bottom: 0px; position: absolute; z-index: 9999; } #mobile-loader-wrapper #mobile-loader-progress-wrap { margin: -96px auto 0px; top: 50%; width: 130px; position: relative; } #mobile-loader-wrapper #mobile-loader-progress { margin: 0px auto; width: 1em; height: 1em; font-size: 96px; position: relative; } #mobile-loader-wrapper #mobile-loader-progress::after { border-radius: 50%; border: 6px solid rgb(94, 94, 94); border-image: none; left: 0px; top: 0px; width: 84px; height: 84px; display: block; content: ""; -moz-border-radius: 50%; -webkit-border-radius: 50%; } #mobile-loader-wrapper #mobile-loader-progress .circle { width: 1em; height: 1em; position: absolute; clip: rect(0px, 96px, 96px, 48px); } #mobile-loader-wrapper #mobile-loader-progress .circle.clipauto { clip: rect(auto, auto, auto, auto); } #mobile-loader-wrapper #mobile-loader-progress .circle .bar { border-radius: 50%; border: 6px solid rgb(74, 183, 138); border-image: none; width: 84px; height: 84px; position: absolute; clip: rect(0px, 48px, 96px, 0px); transform: rotate(18deg); -moz-border-radius: 50%; -webkit-border-radius: 50%; -webkit-transform: rotate(18deg); -moz-transform: rotate(18deg); -o-transform: rotate(18deg); } #mobile-loader-wrapper #mobile-loader-progress .circle .fill { border-radius: 50%; border: 6px solid rgb(74, 183, 138); border-image: none; width: 84px; height: 84px; position: absolute; clip: rect(0px, 48px, 96px, 0px); transform: rotate(18deg); -moz-border-radius: 50%; -webkit-border-radius: 50%; -webkit-transform: rotate(18deg); -moz-transform: rotate(18deg); -o-transform: rotate(18deg); } #mobile-loader-wrapper #mobile-loader-progress .circle .fill { transform: rotate(20deg); -webkit-transform: rotate(20deg); -moz-transform: rotate(20deg); -o-transform: rotate(20deg); } img { height: auto; max-width: 100%; } @media all and (max-width:960px) { body.html { position: relative; } .messages li { -ms-word-wrap: break-word; } .zone-menu-wrapper { min-height: 0px; } #block-menu-menu-quick-links { text-align: left; display: none; } #block-menu-menu-quick-links ul.menu { margin: 0px 8px 4px; padding: 0px; text-align: left; } #block-menu-menu-quick-links ul.menu li { padding: 0px 10px 0px 0px; } #mobile-bar { background: inherit; display: block; } .region-page-top-inner { height: auto !important; } .region-menu-inner { display: none; } #invotra-toolbar-wrapper { display: none; } .logo-img { position: static; } .branding-data { margin: 14px 0px 14px 8px; width: auto; } .branding-data .logo-img { width: 100px; height: auto; line-height: normal; } #block-invotra-search-and-do-search-lite { margin: 0px 8px 14px; padding: 0px; display: none; max-width: 100%; } #block-invotra-search-and-do-search-lite form { padding: 0px; } #block-invotra-search-and-do-search-lite .form-item { float: none; } #block-invotra-search-and-do-search-lite .form-text { border-width: 1px; border-color: rgb(84, 106, 143); padding: 0px 20px; width: 100%; height: 40px; line-height: 40px; float: none; max-width: 100%; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; } #block-invotra-search-and-do-search-lite .form-submit { display: none; } } @media all and (max-width:600px) { #breadcrumb { margin-bottom: 16px; } } @media all and (max-width:960px) and (min-width:600px) { #breadcrumb { margin-bottom: 16px; } .region-branding-inner .branding-data { padding: 0px; margin-left: 8px; } } @media all and (max-width:1280px) and (min-width:960px) { .zone-content { padding-top: 80px; } } @media all and (min-width:480px) { .mobile-facet-link { display: none; } } @media all and (max-width:480px) { .page-invotra-my-workplace .brenham-container.brenham-header { margin-bottom: 0px; } } @media all and (max-width:321px) { body { color: rgb(51, 51, 51); letter-spacing: 0.2px; } a { letter-spacing: 0.2px; } .region-content h1 { color: rgb(51, 51, 51); font-weight: bold; } h1 { color: rgb(51, 51, 51); font-weight: bold; } h2 { color: rgb(51, 51, 51); font-weight: bold; } h3 { color: rgb(51, 51, 51); font-weight: bold; } h4 { color: rgb(51, 51, 51); font-weight: bold; } h1 { line-height: 28px; font-size: 24px; } h1#page-title { line-height: 28px; font-size: 24px; } h2 { line-height: 24px; font-size: 20px; } h3 { line-height: 20px; font-size: 16px; } h4 { line-height: 20px; font-size: 14px; } } @media all and (max-width:737px) { body.html h1#page-title { color: rgb(0, 0, 0); line-height: 28px; font-size: 24px !important; font-weight: bold; } body.html .pane-node-title h1 { color: rgb(0, 0, 0); font-weight: bold; } body.html .pane-node-title h2 { color: rgb(0, 0, 0); font-weight: bold; } body.html .pane-node-title h3 { color: rgb(0, 0, 0); font-weight: bold; } body.html .pane-node-title h4 { color: rgb(0, 0, 0); font-weight: bold; } body.html .pane-node-title h5 { color: rgb(0, 0, 0); font-weight: bold; } body.html .pane-node-title h6 { color: rgb(0, 0, 0); font-weight: bold; } body.html .field-node-body h1 { color: rgb(0, 0, 0); font-weight: bold; } body.html .field-node-body h2 { color: rgb(0, 0, 0); font-weight: bold; } body.html .field-node-body h3 { color: rgb(0, 0, 0); font-weight: bold; } body.html .field-node-body h4 { color: rgb(0, 0, 0); font-weight: bold; } body.html .field-node-body h5 { color: rgb(0, 0, 0); font-weight: bold; } body.html .field-node-body h6 { color: rgb(0, 0, 0); font-weight: bold; } body.html .field-type-text-with-summary h1 { color: rgb(0, 0, 0); font-weight: bold; } body.html .field-type-text-with-summary h2 { color: rgb(0, 0, 0); font-weight: bold; } body.html .field-type-text-with-summary h3 { color: rgb(0, 0, 0); font-weight: bold; } body.html .field-type-text-with-summary h4 { color: rgb(0, 0, 0); font-weight: bold; } body.html .field-type-text-with-summary h5 { color: rgb(0, 0, 0); font-weight: bold; } body.html .field-type-text-with-summary h6 { color: rgb(0, 0, 0); font-weight: bold; } body.html .views-field-body h1 { color: rgb(0, 0, 0); font-weight: bold; } body.html .views-field-body h2 { color: rgb(0, 0, 0); font-weight: bold; } body.html .views-field-body h3 { color: rgb(0, 0, 0); font-weight: bold; } body.html .views-field-body h4 { color: rgb(0, 0, 0); font-weight: bold; } body.html .views-field-body h5 { color: rgb(0, 0, 0); font-weight: bold; } body.html .views-field-body h6 { color: rgb(0, 0, 0); font-weight: bold; } body.html .pane-term-description .pane-content h1 { color: rgb(0, 0, 0); font-weight: bold; } body.html .pane-term-description .pane-content h2 { color: rgb(0, 0, 0); font-weight: bold; } body.html .pane-term-description .pane-content h3 { color: rgb(0, 0, 0); font-weight: bold; } body.html .pane-term-description .pane-content h4 { color: rgb(0, 0, 0); font-weight: bold; } body.html .pane-term-description .pane-content h5 { color: rgb(0, 0, 0); font-weight: bold; } body.html .pane-term-description .pane-content h6 { color: rgb(0, 0, 0); font-weight: bold; } body.html .pane-custom .pane-content h1 { color: rgb(0, 0, 0); font-weight: bold; } body.html .pane-custom .pane-content h2 { color: rgb(0, 0, 0); font-weight: bold; } body.html .pane-custom .pane-content h3 { color: rgb(0, 0, 0); font-weight: bold; } body.html .pane-custom .pane-content h4 { color: rgb(0, 0, 0); font-weight: bold; } body.html .pane-custom .pane-content h5 { color: rgb(0, 0, 0); font-weight: bold; } body.html .pane-custom .pane-content h6 { color: rgb(0, 0, 0); font-weight: bold; } body.html .pane-node-title h1 { line-height: 28px; font-size: 24px; } body.html .field-node-body h1 { line-height: 28px; font-size: 24px; } body.html .field-type-text-with-summary h1 { line-height: 28px; font-size: 24px; } body.html .views-field-body h1 { line-height: 28px; font-size: 24px; } body.html .pane-term-description .pane-content h1 { line-height: 28px; font-size: 24px; } body.html .pane-custom .pane-content h1 { line-height: 28px; font-size: 24px; } body.html .pane-node-title h2 { line-height: 24px; font-size: 20px; } body.html .field-node-body h2 { line-height: 24px; font-size: 20px; } body.html .field-type-text-with-summary h2 { line-height: 24px; font-size: 20px; } body.html .views-field-body h2 { line-height: 24px; font-size: 20px; } body.html .pane-term-description .pane-content h2 { line-height: 24px; font-size: 20px; } body.html .pane-custom .pane-content h2 { line-height: 24px; font-size: 20px; } body.html .pane-node-title h3 { line-height: 20px; font-size: 18px; } body.html .field-node-body h3 { line-height: 20px; font-size: 18px; } body.html .field-type-text-with-summary h3 { line-height: 20px; font-size: 18px; } body.html .views-field-body h3 { line-height: 20px; font-size: 18px; } body.html .pane-term-description .pane-content h3 { line-height: 20px; font-size: 18px; } body.html .pane-custom .pane-content h3 { line-height: 20px; font-size: 18px; } body.html .pane-node-title h4 { line-height: 20px; font-size: 16px; } body.html .field-node-body h4 { line-height: 20px; font-size: 16px; } body.html .field-type-text-with-summary h4 { line-height: 20px; font-size: 16px; } body.html .views-field-body h4 { line-height: 20px; font-size: 16px; } body.html .pane-term-description .pane-content h4 { line-height: 20px; font-size: 16px; } body.html .pane-custom .pane-content h4 { line-height: 20px; font-size: 16px; } body.html .pane-node-title h5 { line-height: 20px; font-size: 14px; } body.html .field-node-body h5 { line-height: 20px; font-size: 14px; } body.html .field-type-text-with-summary h5 { line-height: 20px; font-size: 14px; } body.html .views-field-body h5 { line-height: 20px; font-size: 14px; } body.html .pane-term-description .pane-content h5 { line-height: 20px; font-size: 14px; } body.html .pane-custom .pane-content h5 { line-height: 20px; font-size: 14px; } body.html .pane-node-title h6 { line-height: 14px; font-size: 10px; } body.html .field-node-body h6 { line-height: 14px; font-size: 10px; } body.html .field-type-text-with-summary h6 { line-height: 14px; font-size: 10px; } body.html .views-field-body h6 { line-height: 14px; font-size: 10px; } body.html .pane-term-description .pane-content h6 { line-height: 14px; font-size: 10px; } body.html .pane-custom .pane-content h6 { line-height: 14px; font-size: 10px; } } #user-profile .pane-user-profile-details-mobile { margin-bottom: 10px; border-bottom-color: rgb(239, 237, 231); border-bottom-width: 20px; border-bottom-style: solid; display: none; } #user-profile .pane-user-profile-details-mobile .sutro-header { background: rgb(239, 237, 231); padding: 20px; } #user-profile .pane-user-profile-details-mobile .sutro-header-inner { padding-left: 74px; } #user-profile .pane-user-profile-details-mobile .pane-user-picture-style { margin: 0px 14px 0px -74px; width: auto; float: left; } #user-profile .pane-user-profile-details-mobile .pane-user-field-job-role { font-size: 16px; font-weight: 500; -ms-word-wrap: break-word; } #user-profile .pane-user-profile-details-mobile .username { font-size: 16px; font-weight: 500; -ms-word-wrap: break-word; } #user-profile .pane-user-profile-details-mobile .pane-user-field-job-role .field-item { margin: 0px; } #user-profile .pane-user-profile-details-mobile .sutro-column-content .sutro-column { width: auto; float: none; } #user-profile .pane-user-profile-details-mobile .sutro-column-content .sutro-column .panel-panel-inner { margin: 0px; } #user-profile .pane-user-profile-details-mobile .sutro-footer { padding: 0px 20px; } #user-profile .pane-user-profile-details-mobile .details-switch { margin: 0px 20px; font-size: 14px; font-weight: 700; } #user-profile .pane-user-profile-details-mobile .details-switch p { margin: 0px; font-weight: 700; } #user-profile .pane-user-profile-details-mobile .details-switch.processed { position: relative; cursor: pointer; } #user-profile .pane-user-profile-details-mobile .details-switch.processed::after { top: 0px; right: 0px; color: rgb(224, 224, 224); font-family: "FontAwesome"; font-size: 14px; position: absolute; content: "\f067"; } #user-profile .pane-user-profile-details-mobile .details-switch.processed.open::after { content: "\f068"; } #user-profile .pane-user-profile-org-mobile { display: none; } #user-profile .pane-user-profile-org-mobile .ui-tabs .ui-tabs-nav { background: none; padding: 0px; margin-bottom: 17px; border-bottom-color: rgb(233, 230, 225); border-bottom-width: 4px; border-bottom-style: solid; white-space: nowrap; } #user-profile .pane-user-profile-org-mobile .ui-tabs .ui-tabs-nav li { margin: 0px 15px -4px 0px !important; top: 0px; float: none; display: inline-block; white-space: nowrap; } #user-profile .pane-user-profile-org-mobile .ui-tabs .ui-tabs-nav li a { background: none; margin: 0px; padding: 10px 0px; color: rgb(224, 224, 224); } #user-profile .pane-user-profile-org-mobile .ui-tabs .ui-tabs-nav li.ui-state-active a { border-width: 0px 0px 4px !important; padding: 10px 0px; color: rgb(0, 94, 165); } #user-profile .pane-user-profile-org-mobile .ui-tabs .ui-tabs-nav li.ui-state-hover a { color: rgb(0, 94, 165); border-bottom-width: 0px; } #user-profile .pane-user-profile-org-mobile .pane-title { font-size: 16px; font-weight: 500; } #user-profile .pane-user-profile-org-mobile .pane-user-field-organisational-unit { font-size: 14px; font-weight: normal; margin-bottom: 20px; } #user-profile .pane-user-profile-org-mobile .pane-user-field-organisational-unit .field-item.sep { padding-right: 5px; } #user-profile .pane-user-profile-org-mobile .pane-user-field-organisational-unit .field-item.sep::after { display: inline; content: ","; } #user-profile .pane-user-profile-org-mobile .pane-u-comments-panel-pane-3 .pane-content { background: none; padding: 0px; } #user-profile .pane-user-profile-org-mobile .pane-u-comments-panel-pane-3 .view { background: none; padding: 0px; -moz-border-radius: none; -webkit-border-radius: none; } #user-profile .pane-user-profile-org-mobile .pane-u-comments-panel-pane-3 .views-field-created { color: rgb(85, 85, 85); } #user-profile .pane-user-profile-org-mobile .pane-u-comments-panel-pane-3 em { font-style: normal; } #user-profile .pane-user-profile-org-mobile .pane-u-comments-panel-pane-3 .views-row { padding-bottom: 15px; margin-bottom: 15px; border-bottom-color: rgb(204, 204, 204); border-bottom-width: 1px; border-bottom-style: solid; position: relative; } #user-profile .pane-user-profile-org-mobile .pane-u-comments-panel-pane-3 .views-row::after { border: solid transparent; border-image: none; left: 90%; top: 100%; width: 0px; height: 0px; position: absolute; content: " "; pointer-events: none; } #user-profile .pane-user-profile-org-mobile .pane-u-comments-panel-pane-3 .views-row::before { border: solid transparent; border-image: none; left: 90%; top: 100%; width: 0px; height: 0px; position: absolute; content: " "; pointer-events: none; } #user-profile .pane-user-profile-org-mobile .pane-u-comments-panel-pane-3 .views-row::after { border-width: 10px; border-color: rgb(255, 255, 255) transparent transparent; margin-left: -10px; } #user-profile .pane-user-profile-org-mobile .pane-u-comments-panel-pane-3 .views-row::before { border-width: 11px; border-color: rgb(204, 204, 204) transparent transparent; margin-left: -11px; } @media all and (max-width:960px) { #user-profile .sutro-double-column { margin: 0px; width: auto; float: none; } #user-profile .sutro-double-first-column-content .sutro-double-column2-inner { border: currentColor; border-image: none; padding-left: 0px; } #user-profile .pane-user-profile-org-mobile { display: none; } #user-profile .pane-user-profile-details-mobile { display: none; } } @media all and (max-width:960px) { .moscone-flipped #mini-panel-actions .panel-pane { float: none; display: block; } .moscone-flipped .pane-invotra-actions .panel-pane { float: none; display: block; } .moscone-flipped #mini-panel-actions .panel-pane.pane-lists { width: auto; margin-right: 0px; } .moscone-flipped .pane-invotra-actions .panel-pane.pane-lists { width: auto; margin-right: 0px; } .moscone-flipped #mini-panel-actions .panel-pane.pane-lists .pane-title.active { background-position: 85px -109px; padding: 9px 40px 14px 14px !important; } .moscone-flipped .pane-invotra-actions .panel-pane.pane-lists .pane-title.active { background-position: 85px -109px; padding: 9px 40px 14px 14px !important; } .moscone-flipped #mini-panel-actions .panel-pane.pane-lists #invotra-list-wrapper form .column { margin-bottom: 0px; } .moscone-flipped .pane-invotra-actions .panel-pane.pane-lists #invotra-list-wrapper form .column { margin-bottom: 0px; } .moscone-flipped #mini-panel-actions .panel-pane.pane-lists #invotra-list-wrapper form .form-submit { margin-top: 10px; } .moscone-flipped #mini-panel-actions .panel-pane.pane-lists #invotra-list-wrapper form .cancel { margin-top: 10px; } .moscone-flipped .pane-invotra-actions .panel-pane.pane-lists #invotra-list-wrapper form .form-submit { margin-top: 10px; } .moscone-flipped .pane-invotra-actions .panel-pane.pane-lists #invotra-list-wrapper form .cancel { margin-top: 10px; } .moscone-flipped #mini-panel-actions .panel-pane.pane-add-to-favourites-list { float: none; } .moscone-flipped .pane-invotra-actions .panel-pane.pane-add-to-favourites-list { float: none; } #mini-panel-actions .panel-pane { width: 150px; } .pane-invotra-actions .panel-pane { width: 150px; } #mini-panel-actions .panel-pane.pane-rate-widget { width: 160px; } .pane-invotra-actions .panel-pane.pane-rate-widget { width: 160px; } #mini-panel-actions .panel-pane.pane-lists .pane-title.active { background-position: 85px -104px; } .pane-invotra-actions .panel-pane.pane-lists .pane-title.active { background-position: 85px -104px; } #mini-panel-actions .panel-pane.pane-lists #invotra-list-wrapper form .column { width: 100%; margin-bottom: 0px; min-width: 211px; } .pane-invotra-actions .panel-pane.pane-lists #invotra-list-wrapper form .column { width: 100%; margin-bottom: 0px; min-width: 211px; } #mini-panel-actions .panel-pane.pane-lists #invotra-list-wrapper form .form-submit { margin-top: 10px; } #mini-panel-actions .panel-pane.pane-lists #invotra-list-wrapper form .cancel { margin-top: 10px; } .pane-invotra-actions .panel-pane.pane-lists #invotra-list-wrapper form .form-submit { margin-top: 10px; } .pane-invotra-actions .panel-pane.pane-lists #invotra-list-wrapper form .cancel { margin-top: 10px; } #mini-panel-actions .panel-pane.pane-add-to-favourites-list { width: 150px; } .pane-invotra-actions .panel-pane.pane-add-to-favourites-list { width: 150px; } } @media all and (max-width:800px) { .pane-mini-tree-term .nav-style6 { border: currentColor; border-image: none; } .pane-mini-tree-term .nav-style6 li { padding: 0px; width: 33.3%; line-height: normal; font-size: 14px; font-weight: normal; min-width: 142px; } .pane-mini-tree-term .nav-style6 li a { background: rgb(242, 242, 242); margin: 0px 1px 1px 0px; padding: 10px; height: 20px; text-align: center; color: rgb(51, 51, 51); line-height: 20px; display: block; } .pane-mini-tree-term .nav-style6 li a:hover { background: rgb(255, 255, 255); padding: 9px; border: 1px solid rgb(242, 242, 242); color: rgb(0, 94, 165); text-decoration: none; } .pane-mini-tree-term .nav-style6 li a.active { background: rgb(255, 255, 255); border-width: 1px 1px 2px; border-style: solid; border-color: rgb(242, 242, 242) rgb(242, 242, 242) rgb(84, 106, 143); padding: 9px 9px 8px; color: rgb(0, 94, 165); } } @media all and (max-width:740px) { #mini-panel-actions .panel-pane { float: none; display: block; } .pane-invotra-actions .panel-pane { float: none; display: block; } #mini-panel-actions .panel-pane.pane-lists { width: auto; margin-right: 0px; } .pane-invotra-actions .panel-pane.pane-lists { width: auto; margin-right: 0px; } #mini-panel-actions .panel-pane.pane-lists .pane-title.active { background-position: 85px -109px; padding: 9px 40px 14px 14px !important; } .pane-invotra-actions .panel-pane.pane-lists .pane-title.active { background-position: 85px -109px; padding: 9px 40px 14px 14px !important; } #mini-panel-actions .panel-pane.pane-lists #invotra-list-wrapper form .column { margin-bottom: 0px; } .pane-invotra-actions .panel-pane.pane-lists #invotra-list-wrapper form .column { margin-bottom: 0px; } #mini-panel-actions .panel-pane.pane-lists #invotra-list-wrapper form .form-submit { margin-top: 10px; } #mini-panel-actions .panel-pane.pane-lists #invotra-list-wrapper form .cancel { margin-top: 10px; } .pane-invotra-actions .panel-pane.pane-lists #invotra-list-wrapper form .form-submit { margin-top: 10px; } .pane-invotra-actions .panel-pane.pane-lists #invotra-list-wrapper form .cancel { margin-top: 10px; } #mini-panel-actions .panel-pane.pane-add-to-favourites-list { float: none; } .pane-invotra-actions .panel-pane.pane-add-to-favourites-list { float: none; } } @media all and (max-width:479px) { .pane-mini-tree-term .nav-style6 li { width: 50%; } .pane-invotra-actions .panel-pane { width: auto; margin-right: 5px; display: inline-block; } .pane-invotra-actions .panel-pane.pane-rate-widget { width: auto; } } @media all and (min-width:1024px) { .alpha-fluid .general-22-content { max-width: 1000px; } .alpha-fluid .general-22-content ul.general-22 li { width: 320px; min-height: 368px; } .alpha-fluid .general-22-content .views-row { width: 320px; min-height: 368px; } } @media all and (max-width:960px) { .general-styles-content.general-22-content { max-width: 620px; } .general-styles.general-22-content { max-width: 620px; } .general-styles-content.general-22-content ul.general-22 li { width: 193px; min-height: 290px; } .general-styles-content.general-22-content .views-row { width: 193px; min-height: 290px; } .general-styles.general-22-content ul.general-22 li { width: 193px; min-height: 290px; } .general-styles.general-22-content .views-row { width: 193px; min-height: 290px; } .general-styles-content.general-22-content ul.general-22 li .title { line-height: 20px; font-size: 14px; -ms-word-wrap: break-word; max-height: 60px; } .general-styles-content.general-22-content ul.general-22 li .views-field-title { line-height: 20px; font-size: 14px; -ms-word-wrap: break-word; max-height: 60px; } .general-styles-content.general-22-content .views-row .title { line-height: 20px; font-size: 14px; -ms-word-wrap: break-word; max-height: 60px; } .general-styles-content.general-22-content .views-row .views-field-title { line-height: 20px; font-size: 14px; -ms-word-wrap: break-word; max-height: 60px; } .general-styles.general-22-content ul.general-22 li .title { line-height: 20px; font-size: 14px; -ms-word-wrap: break-word; max-height: 60px; } .general-styles.general-22-content ul.general-22 li .views-field-title { line-height: 20px; font-size: 14px; -ms-word-wrap: break-word; max-height: 60px; } .general-styles.general-22-content .views-row .title { line-height: 20px; font-size: 14px; -ms-word-wrap: break-word; max-height: 60px; } .general-styles.general-22-content .views-row .views-field-title { line-height: 20px; font-size: 14px; -ms-word-wrap: break-word; max-height: 60px; } } @media all and (max-width:620px) { .general-styles-content.general-22-content { max-width: 300px; } .general-styles.general-22-content { max-width: 300px; } .general-styles-content.general-22-content .view-content { margin: 0px; } .general-styles-content.general-22-content .general-22 { margin: 0px; } .general-styles.general-22-content .view-content { margin: 0px; } .general-styles.general-22-content .general-22 { margin: 0px; } .general-styles-content.general-22-content ul.general-22 li { margin: 0px; width: 300px; display: block; min-height: 344px; } .general-styles-content.general-22-content .views-row { margin: 0px; width: 300px; display: block; min-height: 344px; } .general-styles.general-22-content ul.general-22 li { margin: 0px; width: 300px; display: block; min-height: 344px; } .general-styles.general-22-content .views-row { margin: 0px; width: 300px; display: block; min-height: 344px; } } @media all and (max-width:480px) { .general-styles-content.general-22-content { max-width: 100%; } .general-styles.general-22-content { max-width: 100%; } .general-styles-content.general-22-content ul.general-22 li { width: 100%; } .general-styles-content.general-22-content .views-row { width: 100%; } .general-styles.general-22-content ul.general-22 li { width: 100%; } .general-styles.general-22-content .views-row { width: 100%; } } @media all and (max-width:360px) { .general-styles-content.general-22-content ul.general-22 li { width: 100%; } .general-styles-content.general-22-content .views-row { width: 100%; } .general-styles.general-22-content ul.general-22 li { width: 100%; } .general-styles.general-22-content .views-row { width: 100%; } } @media all and (max-width:414px) { body .general-styles-content img.mobile { display: block; } body .general-styles .views-field-field-image img.mobile { display: block; } body .general-styles-content img.desktop { display: none !important; } body .general-styles .views-field-field-image img.desktop { display: none !important; } body .general-styles .views-field-field-image { margin: 2px 0px 14px; float: none; } body .general-styles-content li.item img { margin: 2px 0px 14px; } body .general-styles-content li.home-news { width: 100%; margin-right: 0px; float: none; } } @media all and (min-width:415px) { body .general-styles-content img.mobile { display: none !important; } body .general-styles .views-field-field-image img.mobile { display: none !important; } }
0.304352
0.088623
.main-body { min-height: 40em; } .browser-min-width{ min-width: 1000px; } table.table-list tr.active > td { background-color: #eee; } ul.side-list > .active:hover > a, ul.rack-list > .active:hover > a, ul.venture-list > .active:hover > a { background-color: #ddd; } ul.side-list > .active > a, ul.rack-list > .active > a, ul.venture-list > .active > a { background-color: #eee; } td.currency, .currency { text-align: right; } td.count { text-align: center; } .table-properties th > label { font-weight: bold; } .table-properties th > a.fugue-icon { margin-top: 0; } .table-properties td, .table-properties th { vertical-align: middle; } form div.readonly { width: 210px; } .table-properties td.controls > textarea, .table-properties td.controls > div.readonly, .table-properties td.controls > select, .table-properties td.controls > input { margin: auto; width: 160px; } .table-properties td.controls { width: 170px; } .table-list td { max-width: 20em; overflow: hidden; } .table-list th { white-space: nowrap; } .table-list th a.fugue-icon { margin: 0; float: right; } .table-list .column-name a { display: block; width: 100%; height: 100%; white-space: nowrap; text-decoration: none; } .fugue-icon { margin-top: -6px; margin-bottom: -2px; white-space: nowrap; } .side-nav { padding: 9px 0; } .error-text { color: #B94A48; } td.column-checkbox { vertical-align: middle; text-align: center; } .side-nav .nav-list a { overflow: hidden; white-space: nowrap; } .disco-console { min-height: 30em; width: 98%; } html .loading { background-image: url('loading.gif'); background-repeat: no-repeat; background-position: 50% 50% !important; } .dashboard-form { text-align: center; margin: 20em 4em; width: 100%; } label.required { font-weight: bold } div.report-tabs div.tabs-right, div.report-tabs ul.nav-tabs { width: 100%; float: none; margin: 0; } html a.nolink, html .nolink { cursor: text !important; } h3 { padding-bottom: 10px; padding-top: 10px; } .details-report th{ width: 40%; } tr.table-highlight td { font-weight: bold; } .cabinet-rack-view td{ min-width: 200px; } .end-date-field { margin-top: -10px !important; } .csv-input { font-family: monospace; } .reports-form-right-line { border-right: 1px solid silver; padding-right: 20px; } .reports-table-component { margin-left: -6px; margin-top: -4px; } .reports-table-component td:nth-child(2) { width: 10%; text-align: center; } .reports-table-component td:nth-child(3), .reports-table-component td:nth-child(4) { width: 15%; text-align: right; } img.waiting { display: block; margin: 30px auto; } .cmdb_report_filter .datepicker { width: 55px; } .cmdb_report_filter .form_line:first-of-type { padding-top: 0px; } .cmdb_report_filter .form_line { padding-top: 10px; } .choose-asset-form .choose-asset-label { text-align: right; line-height: 22px; } .scan-display-results-for-component { display: inline-block; vertical-align: top; width: 90%; overflow: auto; white-space: pre; padding-bottom: 18px; font-family: Menlo, Consolas, "Courier New", monospace; max-height: 250px; }
src/ralph/ui/static/ui/custom.css
.main-body { min-height: 40em; } .browser-min-width{ min-width: 1000px; } table.table-list tr.active > td { background-color: #eee; } ul.side-list > .active:hover > a, ul.rack-list > .active:hover > a, ul.venture-list > .active:hover > a { background-color: #ddd; } ul.side-list > .active > a, ul.rack-list > .active > a, ul.venture-list > .active > a { background-color: #eee; } td.currency, .currency { text-align: right; } td.count { text-align: center; } .table-properties th > label { font-weight: bold; } .table-properties th > a.fugue-icon { margin-top: 0; } .table-properties td, .table-properties th { vertical-align: middle; } form div.readonly { width: 210px; } .table-properties td.controls > textarea, .table-properties td.controls > div.readonly, .table-properties td.controls > select, .table-properties td.controls > input { margin: auto; width: 160px; } .table-properties td.controls { width: 170px; } .table-list td { max-width: 20em; overflow: hidden; } .table-list th { white-space: nowrap; } .table-list th a.fugue-icon { margin: 0; float: right; } .table-list .column-name a { display: block; width: 100%; height: 100%; white-space: nowrap; text-decoration: none; } .fugue-icon { margin-top: -6px; margin-bottom: -2px; white-space: nowrap; } .side-nav { padding: 9px 0; } .error-text { color: #B94A48; } td.column-checkbox { vertical-align: middle; text-align: center; } .side-nav .nav-list a { overflow: hidden; white-space: nowrap; } .disco-console { min-height: 30em; width: 98%; } html .loading { background-image: url('loading.gif'); background-repeat: no-repeat; background-position: 50% 50% !important; } .dashboard-form { text-align: center; margin: 20em 4em; width: 100%; } label.required { font-weight: bold } div.report-tabs div.tabs-right, div.report-tabs ul.nav-tabs { width: 100%; float: none; margin: 0; } html a.nolink, html .nolink { cursor: text !important; } h3 { padding-bottom: 10px; padding-top: 10px; } .details-report th{ width: 40%; } tr.table-highlight td { font-weight: bold; } .cabinet-rack-view td{ min-width: 200px; } .end-date-field { margin-top: -10px !important; } .csv-input { font-family: monospace; } .reports-form-right-line { border-right: 1px solid silver; padding-right: 20px; } .reports-table-component { margin-left: -6px; margin-top: -4px; } .reports-table-component td:nth-child(2) { width: 10%; text-align: center; } .reports-table-component td:nth-child(3), .reports-table-component td:nth-child(4) { width: 15%; text-align: right; } img.waiting { display: block; margin: 30px auto; } .cmdb_report_filter .datepicker { width: 55px; } .cmdb_report_filter .form_line:first-of-type { padding-top: 0px; } .cmdb_report_filter .form_line { padding-top: 10px; } .choose-asset-form .choose-asset-label { text-align: right; line-height: 22px; } .scan-display-results-for-component { display: inline-block; vertical-align: top; width: 90%; overflow: auto; white-space: pre; padding-bottom: 18px; font-family: Menlo, Consolas, "Courier New", monospace; max-height: 250px; }
0.506103
0.103295
@-moz-document url-prefix("http://www.tumblr.com"), url-prefix('https://www.tumblr.com') { body { background: none center center #333 no-repeat fixed !important; } #left_column, #right_column {background-color: transparent !important;} div.l-content.l-content.l-content { background: url('http://static.tumblr.com/l5qjkdi/lZBlnitgv/bg_body.png'); padding: 20px; -webkit-border-radius: 15px; -moz-border-radius: 15px; border-radius: 15px; } div.l-header .selection_nipple { width: 0; height: 0; border-left: 12px solid transparent; border-right: 12px solid transparent; border-bottom: 12px solid #000; opacity:0.6; font-size: 0; position: relative; top: 4px; vertical-align: top; margin: 0 auto; display: none; } #right_column .controls_section .recessed { background-color: #000; opacity:0.6; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; -webkit-border-bottom-right-radius: 6px; -webkit-border-bottom-left-radius: 6px; -moz-border-radius-bottomright: 6px; -moz-border-radius-bottomleft: 6px; border-bottom-right-radius: 6px; border-bottom-left-radius: 6px; position: relative; } #right_column .controls_section .recessed:hover { background-color: #000; opacity:0.6; -webkit-box-shadow: 0 0 5px #000; -moz-box-shadow: 0 0 5px #000; box-shadow: 0 0 5px #000; } #right_column .controls_section .selected { background: #c31c16; background: -moz-linear-gradient(top,#000 0,#000 50%,#000 50%,#000 100%); background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#000),color-stop(50%,#000),color-stop(50%,#000),color-stop(100%,#000)); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000',endColorstr='#000',GradientType=0); -webkit-box-shadow: 0 0 5px #000,inset 0 1px 0 rgba(255,255,255,.40); -moz-box-shadow: 0 0 5px #000,inset 0 1px 0 rgba(255,255,255,.40); box-shadow: 0 0 5px #000,inset 0 1px 0 rgba(255,255,255,.40); -webkit-border-radius: 1px; -moz-border-radius: 1px; border-radius: 1px; border-top: none; } #right_column .controls_section .selected:hover { background: #c31c16; background: -moz-linear-gradient(top,#000 0,#000 50%,#000 50%,#000 100%); background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#000),color-stop(50%,#000),color-stop(50%,#000),color-stop(100%,#000)); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c31c16',endColorstr='#6B903E',GradientType=0); -webkit-box-shadow: 0 0 5px #000; -moz-box-shadow: 0 0 5px #000; box-shadow: 0 0 5px #000; border-top: none; } #right_column .radar .content { background: url('http://static.tumblr.com/l5qjkdi/lZBlnitgv/bg_body.png') repeat-y; position: relative; } #right_column .radar .content.is_media .mask.top { height: 9px; background: none; background-position: 0 0; top: 0; } #right_column .radar .content.is_media .mask.bottom { height: 19px; background: none; background-position: 0 -9px; bottom: 0; } img#content_top, img#content_bottom { display:none; } #right_column::after { position: absolute; top: 100%; right: 0; left: 0; height: 35px; content: ' '; background: -moz-linear-gradient(top,rgba(0, 0, 0, 0) 0,rgba(0, 0, 0, 0) 100%); background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,rgba(0, 0, 0, 0)),color-stop(100%,rgba(0, 0, 0, 0))); background: -webkit-linear-gradient(top,rgba(0, 0, 0, 0) 0,rgba(0, 0, 0, 0) 100%); background: linear-gradient(top,rgba(0, 0, 0, 0) 0,rgba(0, 0, 0, 0) 100%); } #posts .post .permalink { background: none #333; -webkit-border-radius: 20px; -moz-border-radius: 20px; border-radius: 20px; } #posts .notification.single_notification,#posts .notification.first_notification, #posts .notification, #posts .notification.last_notification { background:none #333; border-color: #000;} #posts .notification.alt .nipple { border-right: 6px solid #333; } #posts .notification .nipple.border { border-top: 7px solid transparent; border-bottom: 7px solid transparent; border-right: 7px solid #000; position: absolute; left: -7px; top: 9px; } #posts .notification .nipple { width: 0; height: 0; border-top: 6px solid transparent; border-bottom: 6px solid transparent; border-right: 6px solid #333; position: absolute; left: -5px; top: 10px; } #auto_pagination_loader { font-size: 34px; font-weight: bold; color: white; text-align: center; text-shadow: #000 2px 2px 3px; background:#333; border-color:#000; } #posts .notification .avatar_frame { background-color: #000; border: 1px solid #000; position: absolute; top: -1px; left: -55px; overflow: hidden; display: inline-block; } #posts .notification a:not(.avatar_frame) { color: rgba(255, 255, 255, .56); font-weight: bold; text-decoration: none; border-bottom: 1px solid rgba(255, 255, 255, .56); -webkit-background-clip: padding-box; } .return_to_top_icon{content:""!important;background:rgba(90,90,90,.5)!important;border:solid thin rgba(0,0,0,1)!important;-moz-border-radius:8px!important;-webkit-border-radius:8px!important;border-radius:8px!important;}.return_to_top_icon:before{width:0px!important;position:absolute!important;content:""!important;border-right:solid 13px transparent!important;border-bottom:solid 13px rgba(0,0,0,1)!important;border-left:solid 13px transparent!important;margin-top:12px!important;margin-left:12px!important;}.return_to_top_icon:after{position:absolute!important;content:""!important;width:12px!important;height:13px!important;background-color:rgba(0,0,0,1)!important;margin-top:25px!important;margin-left:19px!important;} #posts .notification.alt { background-color: #333; } .edit_post_sharing .share_label { position: relative; display: block; height: 42px; width: 42px; overflow: hidden; text-indent: -999em; border-radius: 4px; box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5),0 1px 0 rgba(255, 255, 255, 1); border: 1px solid rgba(128, 128, 128, 1); cursor: pointer; background: rgba(128, 128, 128, 0.9);} #posts .post .post_avatar.lighter_blue { background-color: #333; } .dashboard_options_form, .tag_psa { border: 1px solid #000; } #posts .post .post_avatar.flat { border: 1px solid #000; } }
data/usercss/70078.user.css
@-moz-document url-prefix("http://www.tumblr.com"), url-prefix('https://www.tumblr.com') { body { background: none center center #333 no-repeat fixed !important; } #left_column, #right_column {background-color: transparent !important;} div.l-content.l-content.l-content { background: url('http://static.tumblr.com/l5qjkdi/lZBlnitgv/bg_body.png'); padding: 20px; -webkit-border-radius: 15px; -moz-border-radius: 15px; border-radius: 15px; } div.l-header .selection_nipple { width: 0; height: 0; border-left: 12px solid transparent; border-right: 12px solid transparent; border-bottom: 12px solid #000; opacity:0.6; font-size: 0; position: relative; top: 4px; vertical-align: top; margin: 0 auto; display: none; } #right_column .controls_section .recessed { background-color: #000; opacity:0.6; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; -webkit-border-bottom-right-radius: 6px; -webkit-border-bottom-left-radius: 6px; -moz-border-radius-bottomright: 6px; -moz-border-radius-bottomleft: 6px; border-bottom-right-radius: 6px; border-bottom-left-radius: 6px; position: relative; } #right_column .controls_section .recessed:hover { background-color: #000; opacity:0.6; -webkit-box-shadow: 0 0 5px #000; -moz-box-shadow: 0 0 5px #000; box-shadow: 0 0 5px #000; } #right_column .controls_section .selected { background: #c31c16; background: -moz-linear-gradient(top,#000 0,#000 50%,#000 50%,#000 100%); background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#000),color-stop(50%,#000),color-stop(50%,#000),color-stop(100%,#000)); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000',endColorstr='#000',GradientType=0); -webkit-box-shadow: 0 0 5px #000,inset 0 1px 0 rgba(255,255,255,.40); -moz-box-shadow: 0 0 5px #000,inset 0 1px 0 rgba(255,255,255,.40); box-shadow: 0 0 5px #000,inset 0 1px 0 rgba(255,255,255,.40); -webkit-border-radius: 1px; -moz-border-radius: 1px; border-radius: 1px; border-top: none; } #right_column .controls_section .selected:hover { background: #c31c16; background: -moz-linear-gradient(top,#000 0,#000 50%,#000 50%,#000 100%); background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#000),color-stop(50%,#000),color-stop(50%,#000),color-stop(100%,#000)); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c31c16',endColorstr='#6B903E',GradientType=0); -webkit-box-shadow: 0 0 5px #000; -moz-box-shadow: 0 0 5px #000; box-shadow: 0 0 5px #000; border-top: none; } #right_column .radar .content { background: url('http://static.tumblr.com/l5qjkdi/lZBlnitgv/bg_body.png') repeat-y; position: relative; } #right_column .radar .content.is_media .mask.top { height: 9px; background: none; background-position: 0 0; top: 0; } #right_column .radar .content.is_media .mask.bottom { height: 19px; background: none; background-position: 0 -9px; bottom: 0; } img#content_top, img#content_bottom { display:none; } #right_column::after { position: absolute; top: 100%; right: 0; left: 0; height: 35px; content: ' '; background: -moz-linear-gradient(top,rgba(0, 0, 0, 0) 0,rgba(0, 0, 0, 0) 100%); background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,rgba(0, 0, 0, 0)),color-stop(100%,rgba(0, 0, 0, 0))); background: -webkit-linear-gradient(top,rgba(0, 0, 0, 0) 0,rgba(0, 0, 0, 0) 100%); background: linear-gradient(top,rgba(0, 0, 0, 0) 0,rgba(0, 0, 0, 0) 100%); } #posts .post .permalink { background: none #333; -webkit-border-radius: 20px; -moz-border-radius: 20px; border-radius: 20px; } #posts .notification.single_notification,#posts .notification.first_notification, #posts .notification, #posts .notification.last_notification { background:none #333; border-color: #000;} #posts .notification.alt .nipple { border-right: 6px solid #333; } #posts .notification .nipple.border { border-top: 7px solid transparent; border-bottom: 7px solid transparent; border-right: 7px solid #000; position: absolute; left: -7px; top: 9px; } #posts .notification .nipple { width: 0; height: 0; border-top: 6px solid transparent; border-bottom: 6px solid transparent; border-right: 6px solid #333; position: absolute; left: -5px; top: 10px; } #auto_pagination_loader { font-size: 34px; font-weight: bold; color: white; text-align: center; text-shadow: #000 2px 2px 3px; background:#333; border-color:#000; } #posts .notification .avatar_frame { background-color: #000; border: 1px solid #000; position: absolute; top: -1px; left: -55px; overflow: hidden; display: inline-block; } #posts .notification a:not(.avatar_frame) { color: rgba(255, 255, 255, .56); font-weight: bold; text-decoration: none; border-bottom: 1px solid rgba(255, 255, 255, .56); -webkit-background-clip: padding-box; } .return_to_top_icon{content:""!important;background:rgba(90,90,90,.5)!important;border:solid thin rgba(0,0,0,1)!important;-moz-border-radius:8px!important;-webkit-border-radius:8px!important;border-radius:8px!important;}.return_to_top_icon:before{width:0px!important;position:absolute!important;content:""!important;border-right:solid 13px transparent!important;border-bottom:solid 13px rgba(0,0,0,1)!important;border-left:solid 13px transparent!important;margin-top:12px!important;margin-left:12px!important;}.return_to_top_icon:after{position:absolute!important;content:""!important;width:12px!important;height:13px!important;background-color:rgba(0,0,0,1)!important;margin-top:25px!important;margin-left:19px!important;} #posts .notification.alt { background-color: #333; } .edit_post_sharing .share_label { position: relative; display: block; height: 42px; width: 42px; overflow: hidden; text-indent: -999em; border-radius: 4px; box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5),0 1px 0 rgba(255, 255, 255, 1); border: 1px solid rgba(128, 128, 128, 1); cursor: pointer; background: rgba(128, 128, 128, 0.9);} #posts .post .post_avatar.lighter_blue { background-color: #333; } .dashboard_options_form, .tag_psa { border: 1px solid #000; } #posts .post .post_avatar.flat { border: 1px solid #000; } }
0.361841
0.052207
.menutop {z-index:1;} .menutop li {height: auto;margin: 0;padding: 0;position: relative;list-style: none;} .menutop em {font-size: 80%;font-weight: normal;display: block;font-style: normal;} .menutop li .item, .menutop li.active .item {display: block;margin: 0;text-decoration: none;float: none;width: auto;} .menutop li .fusion-submenu-wrapper {float: none;left: -999em;position: absolute;z-index: 500;} .menutop li:hover li ul, .menutop li.sfHover li ul {top: -999em;} .menutop li:hover ul, .menutop li.sfHover ul {top: 0;} /* Root Items */ .menutop {list-style: none;margin: 0;padding: 0;position: relative;display: inline-block;} .menutop li.root {float: left;margin: 0 0 0 1px;padding: 0;transition: background-color 0.3s linear;} .menutop li.root > .item {white-space: nowrap;display: block;font-size: 1.5em;z-index: 100;cursor: pointer;position: relative;padding: 0;margin: 0;outline: none;font-weight: normal;letter-spacing: 1px;} .menutop li.root > span.item {cursor: default;} .menutop li.root .subtext {line-height: 24px;} .menutop li.root > .item span {display: block;outline: none;padding: 0 10px;height: 45px;line-height: 45px;width: auto;} .menutop li.parent.root .item span .daddyicon, .menutop li.root .daddy.item .daddyicon {width: 12px;height: 9px;position: absolute;right: -7px;margin-left: -3px;bottom: 18px;padding: 0;background-position: 0 -801px;background-repeat: no-repeat;} .menutop li.parent.root {padding: 0 15px 0 0;} .menutop li.root > .subtext span {padding: 0 10px;line-height: 35px;} .menutop li.root > .item em {font-size: 10px;display: block;font-style: normal;line-height: 100%;text-align: left;text-transform: none;letter-spacing: normal;margin-top: -8px;} .menutop li.root > .item img {margin: 12px 10px 12px 0px;} .menutop li.root > .f-submenu-pad {padding: 0;} .menutop li.active.root > .item span, .menutop li.root:hover > .item span, .menutop li.f-mainparent-itemfocus > .item span {background-position: 50% 100%;background-repeat: no-repeat;} /* Dropdown Surrounds */ .menutop .f-submenu-pad {padding: 0 6px;} .menutop ul {padding: 0;margin: 0;float: left;} .menutop .drop-bot {height: 1px;overflow: hidden;clear: both;} .menutop .fusion-submenu-wrapper {height: auto !important;padding: 0;box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);} /* Dropdown Items */ .menutop ul li {display: block;background-position: 6px 17px;background-repeat: no-repeat;} .menutop ul li > .item {padding: 15px 15px 15px 25px;height: auto;display: block;font-size: 16px;line-height: 100%;font-weight: normal;letter-spacing: normal;} .menutop ul li > .item:hover span, .menutop ul li.active > .item span, .menutop ul li.f-menuparent-itemfocus > .item span {margin: 0;} .menutop li > .bullet {padding-left: 10px;} .menutop li .item img {float: left;margin: 0px 6px 0px 0;vertical-align: top;} .menutop li > .item span {padding: 0;display: block;width: auto;} .menutop ul li .nolink span {display: block;} .menutop li a.item {cursor: pointer;} .menutop li span.item {cursor: default;outline: none;} .menutop ul li .subtext em {line-height: 14px;} .menutop ul li > .fusion-modules.item:hover {background: none;} .menutop ul .readon span {width: auto;} .menutop ul li > .daddy span {background-position: 100% 2px;background-repeat: no-repeat;} /* No JS */ .menutop li.root:hover > .fusion-submenu-wrapper {top: 71px;left: 0;} .menutop ul li:hover > .fusion-submenu-wrapper {left: 180px;top: -5px;} /* Fusion JS */ .fusion-js-container {display: block;height: 0;left: 0;overflow: visible;position: absolute;top: 0;z-index: 600000!important;background: transparent !important;} .fusion-js-subs {display: none;margin: 0;overflow: hidden;padding: 0;position: absolute;} /* Grouped & Modules */ .fusion-grouped {padding-bottom: 10px;padding-left: 15px;} .fusion-grouped ol {padding: 0;} .menutop .fusion-grouped ol li .item {padding: 4px 15px;} .fusion-grouped ol li span {font-size: 11px;padding-left: 10px;} .menutop .fusion-grouped ol li {margin-left: 0;padding: 0;background-image: none;} .menutop .type-module ol {padding: 0;background-image: none;} .menutop .type-module ol li {padding: 0;} .menutop .type-module ol li .fusion-modules {background: none;} .menutop .type-module ol li .fusion-module {padding: 0;background: none;overflow: hidden;} .menutop .fusion-module, .menutop .fusion-modules, .menutop .fusion-grouped {display: block;} .menutop .fusion-module em {display: inline;font-size: inherit;font-style: italic;} .menutop .fusion-module a {font-size: inherit;line-height: 130%;} .menutop .fusion-module p {line-height: 160%;} .menutop ul li.grouped-parent > .daddy span {background: none;} .fusion-module.module-padding {padding: 10px;}
public/joomsource/fusionmenu.css
.menutop {z-index:1;} .menutop li {height: auto;margin: 0;padding: 0;position: relative;list-style: none;} .menutop em {font-size: 80%;font-weight: normal;display: block;font-style: normal;} .menutop li .item, .menutop li.active .item {display: block;margin: 0;text-decoration: none;float: none;width: auto;} .menutop li .fusion-submenu-wrapper {float: none;left: -999em;position: absolute;z-index: 500;} .menutop li:hover li ul, .menutop li.sfHover li ul {top: -999em;} .menutop li:hover ul, .menutop li.sfHover ul {top: 0;} /* Root Items */ .menutop {list-style: none;margin: 0;padding: 0;position: relative;display: inline-block;} .menutop li.root {float: left;margin: 0 0 0 1px;padding: 0;transition: background-color 0.3s linear;} .menutop li.root > .item {white-space: nowrap;display: block;font-size: 1.5em;z-index: 100;cursor: pointer;position: relative;padding: 0;margin: 0;outline: none;font-weight: normal;letter-spacing: 1px;} .menutop li.root > span.item {cursor: default;} .menutop li.root .subtext {line-height: 24px;} .menutop li.root > .item span {display: block;outline: none;padding: 0 10px;height: 45px;line-height: 45px;width: auto;} .menutop li.parent.root .item span .daddyicon, .menutop li.root .daddy.item .daddyicon {width: 12px;height: 9px;position: absolute;right: -7px;margin-left: -3px;bottom: 18px;padding: 0;background-position: 0 -801px;background-repeat: no-repeat;} .menutop li.parent.root {padding: 0 15px 0 0;} .menutop li.root > .subtext span {padding: 0 10px;line-height: 35px;} .menutop li.root > .item em {font-size: 10px;display: block;font-style: normal;line-height: 100%;text-align: left;text-transform: none;letter-spacing: normal;margin-top: -8px;} .menutop li.root > .item img {margin: 12px 10px 12px 0px;} .menutop li.root > .f-submenu-pad {padding: 0;} .menutop li.active.root > .item span, .menutop li.root:hover > .item span, .menutop li.f-mainparent-itemfocus > .item span {background-position: 50% 100%;background-repeat: no-repeat;} /* Dropdown Surrounds */ .menutop .f-submenu-pad {padding: 0 6px;} .menutop ul {padding: 0;margin: 0;float: left;} .menutop .drop-bot {height: 1px;overflow: hidden;clear: both;} .menutop .fusion-submenu-wrapper {height: auto !important;padding: 0;box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);} /* Dropdown Items */ .menutop ul li {display: block;background-position: 6px 17px;background-repeat: no-repeat;} .menutop ul li > .item {padding: 15px 15px 15px 25px;height: auto;display: block;font-size: 16px;line-height: 100%;font-weight: normal;letter-spacing: normal;} .menutop ul li > .item:hover span, .menutop ul li.active > .item span, .menutop ul li.f-menuparent-itemfocus > .item span {margin: 0;} .menutop li > .bullet {padding-left: 10px;} .menutop li .item img {float: left;margin: 0px 6px 0px 0;vertical-align: top;} .menutop li > .item span {padding: 0;display: block;width: auto;} .menutop ul li .nolink span {display: block;} .menutop li a.item {cursor: pointer;} .menutop li span.item {cursor: default;outline: none;} .menutop ul li .subtext em {line-height: 14px;} .menutop ul li > .fusion-modules.item:hover {background: none;} .menutop ul .readon span {width: auto;} .menutop ul li > .daddy span {background-position: 100% 2px;background-repeat: no-repeat;} /* No JS */ .menutop li.root:hover > .fusion-submenu-wrapper {top: 71px;left: 0;} .menutop ul li:hover > .fusion-submenu-wrapper {left: 180px;top: -5px;} /* Fusion JS */ .fusion-js-container {display: block;height: 0;left: 0;overflow: visible;position: absolute;top: 0;z-index: 600000!important;background: transparent !important;} .fusion-js-subs {display: none;margin: 0;overflow: hidden;padding: 0;position: absolute;} /* Grouped & Modules */ .fusion-grouped {padding-bottom: 10px;padding-left: 15px;} .fusion-grouped ol {padding: 0;} .menutop .fusion-grouped ol li .item {padding: 4px 15px;} .fusion-grouped ol li span {font-size: 11px;padding-left: 10px;} .menutop .fusion-grouped ol li {margin-left: 0;padding: 0;background-image: none;} .menutop .type-module ol {padding: 0;background-image: none;} .menutop .type-module ol li {padding: 0;} .menutop .type-module ol li .fusion-modules {background: none;} .menutop .type-module ol li .fusion-module {padding: 0;background: none;overflow: hidden;} .menutop .fusion-module, .menutop .fusion-modules, .menutop .fusion-grouped {display: block;} .menutop .fusion-module em {display: inline;font-size: inherit;font-style: italic;} .menutop .fusion-module a {font-size: inherit;line-height: 130%;} .menutop .fusion-module p {line-height: 160%;} .menutop ul li.grouped-parent > .daddy span {background: none;} .fusion-module.module-padding {padding: 10px;}
0.330039
0.126111
* css3 圆角边框 */ /** * 页面通用半透明背景 */ /** * 容器垂直居中实现 */ .vertical-center { display: box; box-align: center; display: -webkit-box; -webkit-box-align: center; display: -moz-box; -moz-box-align: center; display: -o-box; -o-box-align: center; } /** * 水平居中容器实现 */ .align-center { display: box; box-pack: center; display: -webkit-box; -webkit-box-pack: center; display: -moz-box; -moz-box-pack: center; } /** * css3 css transition 动画实现 */ /** * 垂直方向,css3 线性背景渐变实现 */ /** * 阴影 ****************注意如果对position没有特殊需求,传入 /**\/, **************** */ html, body { height: 100%; background: url(../images/bg.jpg) no-repeat; background-size: cover; min-width: 1280px; font-family:'微软雅黑'; } header { position: fixed; width: 100%; display: block; } header nav { margin-right: 65px; } header nav ul li { display: inline-block; height: 30px; line-height: 30px; padding: 0 20px; font-size: 12px; margin-right: 20px; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; background: rgba(0, 0, 0, 0.5); } header nav ul li a { color: #FFF; display: block; } header nav ul li a:hover { text-decoration: none; } header #report img { vertical-align: middle; } aside { width: 100px; height: 100%; text-align: center; position: absolute; display: box; box-align: center; display: -webkit-box; -webkit-box-align: center; display: -moz-box; -moz-box-align: center; display: -o-box; -o-box-align: center; } aside ul { width: 100px; height: 400px; padding: 10px 0; background: rgba(0, 0, 0, 0.5); border-radius: 5px; -webkit-border-radius: 5px; -moz-border-radius: 5px; } aside ul li { width: 60px; height: 60px; margin: 15px auto; } aside ul li a { display: block; width: 60px; height: 60px; background: url(../images/left.png) no-repeat -18px -11px; } aside ul li a.house { background-position: -15px -9px; } aside ul li a.company { background-position: -17px -94px; } aside ul li a.avator { background-position: -15px -179px; } aside ul li a.write { background-position: -15px -257px; } aside ul li a.message { background-position: -17px -331px; } .btns { display: inline-block; line-height: 28px!important; height: 28px; padding: 0 10px; background: blue; font-size: 15px; color: #000; border-radius: 5px; -webkit-border-radius: 5px; -moz-border-radius: 5px; } .btns:hover { text-decoration: none; } .btns.btns-light { background: -webkit-gradient(linear, 0 0, 0 100%, from(#bbd5e4), to(#81bad5)); } .btns.btns-dark { background: -webkit-gradient(linear, 0 0, 0 100%, from(#cbdae5), to(#5e6f77)); } .btns.btns-s { padding: 0 30px; font-size: 13px; height: 24px; line-height: 24px; } #report { line-height: 43px; } #report img { cursor: pointer; } #score { font-size: 20px; position: absolute; top: 50px; right: 20px; color: #f00; } #report-detail { position: absolute; top: 43px; right: 2px; width: 128px; height: 71px; background: rgba(0, 0, 0, 0.5); display: none; } #report-detail ul li { width: 22px; height: 22px; margin: 8px 2px 0 15px; float: left; cursor: pointer; } #nm_org, #x_org, #lxhwahaha_org, #sada_org, #angrya_org, #sweata_org { background: url(../images/mood-icon.png) no-repeat; } #nm_org { background-position: 0px 0px; } #x_org { background-position: -22px 0px; } #lxhwahaha_org { background-position: -44px 0px; } #sada_org { background-position: 0 -22px; } #angrya_org { background-position: -22px -22px; } #sweata_org { background-position: -44px -22px; } .vertical-center-helper { width: 100%; height: 100%; display: box; box-align: center; display: -webkit-box; -webkit-box-align: center; display: -moz-box; -moz-box-align: center; display: -o-box; -o-box-align: center; } .align-center-helper { width: 100%; height: 100%; display: box; box-pack: center; display: -webkit-box; -webkit-box-pack: center; display: -moz-box; -moz-box-pack: center; } #main { width: 100%; height: 100%; display: box; box-pack: center; display: -webkit-box; -webkit-box-pack: center; display: -moz-box; -moz-box-pack: center; } #main #building { width: 1100px; height: 500px; margin: 0 auto; box-align: center; -webkit-box-align: center; -moz-box-align: center; display: -o-box; -o-box-align: center; display: box; box-pack: center; display: -webkit-box; -webkit-box-pack: center; display: -moz-box; -moz-box-pack: center; } #main #building .building-inner { height: 100px; position: relative; top: -150px; width: 100%; } #main #building .building-inner .little-nav { margin-top: 80px; background: rgba(0, 0, 0, 0.5); } #main #building .building-inner .little-nav li { width: 110px; font-size: 20px; text-align: center; height: 35px; line-height: 35px; cursor: pointer; } #main #building .building-inner .little-nav li a { color: #000; text-decoration: none; } #main #building .building-inner .little-nav li a.current, #main #building .building-inner .little-nav li a:hover { color: #E49C14; } #main #building .building-inner .building-list li { float: left; margin-left: 120px; cursor: pointer; } #main #building .building-inner .building-list li img { width: 200px; height: 150px; display: block; background: #FFF; } #main #building .building-inner .building-list li .building-name { display: block; background: #3a515f; text-align: center; line-height: 20px; width: 90%; margin: 10px auto; color: #FFF; font-size: 14px; } #main .building-dialogs { width: 100%; height: 100%; top: 0; left: 0; position: absolute; box-align: center; -webkit-box-align: center; -moz-box-align: center; display: -o-box; -o-box-align: center; display: box; box-pack: center; display: -webkit-box; -webkit-box-pack: center; display: -moz-box; -moz-box-pack: center; } #main .building-dialogs .building-dialog-inner { width: 800px; height: 480px; text-align: left; background: #D9DFEB; -webkit-box-shadow: 2px 2px 2px #333333 /**/; -moz-box-shadow: 2px 2px 2px #333333 /**/; -o-box-shadow: 2px 2px 2px #333333 /**/; -ms-box-shadow: 2px 2px 2px #333333 /**/; box-shadow: 2px 2px 2px #333333 /**/; } #main .building-dialogs .close { font-size: 30px; color: #000; margin-right: 20px; text-decoration: none; } #main .building-dialogs .hd .info { width: 60%; text-align: center; } #main .building-dialogs .hd .info h3 { font-size: 20px; font-weight: bold; } #main .building-dialogs .hd .info div p { padding-left: 100px; line-height: 1.6em; text-align: left; } #main .building-dialogs .hd .img { margin-right: 80px; position: relative; } #main .building-dialogs .hd .img a.btn-modify-image { position: absolute; bottom: 5px; right: 0; } #main .building-dialogs .bd { padding: 40px; } #main .building-dialogs .bd textarea { width: 100%; height: 80px; border: solid 1px #CCC; margin-top: 10px; } #main .building-dialogs .bd .edit-box textarea { height: 125px; } #main .building-dialogs .ft { padding-right: 40px; } #main .join-box .title { text-align: center; font-size: 16px; } #main .member-box { margin-top: 20px; } #main .member-box .members { margin: 0 25px; float: left; } #main .member-box .members .avator { float: left; width: 64px; height: 64px; } #main .member-box .members .r { text-align: center; padding-left: 5px; } #main .member-box .members .name { display: block; text-align: center; line-height: 1.6em; } #main .member-box .members input[type=checkbox] { margin-top: 10px; } #main .btn-del, #main .btn-back { margin-right: 20px; } .building-search{ height:40px; line-height:24px; font-size:16px; display:none; } .building-search span{ display:block; float:left; margin:0 10px; } .building-search span .inputt1{ border: 0 none; box-shadow: 2px 2px 2px #333333 inset; color: #333333; font-size: 12px; height: 24px; line-height: 30px; padding: 0 10px; text-align: left; border-radius: 5px 5px 5px 5px; width:220px; font-size:12px; } .building-search span .button{ background-color: #9EC7DC; background-image: -moz-linear-gradient(center bottom , #84BBD5 0%, #9EC7DC 50%, #B4D2E2 100%); border-radius: 9px 9px 9px 9px; cursor: pointer; display: block; height: 24px; line-height: 24px; text-align: center; width: 72px; border:none; font-size:12px; }
Public/static/css/building.css
* css3 圆角边框 */ /** * 页面通用半透明背景 */ /** * 容器垂直居中实现 */ .vertical-center { display: box; box-align: center; display: -webkit-box; -webkit-box-align: center; display: -moz-box; -moz-box-align: center; display: -o-box; -o-box-align: center; } /** * 水平居中容器实现 */ .align-center { display: box; box-pack: center; display: -webkit-box; -webkit-box-pack: center; display: -moz-box; -moz-box-pack: center; } /** * css3 css transition 动画实现 */ /** * 垂直方向,css3 线性背景渐变实现 */ /** * 阴影 ****************注意如果对position没有特殊需求,传入 /**\/, **************** */ html, body { height: 100%; background: url(../images/bg.jpg) no-repeat; background-size: cover; min-width: 1280px; font-family:'微软雅黑'; } header { position: fixed; width: 100%; display: block; } header nav { margin-right: 65px; } header nav ul li { display: inline-block; height: 30px; line-height: 30px; padding: 0 20px; font-size: 12px; margin-right: 20px; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; background: rgba(0, 0, 0, 0.5); } header nav ul li a { color: #FFF; display: block; } header nav ul li a:hover { text-decoration: none; } header #report img { vertical-align: middle; } aside { width: 100px; height: 100%; text-align: center; position: absolute; display: box; box-align: center; display: -webkit-box; -webkit-box-align: center; display: -moz-box; -moz-box-align: center; display: -o-box; -o-box-align: center; } aside ul { width: 100px; height: 400px; padding: 10px 0; background: rgba(0, 0, 0, 0.5); border-radius: 5px; -webkit-border-radius: 5px; -moz-border-radius: 5px; } aside ul li { width: 60px; height: 60px; margin: 15px auto; } aside ul li a { display: block; width: 60px; height: 60px; background: url(../images/left.png) no-repeat -18px -11px; } aside ul li a.house { background-position: -15px -9px; } aside ul li a.company { background-position: -17px -94px; } aside ul li a.avator { background-position: -15px -179px; } aside ul li a.write { background-position: -15px -257px; } aside ul li a.message { background-position: -17px -331px; } .btns { display: inline-block; line-height: 28px!important; height: 28px; padding: 0 10px; background: blue; font-size: 15px; color: #000; border-radius: 5px; -webkit-border-radius: 5px; -moz-border-radius: 5px; } .btns:hover { text-decoration: none; } .btns.btns-light { background: -webkit-gradient(linear, 0 0, 0 100%, from(#bbd5e4), to(#81bad5)); } .btns.btns-dark { background: -webkit-gradient(linear, 0 0, 0 100%, from(#cbdae5), to(#5e6f77)); } .btns.btns-s { padding: 0 30px; font-size: 13px; height: 24px; line-height: 24px; } #report { line-height: 43px; } #report img { cursor: pointer; } #score { font-size: 20px; position: absolute; top: 50px; right: 20px; color: #f00; } #report-detail { position: absolute; top: 43px; right: 2px; width: 128px; height: 71px; background: rgba(0, 0, 0, 0.5); display: none; } #report-detail ul li { width: 22px; height: 22px; margin: 8px 2px 0 15px; float: left; cursor: pointer; } #nm_org, #x_org, #lxhwahaha_org, #sada_org, #angrya_org, #sweata_org { background: url(../images/mood-icon.png) no-repeat; } #nm_org { background-position: 0px 0px; } #x_org { background-position: -22px 0px; } #lxhwahaha_org { background-position: -44px 0px; } #sada_org { background-position: 0 -22px; } #angrya_org { background-position: -22px -22px; } #sweata_org { background-position: -44px -22px; } .vertical-center-helper { width: 100%; height: 100%; display: box; box-align: center; display: -webkit-box; -webkit-box-align: center; display: -moz-box; -moz-box-align: center; display: -o-box; -o-box-align: center; } .align-center-helper { width: 100%; height: 100%; display: box; box-pack: center; display: -webkit-box; -webkit-box-pack: center; display: -moz-box; -moz-box-pack: center; } #main { width: 100%; height: 100%; display: box; box-pack: center; display: -webkit-box; -webkit-box-pack: center; display: -moz-box; -moz-box-pack: center; } #main #building { width: 1100px; height: 500px; margin: 0 auto; box-align: center; -webkit-box-align: center; -moz-box-align: center; display: -o-box; -o-box-align: center; display: box; box-pack: center; display: -webkit-box; -webkit-box-pack: center; display: -moz-box; -moz-box-pack: center; } #main #building .building-inner { height: 100px; position: relative; top: -150px; width: 100%; } #main #building .building-inner .little-nav { margin-top: 80px; background: rgba(0, 0, 0, 0.5); } #main #building .building-inner .little-nav li { width: 110px; font-size: 20px; text-align: center; height: 35px; line-height: 35px; cursor: pointer; } #main #building .building-inner .little-nav li a { color: #000; text-decoration: none; } #main #building .building-inner .little-nav li a.current, #main #building .building-inner .little-nav li a:hover { color: #E49C14; } #main #building .building-inner .building-list li { float: left; margin-left: 120px; cursor: pointer; } #main #building .building-inner .building-list li img { width: 200px; height: 150px; display: block; background: #FFF; } #main #building .building-inner .building-list li .building-name { display: block; background: #3a515f; text-align: center; line-height: 20px; width: 90%; margin: 10px auto; color: #FFF; font-size: 14px; } #main .building-dialogs { width: 100%; height: 100%; top: 0; left: 0; position: absolute; box-align: center; -webkit-box-align: center; -moz-box-align: center; display: -o-box; -o-box-align: center; display: box; box-pack: center; display: -webkit-box; -webkit-box-pack: center; display: -moz-box; -moz-box-pack: center; } #main .building-dialogs .building-dialog-inner { width: 800px; height: 480px; text-align: left; background: #D9DFEB; -webkit-box-shadow: 2px 2px 2px #333333 /**/; -moz-box-shadow: 2px 2px 2px #333333 /**/; -o-box-shadow: 2px 2px 2px #333333 /**/; -ms-box-shadow: 2px 2px 2px #333333 /**/; box-shadow: 2px 2px 2px #333333 /**/; } #main .building-dialogs .close { font-size: 30px; color: #000; margin-right: 20px; text-decoration: none; } #main .building-dialogs .hd .info { width: 60%; text-align: center; } #main .building-dialogs .hd .info h3 { font-size: 20px; font-weight: bold; } #main .building-dialogs .hd .info div p { padding-left: 100px; line-height: 1.6em; text-align: left; } #main .building-dialogs .hd .img { margin-right: 80px; position: relative; } #main .building-dialogs .hd .img a.btn-modify-image { position: absolute; bottom: 5px; right: 0; } #main .building-dialogs .bd { padding: 40px; } #main .building-dialogs .bd textarea { width: 100%; height: 80px; border: solid 1px #CCC; margin-top: 10px; } #main .building-dialogs .bd .edit-box textarea { height: 125px; } #main .building-dialogs .ft { padding-right: 40px; } #main .join-box .title { text-align: center; font-size: 16px; } #main .member-box { margin-top: 20px; } #main .member-box .members { margin: 0 25px; float: left; } #main .member-box .members .avator { float: left; width: 64px; height: 64px; } #main .member-box .members .r { text-align: center; padding-left: 5px; } #main .member-box .members .name { display: block; text-align: center; line-height: 1.6em; } #main .member-box .members input[type=checkbox] { margin-top: 10px; } #main .btn-del, #main .btn-back { margin-right: 20px; } .building-search{ height:40px; line-height:24px; font-size:16px; display:none; } .building-search span{ display:block; float:left; margin:0 10px; } .building-search span .inputt1{ border: 0 none; box-shadow: 2px 2px 2px #333333 inset; color: #333333; font-size: 12px; height: 24px; line-height: 30px; padding: 0 10px; text-align: left; border-radius: 5px 5px 5px 5px; width:220px; font-size:12px; } .building-search span .button{ background-color: #9EC7DC; background-image: -moz-linear-gradient(center bottom , #84BBD5 0%, #9EC7DC 50%, #B4D2E2 100%); border-radius: 9px 9px 9px 9px; cursor: pointer; display: block; height: 24px; line-height: 24px; text-align: center; width: 72px; border:none; font-size:12px; }
0.205535
0.061621
.container{ font-family: 'Calibri'; color: #2d2d2d; border: 1px solid #D5DBE7; border-radius: 15px; border-collapse: collapse; } td{ padding: 4px; } input{ position: relative; width: 80%; } .image-icon{ display:inline-block; vertical-align: middle; border: 1px solid #C3C7CC; border-radius: 3px; display: inline-block; width:20px; height:20px; } .icon-div{ background: url('./icon.png'); } .skip-right{ background: url('./skipRight.png'); } .skip-left{ background: url('./skipLeft.png'); } .right-pointer{ background: url('./rightPointer.png'); } .left-pointer{ background: url('./leftPointer.png'); } .first-row{ background-color: #E7E9EB; } .second-row{ /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#f3f3f5+0,dce0e4+100 */ background: #f3f3f5; /* Old browsers */ background: -moz-linear-gradient(top, #f3f3f5 0%, #dce0e4 100%); /* FF3.6-15 */ background: -webkit-linear-gradient(top, #f3f3f5 0%,#dce0e4 100%); /* Chrome10-25,Safari5.1-6 */ background: linear-gradient(to bottom, #f3f3f5 0%,#dce0e4 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f3f3f5', endColorstr='#dce0e4',GradientType=0 ); /* IE6-9 */ width: 100px; } .third-row{ background-color: #DFE3E8; } .footer-row{ /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#f3f3f5+0,babfc4+100 */ background: #f3f3f5; /* Old browsers */ background: -moz-linear-gradient(top, #f3f3f5 0%, #babfc4 100%); /* FF3.6-15 */ background: -webkit-linear-gradient(top, #f3f3f5 0%,#babfc4 100%); /* Chrome10-25,Safari5.1-6 */ background: linear-gradient(to bottom, #f3f3f5 0%,#babfc4 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f3f3f5', endColorstr='#babfc4',GradientType=0 ); /* IE6-9 */ } .selected{ border: 1px solid red; border-radius: 3px; padding: 2px; } .pages{ text-decoration: none; color: black; } .pages-count{ position: relative; float:right; }
regular/HTML/03. Forms and Frames/homeWork/grid-component/style.css
.container{ font-family: 'Calibri'; color: #2d2d2d; border: 1px solid #D5DBE7; border-radius: 15px; border-collapse: collapse; } td{ padding: 4px; } input{ position: relative; width: 80%; } .image-icon{ display:inline-block; vertical-align: middle; border: 1px solid #C3C7CC; border-radius: 3px; display: inline-block; width:20px; height:20px; } .icon-div{ background: url('./icon.png'); } .skip-right{ background: url('./skipRight.png'); } .skip-left{ background: url('./skipLeft.png'); } .right-pointer{ background: url('./rightPointer.png'); } .left-pointer{ background: url('./leftPointer.png'); } .first-row{ background-color: #E7E9EB; } .second-row{ /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#f3f3f5+0,dce0e4+100 */ background: #f3f3f5; /* Old browsers */ background: -moz-linear-gradient(top, #f3f3f5 0%, #dce0e4 100%); /* FF3.6-15 */ background: -webkit-linear-gradient(top, #f3f3f5 0%,#dce0e4 100%); /* Chrome10-25,Safari5.1-6 */ background: linear-gradient(to bottom, #f3f3f5 0%,#dce0e4 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f3f3f5', endColorstr='#dce0e4',GradientType=0 ); /* IE6-9 */ width: 100px; } .third-row{ background-color: #DFE3E8; } .footer-row{ /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#f3f3f5+0,babfc4+100 */ background: #f3f3f5; /* Old browsers */ background: -moz-linear-gradient(top, #f3f3f5 0%, #babfc4 100%); /* FF3.6-15 */ background: -webkit-linear-gradient(top, #f3f3f5 0%,#babfc4 100%); /* Chrome10-25,Safari5.1-6 */ background: linear-gradient(to bottom, #f3f3f5 0%,#babfc4 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f3f3f5', endColorstr='#babfc4',GradientType=0 ); /* IE6-9 */ } .selected{ border: 1px solid red; border-radius: 3px; padding: 2px; } .pages{ text-decoration: none; color: black; } .pages-count{ position: relative; float:right; }
0.348867
0.12638
.menu { list-style: none; border-bottom: 0.1em solid black; margin-bottom: 2em; padding: 0 0 0.5em; } .menu:before { content: "["; } .menu:after { content: "]"; } .menu > li { display: inline; } .menu > li + li:before { content: "|"; padding-right: 0.3em; } /* seed css ^ */ .view-frame { display: flex; } body { text-align: center; font-size: 100%; //avoid IE resizing issues with em width: 100%; height: 100%; padding: 25px; margin: 0; } html { position: relative; min-height: 100%; background: lightgray url("../img/dragon.jpg") no-repeat center center fixed; background-size: cover; width: 100%; display: block; font-family: Perpetua, Baskerville, "Big Caslon", "Palatino Linotype", Palatino, "URW Palladio L", "Nimbus Roman No9 L", serif; } header { height: 250px; width: 200px; margin: auto; font-size: 1em; color: white; text-shadow: 3px 2px 4px #000000; } header button { margin-bottom: 5px; width: 50px; height: 45px; border: 6px outset #c7cbd4; opacity: 1; text-shadow: none; box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19); background-color: steelblue; } button:hover { text-shadow: 2px 2px 4px #000000; } #selected:hover { text-shadow: none; } #selected { opacity: 0.7; border: 3px inset #c7cbd4; } .toggleUser { font-size: .75em; } .content { height: 100%; min-height: 100%; position: relative; margin: 0 auto; display: flex; flex-direction: column; justify-content: space-around; align-items: center; padding-bottom: 2em; } .content button { display: block; font-size: 1em; height: 100px; margin: 0 auto; box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19); background-color: steelblue; border: 6px outset #c7cbd4; text-align: center; color: white; opacity: .7; width: 15em; margin-bottom: 2em; } input[type=submit] { font-size: 1.1em; color: white; text-shadow: 2px 2px 4px #000000; background-color: steelblue; border: 6px outset #c7cbd4; padding: 10px; margin-bottom: 15px; } a { text-decoration: none; color: white; } a:hover { text-shadow: 2px 2px 4px #000000; } footer { text-shadow: 2px 2px 4px #000000; font-size: 1.2em; position: absolute; bottom: 0; width: 100%; height: 20px; margin: 0 auto; } footer:hover { font-size: 1.25em; }
assets/css/app.css
.menu { list-style: none; border-bottom: 0.1em solid black; margin-bottom: 2em; padding: 0 0 0.5em; } .menu:before { content: "["; } .menu:after { content: "]"; } .menu > li { display: inline; } .menu > li + li:before { content: "|"; padding-right: 0.3em; } /* seed css ^ */ .view-frame { display: flex; } body { text-align: center; font-size: 100%; //avoid IE resizing issues with em width: 100%; height: 100%; padding: 25px; margin: 0; } html { position: relative; min-height: 100%; background: lightgray url("../img/dragon.jpg") no-repeat center center fixed; background-size: cover; width: 100%; display: block; font-family: Perpetua, Baskerville, "Big Caslon", "Palatino Linotype", Palatino, "URW Palladio L", "Nimbus Roman No9 L", serif; } header { height: 250px; width: 200px; margin: auto; font-size: 1em; color: white; text-shadow: 3px 2px 4px #000000; } header button { margin-bottom: 5px; width: 50px; height: 45px; border: 6px outset #c7cbd4; opacity: 1; text-shadow: none; box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19); background-color: steelblue; } button:hover { text-shadow: 2px 2px 4px #000000; } #selected:hover { text-shadow: none; } #selected { opacity: 0.7; border: 3px inset #c7cbd4; } .toggleUser { font-size: .75em; } .content { height: 100%; min-height: 100%; position: relative; margin: 0 auto; display: flex; flex-direction: column; justify-content: space-around; align-items: center; padding-bottom: 2em; } .content button { display: block; font-size: 1em; height: 100px; margin: 0 auto; box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19); background-color: steelblue; border: 6px outset #c7cbd4; text-align: center; color: white; opacity: .7; width: 15em; margin-bottom: 2em; } input[type=submit] { font-size: 1.1em; color: white; text-shadow: 2px 2px 4px #000000; background-color: steelblue; border: 6px outset #c7cbd4; padding: 10px; margin-bottom: 15px; } a { text-decoration: none; color: white; } a:hover { text-shadow: 2px 2px 4px #000000; } footer { text-shadow: 2px 2px 4px #000000; font-size: 1.2em; position: absolute; bottom: 0; width: 100%; height: 20px; margin: 0 auto; } footer:hover { font-size: 1.25em; }
0.379953
0.099908
@charset "UTF-8"; @font-face { font-family: "darkish"; src:url("../fonts/darkish.eot"); src:url("../fonts/darkish.eot?#iefix") format("embedded-opentype"), url("../fonts/darkish.woff") format("woff"), url("../fonts/darkish.ttf") format("truetype"), url("../fonts/darkish.svg#darkish") format("svg"); font-weight: normal; font-style: normal; } [data-icon]:before { font-family: "darkish" !important; content: attr(data-icon); font-style: normal !important; font-weight: normal !important; font-variant: normal !important; text-transform: none !important; speak: none; line-height: 1; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } [class^="icon-"]:before, [class*=" icon-"]:before { font-family: "darkish" !important; font-style: normal !important; font-weight: normal !important; font-variant: normal !important; text-transform: none !important; speak: none; line-height: 1; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .icon-add:before { content: "a"; } .icon-alarm-clock:before { content: "b"; } .icon-arrow-down:before { content: "c"; } .icon-arrow-left:before { content: "d"; } .icon-arrow-right:before { content: "e"; } .icon-arrow-up:before { content: "f"; } .icon-audio:before { content: "g"; } .icon-bell:before { content: "h"; } .icon-blank-image:before { content: "i"; } .icon-blank-photo:before { content: "j"; } .icon-block:before { content: "k"; } .icon-cache-empty:before { content: "l"; } .icon-cancel-small:before { content: "n"; } .icon-clock:before { content: "o"; } .icon-comment:before { content: "p"; } .icon-contact-us:before { content: "q"; } .icon-deactivate:before { content: "r"; } .icon-display:before { content: "s"; } .icon-download:before { content: "t"; } .icon-empty-cadr:before { content: "u"; } .icon-envelope:before { content: "v"; } .icon-extract-down:before { content: "w"; } .icon-extract-up:before { content: "x"; } .icon-eye:before { content: "y"; } .icon-eye-fill:before { content: "z"; } .icon-folder-open:before { content: "A"; } .icon-heart:before { content: "B"; } .icon-heart-fill:before { content: "C"; } .icon-info:before { content: "D"; } .icon-like:before { content: "E"; } .icon-like-fill:before { content: "F"; } .icon-logo:before { content: "G"; } .icon-logo-english:before { content: "H"; } .icon-logo-farsi:before { content: "I"; } .icon-map-center:before { content: "J"; } .icon-map-city:before { content: "K"; } .icon-nav-home:before { content: "L"; } .icon-nav-map:before { content: "M"; } .icon-nav-search:before { content: "N"; } .icon-nav-setting:before { content: "O"; } .icon-nav-ticket:before { content: "P"; } .icon-nav-user:before { content: "Q"; } .icon-phone:before { content: "R"; } .icon-pin:before { content: "S"; } .icon-pin-fill:before { content: "T"; } .icon-pin-list:before { content: "U"; } .icon-question:before { content: "V"; } .icon-reload:before { content: "W"; } .icon-remove:before { content: "X"; } .icon-safarsaz:before { content: "Y"; } .icon-search:before { content: "Z"; } .icon-share:before { content: "0"; } .icon-spin-large:before { content: "2"; } .icon-spin-refresh:before { content: "3"; } .icon-spin-small:before { content: "4"; } .icon-star:before { content: "5"; } .icon-star-fill:before { content: "6"; } .icon-ticket:before { content: "7"; } .icon-trash:before { content: "8"; } .icon-update:before { content: "9"; } .icon-upload:before { content: "!"; } .icon-verify-small:before { content: "#"; } .icon-video:before { content: "$"; } .icon-sort:before { content: "%"; } .icon-edit:before { content: "&"; } .icon-spin-dot:before { content: "1"; } .icon-map-location:before { content: "'"; } .icon-map-location2:before { content: "("; } .icon-map-menu:before { content: ")"; } .icon-map-route:before { content: "*"; } .icon-map-search:before { content: "+"; } .icon-map-location-1:before { content: ","; } .icon-verify:before { content: "m"; } .icon-cancel:before { content: "\""; }
src/Darkish/WebsiteBundle/Resources/public/stylesheets/dk-font.css
@charset "UTF-8"; @font-face { font-family: "darkish"; src:url("../fonts/darkish.eot"); src:url("../fonts/darkish.eot?#iefix") format("embedded-opentype"), url("../fonts/darkish.woff") format("woff"), url("../fonts/darkish.ttf") format("truetype"), url("../fonts/darkish.svg#darkish") format("svg"); font-weight: normal; font-style: normal; } [data-icon]:before { font-family: "darkish" !important; content: attr(data-icon); font-style: normal !important; font-weight: normal !important; font-variant: normal !important; text-transform: none !important; speak: none; line-height: 1; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } [class^="icon-"]:before, [class*=" icon-"]:before { font-family: "darkish" !important; font-style: normal !important; font-weight: normal !important; font-variant: normal !important; text-transform: none !important; speak: none; line-height: 1; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .icon-add:before { content: "a"; } .icon-alarm-clock:before { content: "b"; } .icon-arrow-down:before { content: "c"; } .icon-arrow-left:before { content: "d"; } .icon-arrow-right:before { content: "e"; } .icon-arrow-up:before { content: "f"; } .icon-audio:before { content: "g"; } .icon-bell:before { content: "h"; } .icon-blank-image:before { content: "i"; } .icon-blank-photo:before { content: "j"; } .icon-block:before { content: "k"; } .icon-cache-empty:before { content: "l"; } .icon-cancel-small:before { content: "n"; } .icon-clock:before { content: "o"; } .icon-comment:before { content: "p"; } .icon-contact-us:before { content: "q"; } .icon-deactivate:before { content: "r"; } .icon-display:before { content: "s"; } .icon-download:before { content: "t"; } .icon-empty-cadr:before { content: "u"; } .icon-envelope:before { content: "v"; } .icon-extract-down:before { content: "w"; } .icon-extract-up:before { content: "x"; } .icon-eye:before { content: "y"; } .icon-eye-fill:before { content: "z"; } .icon-folder-open:before { content: "A"; } .icon-heart:before { content: "B"; } .icon-heart-fill:before { content: "C"; } .icon-info:before { content: "D"; } .icon-like:before { content: "E"; } .icon-like-fill:before { content: "F"; } .icon-logo:before { content: "G"; } .icon-logo-english:before { content: "H"; } .icon-logo-farsi:before { content: "I"; } .icon-map-center:before { content: "J"; } .icon-map-city:before { content: "K"; } .icon-nav-home:before { content: "L"; } .icon-nav-map:before { content: "M"; } .icon-nav-search:before { content: "N"; } .icon-nav-setting:before { content: "O"; } .icon-nav-ticket:before { content: "P"; } .icon-nav-user:before { content: "Q"; } .icon-phone:before { content: "R"; } .icon-pin:before { content: "S"; } .icon-pin-fill:before { content: "T"; } .icon-pin-list:before { content: "U"; } .icon-question:before { content: "V"; } .icon-reload:before { content: "W"; } .icon-remove:before { content: "X"; } .icon-safarsaz:before { content: "Y"; } .icon-search:before { content: "Z"; } .icon-share:before { content: "0"; } .icon-spin-large:before { content: "2"; } .icon-spin-refresh:before { content: "3"; } .icon-spin-small:before { content: "4"; } .icon-star:before { content: "5"; } .icon-star-fill:before { content: "6"; } .icon-ticket:before { content: "7"; } .icon-trash:before { content: "8"; } .icon-update:before { content: "9"; } .icon-upload:before { content: "!"; } .icon-verify-small:before { content: "#"; } .icon-video:before { content: "$"; } .icon-sort:before { content: "%"; } .icon-edit:before { content: "&"; } .icon-spin-dot:before { content: "1"; } .icon-map-location:before { content: "'"; } .icon-map-location2:before { content: "("; } .icon-map-menu:before { content: ")"; } .icon-map-route:before { content: "*"; } .icon-map-search:before { content: "+"; } .icon-map-location-1:before { content: ","; } .icon-verify:before { content: "m"; } .icon-cancel:before { content: "\""; }
0.267504
0.067026
.row{ margin-right: 0px; margin-left: 0px; } #np .owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled { display: block !important; } #np .owl-prev { float: left; padding: 0px 15px 5px; color: #fff; background: #3bb7e7; border-radius: 3px; margin: 20px; } #np .owl-next { float: left; padding: 0px 15px 5px; color: #fff; background: #3bb7e7; border-radius: 3px; margin: 20px; } #np .owl-nav.disabled { position: absolute; left: 500px; bottom: -41px; } .section-bg-invoive { background-color: #f3e9e9!important; } #np .category-item{ border:none; } #np .category-item:hover{ background:none; } #np .category-item:hover .cat__title, .category-item:hover span { color:#000; } #testimonial .owl-prev{ opacity:0; } #testimonial .owl-next{ opacity:0; } .add-video{ position: relative; width: 100%; overflow: hidden; } .add-video video { position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%; width: auto; height: auto; z-index: 0; -ms-transform: translateX(-50%) translateY(-50%); -moz-transform: translateX(-50%) translateY(-50%); -webkit-transform: translateX(-50%) translateY(-50%); transform: translateX(-50%) translateY(-50%); } .hero-overlay{ position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color:#000000a1; z-index:1; } .z-2{ z-index: 2; } .section-bg-4 .category-item .icon-element { background-color: #ffffff !important; color: #ffffff !important; padding: 10px; } .section-bg-4 .category-item { border-radius:0px !important ; border: 1px solid #ffffff !important; } .section-bg-4 .category-item a { color: #ffffff; } #np .owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled { display: none !important; } .section-bg-4 .category-item:hover .icon-element.mb-3 { background: #fff !important; color: #000 !important; } .process-box{ background: #fff; padding: 10px; border-radius: 15px; position: relative; box-shadow: 2px 2px 7px 0 #00000057; } .process-left:after{ content: ""; border-top: 15px solid #ffffff; border-bottom: 15px solid #ffffff; border-left: 15px solid #ffffff; border-right: 15px solid #ffffff; display: inline-grid; position: absolute; right: -15px; top: 42%; transform: rotate(45deg); box-shadow: 3px -2px 3px 0px #00000036; z-index: 1; } .process-right:after{ content: ""; border-top: 15px solid #ffffff00; border-bottom: 15px solid #ffffff; border-left: 15px solid #ffffff; border-right: 15px solid #ffffff00; display: inline-grid; position: absolute; left: -15px; top: 42%; transform: rotate(45deg); box-shadow: -1px 1px 3px 0px #0000001a; z-index: 1; } .process-step{ background: #3bb7e7; text-align: center; width: 80%; margin: 0 auto ; color: #fff; height: 100%; padding-top: 8px; position: relative; top: -26px; border-radius: 0px 0px 10px 10px; box-shadow: -6px 8px 0px 0px #00000014; } .process-point-right{ background: #ffffff; width: 25px; height: 25px; border-radius: 50%; border: 8px solid #00bcd4; box-shadow: 0 0 0px 4px #5c5c5c; margin: auto 0; position: absolute; bottom: 40px; left: -60px; } .process-point-right:before{ content: ""; height: 144px; width: 11px; background: #5c5c5c; display: inline-grid; transform: rotate(36deg); position: relative; left: -50px; top: -0px; } .process-point-left{ background: #ffffff; width: 25px; height: 25px; border-radius: 50%; border: 8px solid #00bcd4; box-shadow: 0 0 0px 4px #5c5c5c; margin: auto 0; position: absolute; bottom: 40px; right: -60px; } .process-point-left:before { content: ""; height: 144px; width: 11px; background: #5c5c5c; display: inline-grid; transform: rotate(-38deg); position: relative; left: 50px; top: 0px; } .process-last:before{ display: none; } .process-box p{ z-index: 9; } .process-step p{ font-size: 20px; } .process-step h2{ font-size: 39px; } .process-step:after{ content: ""; border-top: 8px solid #3bb7e700; border-bottom: 8px solid #3bb7e7; border-left: 8px solid #3bb7e700; border-right: 8px solid #3bb7e7; display: inline-grid; position: absolute; left: -16px; top: 0; } .process-step:before{ content: ""; border-top: 8px solid #ff000000; border-bottom: 8px solid #3bb7e7; border-left: 8px solid #3bb7e7; border-right: 8px solid #ff000000; display: inline-grid; position: absolute; right: -16px; top: 0; } /*.process-line-l{ background: white; height: 4px; position: absolute; width: 136px; right: -153px; top: 64px; z-index: 9; } .process-line-r{ background: white; height: 4px; position: absolute; width: 136px; left: -153px; top: 63px; z-index: 9; }*/ #num .icon-element{ padding:0px;} #contact-page .icon-element{ line-height:100px; } .sm-img { width: 50px; } #vendor-prof .imageThumb { height: 120px; width: 120px; border: 2px solid; padding: 1px; cursor: pointer; } #vendor-prof .pip { display: inline-block; margin: 10px 10px 0 0; } #vendor-prof .remove { display: block; background: #444; border: 1px solid black; color: white; text-align: center; cursor: pointer; } #vendor-prof .remove:hover { background: white; color: black; }
assets/css/custom.css
.row{ margin-right: 0px; margin-left: 0px; } #np .owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled { display: block !important; } #np .owl-prev { float: left; padding: 0px 15px 5px; color: #fff; background: #3bb7e7; border-radius: 3px; margin: 20px; } #np .owl-next { float: left; padding: 0px 15px 5px; color: #fff; background: #3bb7e7; border-radius: 3px; margin: 20px; } #np .owl-nav.disabled { position: absolute; left: 500px; bottom: -41px; } .section-bg-invoive { background-color: #f3e9e9!important; } #np .category-item{ border:none; } #np .category-item:hover{ background:none; } #np .category-item:hover .cat__title, .category-item:hover span { color:#000; } #testimonial .owl-prev{ opacity:0; } #testimonial .owl-next{ opacity:0; } .add-video{ position: relative; width: 100%; overflow: hidden; } .add-video video { position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%; width: auto; height: auto; z-index: 0; -ms-transform: translateX(-50%) translateY(-50%); -moz-transform: translateX(-50%) translateY(-50%); -webkit-transform: translateX(-50%) translateY(-50%); transform: translateX(-50%) translateY(-50%); } .hero-overlay{ position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color:#000000a1; z-index:1; } .z-2{ z-index: 2; } .section-bg-4 .category-item .icon-element { background-color: #ffffff !important; color: #ffffff !important; padding: 10px; } .section-bg-4 .category-item { border-radius:0px !important ; border: 1px solid #ffffff !important; } .section-bg-4 .category-item a { color: #ffffff; } #np .owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled { display: none !important; } .section-bg-4 .category-item:hover .icon-element.mb-3 { background: #fff !important; color: #000 !important; } .process-box{ background: #fff; padding: 10px; border-radius: 15px; position: relative; box-shadow: 2px 2px 7px 0 #00000057; } .process-left:after{ content: ""; border-top: 15px solid #ffffff; border-bottom: 15px solid #ffffff; border-left: 15px solid #ffffff; border-right: 15px solid #ffffff; display: inline-grid; position: absolute; right: -15px; top: 42%; transform: rotate(45deg); box-shadow: 3px -2px 3px 0px #00000036; z-index: 1; } .process-right:after{ content: ""; border-top: 15px solid #ffffff00; border-bottom: 15px solid #ffffff; border-left: 15px solid #ffffff; border-right: 15px solid #ffffff00; display: inline-grid; position: absolute; left: -15px; top: 42%; transform: rotate(45deg); box-shadow: -1px 1px 3px 0px #0000001a; z-index: 1; } .process-step{ background: #3bb7e7; text-align: center; width: 80%; margin: 0 auto ; color: #fff; height: 100%; padding-top: 8px; position: relative; top: -26px; border-radius: 0px 0px 10px 10px; box-shadow: -6px 8px 0px 0px #00000014; } .process-point-right{ background: #ffffff; width: 25px; height: 25px; border-radius: 50%; border: 8px solid #00bcd4; box-shadow: 0 0 0px 4px #5c5c5c; margin: auto 0; position: absolute; bottom: 40px; left: -60px; } .process-point-right:before{ content: ""; height: 144px; width: 11px; background: #5c5c5c; display: inline-grid; transform: rotate(36deg); position: relative; left: -50px; top: -0px; } .process-point-left{ background: #ffffff; width: 25px; height: 25px; border-radius: 50%; border: 8px solid #00bcd4; box-shadow: 0 0 0px 4px #5c5c5c; margin: auto 0; position: absolute; bottom: 40px; right: -60px; } .process-point-left:before { content: ""; height: 144px; width: 11px; background: #5c5c5c; display: inline-grid; transform: rotate(-38deg); position: relative; left: 50px; top: 0px; } .process-last:before{ display: none; } .process-box p{ z-index: 9; } .process-step p{ font-size: 20px; } .process-step h2{ font-size: 39px; } .process-step:after{ content: ""; border-top: 8px solid #3bb7e700; border-bottom: 8px solid #3bb7e7; border-left: 8px solid #3bb7e700; border-right: 8px solid #3bb7e7; display: inline-grid; position: absolute; left: -16px; top: 0; } .process-step:before{ content: ""; border-top: 8px solid #ff000000; border-bottom: 8px solid #3bb7e7; border-left: 8px solid #3bb7e7; border-right: 8px solid #ff000000; display: inline-grid; position: absolute; right: -16px; top: 0; } /*.process-line-l{ background: white; height: 4px; position: absolute; width: 136px; right: -153px; top: 64px; z-index: 9; } .process-line-r{ background: white; height: 4px; position: absolute; width: 136px; left: -153px; top: 63px; z-index: 9; }*/ #num .icon-element{ padding:0px;} #contact-page .icon-element{ line-height:100px; } .sm-img { width: 50px; } #vendor-prof .imageThumb { height: 120px; width: 120px; border: 2px solid; padding: 1px; cursor: pointer; } #vendor-prof .pip { display: inline-block; margin: 10px 10px 0 0; } #vendor-prof .remove { display: block; background: #444; border: 1px solid black; color: white; text-align: center; cursor: pointer; } #vendor-prof .remove:hover { background: white; color: black; }
0.437343
0.120879
.paratext { font-size: .8rem; margin-right: 2rem; } .containerBox{ display: flex; flex-direction: row; font-size: .8rem; } .dropdown-content{ width: 1000%; padding: 50px; } .dropdown-content li { list-style-type: none; } .dropbtn { color: white; padding: 16px; border: none; } .dropdown { position: relative; display: inline-block; } .dropdown-content { display: none; position: absolute; background-color: #f1f1f1; z-index: 1; } .dropdown-content a { color: black; padding: 12px 16px; text-decoration: none; display: block; } .dropdown-content a:hover {background-color: #ddd;} .dropdown:hover .dropdown-content {display: block;} .dropdown:hover .dropbtn {border-bottom: 2px solid black;} .pics1 { margin-top: 7rem; } .pics1-text { font-family: 'garamond-premier-pro', serif; } .pics2 { margin-top: 10rem; } .pics2-text { font-family: 'Trade Gothic',sans-serif; } .text1 { font-size: 1rem; } .text2 { font-size: 1.2rem; font-weight: 300; } .text4 { font-size: 2rem; } .pics4{ margin-top: 10rem; } .text5 { font-size: 1.5rem; } .text6 { font-size: 1.6rem; } .text7 { font-size: 1.2rem; } .text8 { font-size: 2rem; } .text9 { font-size: 2.3rem; } .col-text { font-size: .8rem; font-weight: 100; } .blackLives { font-size: .8rem; } .fab { font-size: 1rem; margin-right: 2rem; margin-top: 1rem; } .footbtn { position: relative; right: 2rem; bottom: .1rem; padding: .9rem; border-radius: 0; } .footerLine { border-bottom: .2px solid black; margin-top: 5rem; } .icon { position: relative; right: 4rem; } .longLine{ border-bottom: .1px solid grey; margin-top: 2rem; } .lastLinks{ justify-content: space-between; } .col-text2 { font-size: .7rem; font-weight: 100; } footer { background-color: grey; color: #374e62; } @media(max-width: 1200px){ .order { margin-right: 20rem; } .logo { display: none; } .gender { display: none; } .navbar-toggler-icon { display: block; } .navbar-collapse { display: none; } .topIcon { display: none; } .logo2 { text-align: center; } .pics1 { margin-top: 20rem; } .shop { border-radius: 0; margin-right: 3rem; } .pics2 { margin-top: 25rem; } .image { width: 40%; } .pics2-text { font-size: 2rem; } .black { margin-bottom: 20rem; } .move { font-size: 2.5rem; font-weight: small; } .noMove { font-size: 2rem; margin-bottom: 2rem; } .butt { font-size: .5rem; padding: 0 20rem 0 20rem; } .blackLives { font-size: 1rem; padding: 0 28rem 1rem 0; } .movement { margin: .2rem 0rem 5rem 0; } .offer { color: black; } .offerBttn { color: black; border-bottom: 1px solid black; padding-top: 2rem; } footer { background-color: whitesmoke; } .footbtn { position: relative; left: 10rem; bottom: 3.4rem; } .fabs { margin-right: 1.5rem; } }
Asset/css/styles.css
.paratext { font-size: .8rem; margin-right: 2rem; } .containerBox{ display: flex; flex-direction: row; font-size: .8rem; } .dropdown-content{ width: 1000%; padding: 50px; } .dropdown-content li { list-style-type: none; } .dropbtn { color: white; padding: 16px; border: none; } .dropdown { position: relative; display: inline-block; } .dropdown-content { display: none; position: absolute; background-color: #f1f1f1; z-index: 1; } .dropdown-content a { color: black; padding: 12px 16px; text-decoration: none; display: block; } .dropdown-content a:hover {background-color: #ddd;} .dropdown:hover .dropdown-content {display: block;} .dropdown:hover .dropbtn {border-bottom: 2px solid black;} .pics1 { margin-top: 7rem; } .pics1-text { font-family: 'garamond-premier-pro', serif; } .pics2 { margin-top: 10rem; } .pics2-text { font-family: 'Trade Gothic',sans-serif; } .text1 { font-size: 1rem; } .text2 { font-size: 1.2rem; font-weight: 300; } .text4 { font-size: 2rem; } .pics4{ margin-top: 10rem; } .text5 { font-size: 1.5rem; } .text6 { font-size: 1.6rem; } .text7 { font-size: 1.2rem; } .text8 { font-size: 2rem; } .text9 { font-size: 2.3rem; } .col-text { font-size: .8rem; font-weight: 100; } .blackLives { font-size: .8rem; } .fab { font-size: 1rem; margin-right: 2rem; margin-top: 1rem; } .footbtn { position: relative; right: 2rem; bottom: .1rem; padding: .9rem; border-radius: 0; } .footerLine { border-bottom: .2px solid black; margin-top: 5rem; } .icon { position: relative; right: 4rem; } .longLine{ border-bottom: .1px solid grey; margin-top: 2rem; } .lastLinks{ justify-content: space-between; } .col-text2 { font-size: .7rem; font-weight: 100; } footer { background-color: grey; color: #374e62; } @media(max-width: 1200px){ .order { margin-right: 20rem; } .logo { display: none; } .gender { display: none; } .navbar-toggler-icon { display: block; } .navbar-collapse { display: none; } .topIcon { display: none; } .logo2 { text-align: center; } .pics1 { margin-top: 20rem; } .shop { border-radius: 0; margin-right: 3rem; } .pics2 { margin-top: 25rem; } .image { width: 40%; } .pics2-text { font-size: 2rem; } .black { margin-bottom: 20rem; } .move { font-size: 2.5rem; font-weight: small; } .noMove { font-size: 2rem; margin-bottom: 2rem; } .butt { font-size: .5rem; padding: 0 20rem 0 20rem; } .blackLives { font-size: 1rem; padding: 0 28rem 1rem 0; } .movement { margin: .2rem 0rem 5rem 0; } .offer { color: black; } .offerBttn { color: black; border-bottom: 1px solid black; padding-top: 2rem; } footer { background-color: whitesmoke; } .footbtn { position: relative; left: 10rem; bottom: 3.4rem; } .fabs { margin-right: 1.5rem; } }
0.502197
0.097691
Layout -------------------------------------- */ /* -------------------------------------- Typography -------------------------------------- */ body{ -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility; } .well .page-header { margin-top:0; } .well .page-header h1{ margin-top:0; } /* -------------------------------------- Navbar -------------------------------------- */ #searchbook { width:600px; } .navbar-brand { padding:13px 15px; } .navbar-nav { color:white; } .navbar-fixed-top{ background-color: #80d4ff; } .navbar-form{ margin-top:40px; } body{ } /* -------------------------------------- Carousel -------------------------------------- */ #mycarousel{ margin-top: 60px; } #mycarousel .item { height: 400px; } #slide1 { background:url('../../images/hero2.jpg') top center no-repeat; } #slide2 { background:url('../../images/hero4.jpg') top center no-repeat; } #slide3 { background:url('../../images/hero5.png') top center no-repeat; } /* -------------------------------------- Global Styles -------------------------------------- */ .well{ margin:20px 0; } /* -------------------------------------- Media Queries -------------------------------------- */ /* Portrait & landscape phone */ @media (max-width: 480px) { #mycarousel .item { height: 250px; } #slide1 { background:url('../../images/hero2_mini.jpg') top center no-repeat; } #slide2 { background:url('../../images/hero4_mini.jpg') top center no-repeat; } #slide3 { background:url('../../images/hero5_mini.png') top center no-repeat; } } /* Landscape phone to portrait tablet */ @media (max-width: 768px) { #mycarousel .item { height: 310px; } #slide1 { background:url('../../images/hero2_small.jpg') top center no-repeat; } #slide2 { background:url('../../images/hero4_small.jpg') top center no-repeat; } #slide3 { background:url('../../images/hero5_small.png') top center no-repeat; } } /* Large desktop */ @media (min-width: 1200px) { #mycarousel .item { height: 500px; } #slide1 { background:url('../../images/hero2.jpg') top center no-repeat; } #slide2 { background:url('../../images/hero3.jpg') top center no-repeat; } #slide3 { background:url('../../images/hero1.jpg') top center no-repeat; } }
includes/css/styles.css
Layout -------------------------------------- */ /* -------------------------------------- Typography -------------------------------------- */ body{ -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility; } .well .page-header { margin-top:0; } .well .page-header h1{ margin-top:0; } /* -------------------------------------- Navbar -------------------------------------- */ #searchbook { width:600px; } .navbar-brand { padding:13px 15px; } .navbar-nav { color:white; } .navbar-fixed-top{ background-color: #80d4ff; } .navbar-form{ margin-top:40px; } body{ } /* -------------------------------------- Carousel -------------------------------------- */ #mycarousel{ margin-top: 60px; } #mycarousel .item { height: 400px; } #slide1 { background:url('../../images/hero2.jpg') top center no-repeat; } #slide2 { background:url('../../images/hero4.jpg') top center no-repeat; } #slide3 { background:url('../../images/hero5.png') top center no-repeat; } /* -------------------------------------- Global Styles -------------------------------------- */ .well{ margin:20px 0; } /* -------------------------------------- Media Queries -------------------------------------- */ /* Portrait & landscape phone */ @media (max-width: 480px) { #mycarousel .item { height: 250px; } #slide1 { background:url('../../images/hero2_mini.jpg') top center no-repeat; } #slide2 { background:url('../../images/hero4_mini.jpg') top center no-repeat; } #slide3 { background:url('../../images/hero5_mini.png') top center no-repeat; } } /* Landscape phone to portrait tablet */ @media (max-width: 768px) { #mycarousel .item { height: 310px; } #slide1 { background:url('../../images/hero2_small.jpg') top center no-repeat; } #slide2 { background:url('../../images/hero4_small.jpg') top center no-repeat; } #slide3 { background:url('../../images/hero5_small.png') top center no-repeat; } } /* Large desktop */ @media (min-width: 1200px) { #mycarousel .item { height: 500px; } #slide1 { background:url('../../images/hero2.jpg') top center no-repeat; } #slide2 { background:url('../../images/hero3.jpg') top center no-repeat; } #slide3 { background:url('../../images/hero1.jpg') top center no-repeat; } }
0.127422
0.051106
.ui-theme {background: url("themes.png") no-repeat top left;display: block;} .ui-theme.ui-theme-afterdark{ background-position: 0 0; width: 30px; height: 25px; } .ui-theme.ui-theme-afternoon{ background-position: 0 -75px; width: 30px; height: 25px; } .ui-theme.ui-theme-afterwork{ background-position: 0 -150px; width: 30px; height: 25px; } .ui-theme.ui-theme-aristo{ background-position: 0 -225px; width: 30px; height: 27px; } .ui-theme.ui-theme-black-tie{ background-position: 0 -302px; width: 30px; height: 27px; } .ui-theme.ui-theme-blitzer{ background-position: 0 -379px; width: 30px; height: 27px; } .ui-theme.ui-theme-bluesky{ background-position: 0 -456px; width: 30px; height: 27px; } .ui-theme.ui-theme-bootstrap{ background-position: 0 -533px; width: 30px; height: 26px; } .ui-theme.ui-theme-casablanca{ background-position: 0 -609px; width: 30px; height: 27px; } .ui-theme.ui-theme-cruze{ background-position: 0 -686px; width: 30px; height: 25px; } .ui-theme.ui-theme-cupertino{ background-position: 0 -761px; width: 30px; height: 27px; } .ui-theme.ui-theme-dark-hive{ background-position: 0 -838px; width: 30px; height: 27px; } .ui-theme.ui-theme-delta{ background-position: 0 -915px; width: 30px; height: 30px; } .ui-theme.ui-theme-dot-luv{ background-position: 0 -995px; width: 30px; height: 27px; } .ui-theme.ui-theme-eggplant{ background-position: 0 -1072px; width: 30px; height: 27px; } .ui-theme.ui-theme-excite-bike{ background-position: 0 -1149px; width: 30px; height: 27px; } .ui-theme.ui-theme-flick{ background-position: 0 -1226px; width: 30px; height: 27px; } .ui-theme.ui-theme-glass-x{ background-position: 0 -1303px; width: 30px; height: 27px; } .ui-theme.ui-theme-home{ background-position: 0 -1380px; width: 30px; height: 27px; } .ui-theme.ui-theme-hot-sneaks{ background-position: 0 -1457px; width: 30px; height: 27px; } .ui-theme.ui-theme-humanity{ background-position: 0 -1534px; width: 30px; height: 27px; } .ui-theme.ui-theme-le-frog{ background-position: 0 -1611px; width: 30px; height: 27px; } .ui-theme.ui-theme-midnight{ background-position: 0 -1688px; width: 30px; height: 27px; } .ui-theme.ui-theme-mint-choc{ background-position: 0 -1765px; width: 30px; height: 27px; } .ui-theme.ui-theme-omega{ background-position: 0 -915px; width: 30px; height: 30px; } .ui-theme.ui-theme-overcast{ background-position: 0 -1842px; width: 30px; height: 27px; } .ui-theme.ui-theme-pepper-grinder{ background-position: 0 -1919px; width: 30px; height: 27px; } .ui-theme.ui-theme-redmond{ background-position: -80px 0; width: 30px; height: 27px; } .ui-theme.ui-theme-rocket{ background-position: -80px -77px; width: 30px; height: 27px; } .ui-theme.ui-theme-sam{ background-position: -80px -154px; width: 30px; height: 27px; } .ui-theme.ui-theme-smoothness{ background-position: -80px -231px; width: 30px; height: 27px; } .ui-theme.ui-theme-south-street{ background-position: -80px -308px; width: 30px; height: 27px; } .ui-theme.ui-theme-start{ background-position: -80px -385px; width: 30px; height: 27px; } .ui-theme.ui-theme-sunny{ background-position: -80px -462px; width: 30px; height: 25px; } .ui-theme.ui-theme-swanky-purse{ background-position: -80px -537px; width: 30px; height: 27px; } .ui-theme.ui-theme-trontastic{ background-position: -80px -614px; width: 30px; height: 27px; } .ui-theme.ui-theme-ui-darkness{ background-position: -80px -691px; width: 30px; height: 27px; } .ui-theme.ui-theme-ui-lightness{ background-position: -80px -768px; width: 30px; height: 27px; } .ui-theme.ui-theme-vader{ background-position: -80px -845px; width: 30px; height: 27px; } .
src/main/webapp/themes.css
.ui-theme {background: url("themes.png") no-repeat top left;display: block;} .ui-theme.ui-theme-afterdark{ background-position: 0 0; width: 30px; height: 25px; } .ui-theme.ui-theme-afternoon{ background-position: 0 -75px; width: 30px; height: 25px; } .ui-theme.ui-theme-afterwork{ background-position: 0 -150px; width: 30px; height: 25px; } .ui-theme.ui-theme-aristo{ background-position: 0 -225px; width: 30px; height: 27px; } .ui-theme.ui-theme-black-tie{ background-position: 0 -302px; width: 30px; height: 27px; } .ui-theme.ui-theme-blitzer{ background-position: 0 -379px; width: 30px; height: 27px; } .ui-theme.ui-theme-bluesky{ background-position: 0 -456px; width: 30px; height: 27px; } .ui-theme.ui-theme-bootstrap{ background-position: 0 -533px; width: 30px; height: 26px; } .ui-theme.ui-theme-casablanca{ background-position: 0 -609px; width: 30px; height: 27px; } .ui-theme.ui-theme-cruze{ background-position: 0 -686px; width: 30px; height: 25px; } .ui-theme.ui-theme-cupertino{ background-position: 0 -761px; width: 30px; height: 27px; } .ui-theme.ui-theme-dark-hive{ background-position: 0 -838px; width: 30px; height: 27px; } .ui-theme.ui-theme-delta{ background-position: 0 -915px; width: 30px; height: 30px; } .ui-theme.ui-theme-dot-luv{ background-position: 0 -995px; width: 30px; height: 27px; } .ui-theme.ui-theme-eggplant{ background-position: 0 -1072px; width: 30px; height: 27px; } .ui-theme.ui-theme-excite-bike{ background-position: 0 -1149px; width: 30px; height: 27px; } .ui-theme.ui-theme-flick{ background-position: 0 -1226px; width: 30px; height: 27px; } .ui-theme.ui-theme-glass-x{ background-position: 0 -1303px; width: 30px; height: 27px; } .ui-theme.ui-theme-home{ background-position: 0 -1380px; width: 30px; height: 27px; } .ui-theme.ui-theme-hot-sneaks{ background-position: 0 -1457px; width: 30px; height: 27px; } .ui-theme.ui-theme-humanity{ background-position: 0 -1534px; width: 30px; height: 27px; } .ui-theme.ui-theme-le-frog{ background-position: 0 -1611px; width: 30px; height: 27px; } .ui-theme.ui-theme-midnight{ background-position: 0 -1688px; width: 30px; height: 27px; } .ui-theme.ui-theme-mint-choc{ background-position: 0 -1765px; width: 30px; height: 27px; } .ui-theme.ui-theme-omega{ background-position: 0 -915px; width: 30px; height: 30px; } .ui-theme.ui-theme-overcast{ background-position: 0 -1842px; width: 30px; height: 27px; } .ui-theme.ui-theme-pepper-grinder{ background-position: 0 -1919px; width: 30px; height: 27px; } .ui-theme.ui-theme-redmond{ background-position: -80px 0; width: 30px; height: 27px; } .ui-theme.ui-theme-rocket{ background-position: -80px -77px; width: 30px; height: 27px; } .ui-theme.ui-theme-sam{ background-position: -80px -154px; width: 30px; height: 27px; } .ui-theme.ui-theme-smoothness{ background-position: -80px -231px; width: 30px; height: 27px; } .ui-theme.ui-theme-south-street{ background-position: -80px -308px; width: 30px; height: 27px; } .ui-theme.ui-theme-start{ background-position: -80px -385px; width: 30px; height: 27px; } .ui-theme.ui-theme-sunny{ background-position: -80px -462px; width: 30px; height: 25px; } .ui-theme.ui-theme-swanky-purse{ background-position: -80px -537px; width: 30px; height: 27px; } .ui-theme.ui-theme-trontastic{ background-position: -80px -614px; width: 30px; height: 27px; } .ui-theme.ui-theme-ui-darkness{ background-position: -80px -691px; width: 30px; height: 27px; } .ui-theme.ui-theme-ui-lightness{ background-position: -80px -768px; width: 30px; height: 27px; } .ui-theme.ui-theme-vader{ background-position: -80px -845px; width: 30px; height: 27px; } .
0.3295
0.043285
.dashboard-statistics{ display:flex; margin: 20px 0; flex-wrap: wrap; } .statistics-item{ display: inline-flex; margin: 10px 30px 10px 0; } .statistics-item img{ /* width: 40px; */ height: 50px; } .statistics-item:last-child{ margin-right: 0; } .statistics-item-image-blue { padding: 10px; background-color:#009fe3; display: flex; align-items: center; } .statistics-item-image-agua { padding: 10px; background-color:#25b4b1; display: flex; align-items: center; } .statistics-item-image-green { padding: 10px; background-color:#3faf6c; display: flex; align-items: center; } .statistics-item-image-orange { padding: 10px; background-color:#ffa03a; display: flex; align-items: center; } .statistics-item-image-yellow { padding: 10px; background-color:#f5cf4d; display: flex; align-items: center; } .statistics-item-image-redLight { padding: 10px; background-color:#dc4848; display: flex; align-items: center; } .statistics-item-image-redDark { padding: 10px; background-color:#9d2f4c; display: flex; align-items: center; } .statistics-item-description{ background-color: #ffffff; font-family: "Roboto Light"; color: #414141; text-align: center; /*height: 60px; retirei da interna, verificar se na consulta ficou bom*/ width: 155px; } .statistics-item-description span{ font-size: 25px; } .statistics-item-description p{ margin: 0; } @media (min-width: 768px) and (max-width: 991px) { } @media (min-width: 425px) and (max-width: 767px) { } @media (max-width: 424px) { }
app/public/css/objects/statistics.css
.dashboard-statistics{ display:flex; margin: 20px 0; flex-wrap: wrap; } .statistics-item{ display: inline-flex; margin: 10px 30px 10px 0; } .statistics-item img{ /* width: 40px; */ height: 50px; } .statistics-item:last-child{ margin-right: 0; } .statistics-item-image-blue { padding: 10px; background-color:#009fe3; display: flex; align-items: center; } .statistics-item-image-agua { padding: 10px; background-color:#25b4b1; display: flex; align-items: center; } .statistics-item-image-green { padding: 10px; background-color:#3faf6c; display: flex; align-items: center; } .statistics-item-image-orange { padding: 10px; background-color:#ffa03a; display: flex; align-items: center; } .statistics-item-image-yellow { padding: 10px; background-color:#f5cf4d; display: flex; align-items: center; } .statistics-item-image-redLight { padding: 10px; background-color:#dc4848; display: flex; align-items: center; } .statistics-item-image-redDark { padding: 10px; background-color:#9d2f4c; display: flex; align-items: center; } .statistics-item-description{ background-color: #ffffff; font-family: "Roboto Light"; color: #414141; text-align: center; /*height: 60px; retirei da interna, verificar se na consulta ficou bom*/ width: 155px; } .statistics-item-description span{ font-size: 25px; } .statistics-item-description p{ margin: 0; } @media (min-width: 768px) and (max-width: 991px) { } @media (min-width: 425px) and (max-width: 767px) { } @media (max-width: 424px) { }
0.405684
0.103885
@font-face { font-family: 'Lato-regular'; src: url('../fonts/Lato-Regular.eot'); /* IE9 Compat Modes */ src: url('../fonts/Lato-Regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/Lato-Regular.woff') format('woff'), /* Modern Browsers */ url('../fonts/Lato-Regular.ttf') format('truetype'); font-style: normal; font-weight: normal; text-rendering: optimizeLegibility; } /* Webfont: Lato-Bold */ /@font-face { font-family: 'Lato-bold'; src: url('../fonts/Lato-Bold.eot'); /* IE9 Compat Modes */ src: url('../fonts/Lato-Bold.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/Lato-Bold.woff') format('woff'), /* Modern Browsers */ url('../fonts/Lato-Bold.ttf') format('truetype'); font-style: normal; font-weight: bold; text-rendering: optimizeLegibility; } /*solve some problems from jquery mobile css:*/ .ui-overlay-a, .ui-page-theme-a, .ui-page-theme-a .ui-panel-wrapper{text-shadow:none;} /** * ================================================ * I.01 - Reset default browser styles * Based on Eric Meyer's CSS reset, v1.0 2008-02-12 * http://meyerweb.com/eric/tools/css/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, font, 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 { margin: 0; margin-left:auto; margin-right:auto; padding: 0; border: 0; outline: 0; vertical-align: baseline; } body { line-height: 1; } body { -webkit-user-select: none; -webkit-touch-callout: none; } ol, ul { list-style: none; } blockquote, q { quotes: none; } blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; } html { height: 100% } body{ background: #e2e7ea; margin: 0 auto; padding: 0; height: 100%; color:#7a7a7a; font-family:Lato-regular, sans-serif; font-weight:400; font-size: 13px; } .clear{clear:both;} #header{ background: url(../img/top-banner.jpg) no-repeat center center; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; height:367px; } .inner-cont{max-width:1180px; margin:0 auto;position:relative;} #header .logo{padding-top:122px;padding-left:177px;} #header .logo a, #header .logo a.active{background:none;} /*Footer*/ #footer{margin-top:10px;} #footer .inner-cont{background:#ffffff; border-radius:5px 5px 0 0;} #footer .f-top{background:#2d2d2d;border-radius:5px 5px 0 0; color:#fff;padding:20px;} #footer .f-top .left{float:left;} #footer .f-top .right{float:right;} #footer .f-top .right ul{margin:0;} #footer .f-top .right ul li{display:inline-block;margin-right:14px;} #footer .f-top .right ul li:last-child {margin-right:0;} #footer .f-top .right ul li a {color:#fff; text-decoration:none;} #footer .f-top .right ul li a:hover{text-decoration:underline;} #footer .f-bottom{padding:25px; text-align:center;} #footer .f-bottom p{line-height:18px;color:#2d2d2d;} #footer .f-bottom p a, #footer .f-bottom p a.active{background:none; text-decoration:none;color:#2d2d2d;} #footer .f-top .right ul li a.active{background:none;} .scrollup { background: url("../img/up.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0); bottom: 25px; display: none; height: 48px; outline: medium none !important; position: fixed; right: 5%; text-indent: -9999px; width: 48px; } /*content*/ #content{margin-top:50px;} #tvd-col-left, #tvd-info-col-left{ width:100%; float: left; background:#fff; border-radius:5px 5px 0 0; border-bottom:3px solid #; } #tvd-col-left h1{text-transform:uppercase;color: #2d2d2d; font-size:16px; font-family:Lato-bold, sans-serif; padding:15px 10px;text-align:center;border-bottom:1px solid #dadada;} #tvd-info-col-left{ text-align:justify; } /*tvdirect-info style*/ #tvdirect-info .selector .sel-left{width:calc(100% - 30px);float:none;border-bottom: 1px solid #dedede;padding-left:15px;padding-right:15px;} #tvdirect-info .selector .sel-left {padding-top: 5px;} #tvdirect-info .sel-left .chans-mainimg {float: left;margin-right: 2%;max-width: 125px;width: 20%;height:85px;} #tvdirect-info #tvd-info-col-left .selector img {height: auto;margin-right: 0;width: 100%;max-width:125px; max-height:83px;position: relative; top: 50%;display:block; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%);} #tvdirect-info #tvd-info-col-left .chans-voir a{display:block;height:85px;} #tvdirect-info .sel-left .chans-maintitle {height:85px;width:55%;float:left;} #tvdirect-info .sel-left .chans-voir{width:23%; float:left;height:85px;} #tvdirect-info .sel-left .chans-voir a{} #tvdirect-info .chan-desc{padding:15px;} #tvdirect-info .chan-desc h2{color:#2d2d2d;font-size:18px; margin-bottom:15px;} #tvdirect-info .desc-cont{font-size:14px;margin-bottom:20px;} #tvdirect-info .desc-cont strong{font-family: 'Lato-bold';} #tvdirect-info #tvd-info-col-left .sel-left .chans-voir img, #tvdirect-info #tvd-info-col-left .open-live img {max-width:209px;width:100%;} #tvdirect-info #tvd-info-col-left .open-live img{margin:0 auto; height:auto;} /*right column:*/ /*#tvd-col-right{ width:26.52542%; float: right; border-radius:5px 5px 0 0; }*/ /*#tvd-col-right .col-right-cont{ padding: 10px 2.55591% 0; border-bottom:3px solid #8abbb7; background:#fff; }*/ /*#tvd-col-right h2{text-transform:uppercase;color: #fff; font-size:14px; font-family:Lato-bold, sans-serif; padding:10px;text-align:left;background:#2d2d2d;border-radius:5px 5px 0 0;}*/ .mulchansh { padding-left: 10px; } .mlichansh .det, .mlichansh .prog-img { float: left; } .mlichansh .prog-img{width:35%;max-width:105px;} .mlichansh .det { width: 63%; padding-left: 4px; } .mlichansh .right-shows { float: right; margin-top: 8px; } .dates{ display: block; } .mlichansh { border-bottom: 1px solid #dedede; padding: 4px 0; } .tv-banners{margin-top:10px;} #tvd-col-right .left{float:left; width:46.7%; padding:3% 2%; height:88%;border-right: 1px solid #dedede;} #tvd-col-right .right{float:left;width:48.68178%; height:120px;display:table;} #tvd-col-right .right a{ text-align:center; vertical-align:middle; text-transform:uppercase; color:#9bcfc3; text-decoration:none;font-size:16px; font-family:Lato-bold, sans-serif;line-height:normal; display:table-cell; vertical-align:center;} #tvd-col-right .right a:hover{color:#2d2d2d;} #tvd-col-right .right-col-ads{margin-top:5px;width:100%; overflow: hidden;} #tvd-col-right .right-col-ads img{display:block;} .lichan { width: 12%; float: left; height: 116px; padding:3.9%; border-bottom: 1px solid #dedede; border-right: 1px solid #dedede; text-align:center; } ul li.lichan:nth-child(5n+5) { border-right:0 none; } .lichan .helper{display: inline-block;height: 100%;vertical-align: middle;} .mlichan .helper{display: inline-block;height: 96%;vertical-align: middle;} .mlichan { width: 100%; float: left; height: 120px; padding:0; border-bottom: 1px solid #dedede; text-align:center; } #tvd-col-right ul.mulchansh li:last-of-type{border-bottom:0 none;} ul { list-style: none; } .lichan img{ max-height: 100%; max-width: 100%; vertical-align: middle; transition: all 0.5s ease 0s; } .lichan img:hover{ transform: scale(1.1, 1.1); } #tv-direct .lichan img{max-width: 95%;} .mlichan img{ max-height: 96%; max-width: 100%; vertical-align: middle; } .ulchan, .mulchan{ padding-left:0; } /*programme tv main page design:*/ #progleft{ background:none; padding:0; /*width:72.45766%;*/ width:100%; float: left; } .lipr, .slipr { display: inline; float: left; padding:10px 0; text-align: center; width:98%; } /*.lipr{width:11%;} */ /*.ulpr li.lipr:last-of-type {width:12%;}*/ .ulpr, .sulpr{ display: block; margin: 0; padding: 0; } .ulpr{background:#fff;border-radius:5px 5px 0 0;} .lipr a{color:#838383;} .lipr img[title]{font-size:13px; font-weight:400;line-height:13px;} .ulpr li:hover{/*background:#9ccec7; color:#fff;*/} .sulpr{/*background:#9ccec7; border-radius:0 0 5px 5px;*/} #channels .slipr{width:12.5%;} .slipr{width: 14.15%;} .slipr, .slipr a{color:#838383;cursor:pointer;} .sulpr li:hover, .sulpr li:hover a {color:#fff;} .lipr a, .slipr a{ text-decoration: none; font-family:open sans, sans-serif; font-size: 20px; font-weight: 100; text-decoration: none; text-shadow: none; color:#4e4e4e; } #prlcont{ background:#fff; width:96.49124%; padding:10px 1.75438% 0; position: relative; border-radius:5px 5px 0 0; border-bottom:3px solid #FFFFFF; /*margin-top:10px;*/ } .show-sh #prlcont{padding:0; width:100%;} .show-sh .sh-inner-cont{padding:3px 10px;} .selector{ width:100%; } .selector .sel-left{float:left; color:#2d2d2d; font-family:Lato-bold, sans-serif;font-weight:bold;font-size:15px;/*padding-top:15px;*/width:calc(100% - 159px);} .selector .sel-left p{margin:0 0 10px;} #channels .selector .sel-left{width:100%;} /*pagination*/ .pagination { float: left; width: 170px; margin-bottom:15px; border:1px solid #dedede; margin-left:30px; margin-top:10px; } .pagination .owl-item {} .pag-act{ background:#dedede; } .pagination .pag-elem{ cursor:pointer; display: block; padding: 5px; width: calc(100% - 10px); } .pagination .owl-content { text-align: center; } .show-top-info1 { display: block; } #pagination .owl-controls .owl-buttons .owl-prev{top:-1px; left:-30px;} #pagination .owl-controls .owl-buttons .owl-next{top:-1px; right:-30px;} #pagination.owl-theme .owl-controls .owl-buttons .owl-prev { background: url('images/sprite-carousel2.png') no-repeat scroll left -25px transparent; } #pagination.owl-theme .owl-controls .owl-buttons .owl-next { background: url('images/sprite-carousel2.png') no-repeat scroll left 0px transparent; } .selector .sel-right{float:right;padding-bottom:9px;} select { text-transform:uppercase; padding: 12px 10px 9px; margin: 0; -webkit-border-radius:4px; -moz-border-radius:4px; border-radius:4px; background: #fff; color:#888; border:1px solid #e7e7e7; outline:none; display: inline-block; -webkit-appearance:none; -moz-appearance:none; appearance:none; cursor:pointer; } label {position:relative} body#programmetv div.sel-right label:after, body#tv-direct div.categs label:after { content:'\25BC'; font:11px "Consolas", monospace; color:#272727; right:8px; top:2px; padding:0 0 2px; position:absolute; pointer-events:none; } body#programmetv div.sel-right label:before, body#tv-direct div.categs label:before { content:''; right:2px; top:-14px; width:18px; height:37px; background:#fff; position:absolute; pointer-events:none; display:block; border:1px solid #e7e7e7;border-left:0 none; border-radius:0 4px 4px 0; /*webkit to solve */ } @media screen and (-webkit-min-device-pixel-ratio:0) { body#programmetv div.sel-right label:before, body#tv-direct div.categs label:before { right:0px; top:-12px; width:18px; height:36px; background:#fff; position:absolute; pointer-events:none; display:block; border:1px solid #e7e7e7;border-left:0 none; border-radius:0 4px 4px 0; } } .progarray .rows{border-bottom:3px solid #f9f9f9;} .chans{ display: inline-block; float: left; position:relative; } .car-sulpr-menu,.car-ulpr-menu{ background:#dedede; color: #7F7F7F; } .carousel{ } .progarray .chans{width:12.121212%;margin-right:2.8%;} .progarray .carousel{width:85%; float:left;} .progarray .carousel .owl-wrapper-outer{width:100%;/*margin-left:7%;*/} .owl-content .prog-img{float:left;width:32.7%; margin-right:3%; max-width:100px;} .owl-content .det{float:left;width:64.3%;max-width:193px;} .chans{ /*height:98px;*/ text-align:center; /*border-right: 2px solid #9ccec7;*/ width:12.121212%; } .chans a img{ /*position: relative; top: 50%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); max-width: 70px;*/ } .prog-img{ /* position: relative; top: 50%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%);*/ float:left; width:28%; margin-right:2%; } .chans-scroll .progcl .det{float:left; width:calc(70% - 26px);} .chans-scroll .progcl .det a, .chans-scroll .progcl .det span.title{text-decoration:none; color:#000; font-size:14px; font-weight:400;margin-bottom:3px;} .chans-scroll .progcl .det span.type, .chans-scroll .progcl .det span.duration{display:inline-block; color:#929292; font-size:13px;} .chans-scroll .progcl .display-time{color:#929292; font-size:13px;} .chans-scroll .progcl .on-show{float:right;width:26px; text-align: center;/*-webkit-transform-style: preserve-3d; -moz-transform-style: preserve-3d; transform-style: preserve-3d;*/} .chans-scroll .progcl .on-show:before{ content: ''; display: inline-block; height: 100%; vertical-align: middle; margin-right: -0.25em; /* Adjusts for spacing */} .chans-scroll .progcl .on-show a{color:#414141;font-size:23px; position: relative; /*top: 50%; transform: translateY(-50%);*/} .chans-scroll .progcl .on-show .chans-det-show{background: url("images/sprite-2.png") no-repeat scroll left 0 transparent;width:100%; height:17px; display: inline-block;vertical-align: middle; } .chans-scroll .progcl .on-show a:hover .chans-det-show{background: url("images/sprite-2.png") no-repeat scroll left -17px transparent;} .det .type, .det .title, .det .subtitle, .cdet .ctime, .cdet .ctitle { display: block; } .det a.show-count {color:#2d2d2d; text-decoration:none;text-transform:uppercase;} .det .duration, .cdet .ctype, .cdet .cduration{ display:inline-block;} .owl-content .det .title{font-family:Lato-bold, sans-serif;font-weight:600;font-size: 13px;color:#2d2d2d;text-transform:uppercase;padding-bottom:4px;} .owl-content .det .type{color:#2d2d2d; font-weight:300;padding-bottom:4px;} .owl-content .det .time, .owl-content .det .duration{display:inline; color: #68b5aa;font-family:Lato-bold, sans-serif;font-weight:600;} .owl-content .det .subtitle {color:989898; padding-top:4px;} .rows{ /*height:96px;*/ display: block; padding:5px 0; } .owl-theme .owl-controls .owl-buttons div { position: absolute; height:25px; width:15px; } #hours-menu-car.owl-theme .owl-controls .owl-buttons .ph-prev,#days-menu-car.owl-theme .owl-controls .owl-buttons .pd-prev,#hours-menu-chan.owl-theme .owl-controls .owl-buttons .ch-prev,#days-menu-chan.owl-theme .owl-controls .owl-buttons .cd-prev{ left: 5px; top: 8px; background: url('images/sprite-carousel2.png') no-repeat scroll left -25px transparent; } #hours-menu-car.owl-theme .owl-controls .owl-buttons .ph-next,#days-menu-car.owl-theme .owl-controls .owl-buttons .pd-next,#hours-menu-chan.owl-theme .owl-controls .owl-buttons .ch-next,#days-menu-chan.owl-theme .owl-controls .owl-buttons .cd-next{ right: 5px; top: 8px; background: url('images/sprite-carousel2.png') no-repeat scroll left 0px transparent; } #chan-car.owl-theme .owl-controls .owl-buttons .owl-prev{ /*left: -45px;*/ top: 20px; background: url('images/sprite-carousel2.png') no-repeat scroll left -25px transparent; } div[id^="car"].owl-theme .owl-controls .owl-buttons .owl-prev{ left: -17px; top: 16px; background: url('images/sprite-carousel2.png') no-repeat scroll left -25px transparent; } #chan-car.owl-theme .owl-controls .owl-buttons .owl-next{ right: -45px; top: 16px; background: url('images/sprite-carousel2.png') no-repeat scroll left 0 transparent; } div[id^="car"].owl-theme .owl-controls .owl-buttons .owl-next{ right: -6px; top: 16px; background: url('images/sprite-carousel2.png') no-repeat scroll left 0 transparent; } } #car { border: 1px solid #dedede; width:90%; } .cprogleft .progcl{ border: 1px solid #dedede; margin:10px; display: block; } .carousel .owl-content .det a.show-count span.more-details{ background:#ffffff; border: 1px solid #7a7a7a; border-radius: 6px; bottom: 0; color: #7a7a7a; padding: 7px 10px; position: absolute; right: 0;} .carousel .owl-content .det a.show-count span.more-details:hover{color:#000;} /*En ce moment custom design:*/ /*.progarray.moment{border-top:1px solid #dedede;}*/ .prog-moment{border-bottom: 3px solid #f9f9f9; float: left; /*padding: 10px 2%; width: 45%;*/width:100%;padding: 0;} .prog-moment.par{/*border-left: 1px solid #dedede;*/} .prog-moment .moment-top{/*height:40px;border-bottom:1px solid #dedede;*/padding:5px 0;} .prog-moment .moment-bottom{height:105px;padding-top:10px;overflow:hidden;position:relative;} .prog-moment .moment-topl{float:left; width:14.666%;position: relative;margin-right:2%;max-height:75px;} .prog-moment .moment-topl .vertu, .progarray .rows .vertu {padding-top: 100%; /* forces 1:1 aspect ratio */} .prog-moment .moment-topl .img-container, .progarray .rows .img-container{ position: absolute; top: 0; bottom: 0; left: 0; right: 0; text-align:center; /* Align center inline elements */ font: 0/0 a;} .prog-moment .moment-topl .img-container:before, .progarray .rows .img-container:before{ content: ' '; display: inline-block; vertical-align: middle; height: 100%; } .prog-moment .moment-topl .img-container img, .progarray .rows .img-container img{ vertical-align: middle; display: inline-block; } .prog-moment .moment-topc{float:left; width:53.0925%; margin-right:2%;} .prog-moment .moment-topc h3, .prog-moment .moment-topc h3 a{color:#000; font-size:14px; font-weight:400; text-decoration:none;} .prog-moment .moment-topc h3{padding-bottom:4px;} .prog-moment .moment-topc span.time, .prog-moment .moment-topc span.type{display:block;color:#747474;} .prog-moment .moment-topr{float:right; width:28.2407%;text-align:right;} .prog-moment .moment-topr span{border:1px solid #dedede; border-radius:5px; padding:3px 8px;} .prog-moment .moment-bottom h3, .prog-moment .moment-bottom h3 a{margin:0; text-transform:uppercase; color:#2d2d2d;text-decoration:none;} .prog-moment .moment-bottom .left{float:left; width:26%; margin-right:3%;} .prog-moment .moment-bottom .right{float:left;width:71%;} .prog-moment .moment-bottom .right p, .prog-moment .moment-bottom .right h4{margin:5px 0;} .prog-moment .moment-bottom .right h4 {font-weight:400;} .prog-moment .moment-bottom .right a.show-count{text-decoration:none;} .prog-moment .moment-bottom .right a.show-count span.more-details{border: 1px solid #7a7a7a; border-radius:6px; padding:7px 10px; position:absolute; right:0; bottom:0;color: #7a7a7a;background:#fff;} .prog-moment .moment-bottom .right a.show-count span.more-details:hover{border: 1px solid #101010;color: #000;} /*One channel schedule page design:*/ #prlcont.channel .selector{border-bottom:1px solid #dedede;} #prlcont.channel .selector .sel-left{height:45px; padding-top:5px;} .sel-left .chans-mainimg{float:left; width:12.2%; max-width:100px; margin-right:2%;} .sel-left .chans-maintitle{float:left; width:80%;height:35px;} .sel-left .chans-maintitle h1{font-size:18px;text-transform:uppercase;position:relative; top:50%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%);} #prlcont.channel .carousel {padding: 10px 4%;width: 88%; margin:0 2%;} #prlcont.channel .tvchannels{height: 70px;text-align: center; display:block;border-right:1px solid #dedede;} #prlcont.channel .tvchannels a img {width:90%;position: relative;/*top: 50%;*/max-width:70px; /*-webkit-transform: translateY(50%); -ms-transform: translateY(50%); transform: translateY(50%);*/ -webkit-opacity: 0.4; -moz-opacity: 0.4; filter:alpha(opacity=40); display: inline-block; vertical-align: middle; } #prlcont.channel .carousel .owl-buttons .owl-prev{left:-30px;top:25px;} #prlcont.channel .carousel .owl-buttons .owl-next{right:-30px;top:25px;} #prlcont.channel .progcl{margin:0; padding: 5px 0;/*height:98px;*/} #page.channel #prlcont.channel .carousel .owl2-nav .owl2-prev{left:-30px;top:25px;display:block !important;} #page.channel #prlcont.channel .carousel .owl2-nav .owl2-next{right:-30px;top:25px;display:block !important;} #page.channel #prlcont.channel .tvchannels{border:0; text-align:center;} #page.channel #prlcont.channel .tvchannels:before{ content: ""; display: inline-block; height: 100%; margin-right: -0.25em; vertical-align: middle;} .progcl .channel-left{width:12.1212%; float:left;border-right: 2px solid #9ccec7;height: 98px; text-align: center;} .progcl .channel-left span.time{position: relative;top: 40%;color:#2d2d2d;font-size:16px; -webkit-transform: translateY(-40%); -ms-transform: translateY(-40%); transform: translateY(-40%);} .progcl .channel-right{padding: 10px 2%; width: 83.4%;float:left;position:relative;height:78px;} .progcl .channel-right .prog-img {float: left;margin-right: 2%;width: 16.4%;max-width:100px;} .progcl .channel-right .det {float: left;width:81.4% ;} .progcl .channel-right .det .title{color: #2d2d2d; font-family: Lato-bold,sans-serif; font-size: 13px; font-weight: 600; padding-bottom: 4px; text-transform: uppercase;display:block;} .progcl .channel-right .det .type{color: #2d2d2d;font-weight: 300;padding-bottom: 4px;display: inline;} .progcl .channel-right .det .duration{color: #68b5aa;display: inline;font-family: Lato-bold,sans-serif;font-weight: 600;} .progcl .channel-right .det .subtitle{color: #68b5aa;padding-top: 4px; display:block;} .progcl .channel-right .det a.show-count{text-decoration:none;} .progcl .channel-right .det a.show-count span.chans-more-details{border: 1px solid #7a7a7a; border-radius:6px; padding:7px 10px;color:#7a7a7a;position:absolute; right:0; bottom:5px;text-transform:none;} .progcl .channel-right .det a.show-count span.chans-more-details:hover{border: 1px solid #101010;color:#000;} .active-dt a{ /*background: none repeat scroll 0 0 #9ccec7;*/ color: #646464; } .active-tm a{ color: #4e4e4e; } .ref { text-decoration: none; } .progcl img { vertical-align: top; } .progcl { border-bottom: 1px solid #dedede; margin: 4px; padding-bottom: 2px; } .owl-item img { vertical-align: top; } .open-live { text-align: center; } .categs { display: block; float: right; } /*Wheather page*/ #met-col-left{ float: left; padding: 0; width: 72.4577%; } #met-col-left #prlcont{margin:0;} .wbott, .wdesc { display:block; } .wpop, .walld{ display: inline; } .wet { color: red; } div[id*="block"]{ display:none; /*background:red;*/ } div[class*="day_"] span img{ vertical-align: middle; } div[class*="day_"] span{ width:auto; display: inline; float: left; margin: 2px 20px; } #wheather .stations{margin-bottom:5px;} #wheather .stations label{margin-left:10px;} #wheather .stations select{width:190px;} /*see style2 for more css for wheather...*/ .wcar{ cursor: pointer; } .hourlytop { margin: 20px auto; } #metcar{ display:flex; margin-top: 20px; } .mid-det{ position: relative; } .mid-1, .mid-2, .mid-3 { display: inline-block; text-align: center; position: relative; } .mid-3{ background:red; } .mid-3-top img, .mid-1 img { display: block; margin: 0 auto; } .mid-3-top-n, .mid-3-top-w{ width:100%; text-align: center; display: block; position: absolute; } .mid-3-top-n { top: 10%; } .mid-3-top-w{ top: 32%; } /*Search page and widget*/ div.search{ margin-bottom:6px; } #research input[type=text] {background:#fff;border:1px solid #fff; border-radius: 6px 0 0 6px;float:left; width: calc(83% - 10px);padding:0 0 0 10px; height:30px;color: #75716c;font-size:15px;} #research input[type=submit] {background:url(../img/bg-search.png) no-repeat center center #cccccc; border: 1px solid #cccccc; border-radius:0 6px 6px 0;float:left; width:16%;font-size:1px; text-indent:-10000px;height:32px; padding:0;} /*Tv show separate page (show.php)*/ .show-top{ display: block; background: #000000; color:#ffffff; padding-top:12px; } .show-top-left, .show-top-right{ float:left; } .show-top-left{ width: 30%;padding-right:2%; } .show-top-right{ width: 65%; } /*#page.show .progarray > div{ padding: 4px; }*/ .show-top-footer-img, .show-top-footer-text { display: inline-block; vertical-align: middle; } .show-bot { padding: 10px; text-align: justify; } .show-bot h2{font-size:18px; font-weight:normal; color:#2d2d2d;} #ytvideo{ display: block; width: 100%; border-top:1px solid #dedede; margin-bottom:15px; } #ytvideo h3{ font-weight:normal; color:#2d2d2d; } #ytvideo .iframe{float: none; clear: both; width: 100%; position: relative; padding-bottom: 56.25%; padding-top: 25px; height: 0;} #ytvideo .iframe iframe{position: absolute; top: 0; left: 0; width: 100%; height: 100%;} #page.show #ytvideo { display: block; margin: 15px 0; border:0; } #page.show #ytvideo .iframe{ display: block; margin: 15px auto; width:80%; } #page.chaninfo #tvd-info-col-left, #page.radio #tvd-info-col-left{ overflow: scroll; -webkit-overflow-scrolling:touch !important; } /*#page.chaninfo iframe,#page.radio iframe{ overflow: scroll; -webkit-overflow-scrolling:touch !important; }*/ /*Google ads*/ .skyscrapper{ position: absolute; top: 0; left: -172px; } .leaderboard, .leaderboard_mobile{ text-align: center; } .leaderboard_mobile{display:none;} .rectangle{ width:100%; text-align: center; margin-top:10px; } .adds{ margin-bottom: 10px; } body#tv-direct .skyscrapper{ top:-10px; } /*Style from style2:*/ .wcar{ border: 1px solid #dedede; cursor: pointer; line-height: 20px; text-align: center; background: #F7F7F7; } .wtop{ border-bottom: 1px solid #dedede; } .hourlytop { margin: 20px auto; } #metcar{ /*display:flex;*/ margin: 35px 20px 35px 20px; /*display: inline-block !important;*/ width: calc(100% - 40px); } .mid-det{ position: relative; } .mid-1, .mid-2, .mid-3 { display: inline-block; text-align: center; position: relative; width: 32%; vertical-align: middle; } .mid-3{ background:none; } .mid-3-top img, .mid-1 img { display: block; margin: 0 auto; } .mid-3-top-n, .mid-3-top-w{ width:100%; text-align: center; display: block; position: absolute; } .mid-3-top-n { top: 10%; } .mid-3-top-w{ top: 32%; } .bot-det-left, .bot-det-right { display: inline-block; /*padding-right: 10px;*/ width:48%; } .comp-txt, .top-det { display: block; width: 100%; } .comp-txt{ margin:10px 0; } .bot-det-title { display: block; } .bot-det { margin: 20px 0; line-height: 20px; } .locat{ display: block; margin-bottom: 10px; } .today-inner{ margin-bottom: 20px; border-top: 1px solid #838585; /*padding-top: 10px;*/ } .today-inner-left{ width: 55%; border-right: 1px solid #838585; } .today-inner-right{ width: calc(35% - 10px); margin-left: 10px; } .today-inner-left, .today-inner-right { display: inline-block; vertical-align: top; position: relative; padding-top: 10px; } .today-inner-right-txtl,.today-inner-right-txtr,.today-inner-right-val{ display: inline; margin-bottom: 8px; } .today-inner-right-txtl, .today-inner-right-txtr,.today-inner-right-val{ float: left; } .today-inner-right-block{ left:70%; position: absolute; width: 50%; } .today-inner-right-val{ /*margin-right: 4px;*/ } .sm-sun, .sm-moon { display: inline; } .sm-moon{ margin-left: 20px; } .sun-up, .sun-up-txt, .sun-set, .sun-set-txt{ display: inline-block; } .sun-up, .sun-set, .sm-moon span[class*="moon-age-"]{ width: 20px; height: 20px; background: url('../img/sun-moon.png') no-repeat; display: inline-block; } .sm-moon span[class*="moon-age-"]{ margin-bottom: -4px; } .sun-up{ background-position: 0px 8px; } .sun-set{ background-position: 0px -12px; margin-left:20px; } .sm-moon span.moon-age-1{ background-position: 0px -118px; } .sm-moon span.moon-age-2{ background-position: 0px -138px; } .sm-moon span.moon-age-3{ background-position: 0px -158px; } .sm-moon span.moon-age-4{ background-position: 0px -216px; } .sm-moon span.moon-age-5{ background-position: 0px -196px; } .sm-moon span.moon-age-6{ background-position: 0px -177px; } .sm-moon span.moon-age-7{ background-position: 0px -78px; } .sm-moon span.moon-age-8{ background-position: 0px -98px; } .mid-2-top-deg, .mid-2-top-degc, .mid-2-bot-deg, .mid-2-bot-degc, .comp-val{ color:#b5c528; } .mid-2-top-deg{ font-size: 3em; font-weight: 600; } .mid-2-top-degc{ font-size: 24px; } .mid-2-bot-deg{ font-weight: 600; } table[class*="day_"]{ text-align: left; width: 100%; } .tleft{ text-align: left; } .tleft img{ vertical-align: middle; } #metcar .owl-prev { left: -19px; top: 52px; } #metcar .owl-next { right: -19px; top: 52px; } .mid-2-top { position: relative; top: -10px; } .mid-2-top-degc { position: absolute; top: 0; margin-left: 4px; } .sun-moon-title { display: block; width: 100%; border-top: 1px solid #838585; border-right: 1px solid #838585; padding-top: 10px; } .comp-val{ text-transform: uppercase; font-style: italic; font-weight: 800; } .bot-haut-val, .wmax{ color: #FF0000; font-weight: 800; } .bot-bas-val, .wmin{ color: #0070AA; font-weight: 800; } .mid-3-bot { line-height: 20px; } .whourly .odd{ background: #F7F7F7; } .whourly th{ background: #F7F7F7; line-height: 18px; padding: 5px 0; } .today-inner-right-val{ font-weight: 800; } .today-inner-right-val[value*="Non disponible"]{ font-style: italic; font-weight: 400; } table[class*='day_'] tr td:first-of-type, table[class*='day_'] tr th:first-of-type{ padding-left:4px; } .h-active{ background: #FFFFFF; } .curent-st img{ width: 20px; height: 20px; background: url('../img/sun-moon.png') no-repeat scroll 0px -616px; display: inline-block; vertical-align: middle; } .curent-st span{ display: inline-block; color: #0070AA; } .scroll-left, .scroll-right{ display: inline-block; width: 20px; background:red; height: 133px; } .wcar img, .tleft img{ width: 50px; height: 50px; } /* * Owl Carousel Owl Demo Theme * v1.23 */ #metcar .owl-controls{ margin-top: 10px; text-align: center; } /* Styling Next and Prev buttons */ #metcar .owl-controls .owl-buttons div{ color: #FFF; display: inline-block; zoom: 1; display: inline;/*IE7 life-saver */ margin: 5px; padding: 3px 10px; font-size: 12px; -webkit-border-radius: 30px; -moz-border-radius: 30px; border-radius: 30px; background: #869791; filter: Alpha(Opacity=50);/*IE7 fix*/ opacity: 0.5; } /* Clickable class fix problem with hover on touch devices */ /* Use it for non-touch hover action */ #metcar .owl-controls.clickable .owl-buttons div:hover{ filter: Alpha(Opacity=100);/*IE7 fix*/ opacity: 1; text-decoration: none; } /* Styling Pagination*/ #metcar .owl-controls .owl-page{ display: inline-block; zoom: 1; display: inline;/*IE7 life-saver */ } #metcar .owl-controls .owl-page span{ display: block; width: 12px; height: 12px; margin: 5px 7px; filter: Alpha(Opacity=50);/*IE7 fix*/ opacity: 0.5; -webkit-border-radius: 20px; -moz-border-radius: 20px; border-radius: 20px; background: #869791; } #metcar .owl-controls .owl-page.active span, #metcar .owl-controls.clickable .owl-page:hover span{ filter: Alpha(Opacity=100);/*IE7 fix*/ opacity: 1; } /* If PaginationNumbers is true */ #metcar .owl-controls .owl-page span.owl-numbers{ height: auto; width: auto; color: #FFF; padding: 2px 10px; font-size: 12px; -webkit-border-radius: 30px; -moz-border-radius: 30px; border-radius: 30px; } #owl-demo .owl-item > div img { display: block; width: 100%; height: auto; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; margin-bottom:4px; } #owl-demo .owl-item > div{ background : #42bdc2; text-align: center; padding:50px 0px; margin:3px; color: white; font-size:32px; border:1px white; } .wrapper-with-margin{ margin:0px 50px; } #metcar .owl-controls .owl-buttons div { position: absolute; } #metcar .owl-controls .owl-buttons .owl-prev{ left: -34px; top: 55px; width: 7px; height: 12px; } #metcar .owl-controls .owl-buttons .owl-next{ right: -34px; top: 55px; width: 7px; height: 12px; } #test-show{ margin-top:30px; } #show #prlcont { margin-top: 0; } div#prlcont{ min-height:400px; } .show-top-footer-img img{ vertical-align: middle; } #chan-car {border:1px solid #dedede;} #car-top {padding: 10px 4%;width: 88%; margin:0 2%;} #chan-car .tvchannels { border-right: 1px solid #dedede; display: block; height: 70px; text-align: center; } #chan-car .tvchannels a img {width:90%;position: relative;top: 50%;max-width:70px; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%);} #chan-car .carousel .owl-buttons .owl-prev{left:-30px;top:25px;} #chan-car .carousel .owl-buttons .owl-next{right:-30px;top:25px;} .pagination{ margin: 15px auto; float: none; } /*.moment-top .type[value*="Série TV"] { background: #0FA3C3; color: #FFFFFF; } .moment-top .type[value*="Autre"] { background: #585858; color: #FFFFFF; } .moment-top .type[value*="Culture Infos"] { background: #094979; color: #FFFFFF; } .moment-top .type[value*="Divertissement"] { background: #702284; color: #FFFFFF; } .moment-top .type[value*="Jeunesse"] { background: #FF3300; color: #FFFFFF; } .moment-top .type[value*="Sport"] { background: #0B8316; color: #FFFFFF; } .moment-top .type[value*="Cinéma"] { background: #C30F3E; color: #FFFFFF; }*/ .lichan-search { display: inline; float: left; border-bottom: 1px solid #dedede; border-left: 1px solid #dedede; border-top: 1px solid #dedede; display: inline; float: left; padding: 10px; } #search #prlcont{ margin-top:0; } .ulchan-search{ text-align:center; } .ulchan-search li:nth-last-child(2){ border-right: 1px solid #dedede; } body#search .prog-moment .moment-topc { float: left; font-weight: bold; padding-top: 9px; width: 38%; } body#search .progcl .channel-left span.date{ position: relative; top: 14%; } body#search .progcl .channel-left span.time{ position: relative; top: 24%; } body#search .progcl .channel-left span.search-chanimg{ position: relative; top: 30%; } body#channels .progcl.period { background: none repeat scroll 0 0 #f4efeb; } body#channels .chans-scroll { max-height: 800px; overflow-y: scroll; } body #page.channel .progcl.period { background: none repeat scroll 0 0 #f4efeb; } #datepicker{ display:none; } #archive{ cursor: pointer; color: #000000; height:13px; } .breadcrumbs { padding: 10px 0; } .breadcrumbs a{ cursor: pointer; text-decoration:none; font-weight:bold; color: #000000; } #tvdirect-info .breadcrumbs{ margin-left:15px; } #ui-datepicker-div{ margin-top: 70px; margin-left: -16px; } .show-bot h3{padding-bottom:5px;} .show-bot p{ /*text-indent: 3em;*/ } #tvd-info-col-left .chan-desc{ text-indent: 3em; } body#programmetv .rows div[id*="car"] .owl-content{ min-height:100px; } body#programmetv div[id*="ch"].chans{ min-height:120px; } body#programmetv div.progarray .show-count .more-details{ margin-right: 10px; } #contact #prlcont, #conditions #prlcont{margin-top:0;} #conditions-cont .content p, #charte-cont .content p{ text-align: justify; text-indent: 2em; padding:0 10px 10px; margin-top:0; line-height:16px; } #conditions-cont h1, #charte-cont h1, #contact-cont h1{ border-bottom: 1px solid #dadada; color: #2d2d2d; font-family: Lato-bold,sans-serif; font-size: 16px; padding: 15px 10px; text-align: center; text-transform: uppercase; margin-bottom:20px; } #conditions-cont div, #charte-cont div, #contact-cont div{ margin:10px 0; } #conditions-cont h4, #charte-cont h4, #contact-cont h4{ color:#2d2d2d; } #conditions-cont a, #charte-cont a, #contact-cont a{ color:#7a7a7a; text-decoration:none; } /*404 not found:*/ #charte-cont .link a{color:#2d2d2d;} #charte-cont .link a:hover{text-decoration:underline;} p.nomargin{margin-bottom:0;} #contact-form{ width: 400px; margin: 0 auto; } #contact-form label{ margin-bottom: 10px; float: left; } #contact-form input[name="name"],#contact-form input[name="email"], #contact-form textarea{ display:inline-block; float:right; margin-bottom: 10px; width: 250px; } #contact-form input{height:20px;} #contact-form input, #contact-form textarea{border:1px solid #e7e7e7;border-radius:5px;} #contact-form textarea{max-width:400px;} #contact-cont #errors{ margin: 20px auto; text-align: center; } #contact-cont #submit{ float: right; height:30px; padding:0 15px; background:#ccc;margin-bottom:10px;color:#2d2d2d; text-transform:uppercase; } #contact-cont input#submit:hover{ background:#000;color:#fff;border:1px solid #000; } #archive a{ display: none; } #contact-form > #captcha_entered { margin-left: 22px; margin-top: 8px; } a:active,a:focus,select:active,select:focus { outline: none; } /* Targetting Webkit browsers only. FF will show the dropdown arrow with so much padding. */ @media screen and (-webkit-min-device-pixel-ratio:0) { select {padding-right:18px} } /* Large screens ----------- */ @media only screen and (max-width : 1024px) { } @media only screen and (min-width : 980px) and (max-width : 1024px) { #tvd-col-right .right a{font-size:14px;} #tvd-col-right .right {padding:0 2%; width:44%;} } @media only screen and (min-width : 980px) { #header img.under1180{display:none;} } /*Styles for screen 980px and lower*/ @media screen and (max-width: 980px) { #header{background:none;height:auto;} #header img.under1180{width:100%;display:block;} #header .logo {position:absolute; top:40%; left:15%;padding:0;width:85%;} #header .logo img{width:50%;} #header nav {margin-top: -28px;} #content {margin-top: 15px;} #progleft{width:100%;float:none;} #tvd-col-right{width:100%; float:none;margin-top:10px;} #tvd-col-right .col-right-cont{float:left; width:48%; margin-right:2%;padding: 10px 2% 0;} #tvd-col-right .tv-banners{float:left;width:46%;} /*tv-direct.php:*/ #tvd-col-left, #tvd-info-col-left, #met-col-left {width:100%;float:none;} .lichan {height:80px;} /*tvdirect-info */ } @media only screen and (max-width : 780px) { #footer .f-top{padding:12px 20px;} #footer .f-top .right{float:none; text-align:center; padding-bottom:8px;} #footer .f-top .left{float:none; text-align:center;} } /*Styles for screen 720px and lower*/ @media only screen and (max-width : 720px) { /*Create custom dropdown menu for 2 submenus for programme*/ #prlmenu ul { display: none; height: auto; margin:0; padding:0; border-radius:0; } .ulpr-menu {margin-bottom:5px;} #prlmenu ul.ulpr{background: none repeat scroll 0 0 #fff; } #prlmenu ul.sulpr{background: none repeat scroll 0 0 #9ccec7;} #prlmenu ul li{display: block;float: none;width: 100%; border-top:1px dashed #585b5b;padding:8px 0;} #channels .slipr{width:100%;} #prlmenu a#ulpr-pull { display: block; background-color: #fff; width: 92%; position: relative; color:#2d2d2d; padding:8px 8% 8px 0; text-align:right; text-transform:uppercase; text-decoration:none; font-size:14px; } #prlmenu a#sulpr-pull{ display: block; background-color: #9ccec7; width: 92%; position: relative; color:#2d2d2d; padding:8px 8% 8px 0;; text-align:right; text-transform:uppercase; text-decoration:none; font-size:14px; } #prlmenu a#ulpr-pull:before, #prlmenu a#sulpr-pull:before { content:""; background: url('../../img/nav-iconulpr.png') no-repeat; width: 30px; height: 30px; display: inline-block; position: absolute; left: 30px; top: 5px; } /*Create dropdown menu for channels on programme page*/ #car-top{/*display:none;*/} .chan-menu{display:block !important;} .chan-menu ul{ display: none; height: auto; margin:0; padding:0; border-radius:0; } .chan-menu ul.chanul{background: none repeat scroll 0 0 #9ccec7;height:300px; overflow-y: scroll;} .chan-menu ul li{display: block;float: none;width: 100%; border-top:1px dashed #585b5b;padding:8px 0;} .chan-menu a#chan-pull{ display: block; background-color: #9ccec7; width: 92%; position: relative; color:#2d2d2d; padding:8px 8% 8px 0;; text-align:right; text-transform:uppercase; text-decoration:none; font-size:14px; } .chan-menu a#chan-pull:before { content:""; background: url('../img/nav-iconulpr.png') no-repeat; width: 30px; height: 30px; display: inline-block; position: absolute; left: 30px; top: 5px; } .chanli{text-align:center;} .chanli, .chanli a {color: #4c0005;cursor: pointer;} .chanli a{text-decoration:none;text-transform: uppercase;} .chanul li:hover, .chanul li:hover a {color: #fff;} /*end channels menu*/ /*.prog-moment .moment-topc{width:18%;} .prog-moment .moment-topr{width:52%;}*/ /*.lipr{width:20%;padding:5px 0;}*/ /*Google ads style:*/ .leaderboard{display:none;} .leaderboard_mobile{display:block;} /*weather:*/ .today-inner-left{width:60%;} .today-inner-right{width:calc(40% - 10px);} .today-inner-right-block{left: 60%;width:40%;} } @media screen and (max-width: 650px) { .today-inner-left{width:100%; border-right:0;} .today-inner-right{width:100%;margin-left:0;} .sun-moon{border-bottom:1px solid #838585; padding-bottom:5px;} .sun-moon-title{border-right:0;} .today-inner-right-block{left: 50%;width: 50%;} } /*Styles for screen 600px and lower*/ @media screen and (max-width: 600px) { .lichan {height:46px;} #tv-direct .lichan img { max-width: 93%; } } @media screen and (max-width: 568px) { /*optimize header logo view*/ #header .logo{left:10%; top:20%;} #header .logo img{width:82%;} .selector .sel-left{padding-top:0;} .owl-theme .owl-controls .owl-buttons .owl-prev{left:-7%;} .owl-theme .owl-controls .owl-buttons .owl-next{right:-7%;} .chans a img{width:90%;} /*.progarray .chans{height:108px;}*/ /*.progarray .rows{height:106px;overflow:hidden;}*/ #prlcont.channel .carousel .owl-buttons .owl-prev{left: -6%;} #prlcont.channel .carousel .owl-buttons .owl-next{right: -6%;} } /*Iphone 5 design*/ @media only screen and (min-width : 320px) and (max-width : 568px) { .lichan {padding: 3.7%;} #footer .f-top .right ul{margin:0;padding:0;} #footer .f-top .right ul li{margin-left:10px; margin-right:10px; padding: 3px 0;} } @media screen and (max-width: 500px) { /*.prog-moment .moment-top{height:58px;}*/ /*.prog-moment .moment-topl{width:50%;} .prog-moment .moment-topc{width:50%;text-align:right;} .prog-moment .moment-topr{width:100%; padding-top:0;}*/ .prog-moment .moment-bottom h3{font-size:14px;} .prog-moment .moment-bottom .right p{margin:5px 0 0;} /*one item per line for en ce moment...*/ /*.prog-moment{width:100%;padding: 0;}*/ .prog-moment.par{border-left:0 none;} .prog-moment .moment-bottom{height:95px;} #prlcont.channel .selector .sel-left{height:32px;} .sel-left .chans-mainimg{width:17.2%;} .sel-left .chans-maintitle{height:25px;line-height:15px;} .sel-left .chans-maintitle h1{font-size:15px;position:relative; top:50%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%);} /*pagination*/ .selector .sel-left{width:100%;text-align:center;} .pagination{margin: 10px auto 15px; float:none;} } @media screen and (max-width: 460px) { .programme #car-top-shows.carousel{width:100%;} /*.carousel{width:73%;}*/ .carousel{width:100%;} } @media screen and (max-width: 450px) { /*optimize header logo view*/ #header .logo{left:10%; top:10%;} #header .logo img{width:82%;} #tvd-col-left h1{text-align:left;} .mlichan{height:80px;} #tvd-col-right .right{height:80px;width: 47.682%;} /*.slipr {width: 25%;padding:5px 0;}*/ .sulpr {padding:5px 0;} .owl-theme .owl-controls .owl-buttons .owl-prev{left:-8%;top:0.4em;} .owl-theme .owl-controls .owl-buttons .owl-next{right:-8%;;top:0.4em;} .progcl .channel-left{width: 13.121%;} .progcl .channel-right{width: 81.4%;} /*Weather:*/ .mid-det .mid-1{width:25%;} .mid-det .mid-2{width:40%;} .sm-moon{display:block; margin-left:0;} .progcl .channel-right .det a.show-count span.chans-more-details{bottom:1px;} #tvd-col-right .col-right-cont {width:96%; float:none;margin-right:0;} #tvd-col-right .col-right-cont .mulchansh{padding-left:0;} #tvd-col-right .tv-banners {float: none; margin-top: 10px; text-align: center; width: 100%;} /*new style for tv-en-direct page*/ ul li.lichan:nth-child(5n+5) {border-right: 1px solid #dedede;} ul li.lichan:nth-child(3n+3) {border-right: 0 none;} .lichan{width:25.6%;} } @media screen and (max-width: 420px) { #tv-direct .lichan img { max-width: 90%; } } @media screen and (max-width: 400px) { } @media only screen and (max-width : 350px) { /*.prog-moment .moment-bottom .right p{margin:4px 0 0;}*/ #programmetv #tvd-col-right .left{width:47.9%;} #programmetv #tvd-col-right .right{width: 47.482%;} #tvd-col-right .right a{font-size:13px;} #prlcont.channel .carousel .owl-buttons .owl-prev{left: -8%;} #prlcont.channel .carousel .owl-buttons .owl-next{right: -8%;} #prlcont.channel .carousel{margin: 0 3%;width: 86%;} } /*Other PseudoSmartphones*/ @media only screen and (max-width : 320px) { .lichan {padding: 3.7%;} .mlichan img{max-width:90%;} } .moment-topl a img{ /*max-height:30px;*/ } /*responsive table for wheather:*/ .table-bordered { border: 1px solid #ddd; border-collapse: separate; border-radius: 4px; } table { width: 100%; } @media only screen and (max-width: 800px) { /* Force table to not be like tables anymore */ #no-more-tables table, #no-more-tables thead, #no-more-tables tbody, #no-more-tables th, #no-more-tables td, #no-more-tables tr { display: block; } /* Hide table headers (but not display: none;, for accessibility) */ #no-more-tables thead tr { position: absolute; top: -9999px; left: -9999px; } #no-more-tables tr { border: 1px solid #ccc; } #no-more-tables td { /* Behave like a "row" */ border: none; border-bottom: 1px solid #eee; position: relative; padding-left: 50%; white-space: normal; text-align:left; line-height: 20px; } #no-more-tables td:before { /* Now like a table header */ position: absolute; /* Top/left values mimic padding */ top: 6px; left: 6px; width: 45%; padding-right: 10px; white-space: nowrap; text-align:left; font-weight: bold; line-height: 12px; } /* Label the data */ #no-more-tables td:before { content: attr(data-title); } } a#back{ display:none; } .ui-btn-left, .ui-btn-right { position: absolute; top: 1em !important; } #days-menu-car .lipr, #hours-menu-car .slipr,#days-menu-chan .lipr, #hours-menu-chan .slipr { width: 100%; } #days-menu-car div.owl-item{ /*margin: 0 5px;*/ } .disabled{ /*display: none;*/ /*color:#9E9E9E;*/ opacity: .3; } /*New Phonegap style:*/ a{cursor:pointer; } body.ui-mobile-viewport{font-family:open sans, sans-serif; } /*menu elements*/ .menu{ height:68px; background: #de243a; } #menu-head h1{font-size:16px; color:#fff;font-weight:100;text-shadow:none;font-family:open sans, sans-serif;line-height:55px; padding:0.6em 0 0; margin:0;} .ui-nodisc-icon.ui-link.ui-btn-left.ui-btn.ui-icon-bars.ui-btn-icon-notext.ui-shadow.ui-corner-all:after, .ui-nodisc-icon.ui-link.ui-btn-right.ui-btn.ui-icon-bars.ui-btn-icon-notext.ui-shadow.ui-corner-all:after { background-size: 40px 28px; border-radius: 0; width: 38px; margin-left: -15px; } .ui-nodisc-icon.ui-link.ui-btn-left.ui-btn.ui-icon-bars.ui-btn-icon-notext.ui-shadow.ui-corner-all, .ui-nodisc-icon.ui-link.ui-btn-right.ui-btn.ui-icon-bars.ui-btn-icon-notext.ui-shadow.ui-corner-all{ background: none repeat scroll 0 0 #de243a; border: 0 none; border-radius: 0; box-shadow: none; top: 25px !important; } #mennu{ right: 1.5em; } .ui-btn-icon-notext, .ui-header button.ui-btn.ui-btn-icon-notext, .ui-footer button.ui-btn.ui-btn-icon-notext{width:3em;} #nav-panel ul li a.ui-btn{background:#555556; border-bottom:2px solid #d2d2d2;color:#fff; font-weight: 400; text-shadow:none;line-height:50px;} #nav-panel ul li a.ui-btn:hover{background:#333334;} .ui-listview .ui-li-has-thumb > img:first-child, .ui-listview .ui-li-has-thumb > .ui-btn > img:first-child, .ui-listview .ui-li-has-thumb .ui-li-thumb{left:12px;top:auto;max-height:3em;} .ui-listview > .ui-li-has-thumb > .ui-btn, .ui-listview > .ui-li-static.ui-li-has-thumb{min-height:2em;} #menu-head #back{background: none repeat scroll 0 0 #de243a; border: 0 none; border-radius: 0; box-shadow: none; top: 25px !important;} #menu-head #back:after{background-size: 18px 38px; border-radius: 0; height: 30px; margin-left: -15px; margin-top: -15px; width: 28px;} /*programme index*/ #shows-car{/*height:180px;*/overflow: hidden;} #shows-car .tvshows{position:relative;} #shows-car .tvshows-img{text-align:center;} #shows-car .tvshows-txt{position:absolute; bottom:0;width:100%;background: rgba(0, 0, 0, 0.8);padding: 6px 6px 20px;} #shows-car .tvshows-txt .tvshows-txt-left{float:left;width:70%;} #shows-car .tvshows-txt .tvshows-txt-left a{color:#fff;text-shadow:none; font-weight:400; font-size: 16px; text-decoration:none; } #shows-car .tvshows-txt .tvshows-txt-left span{display:block;color:#fff; text-shadow:none; font-weight:400;text-overflow: ellipsis;text-shadow: none;white-space: nowrap;} #shows-car .tvshows-txt .tvshows-txt-left span.time{padding-top:3px;} #shows-car .tvshows-txt .tvshows-txt-right{float:right;width:30%;text-align:center;} #shows-car .owl-controls .owl-page{margin: 0 10px;} #shows-car .owl-controls{position:absolute; bottom:0; width:100%; text-align:center;} #shows-car .owl-controls .owl-page span{background:#ffffff !important;height:8px; width:8px; margin:4px 4px 8px; opacity:1;} #shows-car .owl-controls .owl-page.active span{background:#de243a !important;height:8px; width:8px; margin:4px 4px 7px;border:1px solid #fff;} .ui-page-theme-a a:hover, html .ui-bar-a a:hover, html .ui-body-a a:hover, html body .ui-group-theme-a a:hover{color:#000;} #spinner{ /* display:none;*/ width:100%; } #spinner .container{/*display:block; margin:25% auto 0;max-width:550px; width:100%*/position:absolute; bottom:0; top:0; left:0; right:0; /*height:65%;*/margin:auto; /*max-width:550px;*/ width:100%;z-index:9997;background:#de243a;} .loading1{text-align:center; width:100%;display:block;height:100%;} .loading1:before{ content: ''; display: inline-block; height: 100%; vertical-align: middle; margin-right: -0.25em; /* Adjusts for spacing */ } .vertical-div{ display: inline-block; vertical-align: middle; } .loading1 .load-title {} .loading1 .load-text {margin-top:5%;margin-bottom:5%;} .loading1 img{/*width:100%;height:auto;*/} /*.loading2{display:block; margin:4% auto 0; max-width:185px; text-align:center; width:40%;}*/ /*.loading2 img{width:100%;height:auto;}*/ #inner-spinner{ border:2px solid #fff;/*border-radius:16px;*/ width:60%; max-width:550px; margin:0 auto; text-align:left; height:4px; } #innersp-activ{ /*margin-top: -120%;*/ /*position: relative;*/ z-index: 9999; float:left; /*z-index:9999;*/ width: 0px; height: 4px; background-color: #FFFFFF; /*border-radius:8px;*/ -webkit-transition-property: width; -webkit-transition-duration: 5s; -webkit-transition-timing-function: linear; -webkit-transition-delay: 0; /* Standard syntax */ transition-property: width; transition-duration: 5s; transition-timing-function: linear; transition-delay: 0; } .show-top-right .top-top .time-dur span { display: block; } .time-dur, .chans-mainimg { display: inline-block; width: 45%; } .time-dur .hour{ color: #c9c9c9; } .time-dur .duration{ color: #686868; } .shows-subtitle { border-top: 2px solid #343434; margin-top: 10px; padding:8px 10px 12px } .shows-subtitle h2{font-weight:600;} #page.show .channel{ width:100%; padding:0; } #page.show .dist-bord{ padding-top:4px; border-bottom: 2px solid #343434; height:1px; background: #000000; } #page.show .show-top-right span { padding-bottom: 10px; } #page.show .title { font-size: 1.5em; padding-top: 4px; font-weight:600; } #page.channel #car{ width:90%; } #page.channel #car button.slick-prev{ background: url(images/owl2-prev.png) no-repeat; background-size:100%; width:35px; height: 35px; display: block; position: relative; left: -10px; top: -40px; float:left; } #page.channel #car button.slick-next{ background: url(images/owl2-next.png) no-repeat; background-size:100%; width:35px; height:35px; display: block; position: relative; right: -10px; top: -40px; float:right; } #page.channel .carousel .slick-slide img{ opacity: 0.4; /*transform: translateY(50%);*/ } #page.channel .carousel .slick-slide img.chan-act{ -webkit-opacity: 1; -moz-opacity: 1; filter:alpha(opacity=100); opacity: 1; transform: scale(1.2, 1.2); -webkit-transform: scale(1.2, 1.2); -moz-transform: scale(1.2, 1.2); /*top:20px;*/ } #car .slick-track .tvchannels{text-align: center;} #car .slick-track .tvchannels:before { content: ''; display: inline-block; height: 100%; vertical-align: middle; margin-right: -0.25em; /* Adjusts for spacing */} #car .slick-track .tvchannels a { display: inline-block; vertical-align: middle; } @media all and (orientation:landscape) and (max-width : 640px){ /* Styles for Landscape screen */ /*#spinner { position: absolute; top: -110%;*/ /*width: 100%;*/ } #innersp-activ{ /* margin-top: -84% */ } /*@media only screen and (max-width : 640px) { #spinner { position: absolute; top: -90%; width: 100%; } }*/ body #zload{ /*display:none;*/ background:#303131; position:absolute; top:0; left:0 ; z-index:-1; -webkit-opacity: 0.8; -moz-opacity: 0.8; filter:alpha(opacity=80); opacity: 0.8; width: 100%; height: 100%; } body #zload > img{ display: block; margin: 0 auto; position: fixed; top: 50%; left: 49%; -webkit-opacity: 1; -moz-opacity: 1; filter:alpha(opacity=100); opacity: 1; width:30px; } body #page { position: relative; } body #menu-head.menu/*, body #nav-panel*/{ z-index: 9995; } #chan-chan{ background: #FFFFFF; } /*special ajax loader!!*/ /*.sprite-spinner { overflow: hidden; position: relative; display:inline-block; text-align:left; } .spinner-wrap { text-align:center; margin:100px auto; }*/ /*some special responsiveness*/ @media screen and (max-width: 530px) { .vertical-div{width:500px;} } @media screen and (max-width: 500px) { .vertical-div{width:450px;} } @media screen and (max-width: 450px) { .vertical-div{width:400px;} } @media screen and (max-width: 400px) { .vertical-div{width:350px;} } @media screen and (max-width: 350px) { .vertical-div{width:300px;} } @keyframes spin { to { transform: rotate(1turn); -webkit-transform: rotate(1turn); -moz-transform: rotate(1turn); -ms-transform: rotate(1turn); -o-transform: rotate(1turn);} } .progress { position: relative; display: inline-block; width: 5em; height: 5em; margin: 0 .5em; font-size: 6px; text-indent: 999em; overflow: hidden; animation: spin 1s infinite steps(8); -webkit-animation: spin 1s infinite steps(8); -moz-animation: spin 1s infinite steps(8); -o-animation: spin 1s infinite steps(8); top:20em; left:45%; } .small.progress { font-size: 6px; } .large.progress { font-size: 24px; } .progress:before, .progress:after, .progress > div:before, .progress > div:after { content: ''; position: absolute; top: 0; left: 2.25em; /* (container width - part width)/2 */ width: .5em; height: 1.5em; border-radius: .2em; -webkit-border-radius: .2em; -moz-border-radius: 12px; background: #eee; box-shadow: 0 3.5em #eee; /* container height - part height */ -webkit-box-shadow: 0 3.5em #eee; /* Safari 3-4, iOS 4.0.2 - 4.2, Android 2.3+ */ -moz-box-shadow: 0 3.5em #eee; transform-origin: 50% 2.5em; /* container height / 2 */ } .progress:before { background: #555; } .progress:after { -webkit-transform: rotate(-45deg); -moz-transform: rotate(-45deg); -ms-transform: rotate(-45deg); -o-transform: rotate(-45deg); transform: rotate(-45deg); background: #777; } .progress > div:before { -webkit-transform: rotate(-90deg); -moz-transform: rotate(-90deg); -ms-transform: rotate(-90deg); -o-transform: rotate(-90deg); transform: rotate(-90deg); background: #999; } .progress > div:after { -webkit-transform: rotate(-135deg); -moz-transform: rotate(-135deg); -ms-transform: rotate(-135deg); -o-transform: rotate(-135deg); transform: rotate(-135deg); background: #bbb; } .ui-fixed-hidden{ position:unset !important; }
www/css/style.css
@font-face { font-family: 'Lato-regular'; src: url('../fonts/Lato-Regular.eot'); /* IE9 Compat Modes */ src: url('../fonts/Lato-Regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/Lato-Regular.woff') format('woff'), /* Modern Browsers */ url('../fonts/Lato-Regular.ttf') format('truetype'); font-style: normal; font-weight: normal; text-rendering: optimizeLegibility; } /* Webfont: Lato-Bold */ /@font-face { font-family: 'Lato-bold'; src: url('../fonts/Lato-Bold.eot'); /* IE9 Compat Modes */ src: url('../fonts/Lato-Bold.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/Lato-Bold.woff') format('woff'), /* Modern Browsers */ url('../fonts/Lato-Bold.ttf') format('truetype'); font-style: normal; font-weight: bold; text-rendering: optimizeLegibility; } /*solve some problems from jquery mobile css:*/ .ui-overlay-a, .ui-page-theme-a, .ui-page-theme-a .ui-panel-wrapper{text-shadow:none;} /** * ================================================ * I.01 - Reset default browser styles * Based on Eric Meyer's CSS reset, v1.0 2008-02-12 * http://meyerweb.com/eric/tools/css/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, font, 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 { margin: 0; margin-left:auto; margin-right:auto; padding: 0; border: 0; outline: 0; vertical-align: baseline; } body { line-height: 1; } body { -webkit-user-select: none; -webkit-touch-callout: none; } ol, ul { list-style: none; } blockquote, q { quotes: none; } blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; } html { height: 100% } body{ background: #e2e7ea; margin: 0 auto; padding: 0; height: 100%; color:#7a7a7a; font-family:Lato-regular, sans-serif; font-weight:400; font-size: 13px; } .clear{clear:both;} #header{ background: url(../img/top-banner.jpg) no-repeat center center; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; height:367px; } .inner-cont{max-width:1180px; margin:0 auto;position:relative;} #header .logo{padding-top:122px;padding-left:177px;} #header .logo a, #header .logo a.active{background:none;} /*Footer*/ #footer{margin-top:10px;} #footer .inner-cont{background:#ffffff; border-radius:5px 5px 0 0;} #footer .f-top{background:#2d2d2d;border-radius:5px 5px 0 0; color:#fff;padding:20px;} #footer .f-top .left{float:left;} #footer .f-top .right{float:right;} #footer .f-top .right ul{margin:0;} #footer .f-top .right ul li{display:inline-block;margin-right:14px;} #footer .f-top .right ul li:last-child {margin-right:0;} #footer .f-top .right ul li a {color:#fff; text-decoration:none;} #footer .f-top .right ul li a:hover{text-decoration:underline;} #footer .f-bottom{padding:25px; text-align:center;} #footer .f-bottom p{line-height:18px;color:#2d2d2d;} #footer .f-bottom p a, #footer .f-bottom p a.active{background:none; text-decoration:none;color:#2d2d2d;} #footer .f-top .right ul li a.active{background:none;} .scrollup { background: url("../img/up.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0); bottom: 25px; display: none; height: 48px; outline: medium none !important; position: fixed; right: 5%; text-indent: -9999px; width: 48px; } /*content*/ #content{margin-top:50px;} #tvd-col-left, #tvd-info-col-left{ width:100%; float: left; background:#fff; border-radius:5px 5px 0 0; border-bottom:3px solid #; } #tvd-col-left h1{text-transform:uppercase;color: #2d2d2d; font-size:16px; font-family:Lato-bold, sans-serif; padding:15px 10px;text-align:center;border-bottom:1px solid #dadada;} #tvd-info-col-left{ text-align:justify; } /*tvdirect-info style*/ #tvdirect-info .selector .sel-left{width:calc(100% - 30px);float:none;border-bottom: 1px solid #dedede;padding-left:15px;padding-right:15px;} #tvdirect-info .selector .sel-left {padding-top: 5px;} #tvdirect-info .sel-left .chans-mainimg {float: left;margin-right: 2%;max-width: 125px;width: 20%;height:85px;} #tvdirect-info #tvd-info-col-left .selector img {height: auto;margin-right: 0;width: 100%;max-width:125px; max-height:83px;position: relative; top: 50%;display:block; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%);} #tvdirect-info #tvd-info-col-left .chans-voir a{display:block;height:85px;} #tvdirect-info .sel-left .chans-maintitle {height:85px;width:55%;float:left;} #tvdirect-info .sel-left .chans-voir{width:23%; float:left;height:85px;} #tvdirect-info .sel-left .chans-voir a{} #tvdirect-info .chan-desc{padding:15px;} #tvdirect-info .chan-desc h2{color:#2d2d2d;font-size:18px; margin-bottom:15px;} #tvdirect-info .desc-cont{font-size:14px;margin-bottom:20px;} #tvdirect-info .desc-cont strong{font-family: 'Lato-bold';} #tvdirect-info #tvd-info-col-left .sel-left .chans-voir img, #tvdirect-info #tvd-info-col-left .open-live img {max-width:209px;width:100%;} #tvdirect-info #tvd-info-col-left .open-live img{margin:0 auto; height:auto;} /*right column:*/ /*#tvd-col-right{ width:26.52542%; float: right; border-radius:5px 5px 0 0; }*/ /*#tvd-col-right .col-right-cont{ padding: 10px 2.55591% 0; border-bottom:3px solid #8abbb7; background:#fff; }*/ /*#tvd-col-right h2{text-transform:uppercase;color: #fff; font-size:14px; font-family:Lato-bold, sans-serif; padding:10px;text-align:left;background:#2d2d2d;border-radius:5px 5px 0 0;}*/ .mulchansh { padding-left: 10px; } .mlichansh .det, .mlichansh .prog-img { float: left; } .mlichansh .prog-img{width:35%;max-width:105px;} .mlichansh .det { width: 63%; padding-left: 4px; } .mlichansh .right-shows { float: right; margin-top: 8px; } .dates{ display: block; } .mlichansh { border-bottom: 1px solid #dedede; padding: 4px 0; } .tv-banners{margin-top:10px;} #tvd-col-right .left{float:left; width:46.7%; padding:3% 2%; height:88%;border-right: 1px solid #dedede;} #tvd-col-right .right{float:left;width:48.68178%; height:120px;display:table;} #tvd-col-right .right a{ text-align:center; vertical-align:middle; text-transform:uppercase; color:#9bcfc3; text-decoration:none;font-size:16px; font-family:Lato-bold, sans-serif;line-height:normal; display:table-cell; vertical-align:center;} #tvd-col-right .right a:hover{color:#2d2d2d;} #tvd-col-right .right-col-ads{margin-top:5px;width:100%; overflow: hidden;} #tvd-col-right .right-col-ads img{display:block;} .lichan { width: 12%; float: left; height: 116px; padding:3.9%; border-bottom: 1px solid #dedede; border-right: 1px solid #dedede; text-align:center; } ul li.lichan:nth-child(5n+5) { border-right:0 none; } .lichan .helper{display: inline-block;height: 100%;vertical-align: middle;} .mlichan .helper{display: inline-block;height: 96%;vertical-align: middle;} .mlichan { width: 100%; float: left; height: 120px; padding:0; border-bottom: 1px solid #dedede; text-align:center; } #tvd-col-right ul.mulchansh li:last-of-type{border-bottom:0 none;} ul { list-style: none; } .lichan img{ max-height: 100%; max-width: 100%; vertical-align: middle; transition: all 0.5s ease 0s; } .lichan img:hover{ transform: scale(1.1, 1.1); } #tv-direct .lichan img{max-width: 95%;} .mlichan img{ max-height: 96%; max-width: 100%; vertical-align: middle; } .ulchan, .mulchan{ padding-left:0; } /*programme tv main page design:*/ #progleft{ background:none; padding:0; /*width:72.45766%;*/ width:100%; float: left; } .lipr, .slipr { display: inline; float: left; padding:10px 0; text-align: center; width:98%; } /*.lipr{width:11%;} */ /*.ulpr li.lipr:last-of-type {width:12%;}*/ .ulpr, .sulpr{ display: block; margin: 0; padding: 0; } .ulpr{background:#fff;border-radius:5px 5px 0 0;} .lipr a{color:#838383;} .lipr img[title]{font-size:13px; font-weight:400;line-height:13px;} .ulpr li:hover{/*background:#9ccec7; color:#fff;*/} .sulpr{/*background:#9ccec7; border-radius:0 0 5px 5px;*/} #channels .slipr{width:12.5%;} .slipr{width: 14.15%;} .slipr, .slipr a{color:#838383;cursor:pointer;} .sulpr li:hover, .sulpr li:hover a {color:#fff;} .lipr a, .slipr a{ text-decoration: none; font-family:open sans, sans-serif; font-size: 20px; font-weight: 100; text-decoration: none; text-shadow: none; color:#4e4e4e; } #prlcont{ background:#fff; width:96.49124%; padding:10px 1.75438% 0; position: relative; border-radius:5px 5px 0 0; border-bottom:3px solid #FFFFFF; /*margin-top:10px;*/ } .show-sh #prlcont{padding:0; width:100%;} .show-sh .sh-inner-cont{padding:3px 10px;} .selector{ width:100%; } .selector .sel-left{float:left; color:#2d2d2d; font-family:Lato-bold, sans-serif;font-weight:bold;font-size:15px;/*padding-top:15px;*/width:calc(100% - 159px);} .selector .sel-left p{margin:0 0 10px;} #channels .selector .sel-left{width:100%;} /*pagination*/ .pagination { float: left; width: 170px; margin-bottom:15px; border:1px solid #dedede; margin-left:30px; margin-top:10px; } .pagination .owl-item {} .pag-act{ background:#dedede; } .pagination .pag-elem{ cursor:pointer; display: block; padding: 5px; width: calc(100% - 10px); } .pagination .owl-content { text-align: center; } .show-top-info1 { display: block; } #pagination .owl-controls .owl-buttons .owl-prev{top:-1px; left:-30px;} #pagination .owl-controls .owl-buttons .owl-next{top:-1px; right:-30px;} #pagination.owl-theme .owl-controls .owl-buttons .owl-prev { background: url('images/sprite-carousel2.png') no-repeat scroll left -25px transparent; } #pagination.owl-theme .owl-controls .owl-buttons .owl-next { background: url('images/sprite-carousel2.png') no-repeat scroll left 0px transparent; } .selector .sel-right{float:right;padding-bottom:9px;} select { text-transform:uppercase; padding: 12px 10px 9px; margin: 0; -webkit-border-radius:4px; -moz-border-radius:4px; border-radius:4px; background: #fff; color:#888; border:1px solid #e7e7e7; outline:none; display: inline-block; -webkit-appearance:none; -moz-appearance:none; appearance:none; cursor:pointer; } label {position:relative} body#programmetv div.sel-right label:after, body#tv-direct div.categs label:after { content:'\25BC'; font:11px "Consolas", monospace; color:#272727; right:8px; top:2px; padding:0 0 2px; position:absolute; pointer-events:none; } body#programmetv div.sel-right label:before, body#tv-direct div.categs label:before { content:''; right:2px; top:-14px; width:18px; height:37px; background:#fff; position:absolute; pointer-events:none; display:block; border:1px solid #e7e7e7;border-left:0 none; border-radius:0 4px 4px 0; /*webkit to solve */ } @media screen and (-webkit-min-device-pixel-ratio:0) { body#programmetv div.sel-right label:before, body#tv-direct div.categs label:before { right:0px; top:-12px; width:18px; height:36px; background:#fff; position:absolute; pointer-events:none; display:block; border:1px solid #e7e7e7;border-left:0 none; border-radius:0 4px 4px 0; } } .progarray .rows{border-bottom:3px solid #f9f9f9;} .chans{ display: inline-block; float: left; position:relative; } .car-sulpr-menu,.car-ulpr-menu{ background:#dedede; color: #7F7F7F; } .carousel{ } .progarray .chans{width:12.121212%;margin-right:2.8%;} .progarray .carousel{width:85%; float:left;} .progarray .carousel .owl-wrapper-outer{width:100%;/*margin-left:7%;*/} .owl-content .prog-img{float:left;width:32.7%; margin-right:3%; max-width:100px;} .owl-content .det{float:left;width:64.3%;max-width:193px;} .chans{ /*height:98px;*/ text-align:center; /*border-right: 2px solid #9ccec7;*/ width:12.121212%; } .chans a img{ /*position: relative; top: 50%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); max-width: 70px;*/ } .prog-img{ /* position: relative; top: 50%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%);*/ float:left; width:28%; margin-right:2%; } .chans-scroll .progcl .det{float:left; width:calc(70% - 26px);} .chans-scroll .progcl .det a, .chans-scroll .progcl .det span.title{text-decoration:none; color:#000; font-size:14px; font-weight:400;margin-bottom:3px;} .chans-scroll .progcl .det span.type, .chans-scroll .progcl .det span.duration{display:inline-block; color:#929292; font-size:13px;} .chans-scroll .progcl .display-time{color:#929292; font-size:13px;} .chans-scroll .progcl .on-show{float:right;width:26px; text-align: center;/*-webkit-transform-style: preserve-3d; -moz-transform-style: preserve-3d; transform-style: preserve-3d;*/} .chans-scroll .progcl .on-show:before{ content: ''; display: inline-block; height: 100%; vertical-align: middle; margin-right: -0.25em; /* Adjusts for spacing */} .chans-scroll .progcl .on-show a{color:#414141;font-size:23px; position: relative; /*top: 50%; transform: translateY(-50%);*/} .chans-scroll .progcl .on-show .chans-det-show{background: url("images/sprite-2.png") no-repeat scroll left 0 transparent;width:100%; height:17px; display: inline-block;vertical-align: middle; } .chans-scroll .progcl .on-show a:hover .chans-det-show{background: url("images/sprite-2.png") no-repeat scroll left -17px transparent;} .det .type, .det .title, .det .subtitle, .cdet .ctime, .cdet .ctitle { display: block; } .det a.show-count {color:#2d2d2d; text-decoration:none;text-transform:uppercase;} .det .duration, .cdet .ctype, .cdet .cduration{ display:inline-block;} .owl-content .det .title{font-family:Lato-bold, sans-serif;font-weight:600;font-size: 13px;color:#2d2d2d;text-transform:uppercase;padding-bottom:4px;} .owl-content .det .type{color:#2d2d2d; font-weight:300;padding-bottom:4px;} .owl-content .det .time, .owl-content .det .duration{display:inline; color: #68b5aa;font-family:Lato-bold, sans-serif;font-weight:600;} .owl-content .det .subtitle {color:989898; padding-top:4px;} .rows{ /*height:96px;*/ display: block; padding:5px 0; } .owl-theme .owl-controls .owl-buttons div { position: absolute; height:25px; width:15px; } #hours-menu-car.owl-theme .owl-controls .owl-buttons .ph-prev,#days-menu-car.owl-theme .owl-controls .owl-buttons .pd-prev,#hours-menu-chan.owl-theme .owl-controls .owl-buttons .ch-prev,#days-menu-chan.owl-theme .owl-controls .owl-buttons .cd-prev{ left: 5px; top: 8px; background: url('images/sprite-carousel2.png') no-repeat scroll left -25px transparent; } #hours-menu-car.owl-theme .owl-controls .owl-buttons .ph-next,#days-menu-car.owl-theme .owl-controls .owl-buttons .pd-next,#hours-menu-chan.owl-theme .owl-controls .owl-buttons .ch-next,#days-menu-chan.owl-theme .owl-controls .owl-buttons .cd-next{ right: 5px; top: 8px; background: url('images/sprite-carousel2.png') no-repeat scroll left 0px transparent; } #chan-car.owl-theme .owl-controls .owl-buttons .owl-prev{ /*left: -45px;*/ top: 20px; background: url('images/sprite-carousel2.png') no-repeat scroll left -25px transparent; } div[id^="car"].owl-theme .owl-controls .owl-buttons .owl-prev{ left: -17px; top: 16px; background: url('images/sprite-carousel2.png') no-repeat scroll left -25px transparent; } #chan-car.owl-theme .owl-controls .owl-buttons .owl-next{ right: -45px; top: 16px; background: url('images/sprite-carousel2.png') no-repeat scroll left 0 transparent; } div[id^="car"].owl-theme .owl-controls .owl-buttons .owl-next{ right: -6px; top: 16px; background: url('images/sprite-carousel2.png') no-repeat scroll left 0 transparent; } } #car { border: 1px solid #dedede; width:90%; } .cprogleft .progcl{ border: 1px solid #dedede; margin:10px; display: block; } .carousel .owl-content .det a.show-count span.more-details{ background:#ffffff; border: 1px solid #7a7a7a; border-radius: 6px; bottom: 0; color: #7a7a7a; padding: 7px 10px; position: absolute; right: 0;} .carousel .owl-content .det a.show-count span.more-details:hover{color:#000;} /*En ce moment custom design:*/ /*.progarray.moment{border-top:1px solid #dedede;}*/ .prog-moment{border-bottom: 3px solid #f9f9f9; float: left; /*padding: 10px 2%; width: 45%;*/width:100%;padding: 0;} .prog-moment.par{/*border-left: 1px solid #dedede;*/} .prog-moment .moment-top{/*height:40px;border-bottom:1px solid #dedede;*/padding:5px 0;} .prog-moment .moment-bottom{height:105px;padding-top:10px;overflow:hidden;position:relative;} .prog-moment .moment-topl{float:left; width:14.666%;position: relative;margin-right:2%;max-height:75px;} .prog-moment .moment-topl .vertu, .progarray .rows .vertu {padding-top: 100%; /* forces 1:1 aspect ratio */} .prog-moment .moment-topl .img-container, .progarray .rows .img-container{ position: absolute; top: 0; bottom: 0; left: 0; right: 0; text-align:center; /* Align center inline elements */ font: 0/0 a;} .prog-moment .moment-topl .img-container:before, .progarray .rows .img-container:before{ content: ' '; display: inline-block; vertical-align: middle; height: 100%; } .prog-moment .moment-topl .img-container img, .progarray .rows .img-container img{ vertical-align: middle; display: inline-block; } .prog-moment .moment-topc{float:left; width:53.0925%; margin-right:2%;} .prog-moment .moment-topc h3, .prog-moment .moment-topc h3 a{color:#000; font-size:14px; font-weight:400; text-decoration:none;} .prog-moment .moment-topc h3{padding-bottom:4px;} .prog-moment .moment-topc span.time, .prog-moment .moment-topc span.type{display:block;color:#747474;} .prog-moment .moment-topr{float:right; width:28.2407%;text-align:right;} .prog-moment .moment-topr span{border:1px solid #dedede; border-radius:5px; padding:3px 8px;} .prog-moment .moment-bottom h3, .prog-moment .moment-bottom h3 a{margin:0; text-transform:uppercase; color:#2d2d2d;text-decoration:none;} .prog-moment .moment-bottom .left{float:left; width:26%; margin-right:3%;} .prog-moment .moment-bottom .right{float:left;width:71%;} .prog-moment .moment-bottom .right p, .prog-moment .moment-bottom .right h4{margin:5px 0;} .prog-moment .moment-bottom .right h4 {font-weight:400;} .prog-moment .moment-bottom .right a.show-count{text-decoration:none;} .prog-moment .moment-bottom .right a.show-count span.more-details{border: 1px solid #7a7a7a; border-radius:6px; padding:7px 10px; position:absolute; right:0; bottom:0;color: #7a7a7a;background:#fff;} .prog-moment .moment-bottom .right a.show-count span.more-details:hover{border: 1px solid #101010;color: #000;} /*One channel schedule page design:*/ #prlcont.channel .selector{border-bottom:1px solid #dedede;} #prlcont.channel .selector .sel-left{height:45px; padding-top:5px;} .sel-left .chans-mainimg{float:left; width:12.2%; max-width:100px; margin-right:2%;} .sel-left .chans-maintitle{float:left; width:80%;height:35px;} .sel-left .chans-maintitle h1{font-size:18px;text-transform:uppercase;position:relative; top:50%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%);} #prlcont.channel .carousel {padding: 10px 4%;width: 88%; margin:0 2%;} #prlcont.channel .tvchannels{height: 70px;text-align: center; display:block;border-right:1px solid #dedede;} #prlcont.channel .tvchannels a img {width:90%;position: relative;/*top: 50%;*/max-width:70px; /*-webkit-transform: translateY(50%); -ms-transform: translateY(50%); transform: translateY(50%);*/ -webkit-opacity: 0.4; -moz-opacity: 0.4; filter:alpha(opacity=40); display: inline-block; vertical-align: middle; } #prlcont.channel .carousel .owl-buttons .owl-prev{left:-30px;top:25px;} #prlcont.channel .carousel .owl-buttons .owl-next{right:-30px;top:25px;} #prlcont.channel .progcl{margin:0; padding: 5px 0;/*height:98px;*/} #page.channel #prlcont.channel .carousel .owl2-nav .owl2-prev{left:-30px;top:25px;display:block !important;} #page.channel #prlcont.channel .carousel .owl2-nav .owl2-next{right:-30px;top:25px;display:block !important;} #page.channel #prlcont.channel .tvchannels{border:0; text-align:center;} #page.channel #prlcont.channel .tvchannels:before{ content: ""; display: inline-block; height: 100%; margin-right: -0.25em; vertical-align: middle;} .progcl .channel-left{width:12.1212%; float:left;border-right: 2px solid #9ccec7;height: 98px; text-align: center;} .progcl .channel-left span.time{position: relative;top: 40%;color:#2d2d2d;font-size:16px; -webkit-transform: translateY(-40%); -ms-transform: translateY(-40%); transform: translateY(-40%);} .progcl .channel-right{padding: 10px 2%; width: 83.4%;float:left;position:relative;height:78px;} .progcl .channel-right .prog-img {float: left;margin-right: 2%;width: 16.4%;max-width:100px;} .progcl .channel-right .det {float: left;width:81.4% ;} .progcl .channel-right .det .title{color: #2d2d2d; font-family: Lato-bold,sans-serif; font-size: 13px; font-weight: 600; padding-bottom: 4px; text-transform: uppercase;display:block;} .progcl .channel-right .det .type{color: #2d2d2d;font-weight: 300;padding-bottom: 4px;display: inline;} .progcl .channel-right .det .duration{color: #68b5aa;display: inline;font-family: Lato-bold,sans-serif;font-weight: 600;} .progcl .channel-right .det .subtitle{color: #68b5aa;padding-top: 4px; display:block;} .progcl .channel-right .det a.show-count{text-decoration:none;} .progcl .channel-right .det a.show-count span.chans-more-details{border: 1px solid #7a7a7a; border-radius:6px; padding:7px 10px;color:#7a7a7a;position:absolute; right:0; bottom:5px;text-transform:none;} .progcl .channel-right .det a.show-count span.chans-more-details:hover{border: 1px solid #101010;color:#000;} .active-dt a{ /*background: none repeat scroll 0 0 #9ccec7;*/ color: #646464; } .active-tm a{ color: #4e4e4e; } .ref { text-decoration: none; } .progcl img { vertical-align: top; } .progcl { border-bottom: 1px solid #dedede; margin: 4px; padding-bottom: 2px; } .owl-item img { vertical-align: top; } .open-live { text-align: center; } .categs { display: block; float: right; } /*Wheather page*/ #met-col-left{ float: left; padding: 0; width: 72.4577%; } #met-col-left #prlcont{margin:0;} .wbott, .wdesc { display:block; } .wpop, .walld{ display: inline; } .wet { color: red; } div[id*="block"]{ display:none; /*background:red;*/ } div[class*="day_"] span img{ vertical-align: middle; } div[class*="day_"] span{ width:auto; display: inline; float: left; margin: 2px 20px; } #wheather .stations{margin-bottom:5px;} #wheather .stations label{margin-left:10px;} #wheather .stations select{width:190px;} /*see style2 for more css for wheather...*/ .wcar{ cursor: pointer; } .hourlytop { margin: 20px auto; } #metcar{ display:flex; margin-top: 20px; } .mid-det{ position: relative; } .mid-1, .mid-2, .mid-3 { display: inline-block; text-align: center; position: relative; } .mid-3{ background:red; } .mid-3-top img, .mid-1 img { display: block; margin: 0 auto; } .mid-3-top-n, .mid-3-top-w{ width:100%; text-align: center; display: block; position: absolute; } .mid-3-top-n { top: 10%; } .mid-3-top-w{ top: 32%; } /*Search page and widget*/ div.search{ margin-bottom:6px; } #research input[type=text] {background:#fff;border:1px solid #fff; border-radius: 6px 0 0 6px;float:left; width: calc(83% - 10px);padding:0 0 0 10px; height:30px;color: #75716c;font-size:15px;} #research input[type=submit] {background:url(../img/bg-search.png) no-repeat center center #cccccc; border: 1px solid #cccccc; border-radius:0 6px 6px 0;float:left; width:16%;font-size:1px; text-indent:-10000px;height:32px; padding:0;} /*Tv show separate page (show.php)*/ .show-top{ display: block; background: #000000; color:#ffffff; padding-top:12px; } .show-top-left, .show-top-right{ float:left; } .show-top-left{ width: 30%;padding-right:2%; } .show-top-right{ width: 65%; } /*#page.show .progarray > div{ padding: 4px; }*/ .show-top-footer-img, .show-top-footer-text { display: inline-block; vertical-align: middle; } .show-bot { padding: 10px; text-align: justify; } .show-bot h2{font-size:18px; font-weight:normal; color:#2d2d2d;} #ytvideo{ display: block; width: 100%; border-top:1px solid #dedede; margin-bottom:15px; } #ytvideo h3{ font-weight:normal; color:#2d2d2d; } #ytvideo .iframe{float: none; clear: both; width: 100%; position: relative; padding-bottom: 56.25%; padding-top: 25px; height: 0;} #ytvideo .iframe iframe{position: absolute; top: 0; left: 0; width: 100%; height: 100%;} #page.show #ytvideo { display: block; margin: 15px 0; border:0; } #page.show #ytvideo .iframe{ display: block; margin: 15px auto; width:80%; } #page.chaninfo #tvd-info-col-left, #page.radio #tvd-info-col-left{ overflow: scroll; -webkit-overflow-scrolling:touch !important; } /*#page.chaninfo iframe,#page.radio iframe{ overflow: scroll; -webkit-overflow-scrolling:touch !important; }*/ /*Google ads*/ .skyscrapper{ position: absolute; top: 0; left: -172px; } .leaderboard, .leaderboard_mobile{ text-align: center; } .leaderboard_mobile{display:none;} .rectangle{ width:100%; text-align: center; margin-top:10px; } .adds{ margin-bottom: 10px; } body#tv-direct .skyscrapper{ top:-10px; } /*Style from style2:*/ .wcar{ border: 1px solid #dedede; cursor: pointer; line-height: 20px; text-align: center; background: #F7F7F7; } .wtop{ border-bottom: 1px solid #dedede; } .hourlytop { margin: 20px auto; } #metcar{ /*display:flex;*/ margin: 35px 20px 35px 20px; /*display: inline-block !important;*/ width: calc(100% - 40px); } .mid-det{ position: relative; } .mid-1, .mid-2, .mid-3 { display: inline-block; text-align: center; position: relative; width: 32%; vertical-align: middle; } .mid-3{ background:none; } .mid-3-top img, .mid-1 img { display: block; margin: 0 auto; } .mid-3-top-n, .mid-3-top-w{ width:100%; text-align: center; display: block; position: absolute; } .mid-3-top-n { top: 10%; } .mid-3-top-w{ top: 32%; } .bot-det-left, .bot-det-right { display: inline-block; /*padding-right: 10px;*/ width:48%; } .comp-txt, .top-det { display: block; width: 100%; } .comp-txt{ margin:10px 0; } .bot-det-title { display: block; } .bot-det { margin: 20px 0; line-height: 20px; } .locat{ display: block; margin-bottom: 10px; } .today-inner{ margin-bottom: 20px; border-top: 1px solid #838585; /*padding-top: 10px;*/ } .today-inner-left{ width: 55%; border-right: 1px solid #838585; } .today-inner-right{ width: calc(35% - 10px); margin-left: 10px; } .today-inner-left, .today-inner-right { display: inline-block; vertical-align: top; position: relative; padding-top: 10px; } .today-inner-right-txtl,.today-inner-right-txtr,.today-inner-right-val{ display: inline; margin-bottom: 8px; } .today-inner-right-txtl, .today-inner-right-txtr,.today-inner-right-val{ float: left; } .today-inner-right-block{ left:70%; position: absolute; width: 50%; } .today-inner-right-val{ /*margin-right: 4px;*/ } .sm-sun, .sm-moon { display: inline; } .sm-moon{ margin-left: 20px; } .sun-up, .sun-up-txt, .sun-set, .sun-set-txt{ display: inline-block; } .sun-up, .sun-set, .sm-moon span[class*="moon-age-"]{ width: 20px; height: 20px; background: url('../img/sun-moon.png') no-repeat; display: inline-block; } .sm-moon span[class*="moon-age-"]{ margin-bottom: -4px; } .sun-up{ background-position: 0px 8px; } .sun-set{ background-position: 0px -12px; margin-left:20px; } .sm-moon span.moon-age-1{ background-position: 0px -118px; } .sm-moon span.moon-age-2{ background-position: 0px -138px; } .sm-moon span.moon-age-3{ background-position: 0px -158px; } .sm-moon span.moon-age-4{ background-position: 0px -216px; } .sm-moon span.moon-age-5{ background-position: 0px -196px; } .sm-moon span.moon-age-6{ background-position: 0px -177px; } .sm-moon span.moon-age-7{ background-position: 0px -78px; } .sm-moon span.moon-age-8{ background-position: 0px -98px; } .mid-2-top-deg, .mid-2-top-degc, .mid-2-bot-deg, .mid-2-bot-degc, .comp-val{ color:#b5c528; } .mid-2-top-deg{ font-size: 3em; font-weight: 600; } .mid-2-top-degc{ font-size: 24px; } .mid-2-bot-deg{ font-weight: 600; } table[class*="day_"]{ text-align: left; width: 100%; } .tleft{ text-align: left; } .tleft img{ vertical-align: middle; } #metcar .owl-prev { left: -19px; top: 52px; } #metcar .owl-next { right: -19px; top: 52px; } .mid-2-top { position: relative; top: -10px; } .mid-2-top-degc { position: absolute; top: 0; margin-left: 4px; } .sun-moon-title { display: block; width: 100%; border-top: 1px solid #838585; border-right: 1px solid #838585; padding-top: 10px; } .comp-val{ text-transform: uppercase; font-style: italic; font-weight: 800; } .bot-haut-val, .wmax{ color: #FF0000; font-weight: 800; } .bot-bas-val, .wmin{ color: #0070AA; font-weight: 800; } .mid-3-bot { line-height: 20px; } .whourly .odd{ background: #F7F7F7; } .whourly th{ background: #F7F7F7; line-height: 18px; padding: 5px 0; } .today-inner-right-val{ font-weight: 800; } .today-inner-right-val[value*="Non disponible"]{ font-style: italic; font-weight: 400; } table[class*='day_'] tr td:first-of-type, table[class*='day_'] tr th:first-of-type{ padding-left:4px; } .h-active{ background: #FFFFFF; } .curent-st img{ width: 20px; height: 20px; background: url('../img/sun-moon.png') no-repeat scroll 0px -616px; display: inline-block; vertical-align: middle; } .curent-st span{ display: inline-block; color: #0070AA; } .scroll-left, .scroll-right{ display: inline-block; width: 20px; background:red; height: 133px; } .wcar img, .tleft img{ width: 50px; height: 50px; } /* * Owl Carousel Owl Demo Theme * v1.23 */ #metcar .owl-controls{ margin-top: 10px; text-align: center; } /* Styling Next and Prev buttons */ #metcar .owl-controls .owl-buttons div{ color: #FFF; display: inline-block; zoom: 1; display: inline;/*IE7 life-saver */ margin: 5px; padding: 3px 10px; font-size: 12px; -webkit-border-radius: 30px; -moz-border-radius: 30px; border-radius: 30px; background: #869791; filter: Alpha(Opacity=50);/*IE7 fix*/ opacity: 0.5; } /* Clickable class fix problem with hover on touch devices */ /* Use it for non-touch hover action */ #metcar .owl-controls.clickable .owl-buttons div:hover{ filter: Alpha(Opacity=100);/*IE7 fix*/ opacity: 1; text-decoration: none; } /* Styling Pagination*/ #metcar .owl-controls .owl-page{ display: inline-block; zoom: 1; display: inline;/*IE7 life-saver */ } #metcar .owl-controls .owl-page span{ display: block; width: 12px; height: 12px; margin: 5px 7px; filter: Alpha(Opacity=50);/*IE7 fix*/ opacity: 0.5; -webkit-border-radius: 20px; -moz-border-radius: 20px; border-radius: 20px; background: #869791; } #metcar .owl-controls .owl-page.active span, #metcar .owl-controls.clickable .owl-page:hover span{ filter: Alpha(Opacity=100);/*IE7 fix*/ opacity: 1; } /* If PaginationNumbers is true */ #metcar .owl-controls .owl-page span.owl-numbers{ height: auto; width: auto; color: #FFF; padding: 2px 10px; font-size: 12px; -webkit-border-radius: 30px; -moz-border-radius: 30px; border-radius: 30px; } #owl-demo .owl-item > div img { display: block; width: 100%; height: auto; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; margin-bottom:4px; } #owl-demo .owl-item > div{ background : #42bdc2; text-align: center; padding:50px 0px; margin:3px; color: white; font-size:32px; border:1px white; } .wrapper-with-margin{ margin:0px 50px; } #metcar .owl-controls .owl-buttons div { position: absolute; } #metcar .owl-controls .owl-buttons .owl-prev{ left: -34px; top: 55px; width: 7px; height: 12px; } #metcar .owl-controls .owl-buttons .owl-next{ right: -34px; top: 55px; width: 7px; height: 12px; } #test-show{ margin-top:30px; } #show #prlcont { margin-top: 0; } div#prlcont{ min-height:400px; } .show-top-footer-img img{ vertical-align: middle; } #chan-car {border:1px solid #dedede;} #car-top {padding: 10px 4%;width: 88%; margin:0 2%;} #chan-car .tvchannels { border-right: 1px solid #dedede; display: block; height: 70px; text-align: center; } #chan-car .tvchannels a img {width:90%;position: relative;top: 50%;max-width:70px; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%);} #chan-car .carousel .owl-buttons .owl-prev{left:-30px;top:25px;} #chan-car .carousel .owl-buttons .owl-next{right:-30px;top:25px;} .pagination{ margin: 15px auto; float: none; } /*.moment-top .type[value*="Série TV"] { background: #0FA3C3; color: #FFFFFF; } .moment-top .type[value*="Autre"] { background: #585858; color: #FFFFFF; } .moment-top .type[value*="Culture Infos"] { background: #094979; color: #FFFFFF; } .moment-top .type[value*="Divertissement"] { background: #702284; color: #FFFFFF; } .moment-top .type[value*="Jeunesse"] { background: #FF3300; color: #FFFFFF; } .moment-top .type[value*="Sport"] { background: #0B8316; color: #FFFFFF; } .moment-top .type[value*="Cinéma"] { background: #C30F3E; color: #FFFFFF; }*/ .lichan-search { display: inline; float: left; border-bottom: 1px solid #dedede; border-left: 1px solid #dedede; border-top: 1px solid #dedede; display: inline; float: left; padding: 10px; } #search #prlcont{ margin-top:0; } .ulchan-search{ text-align:center; } .ulchan-search li:nth-last-child(2){ border-right: 1px solid #dedede; } body#search .prog-moment .moment-topc { float: left; font-weight: bold; padding-top: 9px; width: 38%; } body#search .progcl .channel-left span.date{ position: relative; top: 14%; } body#search .progcl .channel-left span.time{ position: relative; top: 24%; } body#search .progcl .channel-left span.search-chanimg{ position: relative; top: 30%; } body#channels .progcl.period { background: none repeat scroll 0 0 #f4efeb; } body#channels .chans-scroll { max-height: 800px; overflow-y: scroll; } body #page.channel .progcl.period { background: none repeat scroll 0 0 #f4efeb; } #datepicker{ display:none; } #archive{ cursor: pointer; color: #000000; height:13px; } .breadcrumbs { padding: 10px 0; } .breadcrumbs a{ cursor: pointer; text-decoration:none; font-weight:bold; color: #000000; } #tvdirect-info .breadcrumbs{ margin-left:15px; } #ui-datepicker-div{ margin-top: 70px; margin-left: -16px; } .show-bot h3{padding-bottom:5px;} .show-bot p{ /*text-indent: 3em;*/ } #tvd-info-col-left .chan-desc{ text-indent: 3em; } body#programmetv .rows div[id*="car"] .owl-content{ min-height:100px; } body#programmetv div[id*="ch"].chans{ min-height:120px; } body#programmetv div.progarray .show-count .more-details{ margin-right: 10px; } #contact #prlcont, #conditions #prlcont{margin-top:0;} #conditions-cont .content p, #charte-cont .content p{ text-align: justify; text-indent: 2em; padding:0 10px 10px; margin-top:0; line-height:16px; } #conditions-cont h1, #charte-cont h1, #contact-cont h1{ border-bottom: 1px solid #dadada; color: #2d2d2d; font-family: Lato-bold,sans-serif; font-size: 16px; padding: 15px 10px; text-align: center; text-transform: uppercase; margin-bottom:20px; } #conditions-cont div, #charte-cont div, #contact-cont div{ margin:10px 0; } #conditions-cont h4, #charte-cont h4, #contact-cont h4{ color:#2d2d2d; } #conditions-cont a, #charte-cont a, #contact-cont a{ color:#7a7a7a; text-decoration:none; } /*404 not found:*/ #charte-cont .link a{color:#2d2d2d;} #charte-cont .link a:hover{text-decoration:underline;} p.nomargin{margin-bottom:0;} #contact-form{ width: 400px; margin: 0 auto; } #contact-form label{ margin-bottom: 10px; float: left; } #contact-form input[name="name"],#contact-form input[name="email"], #contact-form textarea{ display:inline-block; float:right; margin-bottom: 10px; width: 250px; } #contact-form input{height:20px;} #contact-form input, #contact-form textarea{border:1px solid #e7e7e7;border-radius:5px;} #contact-form textarea{max-width:400px;} #contact-cont #errors{ margin: 20px auto; text-align: center; } #contact-cont #submit{ float: right; height:30px; padding:0 15px; background:#ccc;margin-bottom:10px;color:#2d2d2d; text-transform:uppercase; } #contact-cont input#submit:hover{ background:#000;color:#fff;border:1px solid #000; } #archive a{ display: none; } #contact-form > #captcha_entered { margin-left: 22px; margin-top: 8px; } a:active,a:focus,select:active,select:focus { outline: none; } /* Targetting Webkit browsers only. FF will show the dropdown arrow with so much padding. */ @media screen and (-webkit-min-device-pixel-ratio:0) { select {padding-right:18px} } /* Large screens ----------- */ @media only screen and (max-width : 1024px) { } @media only screen and (min-width : 980px) and (max-width : 1024px) { #tvd-col-right .right a{font-size:14px;} #tvd-col-right .right {padding:0 2%; width:44%;} } @media only screen and (min-width : 980px) { #header img.under1180{display:none;} } /*Styles for screen 980px and lower*/ @media screen and (max-width: 980px) { #header{background:none;height:auto;} #header img.under1180{width:100%;display:block;} #header .logo {position:absolute; top:40%; left:15%;padding:0;width:85%;} #header .logo img{width:50%;} #header nav {margin-top: -28px;} #content {margin-top: 15px;} #progleft{width:100%;float:none;} #tvd-col-right{width:100%; float:none;margin-top:10px;} #tvd-col-right .col-right-cont{float:left; width:48%; margin-right:2%;padding: 10px 2% 0;} #tvd-col-right .tv-banners{float:left;width:46%;} /*tv-direct.php:*/ #tvd-col-left, #tvd-info-col-left, #met-col-left {width:100%;float:none;} .lichan {height:80px;} /*tvdirect-info */ } @media only screen and (max-width : 780px) { #footer .f-top{padding:12px 20px;} #footer .f-top .right{float:none; text-align:center; padding-bottom:8px;} #footer .f-top .left{float:none; text-align:center;} } /*Styles for screen 720px and lower*/ @media only screen and (max-width : 720px) { /*Create custom dropdown menu for 2 submenus for programme*/ #prlmenu ul { display: none; height: auto; margin:0; padding:0; border-radius:0; } .ulpr-menu {margin-bottom:5px;} #prlmenu ul.ulpr{background: none repeat scroll 0 0 #fff; } #prlmenu ul.sulpr{background: none repeat scroll 0 0 #9ccec7;} #prlmenu ul li{display: block;float: none;width: 100%; border-top:1px dashed #585b5b;padding:8px 0;} #channels .slipr{width:100%;} #prlmenu a#ulpr-pull { display: block; background-color: #fff; width: 92%; position: relative; color:#2d2d2d; padding:8px 8% 8px 0; text-align:right; text-transform:uppercase; text-decoration:none; font-size:14px; } #prlmenu a#sulpr-pull{ display: block; background-color: #9ccec7; width: 92%; position: relative; color:#2d2d2d; padding:8px 8% 8px 0;; text-align:right; text-transform:uppercase; text-decoration:none; font-size:14px; } #prlmenu a#ulpr-pull:before, #prlmenu a#sulpr-pull:before { content:""; background: url('../../img/nav-iconulpr.png') no-repeat; width: 30px; height: 30px; display: inline-block; position: absolute; left: 30px; top: 5px; } /*Create dropdown menu for channels on programme page*/ #car-top{/*display:none;*/} .chan-menu{display:block !important;} .chan-menu ul{ display: none; height: auto; margin:0; padding:0; border-radius:0; } .chan-menu ul.chanul{background: none repeat scroll 0 0 #9ccec7;height:300px; overflow-y: scroll;} .chan-menu ul li{display: block;float: none;width: 100%; border-top:1px dashed #585b5b;padding:8px 0;} .chan-menu a#chan-pull{ display: block; background-color: #9ccec7; width: 92%; position: relative; color:#2d2d2d; padding:8px 8% 8px 0;; text-align:right; text-transform:uppercase; text-decoration:none; font-size:14px; } .chan-menu a#chan-pull:before { content:""; background: url('../img/nav-iconulpr.png') no-repeat; width: 30px; height: 30px; display: inline-block; position: absolute; left: 30px; top: 5px; } .chanli{text-align:center;} .chanli, .chanli a {color: #4c0005;cursor: pointer;} .chanli a{text-decoration:none;text-transform: uppercase;} .chanul li:hover, .chanul li:hover a {color: #fff;} /*end channels menu*/ /*.prog-moment .moment-topc{width:18%;} .prog-moment .moment-topr{width:52%;}*/ /*.lipr{width:20%;padding:5px 0;}*/ /*Google ads style:*/ .leaderboard{display:none;} .leaderboard_mobile{display:block;} /*weather:*/ .today-inner-left{width:60%;} .today-inner-right{width:calc(40% - 10px);} .today-inner-right-block{left: 60%;width:40%;} } @media screen and (max-width: 650px) { .today-inner-left{width:100%; border-right:0;} .today-inner-right{width:100%;margin-left:0;} .sun-moon{border-bottom:1px solid #838585; padding-bottom:5px;} .sun-moon-title{border-right:0;} .today-inner-right-block{left: 50%;width: 50%;} } /*Styles for screen 600px and lower*/ @media screen and (max-width: 600px) { .lichan {height:46px;} #tv-direct .lichan img { max-width: 93%; } } @media screen and (max-width: 568px) { /*optimize header logo view*/ #header .logo{left:10%; top:20%;} #header .logo img{width:82%;} .selector .sel-left{padding-top:0;} .owl-theme .owl-controls .owl-buttons .owl-prev{left:-7%;} .owl-theme .owl-controls .owl-buttons .owl-next{right:-7%;} .chans a img{width:90%;} /*.progarray .chans{height:108px;}*/ /*.progarray .rows{height:106px;overflow:hidden;}*/ #prlcont.channel .carousel .owl-buttons .owl-prev{left: -6%;} #prlcont.channel .carousel .owl-buttons .owl-next{right: -6%;} } /*Iphone 5 design*/ @media only screen and (min-width : 320px) and (max-width : 568px) { .lichan {padding: 3.7%;} #footer .f-top .right ul{margin:0;padding:0;} #footer .f-top .right ul li{margin-left:10px; margin-right:10px; padding: 3px 0;} } @media screen and (max-width: 500px) { /*.prog-moment .moment-top{height:58px;}*/ /*.prog-moment .moment-topl{width:50%;} .prog-moment .moment-topc{width:50%;text-align:right;} .prog-moment .moment-topr{width:100%; padding-top:0;}*/ .prog-moment .moment-bottom h3{font-size:14px;} .prog-moment .moment-bottom .right p{margin:5px 0 0;} /*one item per line for en ce moment...*/ /*.prog-moment{width:100%;padding: 0;}*/ .prog-moment.par{border-left:0 none;} .prog-moment .moment-bottom{height:95px;} #prlcont.channel .selector .sel-left{height:32px;} .sel-left .chans-mainimg{width:17.2%;} .sel-left .chans-maintitle{height:25px;line-height:15px;} .sel-left .chans-maintitle h1{font-size:15px;position:relative; top:50%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%);} /*pagination*/ .selector .sel-left{width:100%;text-align:center;} .pagination{margin: 10px auto 15px; float:none;} } @media screen and (max-width: 460px) { .programme #car-top-shows.carousel{width:100%;} /*.carousel{width:73%;}*/ .carousel{width:100%;} } @media screen and (max-width: 450px) { /*optimize header logo view*/ #header .logo{left:10%; top:10%;} #header .logo img{width:82%;} #tvd-col-left h1{text-align:left;} .mlichan{height:80px;} #tvd-col-right .right{height:80px;width: 47.682%;} /*.slipr {width: 25%;padding:5px 0;}*/ .sulpr {padding:5px 0;} .owl-theme .owl-controls .owl-buttons .owl-prev{left:-8%;top:0.4em;} .owl-theme .owl-controls .owl-buttons .owl-next{right:-8%;;top:0.4em;} .progcl .channel-left{width: 13.121%;} .progcl .channel-right{width: 81.4%;} /*Weather:*/ .mid-det .mid-1{width:25%;} .mid-det .mid-2{width:40%;} .sm-moon{display:block; margin-left:0;} .progcl .channel-right .det a.show-count span.chans-more-details{bottom:1px;} #tvd-col-right .col-right-cont {width:96%; float:none;margin-right:0;} #tvd-col-right .col-right-cont .mulchansh{padding-left:0;} #tvd-col-right .tv-banners {float: none; margin-top: 10px; text-align: center; width: 100%;} /*new style for tv-en-direct page*/ ul li.lichan:nth-child(5n+5) {border-right: 1px solid #dedede;} ul li.lichan:nth-child(3n+3) {border-right: 0 none;} .lichan{width:25.6%;} } @media screen and (max-width: 420px) { #tv-direct .lichan img { max-width: 90%; } } @media screen and (max-width: 400px) { } @media only screen and (max-width : 350px) { /*.prog-moment .moment-bottom .right p{margin:4px 0 0;}*/ #programmetv #tvd-col-right .left{width:47.9%;} #programmetv #tvd-col-right .right{width: 47.482%;} #tvd-col-right .right a{font-size:13px;} #prlcont.channel .carousel .owl-buttons .owl-prev{left: -8%;} #prlcont.channel .carousel .owl-buttons .owl-next{right: -8%;} #prlcont.channel .carousel{margin: 0 3%;width: 86%;} } /*Other PseudoSmartphones*/ @media only screen and (max-width : 320px) { .lichan {padding: 3.7%;} .mlichan img{max-width:90%;} } .moment-topl a img{ /*max-height:30px;*/ } /*responsive table for wheather:*/ .table-bordered { border: 1px solid #ddd; border-collapse: separate; border-radius: 4px; } table { width: 100%; } @media only screen and (max-width: 800px) { /* Force table to not be like tables anymore */ #no-more-tables table, #no-more-tables thead, #no-more-tables tbody, #no-more-tables th, #no-more-tables td, #no-more-tables tr { display: block; } /* Hide table headers (but not display: none;, for accessibility) */ #no-more-tables thead tr { position: absolute; top: -9999px; left: -9999px; } #no-more-tables tr { border: 1px solid #ccc; } #no-more-tables td { /* Behave like a "row" */ border: none; border-bottom: 1px solid #eee; position: relative; padding-left: 50%; white-space: normal; text-align:left; line-height: 20px; } #no-more-tables td:before { /* Now like a table header */ position: absolute; /* Top/left values mimic padding */ top: 6px; left: 6px; width: 45%; padding-right: 10px; white-space: nowrap; text-align:left; font-weight: bold; line-height: 12px; } /* Label the data */ #no-more-tables td:before { content: attr(data-title); } } a#back{ display:none; } .ui-btn-left, .ui-btn-right { position: absolute; top: 1em !important; } #days-menu-car .lipr, #hours-menu-car .slipr,#days-menu-chan .lipr, #hours-menu-chan .slipr { width: 100%; } #days-menu-car div.owl-item{ /*margin: 0 5px;*/ } .disabled{ /*display: none;*/ /*color:#9E9E9E;*/ opacity: .3; } /*New Phonegap style:*/ a{cursor:pointer; } body.ui-mobile-viewport{font-family:open sans, sans-serif; } /*menu elements*/ .menu{ height:68px; background: #de243a; } #menu-head h1{font-size:16px; color:#fff;font-weight:100;text-shadow:none;font-family:open sans, sans-serif;line-height:55px; padding:0.6em 0 0; margin:0;} .ui-nodisc-icon.ui-link.ui-btn-left.ui-btn.ui-icon-bars.ui-btn-icon-notext.ui-shadow.ui-corner-all:after, .ui-nodisc-icon.ui-link.ui-btn-right.ui-btn.ui-icon-bars.ui-btn-icon-notext.ui-shadow.ui-corner-all:after { background-size: 40px 28px; border-radius: 0; width: 38px; margin-left: -15px; } .ui-nodisc-icon.ui-link.ui-btn-left.ui-btn.ui-icon-bars.ui-btn-icon-notext.ui-shadow.ui-corner-all, .ui-nodisc-icon.ui-link.ui-btn-right.ui-btn.ui-icon-bars.ui-btn-icon-notext.ui-shadow.ui-corner-all{ background: none repeat scroll 0 0 #de243a; border: 0 none; border-radius: 0; box-shadow: none; top: 25px !important; } #mennu{ right: 1.5em; } .ui-btn-icon-notext, .ui-header button.ui-btn.ui-btn-icon-notext, .ui-footer button.ui-btn.ui-btn-icon-notext{width:3em;} #nav-panel ul li a.ui-btn{background:#555556; border-bottom:2px solid #d2d2d2;color:#fff; font-weight: 400; text-shadow:none;line-height:50px;} #nav-panel ul li a.ui-btn:hover{background:#333334;} .ui-listview .ui-li-has-thumb > img:first-child, .ui-listview .ui-li-has-thumb > .ui-btn > img:first-child, .ui-listview .ui-li-has-thumb .ui-li-thumb{left:12px;top:auto;max-height:3em;} .ui-listview > .ui-li-has-thumb > .ui-btn, .ui-listview > .ui-li-static.ui-li-has-thumb{min-height:2em;} #menu-head #back{background: none repeat scroll 0 0 #de243a; border: 0 none; border-radius: 0; box-shadow: none; top: 25px !important;} #menu-head #back:after{background-size: 18px 38px; border-radius: 0; height: 30px; margin-left: -15px; margin-top: -15px; width: 28px;} /*programme index*/ #shows-car{/*height:180px;*/overflow: hidden;} #shows-car .tvshows{position:relative;} #shows-car .tvshows-img{text-align:center;} #shows-car .tvshows-txt{position:absolute; bottom:0;width:100%;background: rgba(0, 0, 0, 0.8);padding: 6px 6px 20px;} #shows-car .tvshows-txt .tvshows-txt-left{float:left;width:70%;} #shows-car .tvshows-txt .tvshows-txt-left a{color:#fff;text-shadow:none; font-weight:400; font-size: 16px; text-decoration:none; } #shows-car .tvshows-txt .tvshows-txt-left span{display:block;color:#fff; text-shadow:none; font-weight:400;text-overflow: ellipsis;text-shadow: none;white-space: nowrap;} #shows-car .tvshows-txt .tvshows-txt-left span.time{padding-top:3px;} #shows-car .tvshows-txt .tvshows-txt-right{float:right;width:30%;text-align:center;} #shows-car .owl-controls .owl-page{margin: 0 10px;} #shows-car .owl-controls{position:absolute; bottom:0; width:100%; text-align:center;} #shows-car .owl-controls .owl-page span{background:#ffffff !important;height:8px; width:8px; margin:4px 4px 8px; opacity:1;} #shows-car .owl-controls .owl-page.active span{background:#de243a !important;height:8px; width:8px; margin:4px 4px 7px;border:1px solid #fff;} .ui-page-theme-a a:hover, html .ui-bar-a a:hover, html .ui-body-a a:hover, html body .ui-group-theme-a a:hover{color:#000;} #spinner{ /* display:none;*/ width:100%; } #spinner .container{/*display:block; margin:25% auto 0;max-width:550px; width:100%*/position:absolute; bottom:0; top:0; left:0; right:0; /*height:65%;*/margin:auto; /*max-width:550px;*/ width:100%;z-index:9997;background:#de243a;} .loading1{text-align:center; width:100%;display:block;height:100%;} .loading1:before{ content: ''; display: inline-block; height: 100%; vertical-align: middle; margin-right: -0.25em; /* Adjusts for spacing */ } .vertical-div{ display: inline-block; vertical-align: middle; } .loading1 .load-title {} .loading1 .load-text {margin-top:5%;margin-bottom:5%;} .loading1 img{/*width:100%;height:auto;*/} /*.loading2{display:block; margin:4% auto 0; max-width:185px; text-align:center; width:40%;}*/ /*.loading2 img{width:100%;height:auto;}*/ #inner-spinner{ border:2px solid #fff;/*border-radius:16px;*/ width:60%; max-width:550px; margin:0 auto; text-align:left; height:4px; } #innersp-activ{ /*margin-top: -120%;*/ /*position: relative;*/ z-index: 9999; float:left; /*z-index:9999;*/ width: 0px; height: 4px; background-color: #FFFFFF; /*border-radius:8px;*/ -webkit-transition-property: width; -webkit-transition-duration: 5s; -webkit-transition-timing-function: linear; -webkit-transition-delay: 0; /* Standard syntax */ transition-property: width; transition-duration: 5s; transition-timing-function: linear; transition-delay: 0; } .show-top-right .top-top .time-dur span { display: block; } .time-dur, .chans-mainimg { display: inline-block; width: 45%; } .time-dur .hour{ color: #c9c9c9; } .time-dur .duration{ color: #686868; } .shows-subtitle { border-top: 2px solid #343434; margin-top: 10px; padding:8px 10px 12px } .shows-subtitle h2{font-weight:600;} #page.show .channel{ width:100%; padding:0; } #page.show .dist-bord{ padding-top:4px; border-bottom: 2px solid #343434; height:1px; background: #000000; } #page.show .show-top-right span { padding-bottom: 10px; } #page.show .title { font-size: 1.5em; padding-top: 4px; font-weight:600; } #page.channel #car{ width:90%; } #page.channel #car button.slick-prev{ background: url(images/owl2-prev.png) no-repeat; background-size:100%; width:35px; height: 35px; display: block; position: relative; left: -10px; top: -40px; float:left; } #page.channel #car button.slick-next{ background: url(images/owl2-next.png) no-repeat; background-size:100%; width:35px; height:35px; display: block; position: relative; right: -10px; top: -40px; float:right; } #page.channel .carousel .slick-slide img{ opacity: 0.4; /*transform: translateY(50%);*/ } #page.channel .carousel .slick-slide img.chan-act{ -webkit-opacity: 1; -moz-opacity: 1; filter:alpha(opacity=100); opacity: 1; transform: scale(1.2, 1.2); -webkit-transform: scale(1.2, 1.2); -moz-transform: scale(1.2, 1.2); /*top:20px;*/ } #car .slick-track .tvchannels{text-align: center;} #car .slick-track .tvchannels:before { content: ''; display: inline-block; height: 100%; vertical-align: middle; margin-right: -0.25em; /* Adjusts for spacing */} #car .slick-track .tvchannels a { display: inline-block; vertical-align: middle; } @media all and (orientation:landscape) and (max-width : 640px){ /* Styles for Landscape screen */ /*#spinner { position: absolute; top: -110%;*/ /*width: 100%;*/ } #innersp-activ{ /* margin-top: -84% */ } /*@media only screen and (max-width : 640px) { #spinner { position: absolute; top: -90%; width: 100%; } }*/ body #zload{ /*display:none;*/ background:#303131; position:absolute; top:0; left:0 ; z-index:-1; -webkit-opacity: 0.8; -moz-opacity: 0.8; filter:alpha(opacity=80); opacity: 0.8; width: 100%; height: 100%; } body #zload > img{ display: block; margin: 0 auto; position: fixed; top: 50%; left: 49%; -webkit-opacity: 1; -moz-opacity: 1; filter:alpha(opacity=100); opacity: 1; width:30px; } body #page { position: relative; } body #menu-head.menu/*, body #nav-panel*/{ z-index: 9995; } #chan-chan{ background: #FFFFFF; } /*special ajax loader!!*/ /*.sprite-spinner { overflow: hidden; position: relative; display:inline-block; text-align:left; } .spinner-wrap { text-align:center; margin:100px auto; }*/ /*some special responsiveness*/ @media screen and (max-width: 530px) { .vertical-div{width:500px;} } @media screen and (max-width: 500px) { .vertical-div{width:450px;} } @media screen and (max-width: 450px) { .vertical-div{width:400px;} } @media screen and (max-width: 400px) { .vertical-div{width:350px;} } @media screen and (max-width: 350px) { .vertical-div{width:300px;} } @keyframes spin { to { transform: rotate(1turn); -webkit-transform: rotate(1turn); -moz-transform: rotate(1turn); -ms-transform: rotate(1turn); -o-transform: rotate(1turn);} } .progress { position: relative; display: inline-block; width: 5em; height: 5em; margin: 0 .5em; font-size: 6px; text-indent: 999em; overflow: hidden; animation: spin 1s infinite steps(8); -webkit-animation: spin 1s infinite steps(8); -moz-animation: spin 1s infinite steps(8); -o-animation: spin 1s infinite steps(8); top:20em; left:45%; } .small.progress { font-size: 6px; } .large.progress { font-size: 24px; } .progress:before, .progress:after, .progress > div:before, .progress > div:after { content: ''; position: absolute; top: 0; left: 2.25em; /* (container width - part width)/2 */ width: .5em; height: 1.5em; border-radius: .2em; -webkit-border-radius: .2em; -moz-border-radius: 12px; background: #eee; box-shadow: 0 3.5em #eee; /* container height - part height */ -webkit-box-shadow: 0 3.5em #eee; /* Safari 3-4, iOS 4.0.2 - 4.2, Android 2.3+ */ -moz-box-shadow: 0 3.5em #eee; transform-origin: 50% 2.5em; /* container height / 2 */ } .progress:before { background: #555; } .progress:after { -webkit-transform: rotate(-45deg); -moz-transform: rotate(-45deg); -ms-transform: rotate(-45deg); -o-transform: rotate(-45deg); transform: rotate(-45deg); background: #777; } .progress > div:before { -webkit-transform: rotate(-90deg); -moz-transform: rotate(-90deg); -ms-transform: rotate(-90deg); -o-transform: rotate(-90deg); transform: rotate(-90deg); background: #999; } .progress > div:after { -webkit-transform: rotate(-135deg); -moz-transform: rotate(-135deg); -ms-transform: rotate(-135deg); -o-transform: rotate(-135deg); transform: rotate(-135deg); background: #bbb; } .ui-fixed-hidden{ position:unset !important; }
0.268174
0.061452
body { margin: 0; padding: 0; display: flex; justify-content: center; align-items: center; min-height: 100vh; background: linear-gradient(to bottom, black, #00076F,#44008B, #9F45B0, #E54ED0); font-family:'Montserrat', sans-serif; text-align: center; } .btn { border: 2px solid black; background-color: white; color: black; padding: 10px 20px; font-size: 12px; font-weight: 900; cursor: pointer; transition-duration: 0.2s; } .btn:hover { background: linear-gradient(to right, #00076F,#44008B, #9F45B0, #E54ED0 ); color: gold; } .search-box { padding: 20px; margin-bottom: 20px; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-size: 23px; font-weight: 900; width: 73%; background: url(../images/galaxylight.jpg); color:white; } .search-box:hover { color:gold; } .neon { color:black; text-shadow: 0 0 5px #CC00FF, 0 0 10px #CC00FF, 0 0 20px #CC00FF, 0 0 40px #9900FF, 0 0 80px #9900ff, 0 0 90px #262129, 0 0 100px #9900ff, 0 0 150px #9900FF; font-weight: 800; } .search-container { width: 80vw; } .hidden { display: none; } .streaming-btn { list-style-type: none; display: inline; margin: 10px; background: linear-gradient(to right, #00076F,#44008B, #9F45B0, #E54ED0 ); border: 2px solid black; } .streaming-btn a { color: gold; text-decoration: none; margin: auto; padding: 20px; font-size: 20px; font-weight: 900; } .streaming-btn a:hover { font-size: 22px; font-weight: bolder; color: white; } .add-li { list-style-type: none; } .add-li a { text-decoration: none; color:#353839; } .add-li a:hover { color: gold; } .accordion-header { background: linear-gradient(to right, #00076F,#44008B, #9F45B0, #E54ED0 ); } .accordion-button { color: gold; font-size: 20px; } .accordion-button:focus{ background: linear-gradient(to right, #00076F,#44008B, #9F45B0, #E54ED0 ); color: white; font-size: 20px; }
assets/css/style.css
body { margin: 0; padding: 0; display: flex; justify-content: center; align-items: center; min-height: 100vh; background: linear-gradient(to bottom, black, #00076F,#44008B, #9F45B0, #E54ED0); font-family:'Montserrat', sans-serif; text-align: center; } .btn { border: 2px solid black; background-color: white; color: black; padding: 10px 20px; font-size: 12px; font-weight: 900; cursor: pointer; transition-duration: 0.2s; } .btn:hover { background: linear-gradient(to right, #00076F,#44008B, #9F45B0, #E54ED0 ); color: gold; } .search-box { padding: 20px; margin-bottom: 20px; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-size: 23px; font-weight: 900; width: 73%; background: url(../images/galaxylight.jpg); color:white; } .search-box:hover { color:gold; } .neon { color:black; text-shadow: 0 0 5px #CC00FF, 0 0 10px #CC00FF, 0 0 20px #CC00FF, 0 0 40px #9900FF, 0 0 80px #9900ff, 0 0 90px #262129, 0 0 100px #9900ff, 0 0 150px #9900FF; font-weight: 800; } .search-container { width: 80vw; } .hidden { display: none; } .streaming-btn { list-style-type: none; display: inline; margin: 10px; background: linear-gradient(to right, #00076F,#44008B, #9F45B0, #E54ED0 ); border: 2px solid black; } .streaming-btn a { color: gold; text-decoration: none; margin: auto; padding: 20px; font-size: 20px; font-weight: 900; } .streaming-btn a:hover { font-size: 22px; font-weight: bolder; color: white; } .add-li { list-style-type: none; } .add-li a { text-decoration: none; color:#353839; } .add-li a:hover { color: gold; } .accordion-header { background: linear-gradient(to right, #00076F,#44008B, #9F45B0, #E54ED0 ); } .accordion-button { color: gold; font-size: 20px; } .accordion-button:focus{ background: linear-gradient(to right, #00076F,#44008B, #9F45B0, #E54ED0 ); color: white; font-size: 20px; }
0.369201
0.110471
body{background:#f0f0f0;font-family:"\5fae\8f6f\96c5\9ed1";} .body{overflow:hidden;} .header{position:fixed;display:table;width:100%;height:51px;border-top:1px solid #f25b22;left:0;bottom:0;background:#fff;z-index:9;table-layout:fixed;} .header .cell{vertical-align:top;padding:6px 5px;color:#52596b;} .header .valign-m{vertical-align:middle;} .header .cell p{line-height:1;} .header .cell.big{width:60%;} .header + .body{padding-bottom:20px;} .load-more{height:34px;padding:10px 10px 0;line-height:24px;text-align:center;font-size:12px;color:#999;} .scroll-top{position:fixed;width:46px;height:46px;background:url(../img/wshop/scrollTop.png) no-repeat;-webkit-background-size:100% 100%;background-size:100% 100%;right:5px;bottom:56px;} .clearfix:after{content:"";display:table;clear:both;} .body-result .html{padding:0 0 40px 0;} .body-shopcar .html{padding:0 0 150px;} .body-shopcar footer{height:150px;margin-top:-150px;line-height:60px;} .body-result footer{height:35px;margin-top:-35px;line-height:35px;} .slider-page a{width:6px;height:6px;} .btn-buy{background:#ff9c00;} .btn-shopcar{background:#c40000;} .btn-yellow{background:#f25b22;} .btn-gobuy{background:#feb801;} .btn-white{color:#333;border:1px solid #ccc;background:#fff;} .btn .fa{margin-right:5px;font-size:20px;} .btn.btn-link{background:none;color:#ff9c00;} .btn-radius{border-radius:1000px;} .red{color:#c40000;} .slider-product img{width:100%;min-height:100%;} .slider-product .slider-list,.slider-product .slider-list li,.slider-product .slider-list a{height:170px;} .margin-left-10{margin-left:10px;} /* mod-shop */ .shop-box{padding-left:40px;background:#fff;} .shop-box .li-checkbox{position:absolute;left:-33px;top:50%;margin-top:-14px;padding:0;} .mod-shop{height:40px;line-height:39px;border-top:1px solid #ccc;border-bottom:1px solid #ccc;background:#f4f4f4;position:relative;} .mod-shop .li-checkbox{float:left;padding:10px 7px;} /* mod-product */ .mod-product{padding:10px;border:1px solid #eee;border-top:0;border-left-color:#fff;background:#fff;color:#333;position:relative;display:block;} .body-shopcar .mod-product{border-right:0;min-height:100px;} .mod-product:nth-child(2n){border-right-color:#fff;} .mod-product.last{box-shadow:0 1px 0 rgba(0,0,0,0.1);margin-bottom:2px;} .product-img{overflow:hidden;} .li-checkbox i{width:18px;height:18px;border-radius:10000px;-webkit-border-radius:1000px;-moz-border-radius:1000px;border:0;box-shadow:0 0 1px #333;background:#eee;} .li-checkbox.selected i,.form-li.selected .li-checkbox i,.li-checkbox.selected i{background:#f25b22;box-shadow:0 0 1px #f25b22;} .li-checkbox i:before,.form-li.selected .li-checkbox i:before,.li-checkbox.selected i:before{color:#fff;width:18px;height:18px;line-height:20px;left:-1px;} .li-checkbox input[type=radio],.li-checkbox input[type=checkbox]{display:none;} .product-text .li-checkbox{display:inline-block;vertical-align:-4px;} .product-text .li-checkbox i:before,.product-text .li-checkbox.selected i:before{} .product-text label p{display:inline-block;margin-left:10px;} .product-text del{font-size:12px;color:#999;padding:0 5px;} .product-text small{font-size:12px;color:#999;margin-left:10px;} .product-text b{font-weight:normal;font-size:12px;} .product-img{height:100px;} .product-img img{width:100%;min-height:100%;vertical-align:top;} .mod-box .remarks{padding:10px 10px 10px 0;} .mod-box .remarks .input{padding:0 10px;background:#e8e8e8;} .mod-box .remarks .input::-webkit-input-placeholder{color:#666;} .body-shopcar .product-img img{width:100%;min-height:100%;} .product-img a{width:60px;height:60px;display:block;overflow:hidden;background:#eee;} .product-ver{width:50%;float:left;height:170px;} .product-ver .product-text b{height:30px;line-height:30px;display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;} .product-hor{width:100%;} .product-hor>*,.mod-shopcar>*{display:table-cell;vertical-align:middle;} .body-member .product-hor>*{display:block;float:left;} .body-member .product-hor>.product-text{display:table-cell;float:none;} .product-hor .product-img{width:60px;height:100%;vertical-align:top;} .product-hor .product-text{padding:0 0 0 10px;width:100%;vertical-align:top;} .product-hor .product-text b{margin-top:-1px;display:block;line-height:18px;max-height:54px;overflow:hidden;} .product-hor .product-num{text-align:right;vertical-align:top;} .product-hor .btn-remove{display:block;color:#52596b;font-size:20px;margin-top:30px;} .shopcar-text{width:100%;text-align:right;} .product-radio{padding:0 10px 0 0;} .radio-item{vertical-align:top;padding-top:20px;} .product-title{border-top:1px solid #ddd;border-right:0;} .product-title .product-text b{width:70%;float:left;color:#666;font-weight:normal;padding-bottom:5px;padding-right:6%;line-height:18px;border-right:1px solid #ddd;min-height:50px;font-size:14px;} .product-title .product-text span{font-size:20px;} .product-title .product-text small,.product-title .product-text del{font-size:14px;} .product-title .product-sc{display:block;width:24%;text-align:center;float:right;} .product-sc>*{color:#666;} .product-sc > *{display:block;} .product-sc .fa{font-size:20px;height:30px;line-height:30px;} .product-sc:active>*,.product-sc.active>*{color:#ff9c00;} .body-white{background:#fff;} .body-cke{background:#fff;height:100%;padding:20px 20px 46px 20px;line-height:20px;word-spacing:normal;word-break:normal;word-break:break-all;color:#666;} .body-cke ul,.body-cke ol{-webkit-padding-start:20px;} .body-cke img{max-width:100%;float:left;margin:5px 0;} /* mod-size */ .mod-size{background:#fff;border:1px solid #ddd;border-left:0;border-right:0;margin:10px 0 0 0;padding:10px;} .mod-size dt{height:30px;line-height:30px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;} .mod-size dd{overflow:hidden;} .mod-size dd>*{margin-left:0;} .mod-size dd p{display:block;line-height:26px;font-size:12px;} /* mod-number */ .mod-number{display:block;overflow:hidden;} .mod-number > *{height:30px;background:#eeeeee;color:#333;display:inline-block;float:left;} .mod-number i{height:30px;line-height:30px;width:30px;position:relative;} .mod-number i:before,.mod-number i:after{content:" ";position:absolute;top:50%;left:50%;background:#333;} .mod-number i:before{width:20px;height:2px;margin:-1px 0 0 -10px;} .mod-number i:after{width:2px;height:20px;margin:-10px 0 0 -1px;} .mod-number i.number-minus:after{display:none;} .mod-number i:active,.mod-number i.active{background:#eee;} .mod-number input{border:0;text-align:center;width:100px;margin:0 2px;font-size:14px;border-radius:0;} /* mod-box */ /* mod-box */ .mod-box dl:first-child{border-top:1px solid #ddd;} .mod-box dd{border-bottom:1px solid #ddd;} .box-category dt{background:#f0eff4;} .fa-chevron-right b{color:#333;} .fa-chevron-down b{color:#000;} .box-category dd{background:#fff;padding:12px;} .box-category dd a,.mod-size dd>span{height:30px;line-height:30px;padding:0 5px;margin:5px;background:#eeeeee;color:#666;display:inline-block;} .box-category dd a:active,.box-category dd a.active,.mod-size dd >span.active{background:#ff9c00;color:#fff;} .body-gobuy .mod-box{margin-top:0;border-top:1px solid #ddd;border-bottom:1px solid #ddd;background:#fff;} .mod-box .box-li{padding:10px;line-height:22px;border-bottom:1px solid #ddd;} .mod-box .box-li:last-child>*{border:0;} .mod-box .box-li:last-child .product-img{height:auto;} .box-product{margin-top:10px;} .mod-box.box-product dt .box-shop{margin:0;padding-left:10px;} .mod-box.box-product dl{border-bottom:0;} .mod-box.box-product dd{overflow:hidden;padding:0 10px 10px 10px;} /* mod-shopcar */ .mod-shopcar{position:fixed;bottom:51px;color:#333;border-top:1px solid #ccc;background:#fff;width:100%;height:50px;left:0;z-index:100;overflow:hidden;} .mod-shopcar>*{padding:0 10px;height:50px;} .mod-shopcar>*:last-child .btn{float:right;width:100px;} .mod-shopcar.mod-bottom{bottom:0;display:table;} .mod-shopcar.mod-bottom .shopcar-btn{width:50%;} /* mod-title */ .mod-title{height:30px;line-height:30px;color:#333;padding:0 10px;} .shop-name{height:44px;font-size:16px;line-height:44px;padding-left:10px;color:#c40000;background:#f0f0f0;} /* box-form */ .form-li input::-webkit-input-placeholder{color:#999;font-weight:100;} .box-form{border:1px solid #ddd;border-left:0;border-right:0;background:#fff;} .box-form .input{font-size:12px;} .box-form{padding-left:10px;} .box-form .form-li{padding:6px 0;border-bottom:1px solid #ddd;} .box-form .form-li:last-child > *{border:0;} .box-form .form-li .li-l{padding-left:0;} .box-form .form-li .fa{color:#eee;font-size:20px;padding-right:10px;width:26px;} .box-form .li-l b{width:100px;text-align:left;} .box-form .input{border:0;} .form-li select{-webkit-appearance:none;} .form-li .mod-fa.fa{position:relative;display:block;width:100%;font-size:14px;line-height:32px;color:#999;font-weight:100;} .form-li .mod-fa:before{position:absolute;width:20px;height:20px;display:block;line-height:20px;text-align:center;right:0;top:50%;margin:-10px 0 0 0;font-size:20px;} .form-radio .form-li{min-height:40px;} .form-radio .form-li>*{padding-top:10px;padding-bottom:10px;} .form-radio .form-li .li-r{line-height:22px;} .box-city dd{padding:0;} .box-city dd a{padding:12px 10px;display:block;color:#666;} /* mod-member */ .mod-member{background:url(../img/wshop/bg-member.jpg) no-repeat;background-size:100% 100%;position:relative;} .member-info{display:table;width:100%;padding:10px 0;} .info-img{width:100px;float:left;text-align:center;} .info-img a{display:block;width:60px;height:60px;margin:0 auto;overflow:hidden;border-radius:1000px;background:#a4a4a4;border:2px solid #fff;} .info-img b{font-weight:normal;line-height:20px;} .info-img img{width:100%;min-height:100%;vertical-align:top;} .info-text{display:table-cell;width:100%;vertical-align:middle;} .info-text p{line-height:30px;} .info-text a{color:#000;} .integral{padding:3px 10px;color:#fff;border-radius:1000px;background:#333;} .member-tab{width:100%;height:50px;background:rgba(0,0,0,0.4);} .member-tab>*{width:20%;display:block;float:left;height:50px;padding:5px 0;color:#fff;text-align:center;} .member-tab>*:first-child>*{border:0;} .member-tab a>*{display:block;line-height:20px;border-left:1px solid rgba(255,255,255,0.5);font-weight:normal;} .member-tab a:active,.member-tab a.active{background:rgba(76,76,76,0.8);} .member-tab a:active >*,.member-tab a.active >*,.member-tab a:active + a>*,.member-tab a.active + a>*{border:0;} .tab-panel{display:none;} .tab-panel.active{display:block;} .user-tab{padding:10px 0;height:60px;border-top:1px solid #ccc;border-bottom:1px solid #ccc;margin-bottom:10px;background:#fff;} .user-tab a.active,.user-tab a:active{background:#fff;} .user-tab a{height:100%;padding:0;color:#333;} .user-title{height:46px;padding:0 10px;line-height:46px;font-size:16px;position:relative;background:#fff;} .user-title .fa{position:absolute;right:10px;top:50%;margin-top:-8px;} .product-btn>*{vertical-align:middle;font-size:12px;} .product-btn>*:first-child{float:left;line-height:20px;} .product-btn>*:last-child{display:table-cell;} .product-btn .btn-buy{width:100px;display:inline-block;float:right;} .product-btn .btn-view{width:60px;display:inline-block;float:right;margin-right:10px;background:#ff9c00;} .product-btn .red{font-size:14px;} .product-btn small{color:#999;display:block;} .box-category{margin:0;} .mod-null{padding:200px 0 100px 0;color:#333;} .mod-null>*{margin:10px auto;} .null-shopcar{background:url(../img/shop-null.png) no-repeat center 100px;background-size:auto 60px;} .null-order{background:url(../img/order-null.png) no-repeat center 100px;background-size:auto 60px;} .mod-result{padding:0px 0 10px 0;margin:0;} .mod-result>p{margin:0;} .mod-result>.btn{margin:100px auto 0 auto;} .mod-result .table>*{display:table-cell;height:100%;text-align:right;vertical-align:middle;} .mod-result .table>*:last-child{text-align:left;padding:0 10px;} .mod-result .fa{font-size:40px;width:100px;} .mod-result p{background:#ff9c00;color:#fff;padding:50px 0 50px 0;} .mod-result em{font-style:normal;line-height:20px;} .mod-result b{font-size:22px;font-weight:100;} .result-fail p{background:#999;} /* mod-order */ .mod-order{background:#fff;border-bottom:1px solid #ddd;border-top:1px solid #ddd;overflow:hidden;margin-bottom:10px;} .mod-order .mod-product{border:0;border-bottom:1px solid #ddd;} .mod-order .product-btn{padding:10px;overflow:hidden;} .product-total{border-bottom:1px solid #ddd;padding:10px;color:#333;font-size:12px;} .mod-search{height:44px;background:#bcbcbc;overflow:hidden;} .mod-search>*{display:block;width:100%;height:100%;padding:7px;color:#999;} .mod-search label{background:#fff;display:block;width:100%;height:100%;overflow:hidden;} .mod-search input{width:100%;height:100%;border:0;padding:0 0 0 30px;float:left;border-radius:5px;-webkit-transition:0.1s all ease-in-out;-moz-transition:0.1s all ease-in-out;-o-transition:0.1s all ease-in-out;transition:0.1s all ease-in-out;-webkit-appearance:none;} .mod-search .fa{position:relative;} .mod-search .fa::before{position:absolute;left:5px;top:5px;width:30px;height:30px;line-height:30px;text-align:right;display:block;} .mod-search input:focus{width:80%;} .mod-search .btn.btn-link{width:20%;color:#fff;float:left;} .search-list{width:100%;overflow:hidden;} .icon-vip{background:url(../img/wshop/vip.png) no-repeat 0 center;padding:0 0 0 22px;background-size:contain;margin:0 0 0 10px;} .icon-favorites{background:url(../img/wshop/favorites.png) no-repeat 0 center;padding:0 0 0 22px;background-size:contain;margin:0 0 0 10px;} .consignee{border-top:1px solid #ddd;border-bottom:1px solid #ddd;padding:10px;color:#999;background:#fff;} .consignee .big{width:50%;float:left;font-size:12px;color:#333;padding:5px 0;} .payment-info{margin-top:20px;color:#333;line-height:24px;text-align:center;} .payment-info .price{font-size:18px;} .icon{display:inline-block;width:20px;height:20px;background-image:url(../img/wshop/shop.png);-webkit-background-size:auto 20px;background-size:auto 20px;vertical-align:-3px;margin-right:5px;} .icon-1{background-position:0 0;} .icon-2{background-position:-20px 0;} .icon-3{background-position:-40px 0;} .icon-4{background-position:-60px 0;} [class^="o-icon-"]{display:block;width:25px;height:25px;margin:0 auto;background:url(../img/wshop/order-state.png) no-repeat;-webkit-background-size:auto 25px;background-size:auto 25px;position:relative;} .o-icon-1{background-position:0 0;} .o-icon-2{background-position:-25px 0;} .o-icon-3{width:30px;background-position:-50px 0;} .o-icon-4{background-position:-80px 0;} .o-icon-5{background-position:-105px 0;} .o-nun{position:absolute;font-size:12px;line-height:16px;padding:0 3px;color:#fff;border:2px solid #fff;border-radius:1000px;font-style:normal;background:#f25b22;right:-15px;top:-5px;} .mod-add{} .mod-add .box:after{display:block;content:"\f105";font-family:FontAwesome;width:20px;height:20px;position:absolute;background-position:-45px 0;-webkit-background-size:auto 15px;background-size:auto 15px;right:5px;font-size:24px;text-align:center;line-height:20px;top:50%;margin-top:-10px;} .mod-add .box{display:block;padding:10px 30px 10px 10px;background:#8791ac;color:#fff;position:relative;} .mod-add h1{height:30px;line-height:30px;font-size:18px;} .mod-add h1 span{display:block;width:50%;float:left;} .mod-add h1 span:last-child{text-align:right;} .select{width:50%;float:left;} .add-list .box{padding:5px 30px 5px 40px;border-bottom:1px solid #ccc;color:#666;background:#fff;} .add-list .li-checkbox{position:absolute;left:11px;top:50%;margin-top:-9px;} .addr-list{} .addr-list .list-item{padding:5px 30px 5px 40px;border-bottom:1px solid #ccc;color:#666;background:#fff;position:relative;} .addr-list .list-item .box{color:#666;background:#fff;} .addr-list .remove{position:absolute;left:11px;top:50%;margin-top:-19px;padding:10px;cursor:pointer;} .add-addr{display:block;color:#71c93d;padding:10px;} .mod-hide{display:none;} .btn-box{padding:5px 0;text-align:center;} .btn-fixed{position:fixed;width:100%;left:0;bottom:0;z-index:3;} .btn-box .btn{display:inline-block;margin:0 10px;float:none;} .mod-box dt{padding-left:43px;} .mod-box .u-icon{position:absolute;left:-34px;top:50%;margin-top:-13px;} .mod-box dt a{padding:14px 30px 14px 3px;} .mod-box dt a.fa::before{color:#333;font-size:16px;} .u-icon{display:inline-block;width:25px;height:25px;background-image:url(../img/wshop/user-icon.png);-webkit-background-size:auto 25px;background-size:auto 25px;vertical-align:middle;} .u-icon-1{background-position:0 0;} .u-icon-2{background-position:-25px 0;} .u-icon-3{background-position:-50px 0;} .u-icon-4{background-position:-75px 0;} .order-title{width:100%;height:45px;overflow:hidden;position:relative;} .order-title ul{display:table;border-bottom:1px solid #ccc;position:absolute;} .order-title li{display:table-cell;padding:0 10px;} .order-title a{display:block;font-size:16px;color:#565656;padding:0 5px;line-height:44px;white-space:nowrap;} .order-title .active{height:44px;line-height:43px;margin-bottom:-2px;border-bottom:2px solid #ff9c00;color:#ff9c00;} .order-list li{list-style:none;padding:0 10px;font-size:12px;border-top:1px solid #ccc;border-bottom:1px solid #ccc;background:#fff;} .order-num{height:40px;line-height:40px;color:#565656;border-bottom:1px solid #ccc;} .order-num span{float:left;} .order-state{float:right;color:#ccc;} .order-info{display:table;width:100%;padding:10px 0px;border-bottom:1px solid #ccc;} .order-info:last-child{border-bottom:none;} .order-img{width:51px;height:51px;float:left;margin-right:7px;border:1px solid #ccc;overflow:hidden;} .order-img img{width:100%;min-height:100%;} .order-info .cell{display:table-cell;vertical-align:top;color:#333;} .pro-num{width:70px;text-align:right;} .order-foot{line-height:25px;color:#000;} .order-foot:after{display:table;content:"";clear:both;} .total-price{text-align:right;padding:5px 0px;} .order-btn-box{padding:10px 0px;border-top:1px solid #ccc;text-align:right;} .order-btn-box .btn{display:inline-block;margin:0 0 0 10px;width:auto;height:30px;line-height:30px;padding:0 10px;color:#565656;background:#fff;border:1px solid #565656;} .product-text{} .product-text table{width:100%;padding:10px 0;line-height:20px;color:#999;border-bottom:1px solid #ccc;} .product-text table:last-child{border:none;} .product-text td:nth-child(2){text-align:right;} .mod-tab{width:80%;height:28px;line-height:26px;overflow:hidden;border-radius:5px;border:1px solid #ccc;margin:10px auto;} .mod-tab ul{display:table;width:100%;list-style:none;padding:0;} .mod-tab li{display:table-cell;table-layout:fixed;border-right:1px solid #ccc;text-align:center;} .mod-tab li:last-child{border-right:none;} .mod-tab li a{display:block;height:100%;font-size:12px;color:#333;} .mod-tab li .active{color:#fff;background:#ff9c00;} .buy-num{padding:10px;} .buy-num span{float:left;line-height:36px;} .buy-num .add-num{float:right;} .buy-num:after{clear:both;display:table;content:"";} .add-num{width:130px;height:32px;} .inline{display:inline-block!important;} .add-num .sub,.add-num .add{display:block;float:left;width:36px;height:36px;line-height:34px;color:#333;text-align:center;background:#fff;margin-right:0;border:1px solid #999;position:relative;} .add-num .sub{border-radius:3px 0 0 3px;border-right:none;} .add-num .add{border-radius:0 3px 3px 0;border-left:none;} .add-num .sub:after,.add-num .add:before,.add-num .add:after{display:block;position:absolute;content:"";background:#333;} .add-num .sub:after,.add-num .add:after{width:18px;height:2px;left:8px;top:16px;} .add-num .add:before{width:2px;height:18px;left:16px;top:8px;} .add-num .disabled{border-color:#ccc;background:#eee;} .add-num .disabled:before,.add-num .disabled:after{background:#999;} .add-num .text{width:52px;height:36px;float:left;line-height:32px;font-size:16px;color:#333;border:1px solid #999;background:#fff;} .add-num .text input{width:100%;height:100%;border:none;text-align:center;background-color:transparent;} .select-box{width:130px;height:32px;margin-top:10px;padding:0 10px;font-size:12px;background:#eee;position:relative;} .select-box p{height:16px;line-height:16px;margin:0;color:#333;} .select-box:after{display:block;content:"\f078";font-family:FontAwesome;font-size:14px;position:absolute;right:5px;top:6px;} .btn-done{position:absolute;right:0px;top:5px;} .btn-done .fa{font-size:16px;color:#333;} .product-text .price{text-align:right;margin-top:10px;font-size:14px;color:#c40000;} .mod-bg{display:none;position:fixed;width:100%;height:100%;left:0;top:0;background:rgba(0,0,0,0.6);z-index:99;} .mod-sel{display:none;position:absolute;left:0;bottom:0;width:100%;padding:10px;border-top:1px solid #ccc;background:#fff;} .mod-item{border-bottom:1px solid #ccc;} .mod-t{font-size:14px;line-height:44px;color:#333;} .mod-tag a{display:inline-block;height:32px;line-height:32px;padding:0 15px;margin:0 10px 10px 0;color:#333;border:1px solid #ccc;border-radius:3px;} .mod-discount{height:38px;line-height:38px;padding:0 15px;color:#333;border-bottom:1px solid #ccc;background:#fff;} .product-slider{height:240px;} .product-slider li{height:240px;} .product-slider img{max-height:240px;} .product-info{padding:10px;border-top:1px solid #ccc;border-bottom:1px solid #ccc;box-shadow:inset 0 1px 2px #ccc;} .product-name{height:40px;font-size:14px;color:#333;line-height:20px;overflow:hidden;position:relative;padding-right:50px;} .favorites{position:absolute;width:40px;height:40px;border-left:1px solid #ccc;text-align:center;right:0;top:0;} .favorites .fa{display:block;margin:0 auto;font-size:20px;} .favorites.active{color:#ff9c00;} .product-foot{padding:5px 0 0;} .product-foot .price{font-size:18px;color:#f25b22;} .product-foot small{font-size:12px;} .product-foot del{color:#999;} .product-foot b{font-weight:normal;float:right;line-height:22px;color:#999;} .product-box{margin-top:10px;border-top:1px solid #ccc;border-bottom:1px solid #ccc;background:#fff;} .product-t{padding:5px 10px;height:36px;line-height:26px;color:#333;} .p-right{padding-right:20px;position:relative;} .p-right:after{display:block;position:absolute;width:20px;text-align:center;font-size:20px;right:0px;top:5px;content:"\f105";font-family:"FontAwesome";-webkit-transition:-webkit-transform .5s;} .active .p-right:after{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);} .p-right+.edit{border-top:1px solid #ccc;} .product-tags{padding:0 10px;border-bottom:1px solid #ccc;} .product-tags a{display:inline-block;padding:0 10px;height:36px;line-height:36px;margin:0 10px 10px 0;color:#333;border:1px solid #999;border-radius:2px;background:#fff;} .product-tags .active{color:#f25b22;border-color:#f25b22;} .p-total{margin-top:10px;} .edit{padding:10px;width:100%;color:#999;line-height:1.5;overflow:hidden;} .edit *{max-width:100%;overflow:hidden;} .p-detail{padding-left:10px;line-height:18px;color:#666;} .p-detail dl{width:100%;padding:10px 10px 10px 0;display:table;border-top:1px solid #ccc;} .p-detail dt,.p-detail dd{display:table-cell;} .p-detail dt{width:100px;} .p-detail dd{text-align:right;color:#333;} /* 11-4 */ .g-top img{width:100%;} .g-bgf{background:#fff;} .g-txt1{color:#666;font-size:15px;line-height:30px;text-align:center;padding:12px 0;border-bottom:#dfdfdf 1px solid;} .g-txt1 span{color:#ff9c00;font-size:18px;display:block;} .g-buy-btn{text-align:right;padding:10px 5px;border-bottom:#dfdfdf 1px solid;} .g-buy-btn a{color:#333;margin:0 5px;font-size:14px;border:#333 1px solid;line-height:30px;display:inline-block;padding:0 12px;border-radius:3px;} .g-buy-btn a:active{opacity:0.8;} .g-tips{font-size:14px;color:#666;padding:5px 0;padding-left:8px;} .g-list-a{padding:0 4px;} .g-list-a a{padding:0 4px;width:50%;float:left;margin-bottom:8px;} .g-bord1{background:#fff;border:#ccc 1px solid;border-radius:3px;overflow:hidden;} .g-product-img img{width:100%;height:100%;} .g-product-text{color:#666;line-height:16px;font-size:14px;margin:0 2px;} .g-product-text b{border-bottom:#dfdfdf 1px dashed;display:block;height:32px;margin:6px 0;font-weight:normal;overflow:hidden;} .g-product-text span{height:auto;overflow:hidden;display:block;line-height:35px;font-size:14px;color:#c40000;} .g-product-text span del{color:#999;line-height:35px;float:right;} .g-track{margin-top:10px;border-top:1px solid #ccc;background:#fff;} .g-track .text{font-size:15px;color:#666;padding:15px;border-bottom:1px solid #ccc;} .under-line{text-decoration:underline;} /* 11-6 */ .tab-box{display:none;} .tab-box .product-box,.tab-box .product-box .p-detail dl:first-child{border-top:none;} .no-coment{font-size:14px;color:#52596b;padding:20px 0;text-align:center;} .g-comment-box{display:none;} .tab-tit{background:#fff;height:auto;overflow:hidden;} .tab-tit ul li{width:25%;float:left;list-style:none;text-align:center;line-height:40px;font-size:14px;} .tab-tit ul li a{display:block;color:#52596b} .tab-tit ul li:last-child{border:none;} .tab-tit ul li.active a{color:#f25b22;border-bottom:1px solid #f25b22;} .mart10{margin-top:10px;} .ml10{margin-left:10px;} .padb10{padding-bottom:10px;} .g-comment-tit{padding:10px 8px;width:100%;box-sizing:border-box;} .g-comment-tit ul{border:#ccc 1px solid;border-radius:3px;width:100%;display:table;} .g-comment-tit ul li{display:table-cell;border-right:1px solid #ccc;color:#565656;font-size:13px;line-height:28px;text-align:center;list-style:none;background:#fff;} .g-comment-tit ul li:last-child{border-right:none;} .g-comment-tit ul li.active{color:#f25b22} .g-comment-tit ul li:first-child{border-radius:4px 0 0 4px} .g-comment-tit ul li:last-child{border-radius:0 4px 4px 0} .g-com-list{padding:0 3px 10px;border-bottom:#ccc 1px dashed;} .g-com-list:last-child{border-bottom:none;} .g-com-star{color:#ddd;font-size:12px;line-height:20px;padding:5px 0;} .g-comment-box{background:#fff;border-bottom:#ccc 1px solid;padding:0 10px;} .g-com-p1{font-size:13px;color:#666;line-height:18px;} .col4{color:#444;} .g-com-huifu{font-size:13px;color:#666;line-height:18px;position:relative;padding-top:10px;} .g-com-huifu .g-com-huifubox{background:#f3f3f3;padding:6px 2px;} .g-com-huifu .fa-caret-up{position:absolute;color:#f3f3f3;font-size:16px;left:15px;top:0px;} .comment{border-top:1px solid #ccc;border-bottom:1px solid #ccc;padding-left:10px;background:#fff;} .comment-t{height:43px;line-height:42px;} .comment-box{border-top:1px solid #ccc;color:#52596b;padding:20px 10px 20px 0;} .pro-name{} .pro-name a{display:block;} .pro-name a:after{display:table;content:"";clear:both;} .pro-name span.fl{width:52px;height:52px;border:#cfcfcf 1px solid;margin-right:20px;} .pro-name span.fl img{width:100%;height:100%;} .pro-name-pbox p{} .pro-name-p1{height:32px;color:#333;overflow:hidden;font-size:12px;color:#333;line-height:16px;} .pro-name-pbox p.red{color:#c40000;line-height:16px;margin-top:4px;} .pro-info{padding:10px 0 0;line-height:24px;margin-bottom:10px;} .pro-info .fr{font-size:15px;color:#ff9c00;} .g-com-txt{width:100%;padding:5px 9px;line-height:20px;border:none;background:#eee;} .star{background:url(../img/wshop/star.png) no-repeat;background-position:0 -24px;width:24px;height:24px;display:inline-block;background-size:24px;margin-left:5px;vertical-align:-4px;} .star.on{background-position:0 0} .g-sub1{font-size:16px;color:#fff;background:#ff9c00;border-radius:1000px;height:30px;line-height:30px;width:155px;border:none;margin:0 auto;} .pad10{padding:10px;} .auto{height:auto;overflow:hidden;} .yellow{color:#ff9c00;} /* kan jia */ .bargain-top{height:300px;padding:10px 10px 0;margin-bottom:5px;background:#fe5d38;position:relative;} .bargain-top:after{display:block;content:"";width:100%;height:5px;background:#fff url(../img/wshop/bg-line.png) repeat-x;-webkit-background-size:auto 100%;background-size:auto 100%;position:absolute;left:0;bottom:-5px;} .bargain-top .bg{width:130%;height:100%;background:url(../img/wshop/top-light.png) center center;-webkit-background-size:100% 100%;background-size:100% 100%;position:absolute;left:-29%;top:0;} .bargain-top-f .bg{left:-14%;} .b-msg-box{display:table;width:100%;} .b-img{width:55px;height:55px;float:left;margin-right:-10px;background:url(../img/wshop/user-img.png) no-repeat;-webkit-background-size:100% 100%;background-size:100% 100%;} .b-img img{width:100%;min-height:100%;border-radius:1000px;} .b-msg{display:table-cell;width:100%;vertical-align:top;} .b-msg-bg{max-width:250px;margin-top:10px;padding:8px 8px 8px 23px;border-radius:5px;background:url(../img/wshop/msg-bg.png) no-repeat;-webkit-background-size:auto 100%;background-size:auto 100%;position:relative;} .b-msg-bg:after{display:block;content:"";width:10px;height:43px;background:url(../img/wshop/msg-bg.png) right no-repeat;-webkit-background-size:auto 100%;background-size:auto 100%;right:0;top:0;position:absolute;} .b-msg-bg input, .b-msg-bg span{display:inline-block;width:100%;height:28px;padding:0 5px;line-height:28px;border:1px solid #ccc;border-radius:5px;background:#fff;} .b-msg-bg span{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;} .pro-box{width:34%;height:108px;position:absolute;border-radius:1000px;border:5px solid #feab97;background:#fff;left:18%;top:40%;overflow:hidden;} .pro-box-f{left:33%;} .pro-img{width:100%;height:100%;overflow:hidden;} .pro-img img{width:100%;min-height:100%;border-radius:1000px;} .pro-price{width:100%;height:26px;text-align:center;font-size:10px;line-height:26px;color:#fff;background:rgba(0,0,0,.3);position:absolute;left:0;bottom:0;} .sub-price{width:61px;height:40px;padding:5px 0;color:#e64c4c;text-align:center;font-size:10px;background:url(../img/wshop/sub-price.png) no-repeat;-webkit-background-size:100% 100%;background-size:100% 100%;position:absolute;top:55%;left:10px;} .sub-price-f{left:18.5%;} .order-time{width:85px;padding:10px 0;text-align:center;font-size:12px;color:#333;position:absolute;border-radius:5px;right:10px;top:45%;background:rgba(255,255,255,.8);} .order-time .num{font-size:14px;margin:5px 0;} .order-time .num span{display:inline-block;width:30px;height:16px;padding:0 3px;color:#fff;letter-spacing:10px;background:url(../img/wshop/time.png);-webkit-background-size:100% 100%;background-size:100% 100%;} .order-detail{background:#fff;} .msg-1, .msg-2{font-size:11px;color:#fe5d38;position:absolute;-webkit-background-size:100% 100%;background-size:100% 100%;} .msg-1 b, .msg-2 b{color:#ff0000;} .msg-1{width:77px;height:49px;padding:6px 10px 15px;background-image:url(../img/wshop/msg-1.png);top:35.6%;left:45%;} .msg-2{width:85px;height:55px;padding:10px 10px;background-image:url(../img/wshop/msg-2.png);top:75%;left:45%;} .bargain-top-f .msg-1{left:61.5%;} .bargain-top-f .msg-2{left:58%;} .btn-table{width:100%;display:table;padding:10px;table-layout:fixed;} .cell{display:table-cell;} .cell-big{width:40%;} .btn-bargain{color:#420c00;background:#f6d500;} .btn-submit{background:#fe5d38;} .btn-big{width:100%;} .btn-table .cell{padding:0 10px;} .order-detail .mod-product{border-top:1px solid #ccc;border-bottom:1px solid #ccc;} .order-detail .product-text span{color:#999;} .order-detail .product-img{float:left;} .order-detail .mod-product{display:table;width:100%;} .order-detail .product-text{vertical-align:top;padding:0 10px;} .order-detail .product-text b{font-size:14px;max-height:36px;} .order-detail .product-text span{display:block;height:18px;} .pro-add-price{height:60px;float:right;text-align:right;color:#010101;} .pro-add-price b{font-size:14px;color:#c40000;font-weight:normal;} .friend-help{margin-top:20px;border-top:1px solid #ccc;border-bottom:1px solid #ccc;color:#333;background:#fff;} .friend-help .f-t{height:30px;line-height:30px;text-align:center;} .friend-help .no-friend{line-height:30px;text-align:center;padding:10px 0;color:#999;border-top:1px solid #ccc;} .friend-help ul{list-style:none;margin:0;} .friend-help li{width:100%;display:table;padding:10px;border-top:1px solid #ccc;} .friend-help .img{width:44px;height:44px;float:left;border-radius:1000px;overflow:hidden;} .friend-help .img img{width:100%;min-height:100%;} .friend-help .text{display:table-cell;width:100%;padding:0 10px;font-size:14px;vertical-align:top;} .friend-help .text .name{font-size:11px;color:#666;} .friend-help .text .time{font-size:10px;color:#999;} .friend-help .price{height:44px;color:#c40000;float:right;} .mod-pop{position:fixed;width:100%;height:100%;left:0;top:0;background:rgba(0,0,0,.7);} .friend-share{background:url(../img/wshop/share.png) no-repeat top right;width:100%;height:100%;top:0;-webkit-background-size:170px auto;background-size:170px auto;} .attention{background:url(../img/wshop/attention.png) no-repeat top right;width:100%;height:100%;top:0;-webkit-background-size:232px auto;background-size:170px auto;} .b-text{padding:10px;font-size:15px;color:#666;} .text-center{text-align:center;} .text-yellow{color:#fe5d38;} .text-muted{color:#999;} .text-price{color:#f25b22;} .text-normal{color:#333;} .text-black{color:#000;} .text-bb{color:#52596b;} .size-normal{font-size:14px;} .size-big{font-size:18px;} .b-form{padding:10px;color:#fff;background:#fe5d38;position:relative;} .b-form:after{display:block;content:"";width:100%;height:5px;background:#f0f0f0 url(../img/wshop/bg-line.png) repeat-x;-webkit-background-size:auto 100%;background-size:auto 100%;position:absolute;left:0;bottom:-5px;} .b-form .form-t{text-align:center;} .b-form .input{} .b-form .form-li{display:table;width:100%;margin-top:10px;} .b-form .form-li span{display:block;width:60px;margin-right:10px;font-size:15px;float:left;line-height:32px;} .b-form .form-li .cell{width:100%;vertical-align:top;} .pay-box{font-size:15px;line-height:18px;color:#333;border-top:1px solid #ccc;border-bottom:1px solid #ccc;background:#fff;} .pay-t{height:45px;line-height:45px;padding:0 10px;border-bottom:1px solid #ccc;} .p-name{margin-right:10px;} .p-tips{color:#f25b22;} .pay-box ul{padding-left:10px;list-style:none;} .pay-box li{padding:12px 50px 12px 6px;border-bottom:1px solid #ccc;position:relative;} .pay-box li:last-child{border-bottom:none;} [class^=pay-icon]{display:block;width:36px;height:36px;margin-right:15px;float:left;background:url(../img/wshop/pay-icon.png);-webkit-background-size:auto 36px;background-size:auto 36px;} .pay-icon-weixin{background-position:0 0;} .pay-icon-alipay{background-position:-36px 0;} .pay-icon-tenpay{background-position:-72px 0;} .pay-icon-yeah{background-position:-108px 0;} .pay-icon-card{background-position:-144px 0;} .pay-icon-post{background-position:-180px 0;} .pay-box li input{display:none;} .pay-box .tips{font-size:11px;color:#999;} .pay-box li:after{display:block;content:"";width:24px;height:24px;background-image:url(../img/wshop/radio.png);-webkit-background-size:auto 24px;background-size:auto 24px;position:absolute;right:15px;top:18px;} .pay-box li.active:after{background-position:-24px 0;} /* 11-25 add */ .view-more{padding:10px;} /* search */ .search{height:44px;padding:8px;border-bottom:1px solid #979797;background:#b3b3b3;} .search-box{height:28px;padding:0 28px 0 24px;border-radius:5px;background:#fff;position:relative;} .search-box:before{display:block;content:"";width:13px;height:13px;background:url(../img/wshop/search.png) no-repeat;-webkit-background-size:100% 100%;background-size:100% 100%;position:absolute;left:6px;top:8px;} .search-text{width:100%;height:100%;border:none;} .search-box .fa-times{position:absolute;width:28px;height:28px;line-height:28px;text-align:center;color:#999;right:0px;top:0px;} .s-list{width:100%;} .s-list dl{} .s-list dt{height:40px;line-height:40px;color:#52596b;padding:0 30px 0 10px;border-bottom:1px solid #ccc;background:#f7f7f7;position:relative;} .s-list dt:after{position:absolute;display:block;content:"\f107";font-size:24px;font-family:"FontAwesome";color:#b3b3b3;right:10px;top:0;-webkit-transition:-webkit-transform .5s;} .s-list dt.active{color:#f25b22;background:#fcfcfc;} .s-list dt.active:after{-webkit-transform: rotate(-180deg);} .s-list dd{display:none;background:#fff;padding:15px;border-bottom:1px solid #ccc;} .s-list .tags{display:inline-block;padding:5px 8px;margin:5px 8px 5px 0;line-height:24px;color:#666;border:1px solid #666;border-radius:3px;} .s-list .tags.active{color:#f25b22;border-color:#f25b22;} /* kang 15-1-23 */ .error{width:100%;overflow:hidden;} .error img{width:100%;} .popup{display:none;position:fixed;left:0;top:0;width:100%;height:100%;padding:0 10px;background:rgba(0,0,0,.8);z-index:111;} .pop-body{position:relative;border-radius:5px;overflow:hidden;background:#fff;top:50%;-webkit-transform:translate(0,-50%);transform:translate;(-50%,-50%)} .pop-t{height:44px;line-height:44px;font-size:18px;color:#333;text-align:center;background:#ddd;} .pop-m{padding:10px;font-size:15px;color:#000;line-height:24px;} .pop-f{width:100%;display:table;padding:10px 5px;table-layout:fixed;} .pop-f .cell{display:table-cell;padding:0 5px;} .pop-f .btn{width:100%;} .btn-cancel{color:#fff;background:#feb801;} .btn-fn{color:#fff;background:#f25b22;} .succness-tip{text-align:center;} .succness{width:40px;height:40px;display:block;margin:10px auto;background-image:url(../img/wshop/succness.png);-webkit-background-size:100% 100%; background-size:100% 100%;}
front/stylesheets/wshop-0.css
body{background:#f0f0f0;font-family:"\5fae\8f6f\96c5\9ed1";} .body{overflow:hidden;} .header{position:fixed;display:table;width:100%;height:51px;border-top:1px solid #f25b22;left:0;bottom:0;background:#fff;z-index:9;table-layout:fixed;} .header .cell{vertical-align:top;padding:6px 5px;color:#52596b;} .header .valign-m{vertical-align:middle;} .header .cell p{line-height:1;} .header .cell.big{width:60%;} .header + .body{padding-bottom:20px;} .load-more{height:34px;padding:10px 10px 0;line-height:24px;text-align:center;font-size:12px;color:#999;} .scroll-top{position:fixed;width:46px;height:46px;background:url(../img/wshop/scrollTop.png) no-repeat;-webkit-background-size:100% 100%;background-size:100% 100%;right:5px;bottom:56px;} .clearfix:after{content:"";display:table;clear:both;} .body-result .html{padding:0 0 40px 0;} .body-shopcar .html{padding:0 0 150px;} .body-shopcar footer{height:150px;margin-top:-150px;line-height:60px;} .body-result footer{height:35px;margin-top:-35px;line-height:35px;} .slider-page a{width:6px;height:6px;} .btn-buy{background:#ff9c00;} .btn-shopcar{background:#c40000;} .btn-yellow{background:#f25b22;} .btn-gobuy{background:#feb801;} .btn-white{color:#333;border:1px solid #ccc;background:#fff;} .btn .fa{margin-right:5px;font-size:20px;} .btn.btn-link{background:none;color:#ff9c00;} .btn-radius{border-radius:1000px;} .red{color:#c40000;} .slider-product img{width:100%;min-height:100%;} .slider-product .slider-list,.slider-product .slider-list li,.slider-product .slider-list a{height:170px;} .margin-left-10{margin-left:10px;} /* mod-shop */ .shop-box{padding-left:40px;background:#fff;} .shop-box .li-checkbox{position:absolute;left:-33px;top:50%;margin-top:-14px;padding:0;} .mod-shop{height:40px;line-height:39px;border-top:1px solid #ccc;border-bottom:1px solid #ccc;background:#f4f4f4;position:relative;} .mod-shop .li-checkbox{float:left;padding:10px 7px;} /* mod-product */ .mod-product{padding:10px;border:1px solid #eee;border-top:0;border-left-color:#fff;background:#fff;color:#333;position:relative;display:block;} .body-shopcar .mod-product{border-right:0;min-height:100px;} .mod-product:nth-child(2n){border-right-color:#fff;} .mod-product.last{box-shadow:0 1px 0 rgba(0,0,0,0.1);margin-bottom:2px;} .product-img{overflow:hidden;} .li-checkbox i{width:18px;height:18px;border-radius:10000px;-webkit-border-radius:1000px;-moz-border-radius:1000px;border:0;box-shadow:0 0 1px #333;background:#eee;} .li-checkbox.selected i,.form-li.selected .li-checkbox i,.li-checkbox.selected i{background:#f25b22;box-shadow:0 0 1px #f25b22;} .li-checkbox i:before,.form-li.selected .li-checkbox i:before,.li-checkbox.selected i:before{color:#fff;width:18px;height:18px;line-height:20px;left:-1px;} .li-checkbox input[type=radio],.li-checkbox input[type=checkbox]{display:none;} .product-text .li-checkbox{display:inline-block;vertical-align:-4px;} .product-text .li-checkbox i:before,.product-text .li-checkbox.selected i:before{} .product-text label p{display:inline-block;margin-left:10px;} .product-text del{font-size:12px;color:#999;padding:0 5px;} .product-text small{font-size:12px;color:#999;margin-left:10px;} .product-text b{font-weight:normal;font-size:12px;} .product-img{height:100px;} .product-img img{width:100%;min-height:100%;vertical-align:top;} .mod-box .remarks{padding:10px 10px 10px 0;} .mod-box .remarks .input{padding:0 10px;background:#e8e8e8;} .mod-box .remarks .input::-webkit-input-placeholder{color:#666;} .body-shopcar .product-img img{width:100%;min-height:100%;} .product-img a{width:60px;height:60px;display:block;overflow:hidden;background:#eee;} .product-ver{width:50%;float:left;height:170px;} .product-ver .product-text b{height:30px;line-height:30px;display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;} .product-hor{width:100%;} .product-hor>*,.mod-shopcar>*{display:table-cell;vertical-align:middle;} .body-member .product-hor>*{display:block;float:left;} .body-member .product-hor>.product-text{display:table-cell;float:none;} .product-hor .product-img{width:60px;height:100%;vertical-align:top;} .product-hor .product-text{padding:0 0 0 10px;width:100%;vertical-align:top;} .product-hor .product-text b{margin-top:-1px;display:block;line-height:18px;max-height:54px;overflow:hidden;} .product-hor .product-num{text-align:right;vertical-align:top;} .product-hor .btn-remove{display:block;color:#52596b;font-size:20px;margin-top:30px;} .shopcar-text{width:100%;text-align:right;} .product-radio{padding:0 10px 0 0;} .radio-item{vertical-align:top;padding-top:20px;} .product-title{border-top:1px solid #ddd;border-right:0;} .product-title .product-text b{width:70%;float:left;color:#666;font-weight:normal;padding-bottom:5px;padding-right:6%;line-height:18px;border-right:1px solid #ddd;min-height:50px;font-size:14px;} .product-title .product-text span{font-size:20px;} .product-title .product-text small,.product-title .product-text del{font-size:14px;} .product-title .product-sc{display:block;width:24%;text-align:center;float:right;} .product-sc>*{color:#666;} .product-sc > *{display:block;} .product-sc .fa{font-size:20px;height:30px;line-height:30px;} .product-sc:active>*,.product-sc.active>*{color:#ff9c00;} .body-white{background:#fff;} .body-cke{background:#fff;height:100%;padding:20px 20px 46px 20px;line-height:20px;word-spacing:normal;word-break:normal;word-break:break-all;color:#666;} .body-cke ul,.body-cke ol{-webkit-padding-start:20px;} .body-cke img{max-width:100%;float:left;margin:5px 0;} /* mod-size */ .mod-size{background:#fff;border:1px solid #ddd;border-left:0;border-right:0;margin:10px 0 0 0;padding:10px;} .mod-size dt{height:30px;line-height:30px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;} .mod-size dd{overflow:hidden;} .mod-size dd>*{margin-left:0;} .mod-size dd p{display:block;line-height:26px;font-size:12px;} /* mod-number */ .mod-number{display:block;overflow:hidden;} .mod-number > *{height:30px;background:#eeeeee;color:#333;display:inline-block;float:left;} .mod-number i{height:30px;line-height:30px;width:30px;position:relative;} .mod-number i:before,.mod-number i:after{content:" ";position:absolute;top:50%;left:50%;background:#333;} .mod-number i:before{width:20px;height:2px;margin:-1px 0 0 -10px;} .mod-number i:after{width:2px;height:20px;margin:-10px 0 0 -1px;} .mod-number i.number-minus:after{display:none;} .mod-number i:active,.mod-number i.active{background:#eee;} .mod-number input{border:0;text-align:center;width:100px;margin:0 2px;font-size:14px;border-radius:0;} /* mod-box */ /* mod-box */ .mod-box dl:first-child{border-top:1px solid #ddd;} .mod-box dd{border-bottom:1px solid #ddd;} .box-category dt{background:#f0eff4;} .fa-chevron-right b{color:#333;} .fa-chevron-down b{color:#000;} .box-category dd{background:#fff;padding:12px;} .box-category dd a,.mod-size dd>span{height:30px;line-height:30px;padding:0 5px;margin:5px;background:#eeeeee;color:#666;display:inline-block;} .box-category dd a:active,.box-category dd a.active,.mod-size dd >span.active{background:#ff9c00;color:#fff;} .body-gobuy .mod-box{margin-top:0;border-top:1px solid #ddd;border-bottom:1px solid #ddd;background:#fff;} .mod-box .box-li{padding:10px;line-height:22px;border-bottom:1px solid #ddd;} .mod-box .box-li:last-child>*{border:0;} .mod-box .box-li:last-child .product-img{height:auto;} .box-product{margin-top:10px;} .mod-box.box-product dt .box-shop{margin:0;padding-left:10px;} .mod-box.box-product dl{border-bottom:0;} .mod-box.box-product dd{overflow:hidden;padding:0 10px 10px 10px;} /* mod-shopcar */ .mod-shopcar{position:fixed;bottom:51px;color:#333;border-top:1px solid #ccc;background:#fff;width:100%;height:50px;left:0;z-index:100;overflow:hidden;} .mod-shopcar>*{padding:0 10px;height:50px;} .mod-shopcar>*:last-child .btn{float:right;width:100px;} .mod-shopcar.mod-bottom{bottom:0;display:table;} .mod-shopcar.mod-bottom .shopcar-btn{width:50%;} /* mod-title */ .mod-title{height:30px;line-height:30px;color:#333;padding:0 10px;} .shop-name{height:44px;font-size:16px;line-height:44px;padding-left:10px;color:#c40000;background:#f0f0f0;} /* box-form */ .form-li input::-webkit-input-placeholder{color:#999;font-weight:100;} .box-form{border:1px solid #ddd;border-left:0;border-right:0;background:#fff;} .box-form .input{font-size:12px;} .box-form{padding-left:10px;} .box-form .form-li{padding:6px 0;border-bottom:1px solid #ddd;} .box-form .form-li:last-child > *{border:0;} .box-form .form-li .li-l{padding-left:0;} .box-form .form-li .fa{color:#eee;font-size:20px;padding-right:10px;width:26px;} .box-form .li-l b{width:100px;text-align:left;} .box-form .input{border:0;} .form-li select{-webkit-appearance:none;} .form-li .mod-fa.fa{position:relative;display:block;width:100%;font-size:14px;line-height:32px;color:#999;font-weight:100;} .form-li .mod-fa:before{position:absolute;width:20px;height:20px;display:block;line-height:20px;text-align:center;right:0;top:50%;margin:-10px 0 0 0;font-size:20px;} .form-radio .form-li{min-height:40px;} .form-radio .form-li>*{padding-top:10px;padding-bottom:10px;} .form-radio .form-li .li-r{line-height:22px;} .box-city dd{padding:0;} .box-city dd a{padding:12px 10px;display:block;color:#666;} /* mod-member */ .mod-member{background:url(../img/wshop/bg-member.jpg) no-repeat;background-size:100% 100%;position:relative;} .member-info{display:table;width:100%;padding:10px 0;} .info-img{width:100px;float:left;text-align:center;} .info-img a{display:block;width:60px;height:60px;margin:0 auto;overflow:hidden;border-radius:1000px;background:#a4a4a4;border:2px solid #fff;} .info-img b{font-weight:normal;line-height:20px;} .info-img img{width:100%;min-height:100%;vertical-align:top;} .info-text{display:table-cell;width:100%;vertical-align:middle;} .info-text p{line-height:30px;} .info-text a{color:#000;} .integral{padding:3px 10px;color:#fff;border-radius:1000px;background:#333;} .member-tab{width:100%;height:50px;background:rgba(0,0,0,0.4);} .member-tab>*{width:20%;display:block;float:left;height:50px;padding:5px 0;color:#fff;text-align:center;} .member-tab>*:first-child>*{border:0;} .member-tab a>*{display:block;line-height:20px;border-left:1px solid rgba(255,255,255,0.5);font-weight:normal;} .member-tab a:active,.member-tab a.active{background:rgba(76,76,76,0.8);} .member-tab a:active >*,.member-tab a.active >*,.member-tab a:active + a>*,.member-tab a.active + a>*{border:0;} .tab-panel{display:none;} .tab-panel.active{display:block;} .user-tab{padding:10px 0;height:60px;border-top:1px solid #ccc;border-bottom:1px solid #ccc;margin-bottom:10px;background:#fff;} .user-tab a.active,.user-tab a:active{background:#fff;} .user-tab a{height:100%;padding:0;color:#333;} .user-title{height:46px;padding:0 10px;line-height:46px;font-size:16px;position:relative;background:#fff;} .user-title .fa{position:absolute;right:10px;top:50%;margin-top:-8px;} .product-btn>*{vertical-align:middle;font-size:12px;} .product-btn>*:first-child{float:left;line-height:20px;} .product-btn>*:last-child{display:table-cell;} .product-btn .btn-buy{width:100px;display:inline-block;float:right;} .product-btn .btn-view{width:60px;display:inline-block;float:right;margin-right:10px;background:#ff9c00;} .product-btn .red{font-size:14px;} .product-btn small{color:#999;display:block;} .box-category{margin:0;} .mod-null{padding:200px 0 100px 0;color:#333;} .mod-null>*{margin:10px auto;} .null-shopcar{background:url(../img/shop-null.png) no-repeat center 100px;background-size:auto 60px;} .null-order{background:url(../img/order-null.png) no-repeat center 100px;background-size:auto 60px;} .mod-result{padding:0px 0 10px 0;margin:0;} .mod-result>p{margin:0;} .mod-result>.btn{margin:100px auto 0 auto;} .mod-result .table>*{display:table-cell;height:100%;text-align:right;vertical-align:middle;} .mod-result .table>*:last-child{text-align:left;padding:0 10px;} .mod-result .fa{font-size:40px;width:100px;} .mod-result p{background:#ff9c00;color:#fff;padding:50px 0 50px 0;} .mod-result em{font-style:normal;line-height:20px;} .mod-result b{font-size:22px;font-weight:100;} .result-fail p{background:#999;} /* mod-order */ .mod-order{background:#fff;border-bottom:1px solid #ddd;border-top:1px solid #ddd;overflow:hidden;margin-bottom:10px;} .mod-order .mod-product{border:0;border-bottom:1px solid #ddd;} .mod-order .product-btn{padding:10px;overflow:hidden;} .product-total{border-bottom:1px solid #ddd;padding:10px;color:#333;font-size:12px;} .mod-search{height:44px;background:#bcbcbc;overflow:hidden;} .mod-search>*{display:block;width:100%;height:100%;padding:7px;color:#999;} .mod-search label{background:#fff;display:block;width:100%;height:100%;overflow:hidden;} .mod-search input{width:100%;height:100%;border:0;padding:0 0 0 30px;float:left;border-radius:5px;-webkit-transition:0.1s all ease-in-out;-moz-transition:0.1s all ease-in-out;-o-transition:0.1s all ease-in-out;transition:0.1s all ease-in-out;-webkit-appearance:none;} .mod-search .fa{position:relative;} .mod-search .fa::before{position:absolute;left:5px;top:5px;width:30px;height:30px;line-height:30px;text-align:right;display:block;} .mod-search input:focus{width:80%;} .mod-search .btn.btn-link{width:20%;color:#fff;float:left;} .search-list{width:100%;overflow:hidden;} .icon-vip{background:url(../img/wshop/vip.png) no-repeat 0 center;padding:0 0 0 22px;background-size:contain;margin:0 0 0 10px;} .icon-favorites{background:url(../img/wshop/favorites.png) no-repeat 0 center;padding:0 0 0 22px;background-size:contain;margin:0 0 0 10px;} .consignee{border-top:1px solid #ddd;border-bottom:1px solid #ddd;padding:10px;color:#999;background:#fff;} .consignee .big{width:50%;float:left;font-size:12px;color:#333;padding:5px 0;} .payment-info{margin-top:20px;color:#333;line-height:24px;text-align:center;} .payment-info .price{font-size:18px;} .icon{display:inline-block;width:20px;height:20px;background-image:url(../img/wshop/shop.png);-webkit-background-size:auto 20px;background-size:auto 20px;vertical-align:-3px;margin-right:5px;} .icon-1{background-position:0 0;} .icon-2{background-position:-20px 0;} .icon-3{background-position:-40px 0;} .icon-4{background-position:-60px 0;} [class^="o-icon-"]{display:block;width:25px;height:25px;margin:0 auto;background:url(../img/wshop/order-state.png) no-repeat;-webkit-background-size:auto 25px;background-size:auto 25px;position:relative;} .o-icon-1{background-position:0 0;} .o-icon-2{background-position:-25px 0;} .o-icon-3{width:30px;background-position:-50px 0;} .o-icon-4{background-position:-80px 0;} .o-icon-5{background-position:-105px 0;} .o-nun{position:absolute;font-size:12px;line-height:16px;padding:0 3px;color:#fff;border:2px solid #fff;border-radius:1000px;font-style:normal;background:#f25b22;right:-15px;top:-5px;} .mod-add{} .mod-add .box:after{display:block;content:"\f105";font-family:FontAwesome;width:20px;height:20px;position:absolute;background-position:-45px 0;-webkit-background-size:auto 15px;background-size:auto 15px;right:5px;font-size:24px;text-align:center;line-height:20px;top:50%;margin-top:-10px;} .mod-add .box{display:block;padding:10px 30px 10px 10px;background:#8791ac;color:#fff;position:relative;} .mod-add h1{height:30px;line-height:30px;font-size:18px;} .mod-add h1 span{display:block;width:50%;float:left;} .mod-add h1 span:last-child{text-align:right;} .select{width:50%;float:left;} .add-list .box{padding:5px 30px 5px 40px;border-bottom:1px solid #ccc;color:#666;background:#fff;} .add-list .li-checkbox{position:absolute;left:11px;top:50%;margin-top:-9px;} .addr-list{} .addr-list .list-item{padding:5px 30px 5px 40px;border-bottom:1px solid #ccc;color:#666;background:#fff;position:relative;} .addr-list .list-item .box{color:#666;background:#fff;} .addr-list .remove{position:absolute;left:11px;top:50%;margin-top:-19px;padding:10px;cursor:pointer;} .add-addr{display:block;color:#71c93d;padding:10px;} .mod-hide{display:none;} .btn-box{padding:5px 0;text-align:center;} .btn-fixed{position:fixed;width:100%;left:0;bottom:0;z-index:3;} .btn-box .btn{display:inline-block;margin:0 10px;float:none;} .mod-box dt{padding-left:43px;} .mod-box .u-icon{position:absolute;left:-34px;top:50%;margin-top:-13px;} .mod-box dt a{padding:14px 30px 14px 3px;} .mod-box dt a.fa::before{color:#333;font-size:16px;} .u-icon{display:inline-block;width:25px;height:25px;background-image:url(../img/wshop/user-icon.png);-webkit-background-size:auto 25px;background-size:auto 25px;vertical-align:middle;} .u-icon-1{background-position:0 0;} .u-icon-2{background-position:-25px 0;} .u-icon-3{background-position:-50px 0;} .u-icon-4{background-position:-75px 0;} .order-title{width:100%;height:45px;overflow:hidden;position:relative;} .order-title ul{display:table;border-bottom:1px solid #ccc;position:absolute;} .order-title li{display:table-cell;padding:0 10px;} .order-title a{display:block;font-size:16px;color:#565656;padding:0 5px;line-height:44px;white-space:nowrap;} .order-title .active{height:44px;line-height:43px;margin-bottom:-2px;border-bottom:2px solid #ff9c00;color:#ff9c00;} .order-list li{list-style:none;padding:0 10px;font-size:12px;border-top:1px solid #ccc;border-bottom:1px solid #ccc;background:#fff;} .order-num{height:40px;line-height:40px;color:#565656;border-bottom:1px solid #ccc;} .order-num span{float:left;} .order-state{float:right;color:#ccc;} .order-info{display:table;width:100%;padding:10px 0px;border-bottom:1px solid #ccc;} .order-info:last-child{border-bottom:none;} .order-img{width:51px;height:51px;float:left;margin-right:7px;border:1px solid #ccc;overflow:hidden;} .order-img img{width:100%;min-height:100%;} .order-info .cell{display:table-cell;vertical-align:top;color:#333;} .pro-num{width:70px;text-align:right;} .order-foot{line-height:25px;color:#000;} .order-foot:after{display:table;content:"";clear:both;} .total-price{text-align:right;padding:5px 0px;} .order-btn-box{padding:10px 0px;border-top:1px solid #ccc;text-align:right;} .order-btn-box .btn{display:inline-block;margin:0 0 0 10px;width:auto;height:30px;line-height:30px;padding:0 10px;color:#565656;background:#fff;border:1px solid #565656;} .product-text{} .product-text table{width:100%;padding:10px 0;line-height:20px;color:#999;border-bottom:1px solid #ccc;} .product-text table:last-child{border:none;} .product-text td:nth-child(2){text-align:right;} .mod-tab{width:80%;height:28px;line-height:26px;overflow:hidden;border-radius:5px;border:1px solid #ccc;margin:10px auto;} .mod-tab ul{display:table;width:100%;list-style:none;padding:0;} .mod-tab li{display:table-cell;table-layout:fixed;border-right:1px solid #ccc;text-align:center;} .mod-tab li:last-child{border-right:none;} .mod-tab li a{display:block;height:100%;font-size:12px;color:#333;} .mod-tab li .active{color:#fff;background:#ff9c00;} .buy-num{padding:10px;} .buy-num span{float:left;line-height:36px;} .buy-num .add-num{float:right;} .buy-num:after{clear:both;display:table;content:"";} .add-num{width:130px;height:32px;} .inline{display:inline-block!important;} .add-num .sub,.add-num .add{display:block;float:left;width:36px;height:36px;line-height:34px;color:#333;text-align:center;background:#fff;margin-right:0;border:1px solid #999;position:relative;} .add-num .sub{border-radius:3px 0 0 3px;border-right:none;} .add-num .add{border-radius:0 3px 3px 0;border-left:none;} .add-num .sub:after,.add-num .add:before,.add-num .add:after{display:block;position:absolute;content:"";background:#333;} .add-num .sub:after,.add-num .add:after{width:18px;height:2px;left:8px;top:16px;} .add-num .add:before{width:2px;height:18px;left:16px;top:8px;} .add-num .disabled{border-color:#ccc;background:#eee;} .add-num .disabled:before,.add-num .disabled:after{background:#999;} .add-num .text{width:52px;height:36px;float:left;line-height:32px;font-size:16px;color:#333;border:1px solid #999;background:#fff;} .add-num .text input{width:100%;height:100%;border:none;text-align:center;background-color:transparent;} .select-box{width:130px;height:32px;margin-top:10px;padding:0 10px;font-size:12px;background:#eee;position:relative;} .select-box p{height:16px;line-height:16px;margin:0;color:#333;} .select-box:after{display:block;content:"\f078";font-family:FontAwesome;font-size:14px;position:absolute;right:5px;top:6px;} .btn-done{position:absolute;right:0px;top:5px;} .btn-done .fa{font-size:16px;color:#333;} .product-text .price{text-align:right;margin-top:10px;font-size:14px;color:#c40000;} .mod-bg{display:none;position:fixed;width:100%;height:100%;left:0;top:0;background:rgba(0,0,0,0.6);z-index:99;} .mod-sel{display:none;position:absolute;left:0;bottom:0;width:100%;padding:10px;border-top:1px solid #ccc;background:#fff;} .mod-item{border-bottom:1px solid #ccc;} .mod-t{font-size:14px;line-height:44px;color:#333;} .mod-tag a{display:inline-block;height:32px;line-height:32px;padding:0 15px;margin:0 10px 10px 0;color:#333;border:1px solid #ccc;border-radius:3px;} .mod-discount{height:38px;line-height:38px;padding:0 15px;color:#333;border-bottom:1px solid #ccc;background:#fff;} .product-slider{height:240px;} .product-slider li{height:240px;} .product-slider img{max-height:240px;} .product-info{padding:10px;border-top:1px solid #ccc;border-bottom:1px solid #ccc;box-shadow:inset 0 1px 2px #ccc;} .product-name{height:40px;font-size:14px;color:#333;line-height:20px;overflow:hidden;position:relative;padding-right:50px;} .favorites{position:absolute;width:40px;height:40px;border-left:1px solid #ccc;text-align:center;right:0;top:0;} .favorites .fa{display:block;margin:0 auto;font-size:20px;} .favorites.active{color:#ff9c00;} .product-foot{padding:5px 0 0;} .product-foot .price{font-size:18px;color:#f25b22;} .product-foot small{font-size:12px;} .product-foot del{color:#999;} .product-foot b{font-weight:normal;float:right;line-height:22px;color:#999;} .product-box{margin-top:10px;border-top:1px solid #ccc;border-bottom:1px solid #ccc;background:#fff;} .product-t{padding:5px 10px;height:36px;line-height:26px;color:#333;} .p-right{padding-right:20px;position:relative;} .p-right:after{display:block;position:absolute;width:20px;text-align:center;font-size:20px;right:0px;top:5px;content:"\f105";font-family:"FontAwesome";-webkit-transition:-webkit-transform .5s;} .active .p-right:after{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);} .p-right+.edit{border-top:1px solid #ccc;} .product-tags{padding:0 10px;border-bottom:1px solid #ccc;} .product-tags a{display:inline-block;padding:0 10px;height:36px;line-height:36px;margin:0 10px 10px 0;color:#333;border:1px solid #999;border-radius:2px;background:#fff;} .product-tags .active{color:#f25b22;border-color:#f25b22;} .p-total{margin-top:10px;} .edit{padding:10px;width:100%;color:#999;line-height:1.5;overflow:hidden;} .edit *{max-width:100%;overflow:hidden;} .p-detail{padding-left:10px;line-height:18px;color:#666;} .p-detail dl{width:100%;padding:10px 10px 10px 0;display:table;border-top:1px solid #ccc;} .p-detail dt,.p-detail dd{display:table-cell;} .p-detail dt{width:100px;} .p-detail dd{text-align:right;color:#333;} /* 11-4 */ .g-top img{width:100%;} .g-bgf{background:#fff;} .g-txt1{color:#666;font-size:15px;line-height:30px;text-align:center;padding:12px 0;border-bottom:#dfdfdf 1px solid;} .g-txt1 span{color:#ff9c00;font-size:18px;display:block;} .g-buy-btn{text-align:right;padding:10px 5px;border-bottom:#dfdfdf 1px solid;} .g-buy-btn a{color:#333;margin:0 5px;font-size:14px;border:#333 1px solid;line-height:30px;display:inline-block;padding:0 12px;border-radius:3px;} .g-buy-btn a:active{opacity:0.8;} .g-tips{font-size:14px;color:#666;padding:5px 0;padding-left:8px;} .g-list-a{padding:0 4px;} .g-list-a a{padding:0 4px;width:50%;float:left;margin-bottom:8px;} .g-bord1{background:#fff;border:#ccc 1px solid;border-radius:3px;overflow:hidden;} .g-product-img img{width:100%;height:100%;} .g-product-text{color:#666;line-height:16px;font-size:14px;margin:0 2px;} .g-product-text b{border-bottom:#dfdfdf 1px dashed;display:block;height:32px;margin:6px 0;font-weight:normal;overflow:hidden;} .g-product-text span{height:auto;overflow:hidden;display:block;line-height:35px;font-size:14px;color:#c40000;} .g-product-text span del{color:#999;line-height:35px;float:right;} .g-track{margin-top:10px;border-top:1px solid #ccc;background:#fff;} .g-track .text{font-size:15px;color:#666;padding:15px;border-bottom:1px solid #ccc;} .under-line{text-decoration:underline;} /* 11-6 */ .tab-box{display:none;} .tab-box .product-box,.tab-box .product-box .p-detail dl:first-child{border-top:none;} .no-coment{font-size:14px;color:#52596b;padding:20px 0;text-align:center;} .g-comment-box{display:none;} .tab-tit{background:#fff;height:auto;overflow:hidden;} .tab-tit ul li{width:25%;float:left;list-style:none;text-align:center;line-height:40px;font-size:14px;} .tab-tit ul li a{display:block;color:#52596b} .tab-tit ul li:last-child{border:none;} .tab-tit ul li.active a{color:#f25b22;border-bottom:1px solid #f25b22;} .mart10{margin-top:10px;} .ml10{margin-left:10px;} .padb10{padding-bottom:10px;} .g-comment-tit{padding:10px 8px;width:100%;box-sizing:border-box;} .g-comment-tit ul{border:#ccc 1px solid;border-radius:3px;width:100%;display:table;} .g-comment-tit ul li{display:table-cell;border-right:1px solid #ccc;color:#565656;font-size:13px;line-height:28px;text-align:center;list-style:none;background:#fff;} .g-comment-tit ul li:last-child{border-right:none;} .g-comment-tit ul li.active{color:#f25b22} .g-comment-tit ul li:first-child{border-radius:4px 0 0 4px} .g-comment-tit ul li:last-child{border-radius:0 4px 4px 0} .g-com-list{padding:0 3px 10px;border-bottom:#ccc 1px dashed;} .g-com-list:last-child{border-bottom:none;} .g-com-star{color:#ddd;font-size:12px;line-height:20px;padding:5px 0;} .g-comment-box{background:#fff;border-bottom:#ccc 1px solid;padding:0 10px;} .g-com-p1{font-size:13px;color:#666;line-height:18px;} .col4{color:#444;} .g-com-huifu{font-size:13px;color:#666;line-height:18px;position:relative;padding-top:10px;} .g-com-huifu .g-com-huifubox{background:#f3f3f3;padding:6px 2px;} .g-com-huifu .fa-caret-up{position:absolute;color:#f3f3f3;font-size:16px;left:15px;top:0px;} .comment{border-top:1px solid #ccc;border-bottom:1px solid #ccc;padding-left:10px;background:#fff;} .comment-t{height:43px;line-height:42px;} .comment-box{border-top:1px solid #ccc;color:#52596b;padding:20px 10px 20px 0;} .pro-name{} .pro-name a{display:block;} .pro-name a:after{display:table;content:"";clear:both;} .pro-name span.fl{width:52px;height:52px;border:#cfcfcf 1px solid;margin-right:20px;} .pro-name span.fl img{width:100%;height:100%;} .pro-name-pbox p{} .pro-name-p1{height:32px;color:#333;overflow:hidden;font-size:12px;color:#333;line-height:16px;} .pro-name-pbox p.red{color:#c40000;line-height:16px;margin-top:4px;} .pro-info{padding:10px 0 0;line-height:24px;margin-bottom:10px;} .pro-info .fr{font-size:15px;color:#ff9c00;} .g-com-txt{width:100%;padding:5px 9px;line-height:20px;border:none;background:#eee;} .star{background:url(../img/wshop/star.png) no-repeat;background-position:0 -24px;width:24px;height:24px;display:inline-block;background-size:24px;margin-left:5px;vertical-align:-4px;} .star.on{background-position:0 0} .g-sub1{font-size:16px;color:#fff;background:#ff9c00;border-radius:1000px;height:30px;line-height:30px;width:155px;border:none;margin:0 auto;} .pad10{padding:10px;} .auto{height:auto;overflow:hidden;} .yellow{color:#ff9c00;} /* kan jia */ .bargain-top{height:300px;padding:10px 10px 0;margin-bottom:5px;background:#fe5d38;position:relative;} .bargain-top:after{display:block;content:"";width:100%;height:5px;background:#fff url(../img/wshop/bg-line.png) repeat-x;-webkit-background-size:auto 100%;background-size:auto 100%;position:absolute;left:0;bottom:-5px;} .bargain-top .bg{width:130%;height:100%;background:url(../img/wshop/top-light.png) center center;-webkit-background-size:100% 100%;background-size:100% 100%;position:absolute;left:-29%;top:0;} .bargain-top-f .bg{left:-14%;} .b-msg-box{display:table;width:100%;} .b-img{width:55px;height:55px;float:left;margin-right:-10px;background:url(../img/wshop/user-img.png) no-repeat;-webkit-background-size:100% 100%;background-size:100% 100%;} .b-img img{width:100%;min-height:100%;border-radius:1000px;} .b-msg{display:table-cell;width:100%;vertical-align:top;} .b-msg-bg{max-width:250px;margin-top:10px;padding:8px 8px 8px 23px;border-radius:5px;background:url(../img/wshop/msg-bg.png) no-repeat;-webkit-background-size:auto 100%;background-size:auto 100%;position:relative;} .b-msg-bg:after{display:block;content:"";width:10px;height:43px;background:url(../img/wshop/msg-bg.png) right no-repeat;-webkit-background-size:auto 100%;background-size:auto 100%;right:0;top:0;position:absolute;} .b-msg-bg input, .b-msg-bg span{display:inline-block;width:100%;height:28px;padding:0 5px;line-height:28px;border:1px solid #ccc;border-radius:5px;background:#fff;} .b-msg-bg span{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;} .pro-box{width:34%;height:108px;position:absolute;border-radius:1000px;border:5px solid #feab97;background:#fff;left:18%;top:40%;overflow:hidden;} .pro-box-f{left:33%;} .pro-img{width:100%;height:100%;overflow:hidden;} .pro-img img{width:100%;min-height:100%;border-radius:1000px;} .pro-price{width:100%;height:26px;text-align:center;font-size:10px;line-height:26px;color:#fff;background:rgba(0,0,0,.3);position:absolute;left:0;bottom:0;} .sub-price{width:61px;height:40px;padding:5px 0;color:#e64c4c;text-align:center;font-size:10px;background:url(../img/wshop/sub-price.png) no-repeat;-webkit-background-size:100% 100%;background-size:100% 100%;position:absolute;top:55%;left:10px;} .sub-price-f{left:18.5%;} .order-time{width:85px;padding:10px 0;text-align:center;font-size:12px;color:#333;position:absolute;border-radius:5px;right:10px;top:45%;background:rgba(255,255,255,.8);} .order-time .num{font-size:14px;margin:5px 0;} .order-time .num span{display:inline-block;width:30px;height:16px;padding:0 3px;color:#fff;letter-spacing:10px;background:url(../img/wshop/time.png);-webkit-background-size:100% 100%;background-size:100% 100%;} .order-detail{background:#fff;} .msg-1, .msg-2{font-size:11px;color:#fe5d38;position:absolute;-webkit-background-size:100% 100%;background-size:100% 100%;} .msg-1 b, .msg-2 b{color:#ff0000;} .msg-1{width:77px;height:49px;padding:6px 10px 15px;background-image:url(../img/wshop/msg-1.png);top:35.6%;left:45%;} .msg-2{width:85px;height:55px;padding:10px 10px;background-image:url(../img/wshop/msg-2.png);top:75%;left:45%;} .bargain-top-f .msg-1{left:61.5%;} .bargain-top-f .msg-2{left:58%;} .btn-table{width:100%;display:table;padding:10px;table-layout:fixed;} .cell{display:table-cell;} .cell-big{width:40%;} .btn-bargain{color:#420c00;background:#f6d500;} .btn-submit{background:#fe5d38;} .btn-big{width:100%;} .btn-table .cell{padding:0 10px;} .order-detail .mod-product{border-top:1px solid #ccc;border-bottom:1px solid #ccc;} .order-detail .product-text span{color:#999;} .order-detail .product-img{float:left;} .order-detail .mod-product{display:table;width:100%;} .order-detail .product-text{vertical-align:top;padding:0 10px;} .order-detail .product-text b{font-size:14px;max-height:36px;} .order-detail .product-text span{display:block;height:18px;} .pro-add-price{height:60px;float:right;text-align:right;color:#010101;} .pro-add-price b{font-size:14px;color:#c40000;font-weight:normal;} .friend-help{margin-top:20px;border-top:1px solid #ccc;border-bottom:1px solid #ccc;color:#333;background:#fff;} .friend-help .f-t{height:30px;line-height:30px;text-align:center;} .friend-help .no-friend{line-height:30px;text-align:center;padding:10px 0;color:#999;border-top:1px solid #ccc;} .friend-help ul{list-style:none;margin:0;} .friend-help li{width:100%;display:table;padding:10px;border-top:1px solid #ccc;} .friend-help .img{width:44px;height:44px;float:left;border-radius:1000px;overflow:hidden;} .friend-help .img img{width:100%;min-height:100%;} .friend-help .text{display:table-cell;width:100%;padding:0 10px;font-size:14px;vertical-align:top;} .friend-help .text .name{font-size:11px;color:#666;} .friend-help .text .time{font-size:10px;color:#999;} .friend-help .price{height:44px;color:#c40000;float:right;} .mod-pop{position:fixed;width:100%;height:100%;left:0;top:0;background:rgba(0,0,0,.7);} .friend-share{background:url(../img/wshop/share.png) no-repeat top right;width:100%;height:100%;top:0;-webkit-background-size:170px auto;background-size:170px auto;} .attention{background:url(../img/wshop/attention.png) no-repeat top right;width:100%;height:100%;top:0;-webkit-background-size:232px auto;background-size:170px auto;} .b-text{padding:10px;font-size:15px;color:#666;} .text-center{text-align:center;} .text-yellow{color:#fe5d38;} .text-muted{color:#999;} .text-price{color:#f25b22;} .text-normal{color:#333;} .text-black{color:#000;} .text-bb{color:#52596b;} .size-normal{font-size:14px;} .size-big{font-size:18px;} .b-form{padding:10px;color:#fff;background:#fe5d38;position:relative;} .b-form:after{display:block;content:"";width:100%;height:5px;background:#f0f0f0 url(../img/wshop/bg-line.png) repeat-x;-webkit-background-size:auto 100%;background-size:auto 100%;position:absolute;left:0;bottom:-5px;} .b-form .form-t{text-align:center;} .b-form .input{} .b-form .form-li{display:table;width:100%;margin-top:10px;} .b-form .form-li span{display:block;width:60px;margin-right:10px;font-size:15px;float:left;line-height:32px;} .b-form .form-li .cell{width:100%;vertical-align:top;} .pay-box{font-size:15px;line-height:18px;color:#333;border-top:1px solid #ccc;border-bottom:1px solid #ccc;background:#fff;} .pay-t{height:45px;line-height:45px;padding:0 10px;border-bottom:1px solid #ccc;} .p-name{margin-right:10px;} .p-tips{color:#f25b22;} .pay-box ul{padding-left:10px;list-style:none;} .pay-box li{padding:12px 50px 12px 6px;border-bottom:1px solid #ccc;position:relative;} .pay-box li:last-child{border-bottom:none;} [class^=pay-icon]{display:block;width:36px;height:36px;margin-right:15px;float:left;background:url(../img/wshop/pay-icon.png);-webkit-background-size:auto 36px;background-size:auto 36px;} .pay-icon-weixin{background-position:0 0;} .pay-icon-alipay{background-position:-36px 0;} .pay-icon-tenpay{background-position:-72px 0;} .pay-icon-yeah{background-position:-108px 0;} .pay-icon-card{background-position:-144px 0;} .pay-icon-post{background-position:-180px 0;} .pay-box li input{display:none;} .pay-box .tips{font-size:11px;color:#999;} .pay-box li:after{display:block;content:"";width:24px;height:24px;background-image:url(../img/wshop/radio.png);-webkit-background-size:auto 24px;background-size:auto 24px;position:absolute;right:15px;top:18px;} .pay-box li.active:after{background-position:-24px 0;} /* 11-25 add */ .view-more{padding:10px;} /* search */ .search{height:44px;padding:8px;border-bottom:1px solid #979797;background:#b3b3b3;} .search-box{height:28px;padding:0 28px 0 24px;border-radius:5px;background:#fff;position:relative;} .search-box:before{display:block;content:"";width:13px;height:13px;background:url(../img/wshop/search.png) no-repeat;-webkit-background-size:100% 100%;background-size:100% 100%;position:absolute;left:6px;top:8px;} .search-text{width:100%;height:100%;border:none;} .search-box .fa-times{position:absolute;width:28px;height:28px;line-height:28px;text-align:center;color:#999;right:0px;top:0px;} .s-list{width:100%;} .s-list dl{} .s-list dt{height:40px;line-height:40px;color:#52596b;padding:0 30px 0 10px;border-bottom:1px solid #ccc;background:#f7f7f7;position:relative;} .s-list dt:after{position:absolute;display:block;content:"\f107";font-size:24px;font-family:"FontAwesome";color:#b3b3b3;right:10px;top:0;-webkit-transition:-webkit-transform .5s;} .s-list dt.active{color:#f25b22;background:#fcfcfc;} .s-list dt.active:after{-webkit-transform: rotate(-180deg);} .s-list dd{display:none;background:#fff;padding:15px;border-bottom:1px solid #ccc;} .s-list .tags{display:inline-block;padding:5px 8px;margin:5px 8px 5px 0;line-height:24px;color:#666;border:1px solid #666;border-radius:3px;} .s-list .tags.active{color:#f25b22;border-color:#f25b22;} /* kang 15-1-23 */ .error{width:100%;overflow:hidden;} .error img{width:100%;} .popup{display:none;position:fixed;left:0;top:0;width:100%;height:100%;padding:0 10px;background:rgba(0,0,0,.8);z-index:111;} .pop-body{position:relative;border-radius:5px;overflow:hidden;background:#fff;top:50%;-webkit-transform:translate(0,-50%);transform:translate;(-50%,-50%)} .pop-t{height:44px;line-height:44px;font-size:18px;color:#333;text-align:center;background:#ddd;} .pop-m{padding:10px;font-size:15px;color:#000;line-height:24px;} .pop-f{width:100%;display:table;padding:10px 5px;table-layout:fixed;} .pop-f .cell{display:table-cell;padding:0 5px;} .pop-f .btn{width:100%;} .btn-cancel{color:#fff;background:#feb801;} .btn-fn{color:#fff;background:#f25b22;} .succness-tip{text-align:center;} .succness{width:40px;height:40px;display:block;margin:10px auto;background-image:url(../img/wshop/succness.png);-webkit-background-size:100% 100%; background-size:100% 100%;}
0.185762
0.041696
@CHARSET "UTF-8"; @font-face { font-family: leaguegothic; src: url('/fonts/leaguegothic-regular-webfont.ttf'); } body{ font-family: "Helvetica"; } div.menu{ display: table; width: 300px; margin-left: auto; margin-right: auto; float: none; } div.table{ display: table; width: 300px; margin-left: auto; margin-right: auto; float: none; } div.row{ display: table-row; } div.cell{ display: table-cell; vertical-align: middle } div.option{ background-color: #ddd; border: 1px solid #ccc; border-radius: 6px; width: 150px; height: 150px; margin: 8px; padding: 8px; text-align: center; vertical-align: middle; cursor: pointer; } div.card{ background-color: #ddd; border: 1px solid #ccc; border-radius: 6px; width: 150px; height: 150px; margin: 8px; padding: 8px; text-align: center; vertical-align: middle; } div.catalogos{ background-color: #5a9bd3; } div.productos{ background-color: #c00000; } div.servicios{ background-color: #00af50; } div.analisis{ background-color: #fbc200; } div.optioncontent{ display: inline-block; vertical-align: middle; width: 300px; padding: 10px 15px; } div.option:hover{ border: 1px solid #ccc; -webkit-box-shadow: 5px 5px 5px rgba(50, 50, 50, 0.49); -moz-box-shadow: 5px 5px 5px rgba(50, 50, 50, 0.49); box-shadow: 5px 5px 5px rgba(50, 50, 50, 0.49); } div.option span{ font-family: Tahoma, Geneva, sans-serif; font-weight: bold; } img{ margin-top: 25px; } input[type=button]{ background-color: green; color: white; border: 0px; border-radius: 3px; padding: 5px 10px 5px 10px; } input[type=button]:hover{ background-color: #555; } input[type=button]:active{ background-color: #ddd; } input[type=submit]{ background-color: green; color: white; border: 0px; border-radius: 3px; padding: 5px 10px 5px 10px; } input[type=submit]:hover{ background-color: #555; } input[type=submit]:active{ background-color: #ddd; } div.message{ background-color: yellow; color: #444; border: 0px; border-radius: 3px; padding: 5px 10px 5px 10px; width: 500px; margin-left: auto; margin-right: auto; }
Season 2013/Mexico/Projects/Equipo3_StockIn/Codigo/stockin/war/css/start.css
@CHARSET "UTF-8"; @font-face { font-family: leaguegothic; src: url('/fonts/leaguegothic-regular-webfont.ttf'); } body{ font-family: "Helvetica"; } div.menu{ display: table; width: 300px; margin-left: auto; margin-right: auto; float: none; } div.table{ display: table; width: 300px; margin-left: auto; margin-right: auto; float: none; } div.row{ display: table-row; } div.cell{ display: table-cell; vertical-align: middle } div.option{ background-color: #ddd; border: 1px solid #ccc; border-radius: 6px; width: 150px; height: 150px; margin: 8px; padding: 8px; text-align: center; vertical-align: middle; cursor: pointer; } div.card{ background-color: #ddd; border: 1px solid #ccc; border-radius: 6px; width: 150px; height: 150px; margin: 8px; padding: 8px; text-align: center; vertical-align: middle; } div.catalogos{ background-color: #5a9bd3; } div.productos{ background-color: #c00000; } div.servicios{ background-color: #00af50; } div.analisis{ background-color: #fbc200; } div.optioncontent{ display: inline-block; vertical-align: middle; width: 300px; padding: 10px 15px; } div.option:hover{ border: 1px solid #ccc; -webkit-box-shadow: 5px 5px 5px rgba(50, 50, 50, 0.49); -moz-box-shadow: 5px 5px 5px rgba(50, 50, 50, 0.49); box-shadow: 5px 5px 5px rgba(50, 50, 50, 0.49); } div.option span{ font-family: Tahoma, Geneva, sans-serif; font-weight: bold; } img{ margin-top: 25px; } input[type=button]{ background-color: green; color: white; border: 0px; border-radius: 3px; padding: 5px 10px 5px 10px; } input[type=button]:hover{ background-color: #555; } input[type=button]:active{ background-color: #ddd; } input[type=submit]{ background-color: green; color: white; border: 0px; border-radius: 3px; padding: 5px 10px 5px 10px; } input[type=submit]:hover{ background-color: #555; } input[type=submit]:active{ background-color: #ddd; } div.message{ background-color: yellow; color: #444; border: 0px; border-radius: 3px; padding: 5px 10px 5px 10px; width: 500px; margin-left: auto; margin-right: auto; }
0.237222
0.060335
.btn:focus, .btn:active { outline: none !important; } .form-inline .form-group { margin-left: 0; margin-right: 0; } .glyphicon-spin { -webkit-animation: spin 1000ms infinite linear; animation: spin 1000ms infinite linear; } @-webkit-keyframes spin { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } 100% { -webkit-transform: rotate(359deg); transform: rotate(359deg); } } @keyframes spin { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } 100% { -webkit-transform: rotate(359deg); transform: rotate(359deg); } } #logsModal .modal-content { max-height: 500px; overflow-y: scroll; } #pageFooter { background-color: #3a3f46; color: white; flex: 0 0 auto; position: fixed; bottom: 0; width: 100%; margin-left: -10px; } #pageFooter a, #pageFooter p { color: #d2d1d1; } .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .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-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .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-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 { padding-right: 10px !important; padding-left: 10px !important; } .verticalLine { border-left: thin solid #8f8f8f; } .panel-group { margin-bottom: 0 !important; } .panel-body { padding-bottom: 0 !important; } .modal-header-danger { color: #fff; padding: 9px 15px; border-bottom: 1px solid #eee; background-color: #d9534f; -webkit-border-top-left-radius: 5px; -webkit-border-top-right-radius: 5px; -moz-border-radius-topleft: 5px; -moz-border-radius-topright: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; }
lib/css/style.css
.btn:focus, .btn:active { outline: none !important; } .form-inline .form-group { margin-left: 0; margin-right: 0; } .glyphicon-spin { -webkit-animation: spin 1000ms infinite linear; animation: spin 1000ms infinite linear; } @-webkit-keyframes spin { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } 100% { -webkit-transform: rotate(359deg); transform: rotate(359deg); } } @keyframes spin { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } 100% { -webkit-transform: rotate(359deg); transform: rotate(359deg); } } #logsModal .modal-content { max-height: 500px; overflow-y: scroll; } #pageFooter { background-color: #3a3f46; color: white; flex: 0 0 auto; position: fixed; bottom: 0; width: 100%; margin-left: -10px; } #pageFooter a, #pageFooter p { color: #d2d1d1; } .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .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-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .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-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 { padding-right: 10px !important; padding-left: 10px !important; } .verticalLine { border-left: thin solid #8f8f8f; } .panel-group { margin-bottom: 0 !important; } .panel-body { padding-bottom: 0 !important; } .modal-header-danger { color: #fff; padding: 9px 15px; border-bottom: 1px solid #eee; background-color: #d9534f; -webkit-border-top-left-radius: 5px; -webkit-border-top-right-radius: 5px; -moz-border-radius-topleft: 5px; -moz-border-radius-topright: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; }
0.411466
0.060391
.background_glossyMidnightBlue6, .hover_background_glossyMidnightBlue6:hover, .active_background_glossyMidnightBlue6:active:hover { background: #2424a0; background-image: -moz-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, .30)), color-stop(50%, rgba(255, 255, 255, .00)), color-stop(51%, rgba(0, 0, 0, .10)), color-stop(100%, rgba(0, 0, 0, .04))); background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); background-image: -o-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); background-image: -ms-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); background-image: linear-gradient(to bottom, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000',GradientType=0 ); } .background_glossyMidnightBlue6h, .hover_background_glossyMidnightBlue6h:hover, .active_background_glossyMidnightBlue6h:active:hover { background: #2424a0; background-image: -moz-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, .30)), color-stop(50%, rgba(255, 255, 255, .00)), color-stop(51%, rgba(0, 0, 0, .10)), color-stop(100%, rgba(0, 0, 0, .04))); background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); background-image: -o-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); background-image: -ms-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); background-image: linear-gradient(to bottom, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000',GradientType=0 ); } .background_glossyMidnightBlue6a, .hover_background_glossyMidnightBlue6a:hover, .active_background_glossyMidnightBlue6a:active:hover { background: #2424a0; background-image: -moz-linear-gradient(top, rgba(0, 0, 0, .04) 0%, rgba(0, 0, 0, .10) 50%, rgba(255, 255, 255, .00) 51%, rgba(255, 255, 255, .30) 100%); background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, .04)), color-stop(50%, rgba(0, 0, 0, .10)), color-stop(51%, rgba(255, 255, 255, .00)), color-stop(100%, rgba(255, 255, 255, .30))); background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, .04) 0%, rgba(0, 0, 0, .10) 50%, rgba(255, 255, 255, .00) 51%, rgba(255, 255, 255, .30) 100%); background-image: -o-linear-gradient(top, rgba(0, 0, 0, .04) 0%, rgba(0, 0, 0, .10) 50%, rgba(255, 255, 255, .00) 51%, rgba(255, 255, 255, .30) 100%); background-image: -ms-linear-gradient(top, rgba(0, 0, 0, .04) 0%, rgba(0, 0, 0, .10) 50%, rgba(255, 255, 255, .00) 51%, rgba(255, 255, 255, .30) 100%); background-image: linear-gradient(to bottom, rgba(0, 0, 0, .04) 0%, rgba(0, 0, 0, .10) 50%, rgba(255, 255, 255, .00) 51%, rgba(255, 255, 255, .30) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#ffffff',GradientType=0 ); } .background_glossyMidnightBlue6s, .hover_background_glossyMidnightBlue6s:hover, .active_background_glossyMidnightBlue6s:active:hover { background: #2424a0; background-image: -moz-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, .30)), color-stop(50%, rgba(255, 255, 255, .00)), color-stop(51%, rgba(0, 0, 0, .10)), color-stop(100%, rgba(0, 0, 0, .04))); background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); background-image: -o-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); background-image: -ms-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); background-image: linear-gradient(to bottom, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000',GradientType=0 ); } .background_color_glossyMidnightBlue6, .hover_background_color_glossyMidnightBlue6:hover, .active_background_color_glossyMidnightBlue6:active:hover { background-color:#2424a0; } .background_first_color_glossyMidnightBlue6, .hover_background_first_color_glossyMidnightBlue6:hover, .active_background_first_color_glossyMidnightBlue6:active:hover { background-color:#ffffff; } .background_last_color_glossyMidnightBlue6, .hover_background_last_color_glossyMidnightBlue6:hover, .active_background_color_last_glossyMidnightBlue6:active:hover { background-color:#000000; } /* ------------------------------ color settings -------------------------------*/ .color_glossyMidnightBlue6, .hover_color_glossyMidnightBlue6:hover, .active_color_glossyMidnightBlue6:active:hover { color: #c8c8c8; } .color_glossyMidnightBlue6h, .hover_color_glossyMidnightBlue6h:hover, .active_color_glossyMidnightBlue6h:active:hover { color: #c8c8c8; } .color_glossyMidnightBlue6a, .hover_color_glossyMidnightBlue6a:hover, .active_color_glossyMidnightBlue6a:active:hover { color: #c8c8c8; } .color_glossyMidnightBlue6s, .hover_color_glossyMidnightBlue6s:hover, .active_color_glossyMidnightBlue6s:active:hover { color: #c8c8c8; } /* -------------------------- border color settings -----------------------------*/ .border_glossyMidnightBlue6, .hover_border_glossyMidnightBlue6:hover, .active_border_glossyMidnightBlue6:active:hover { border-color: #1d1d80 #1d1d80 #1d1d80 #1d1d80; } .border_glossyMidnightBlue6h, .hover_border_glossyMidnightBlue6h:hover, .active_border_glossyMidnightBlue6h:active:hover { border-color: #171768 #171768 #171768 #171768; } .border_glossyMidnightBlue6a, .hover_border_glossyMidnightBlue6a:hover, .active_border_glossyMidnightBlue6a:active:hover { border-color: #121250 #121250 #121250 #121250; } .border_glossyMidnightBlue6s, .hover_border_glossyMidnightBlue6s:hover, .active_border_glossyMidnightBlue6s:active:hover { border-color: #1d1d80 #1d1d80 #1d1d80 #1d1d80; } /* -------------------------- shadow expand settings --------------------------------*/ .shadow_expand_glossyMidnightBlue6, .hover_shadow_expand_glossyMidnightBlue6:hover, .active_shadow_expand_glossyMidnightBlue6:active:hover { -webkit-box-shadow: 0em 0em 1em 0.25em rgba(36, 36, 160, .39); -moz-box-shadow: 0em 0em 1em 0.25em rgba(36, 36, 160, .39); box-shadow: 0em 0em 1em 0.25em rgba(36, 36, 160, .39); } .shadow_expand_glossyMidnightBlue6h, .hover_shadow_expand_glossyMidnightBlue6h:hover, .active_shadow_expand_glossyMidnightBlue6h:active:hover { -webkit-box-shadow: 0em 0em 1em 0.25em rgba(43, 43, 192, .50); -moz-box-shadow: 0em 0em 1em 0.25em rgba(43, 43, 192, .50); box-shadow: 0em 0em 1em 0.25em rgba(43, 43, 192, .50); } .shadow_expand_glossyMidnightBlue6a, .hover_shadow_expand_glossyMidnightBlue6a:hover, .active_shadow_expand_glossyMidnightBlue6a:active:hover { -webkit-box-shadow: 0em 0em 1em 0.25em rgba(32, 32, 144, .63); -moz-box-shadow: 0em 0em 1em 0.25em rgba(32, 32, 144, .63); box-shadow: 0em 0em 1em 0.25em rgba(32, 32, 144, .63); } .shadow_expand_glossyMidnightBlue6s, .hover_shadow_expand_glossyMidnightBlue6s:hover, .active_shadow_expand_glossyMidnightBlue6s:active:hover { -webkit-box-shadow: 0em 0em 1em 0.25em rgba(32, 32, 144, .71); -moz-box-shadow: 0em 0em 1em 0.25em rgba(32, 32, 144, .71); box-shadow: 0em 0em 1em 0.25em rgba(32, 32, 144, .71); } /* -------------------------- shadow left settings --------------------------------*/ .shadow_left_glossyMidnightBlue6, .hover_shadow_left_glossyMidnightBlue6:hover, .active_shadow_left_glossyMidnightBlue6:active:hover { -webkit-box-shadow: -0.5em -0.5em 1em rgba(36, 36, 160, .39); -moz-box-shadow: -0.5em -0.5em 1em rgba(36, 36, 160, .39); box-shadow: -0.5em -0.5em 1em rgba(36, 36, 160, .39); } .shadow_left_glossyMidnightBlue6h, .hover_shadow_left_glossyMidnightBlue6h:hover, .active_shadow_left_glossyMidnightBlue6h:active:hover { -webkit-box-shadow: -0.5em -0.5em 1em rgba(43, 43, 192, .50); -moz-box-shadow: -0.5em -0.5em 1em rgba(43, 43, 192, .50); box-shadow: -0.5em -0.5em 1em rgba(43, 43, 192, .50); } .shadow_left_glossyMidnightBlue6a, .hover_shadow_left_glossyMidnightBlue6a:hover, .active_shadow_left_glossyMidnightBlue6a:active:hover { -webkit-box-shadow: -0.5em -0.5em 1em rgba(32, 32, 144, .63); -moz-box-shadow: -0.5em -0.5em 1em rgba(32, 32, 144, .63); box-shadow: -0.5em -0.5em 1em rgba(32, 32, 144, .63); } .shadow_left_glossyMidnightBlue6s, .hover_shadow_left_glossyMidnightBlue6s:hover, .active_shadow_left_glossyMidnightBlue6s:active:hover { -webkit-box-shadow: -0.5em -0.5em 1em rgba(32, 32, 144, .71); -moz-box-shadow: -0.5em -0.5em 1em rgba(32, 32, 144, .71); box-shadow: -0.5em -0.5em 1em rgba(32, 32, 144, .71); } /* -------------------------- shadow right settings --------------------------------*/ .shadow_right_glossyMidnightBlue6, .hover_shadow_right_glossyMidnightBlue6:hover, .active_shadow_right_glossyMidnightBlue6:active:hover { -webkit-box-shadow: 0.5em 0em 1em rgba(36, 36, 160, .39); -moz-box-shadow: 0.5em 0em 1em rgba(36, 36, 160, .39); box-shadow: 0.5em 0em 1em rgba(36, 36, 160, .39); } .shadow_right_glossyMidnightBlue6h, .hover_shadow_right_glossyMidnightBlue6h:hover, .active_shadow_right_glossyMidnightBlue6h:active:hover { -webkit-box-shadow: 0.5em 0em 1em rgba(43, 43, 192, .50); -moz-box-shadow: 0.5em 0em 1em rgba(43, 43, 192, .50); box-shadow: 0.5em 0em 1em rgba(43, 43, 192, .50); } .shadow_right_glossyMidnightBlue6a, .hover_shadow_right_glossyMidnightBlue6a:hover, .active_shadow_right_glossyMidnightBlue6a:active:hover { -webkit-box-shadow: 0.5em 0em 1em rgba(32, 32, 144, .63); -moz-box-shadow: 0.5em 0em 1em rgba(32, 32, 144, .63); box-shadow: 0.5em 0em 1em rgba(32, 32, 144, .63); } .shadow_right_glossyMidnightBlue6s, .hover_shadow_right_glossyMidnightBlue6s:hover, .active_shadow_right_glossyMidnightBlue6s:active:hover { -webkit-box-shadow: 0.5em 0em 1em rgba(32, 32, 144, .71); -moz-box-shadow: 0.5em 0em 1em rgba(32, 32, 144, .71); box-shadow: 0.5em 0em 1em rgba(32, 32, 144, .71); } /* -------------------------- shadow top settings --------------------------------*/ .shadow_top_glossyMidnightBlue6, .hover_shadow_top_glossyMidnightBlue6:hover, .active_shadow_top_glossyMidnightBlue6:active:hover { -webkit-box-shadow: 0em -0.5em 1em rgba(36, 36, 160, .39); -moz-box-shadow: 0em -0.5em 1em rgba(36, 36, 160, .39); box-shadow: 0em -0.5em 1em rgba(36, 36, 160, .39); } .shadow_top_glossyMidnightBlue6h, .hover_shadow_top_glossyMidnightBlue6h:hover, .active_shadow_top_glossyMidnightBlue6h:active:hover { -webkit-box-shadow: 0em -0.5em 1em rgba(43, 43, 192, .50); -moz-box-shadow: 0em -0.5em 1em rgba(43, 43, 192, .50); box-shadow: 0em -0.5em 1em rgba(43, 43, 192, .50); } .shadow_top_glossyMidnightBlue6a, .hover_shadow_top_glossyMidnightBlue6a:hover, .active_shadow_top_glossyMidnightBlue6a:active:hover { -webkit-box-shadow: 0em -0.5em 1em rgba(32, 32, 144, .63); -moz-box-shadow: 0em -0.5em 1em rgba(32, 32, 144, .63); box-shadow: 0em -0.5em 1em rgba(32, 32, 144, .63); } .shadow_top_glossyMidnightBlue6s, .hover_shadow_top_glossyMidnightBlue6s:hover, .active_shadow_top_glossyMidnightBlue6s:active:hover { -webkit-box-shadow: 0em -0.5em 1em rgba(32, 32, 144, .71); -moz-box-shadow: 0em -0.5em 1em rgba(32, 32, 144, .71); box-shadow: 0em -0.5em 1em rgba(32, 32, 144, .71); } /* -------------------------- shadow bottom settings --------------------------------*/ .shadow_bottom_glossyMidnightBlue6, .hover_shadow_bottom_glossyMidnightBlue6:hover, .active_shadow_bottom_glossyMidnightBlue6:active:hover { -webkit-box-shadow: 0em 0.5em 1em rgba(36, 36, 160, .39); -moz-box-shadow: 0em 0.5em 1em rgba(36, 36, 160, .39); box-shadow: 0em 0.5em 1em rgba(36, 36, 160, .39); } .shadow_bottom_glossyMidnightBlue6h, .hover_shadow_bottom_glossyMidnightBlue6h:hover, .active_shadow_bottom_glossyMidnightBlue6h:active:hover { -webkit-box-shadow: 0em 0.5em 1em rgba(43, 43, 192, .50); -moz-box-shadow: 0em 0.5em 1em rgba(43, 43, 192, .50); box-shadow: 0em 0.5em 1em rgba(43, 43, 192, .50); } .shadow_bottom_glossyMidnightBlue6a, .hover_shadow_bottom_glossyMidnightBlue6a:hover, .active_shadow_bottom_glossyMidnightBlue6a:active:hover { -webkit-box-shadow: 0em 0.5em 1em rgba(32, 32, 144, .63); -moz-box-shadow: 0em 0.5em 1em rgba(32, 32, 144, .63); box-shadow: 0em 0.5em 1em rgba(32, 32, 144, .63); } .shadow_bottom_glossyMidnightBlue6s, .hover_shadow_bottom_glossyMidnightBlue6s:hover, .active_shadow_bottom_glossyMidnightBlue6s:active:hover { -webkit-box-shadow: 0em 0.5em 1em rgba(32, 32, 144, .71); -moz-box-shadow: 0em 0.5em 1em rgba(32, 32, 144, .71); box-shadow: 0em 0.5em 1em rgba(32, 32, 144, .71); } /* -------------------------- shadow top_left settings --------------------------------*/ .shadow_top_left_glossyMidnightBlue6, .hover_shadow_top_left_glossyMidnightBlue6:hover, .active_shadow_top_left_glossyMidnightBlue6:active:hover { -webkit-box-shadow: -0.5em -0.5em 1em rgba(36, 36, 160, .39); -moz-box-shadow: -0.5em -0.5em 1em rgba(36, 36, 160, .39); box-shadow: -0.5em -0.5em 1em rgba(36, 36, 160, .39); } .shadow_top_left_glossyMidnightBlue6h, .hover_shadow_top_left_glossyMidnightBlue6h:hover, .active_shadow_top_left_glossyMidnightBlue6h:active:hover { -webkit-box-shadow: -0.5em -0.5em 1em rgba(43, 43, 192, .50); -moz-box-shadow: -0.5em -0.5em 1em rgba(43, 43, 192, .50); box-shadow: -0.5em -0.5em 1em rgba(43, 43, 192, .50); } .shadow_top_left_glossyMidnightBlue6a, .hover_shadow_top_left_glossyMidnightBlue6a:hover, .active_shadow_top_left_glossyMidnightBlue6a:active:hover { -webkit-box-shadow: -0.5em -0.5em 1em rgba(32, 32, 144, .63); -moz-box-shadow: -0.5em -0.5em 1em rgba(32, 32, 144, .63); box-shadow: -0.5em -0.5em 1em rgba(32, 32, 144, .63); } .shadow_top_left_glossyMidnightBlue6s, .hover_shadow_top_left_glossyMidnightBlue6s:hover, .active_shadow_top_left_glossyMidnightBlue6s:active:hover { -webkit-box-shadow: -0.5em -0.5em 1em rgba(32, 32, 144, .71); -moz-box-shadow: -0.5em -0.5em 1em rgba(32, 32, 144, .71); box-shadow: -0.5em -0.5em 1em rgba(32, 32, 144, .71); } /* -------------------------- shadow top_right settings --------------------------------*/ .shadow_top_right_glossyMidnightBlue6, .hover_shadow_top_right_glossyMidnightBlue6:hover, .active_shadow_top_right_glossyMidnightBlue6:active:hover { -webkit-box-shadow: 0.5em -0.5em 1em rgba(36, 36, 160, .39); -moz-box-shadow: 0.5em -0.5em 1em rgba(36, 36, 160, .39); box-shadow: 0.5em -0.5em 1em rgba(36, 36, 160, .39); } .shadow_top_right_glossyMidnightBlue6h, .hover_shadow_top_right_glossyMidnightBlue6h:hover, .active_shadow_top_right_glossyMidnightBlue6h:active:hover { -webkit-box-shadow: 0.5em -0.5em 1em rgba(43, 43, 192, .50); -moz-box-shadow: 0.5em -0.5em 1em rgba(43, 43, 192, .50); box-shadow: 0.5em -0.5em 1em rgba(43, 43, 192, .50); } .shadow_top_right_glossyMidnightBlue6a, .hover_shadow_top_right_glossyMidnightBlue6a:hover, .active_shadow_top_right_glossyMidnightBlue6a:active:hover { -webkit-box-shadow: 0.5em -0.5em 1em rgba(32, 32, 144, .63); -moz-box-shadow: 0.5em -0.5em 1em rgba(32, 32, 144, .63); box-shadow: 0.5em -0.5em 1em rgba(32, 32, 144, .63); } .shadow_top_right_glossyMidnightBlue6s, .hover_shadow_top_right_glossyMidnightBlue6s:hover, .active_shadow_top_right_glossyMidnightBlue6s:active:hover { -webkit-box-shadow: 0.5em -0.5em 1em rgba(32, 32, 144, .71); -moz-box-shadow: 0.5em -0.5em 1em rgba(32, 32, 144, .71); box-shadow: 0.5em -0.5em 1em rgba(32, 32, 144, .71); } /* -------------------------- shadow bottom_left settings --------------------------------*/ .shadow_bottom_left_glossyMidnightBlue6, .hover_shadow_bottom_left_glossyMidnightBlue6:hover, .active_shadow_bottom_left_glossyMidnightBlue6:active:hover { -webkit-box-shadow: -0.5em 0.5em 1em rgba(36, 36, 160, .39); -moz-box-shadow: -0.5em 0.5em 1em rgba(36, 36, 160, .39); box-shadow: -0.5em 0.5em 1em rgba(36, 36, 160, .39); } .shadow_bottom_left_glossyMidnightBlue6h, .hover_shadow_bottom_left_glossyMidnightBlue6h:hover, .active_shadow_bottom_left_glossyMidnightBlue6h:active:hover { -webkit-box-shadow: -0.5em 0.5em 1em rgba(43, 43, 192, .50); -moz-box-shadow: -0.5em 0.5em 1em rgba(43, 43, 192, .50); box-shadow: -0.5em 0.5em 1em rgba(43, 43, 192, .50); } .shadow_bottom_left_glossyMidnightBlue6a, .hover_shadow_bottom_left_glossyMidnightBlue6a:hover, .active_shadow_bottom_left_glossyMidnightBlue6a:active:hover { -webkit-box-shadow: -0.5em 0.5em 1em rgba(32, 32, 144, .63); -moz-box-shadow: -0.5em 0.5em 1em rgba(32, 32, 144, .63); box-shadow: -0.5em 0.5em 1em rgba(32, 32, 144, .63); } .shadow_bottom_left_glossyMidnightBlue6s, .hover_shadow_bottom_left_glossyMidnightBlue6s:hover, .active_shadow_bottom_left_glossyMidnightBlue6s:active:hover { -webkit-box-shadow: -0.5em 0.5em 1em rgba(32, 32, 144, .71); -moz-box-shadow: -0.5em 0.5em 1em rgba(32, 32, 144, .71); box-shadow: -0.5em 0.5em 1em rgba(32, 32, 144, .71); } /* -------------------------- shadow bottom_right settings --------------------------------*/ .shadow_bottom_right_glossyMidnightBlue6, .hover_shadow_bottom_right_glossyMidnightBlue6:hover, .active_shadow_bottom_right_glossyMidnightBlue6:active:hover { -webkit-box-shadow: 0.5em 0.5em 1em rgba(36, 36, 160, .39); -moz-box-shadow: 0.5em 0.5em 1em rgba(36, 36, 160, .39); box-shadow: 0.5em 0.5em 1em rgba(36, 36, 160, .39); } .shadow_bottom_right_glossyMidnightBlue6h, .hover_shadow_bottom_right_glossyMidnightBlue6h:hover, .active_shadow_bottom_right_glossyMidnightBlue6h:active:hover { -webkit-box-shadow: 0.5em 0.5em 1em rgba(43, 43, 192, .50); -moz-box-shadow: 0.5em 0.5em 1em rgba(43, 43, 192, .50); box-shadow: 0.5em 0.5em 1em rgba(43, 43, 192, .50); } .shadow_bottom_right_glossyMidnightBlue6a, .hover_shadow_bottom_right_glossyMidnightBlue6a:hover, .active_shadow_bottom_right_glossyMidnightBlue6a:active:hover { -webkit-box-shadow: 0.5em 0.5em 1em rgba(32, 32, 144, .63); -moz-box-shadow: 0.5em 0.5em 1em rgba(32, 32, 144, .63); box-shadow: 0.5em 0.5em 1em rgba(32, 32, 144, .63); } .shadow_bottom_right_glossyMidnightBlue6s, .hover_shadow_bottom_right_glossyMidnightBlue6s:hover, .active_shadow_bottom_right_glossyMidnightBlue6s:active:hover { -webkit-box-shadow: 0.5em 0.5em 1em rgba(32, 32, 144, .71); -moz-box-shadow: 0.5em 0.5em 1em rgba(32, 32, 144, .71); box-shadow: 0.5em 0.5em 1em rgba(32, 32, 144, .71); }
widgets/common/assets/gradients/glossy/glossyMidnightBlue/glossyMidnightBlue6.css
.background_glossyMidnightBlue6, .hover_background_glossyMidnightBlue6:hover, .active_background_glossyMidnightBlue6:active:hover { background: #2424a0; background-image: -moz-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, .30)), color-stop(50%, rgba(255, 255, 255, .00)), color-stop(51%, rgba(0, 0, 0, .10)), color-stop(100%, rgba(0, 0, 0, .04))); background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); background-image: -o-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); background-image: -ms-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); background-image: linear-gradient(to bottom, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000',GradientType=0 ); } .background_glossyMidnightBlue6h, .hover_background_glossyMidnightBlue6h:hover, .active_background_glossyMidnightBlue6h:active:hover { background: #2424a0; background-image: -moz-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, .30)), color-stop(50%, rgba(255, 255, 255, .00)), color-stop(51%, rgba(0, 0, 0, .10)), color-stop(100%, rgba(0, 0, 0, .04))); background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); background-image: -o-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); background-image: -ms-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); background-image: linear-gradient(to bottom, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000',GradientType=0 ); } .background_glossyMidnightBlue6a, .hover_background_glossyMidnightBlue6a:hover, .active_background_glossyMidnightBlue6a:active:hover { background: #2424a0; background-image: -moz-linear-gradient(top, rgba(0, 0, 0, .04) 0%, rgba(0, 0, 0, .10) 50%, rgba(255, 255, 255, .00) 51%, rgba(255, 255, 255, .30) 100%); background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, .04)), color-stop(50%, rgba(0, 0, 0, .10)), color-stop(51%, rgba(255, 255, 255, .00)), color-stop(100%, rgba(255, 255, 255, .30))); background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, .04) 0%, rgba(0, 0, 0, .10) 50%, rgba(255, 255, 255, .00) 51%, rgba(255, 255, 255, .30) 100%); background-image: -o-linear-gradient(top, rgba(0, 0, 0, .04) 0%, rgba(0, 0, 0, .10) 50%, rgba(255, 255, 255, .00) 51%, rgba(255, 255, 255, .30) 100%); background-image: -ms-linear-gradient(top, rgba(0, 0, 0, .04) 0%, rgba(0, 0, 0, .10) 50%, rgba(255, 255, 255, .00) 51%, rgba(255, 255, 255, .30) 100%); background-image: linear-gradient(to bottom, rgba(0, 0, 0, .04) 0%, rgba(0, 0, 0, .10) 50%, rgba(255, 255, 255, .00) 51%, rgba(255, 255, 255, .30) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#ffffff',GradientType=0 ); } .background_glossyMidnightBlue6s, .hover_background_glossyMidnightBlue6s:hover, .active_background_glossyMidnightBlue6s:active:hover { background: #2424a0; background-image: -moz-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, .30)), color-stop(50%, rgba(255, 255, 255, .00)), color-stop(51%, rgba(0, 0, 0, .10)), color-stop(100%, rgba(0, 0, 0, .04))); background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); background-image: -o-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); background-image: -ms-linear-gradient(top, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); background-image: linear-gradient(to bottom, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .00) 50%, rgba(0, 0, 0, .10) 51%, rgba(0, 0, 0, .04) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000',GradientType=0 ); } .background_color_glossyMidnightBlue6, .hover_background_color_glossyMidnightBlue6:hover, .active_background_color_glossyMidnightBlue6:active:hover { background-color:#2424a0; } .background_first_color_glossyMidnightBlue6, .hover_background_first_color_glossyMidnightBlue6:hover, .active_background_first_color_glossyMidnightBlue6:active:hover { background-color:#ffffff; } .background_last_color_glossyMidnightBlue6, .hover_background_last_color_glossyMidnightBlue6:hover, .active_background_color_last_glossyMidnightBlue6:active:hover { background-color:#000000; } /* ------------------------------ color settings -------------------------------*/ .color_glossyMidnightBlue6, .hover_color_glossyMidnightBlue6:hover, .active_color_glossyMidnightBlue6:active:hover { color: #c8c8c8; } .color_glossyMidnightBlue6h, .hover_color_glossyMidnightBlue6h:hover, .active_color_glossyMidnightBlue6h:active:hover { color: #c8c8c8; } .color_glossyMidnightBlue6a, .hover_color_glossyMidnightBlue6a:hover, .active_color_glossyMidnightBlue6a:active:hover { color: #c8c8c8; } .color_glossyMidnightBlue6s, .hover_color_glossyMidnightBlue6s:hover, .active_color_glossyMidnightBlue6s:active:hover { color: #c8c8c8; } /* -------------------------- border color settings -----------------------------*/ .border_glossyMidnightBlue6, .hover_border_glossyMidnightBlue6:hover, .active_border_glossyMidnightBlue6:active:hover { border-color: #1d1d80 #1d1d80 #1d1d80 #1d1d80; } .border_glossyMidnightBlue6h, .hover_border_glossyMidnightBlue6h:hover, .active_border_glossyMidnightBlue6h:active:hover { border-color: #171768 #171768 #171768 #171768; } .border_glossyMidnightBlue6a, .hover_border_glossyMidnightBlue6a:hover, .active_border_glossyMidnightBlue6a:active:hover { border-color: #121250 #121250 #121250 #121250; } .border_glossyMidnightBlue6s, .hover_border_glossyMidnightBlue6s:hover, .active_border_glossyMidnightBlue6s:active:hover { border-color: #1d1d80 #1d1d80 #1d1d80 #1d1d80; } /* -------------------------- shadow expand settings --------------------------------*/ .shadow_expand_glossyMidnightBlue6, .hover_shadow_expand_glossyMidnightBlue6:hover, .active_shadow_expand_glossyMidnightBlue6:active:hover { -webkit-box-shadow: 0em 0em 1em 0.25em rgba(36, 36, 160, .39); -moz-box-shadow: 0em 0em 1em 0.25em rgba(36, 36, 160, .39); box-shadow: 0em 0em 1em 0.25em rgba(36, 36, 160, .39); } .shadow_expand_glossyMidnightBlue6h, .hover_shadow_expand_glossyMidnightBlue6h:hover, .active_shadow_expand_glossyMidnightBlue6h:active:hover { -webkit-box-shadow: 0em 0em 1em 0.25em rgba(43, 43, 192, .50); -moz-box-shadow: 0em 0em 1em 0.25em rgba(43, 43, 192, .50); box-shadow: 0em 0em 1em 0.25em rgba(43, 43, 192, .50); } .shadow_expand_glossyMidnightBlue6a, .hover_shadow_expand_glossyMidnightBlue6a:hover, .active_shadow_expand_glossyMidnightBlue6a:active:hover { -webkit-box-shadow: 0em 0em 1em 0.25em rgba(32, 32, 144, .63); -moz-box-shadow: 0em 0em 1em 0.25em rgba(32, 32, 144, .63); box-shadow: 0em 0em 1em 0.25em rgba(32, 32, 144, .63); } .shadow_expand_glossyMidnightBlue6s, .hover_shadow_expand_glossyMidnightBlue6s:hover, .active_shadow_expand_glossyMidnightBlue6s:active:hover { -webkit-box-shadow: 0em 0em 1em 0.25em rgba(32, 32, 144, .71); -moz-box-shadow: 0em 0em 1em 0.25em rgba(32, 32, 144, .71); box-shadow: 0em 0em 1em 0.25em rgba(32, 32, 144, .71); } /* -------------------------- shadow left settings --------------------------------*/ .shadow_left_glossyMidnightBlue6, .hover_shadow_left_glossyMidnightBlue6:hover, .active_shadow_left_glossyMidnightBlue6:active:hover { -webkit-box-shadow: -0.5em -0.5em 1em rgba(36, 36, 160, .39); -moz-box-shadow: -0.5em -0.5em 1em rgba(36, 36, 160, .39); box-shadow: -0.5em -0.5em 1em rgba(36, 36, 160, .39); } .shadow_left_glossyMidnightBlue6h, .hover_shadow_left_glossyMidnightBlue6h:hover, .active_shadow_left_glossyMidnightBlue6h:active:hover { -webkit-box-shadow: -0.5em -0.5em 1em rgba(43, 43, 192, .50); -moz-box-shadow: -0.5em -0.5em 1em rgba(43, 43, 192, .50); box-shadow: -0.5em -0.5em 1em rgba(43, 43, 192, .50); } .shadow_left_glossyMidnightBlue6a, .hover_shadow_left_glossyMidnightBlue6a:hover, .active_shadow_left_glossyMidnightBlue6a:active:hover { -webkit-box-shadow: -0.5em -0.5em 1em rgba(32, 32, 144, .63); -moz-box-shadow: -0.5em -0.5em 1em rgba(32, 32, 144, .63); box-shadow: -0.5em -0.5em 1em rgba(32, 32, 144, .63); } .shadow_left_glossyMidnightBlue6s, .hover_shadow_left_glossyMidnightBlue6s:hover, .active_shadow_left_glossyMidnightBlue6s:active:hover { -webkit-box-shadow: -0.5em -0.5em 1em rgba(32, 32, 144, .71); -moz-box-shadow: -0.5em -0.5em 1em rgba(32, 32, 144, .71); box-shadow: -0.5em -0.5em 1em rgba(32, 32, 144, .71); } /* -------------------------- shadow right settings --------------------------------*/ .shadow_right_glossyMidnightBlue6, .hover_shadow_right_glossyMidnightBlue6:hover, .active_shadow_right_glossyMidnightBlue6:active:hover { -webkit-box-shadow: 0.5em 0em 1em rgba(36, 36, 160, .39); -moz-box-shadow: 0.5em 0em 1em rgba(36, 36, 160, .39); box-shadow: 0.5em 0em 1em rgba(36, 36, 160, .39); } .shadow_right_glossyMidnightBlue6h, .hover_shadow_right_glossyMidnightBlue6h:hover, .active_shadow_right_glossyMidnightBlue6h:active:hover { -webkit-box-shadow: 0.5em 0em 1em rgba(43, 43, 192, .50); -moz-box-shadow: 0.5em 0em 1em rgba(43, 43, 192, .50); box-shadow: 0.5em 0em 1em rgba(43, 43, 192, .50); } .shadow_right_glossyMidnightBlue6a, .hover_shadow_right_glossyMidnightBlue6a:hover, .active_shadow_right_glossyMidnightBlue6a:active:hover { -webkit-box-shadow: 0.5em 0em 1em rgba(32, 32, 144, .63); -moz-box-shadow: 0.5em 0em 1em rgba(32, 32, 144, .63); box-shadow: 0.5em 0em 1em rgba(32, 32, 144, .63); } .shadow_right_glossyMidnightBlue6s, .hover_shadow_right_glossyMidnightBlue6s:hover, .active_shadow_right_glossyMidnightBlue6s:active:hover { -webkit-box-shadow: 0.5em 0em 1em rgba(32, 32, 144, .71); -moz-box-shadow: 0.5em 0em 1em rgba(32, 32, 144, .71); box-shadow: 0.5em 0em 1em rgba(32, 32, 144, .71); } /* -------------------------- shadow top settings --------------------------------*/ .shadow_top_glossyMidnightBlue6, .hover_shadow_top_glossyMidnightBlue6:hover, .active_shadow_top_glossyMidnightBlue6:active:hover { -webkit-box-shadow: 0em -0.5em 1em rgba(36, 36, 160, .39); -moz-box-shadow: 0em -0.5em 1em rgba(36, 36, 160, .39); box-shadow: 0em -0.5em 1em rgba(36, 36, 160, .39); } .shadow_top_glossyMidnightBlue6h, .hover_shadow_top_glossyMidnightBlue6h:hover, .active_shadow_top_glossyMidnightBlue6h:active:hover { -webkit-box-shadow: 0em -0.5em 1em rgba(43, 43, 192, .50); -moz-box-shadow: 0em -0.5em 1em rgba(43, 43, 192, .50); box-shadow: 0em -0.5em 1em rgba(43, 43, 192, .50); } .shadow_top_glossyMidnightBlue6a, .hover_shadow_top_glossyMidnightBlue6a:hover, .active_shadow_top_glossyMidnightBlue6a:active:hover { -webkit-box-shadow: 0em -0.5em 1em rgba(32, 32, 144, .63); -moz-box-shadow: 0em -0.5em 1em rgba(32, 32, 144, .63); box-shadow: 0em -0.5em 1em rgba(32, 32, 144, .63); } .shadow_top_glossyMidnightBlue6s, .hover_shadow_top_glossyMidnightBlue6s:hover, .active_shadow_top_glossyMidnightBlue6s:active:hover { -webkit-box-shadow: 0em -0.5em 1em rgba(32, 32, 144, .71); -moz-box-shadow: 0em -0.5em 1em rgba(32, 32, 144, .71); box-shadow: 0em -0.5em 1em rgba(32, 32, 144, .71); } /* -------------------------- shadow bottom settings --------------------------------*/ .shadow_bottom_glossyMidnightBlue6, .hover_shadow_bottom_glossyMidnightBlue6:hover, .active_shadow_bottom_glossyMidnightBlue6:active:hover { -webkit-box-shadow: 0em 0.5em 1em rgba(36, 36, 160, .39); -moz-box-shadow: 0em 0.5em 1em rgba(36, 36, 160, .39); box-shadow: 0em 0.5em 1em rgba(36, 36, 160, .39); } .shadow_bottom_glossyMidnightBlue6h, .hover_shadow_bottom_glossyMidnightBlue6h:hover, .active_shadow_bottom_glossyMidnightBlue6h:active:hover { -webkit-box-shadow: 0em 0.5em 1em rgba(43, 43, 192, .50); -moz-box-shadow: 0em 0.5em 1em rgba(43, 43, 192, .50); box-shadow: 0em 0.5em 1em rgba(43, 43, 192, .50); } .shadow_bottom_glossyMidnightBlue6a, .hover_shadow_bottom_glossyMidnightBlue6a:hover, .active_shadow_bottom_glossyMidnightBlue6a:active:hover { -webkit-box-shadow: 0em 0.5em 1em rgba(32, 32, 144, .63); -moz-box-shadow: 0em 0.5em 1em rgba(32, 32, 144, .63); box-shadow: 0em 0.5em 1em rgba(32, 32, 144, .63); } .shadow_bottom_glossyMidnightBlue6s, .hover_shadow_bottom_glossyMidnightBlue6s:hover, .active_shadow_bottom_glossyMidnightBlue6s:active:hover { -webkit-box-shadow: 0em 0.5em 1em rgba(32, 32, 144, .71); -moz-box-shadow: 0em 0.5em 1em rgba(32, 32, 144, .71); box-shadow: 0em 0.5em 1em rgba(32, 32, 144, .71); } /* -------------------------- shadow top_left settings --------------------------------*/ .shadow_top_left_glossyMidnightBlue6, .hover_shadow_top_left_glossyMidnightBlue6:hover, .active_shadow_top_left_glossyMidnightBlue6:active:hover { -webkit-box-shadow: -0.5em -0.5em 1em rgba(36, 36, 160, .39); -moz-box-shadow: -0.5em -0.5em 1em rgba(36, 36, 160, .39); box-shadow: -0.5em -0.5em 1em rgba(36, 36, 160, .39); } .shadow_top_left_glossyMidnightBlue6h, .hover_shadow_top_left_glossyMidnightBlue6h:hover, .active_shadow_top_left_glossyMidnightBlue6h:active:hover { -webkit-box-shadow: -0.5em -0.5em 1em rgba(43, 43, 192, .50); -moz-box-shadow: -0.5em -0.5em 1em rgba(43, 43, 192, .50); box-shadow: -0.5em -0.5em 1em rgba(43, 43, 192, .50); } .shadow_top_left_glossyMidnightBlue6a, .hover_shadow_top_left_glossyMidnightBlue6a:hover, .active_shadow_top_left_glossyMidnightBlue6a:active:hover { -webkit-box-shadow: -0.5em -0.5em 1em rgba(32, 32, 144, .63); -moz-box-shadow: -0.5em -0.5em 1em rgba(32, 32, 144, .63); box-shadow: -0.5em -0.5em 1em rgba(32, 32, 144, .63); } .shadow_top_left_glossyMidnightBlue6s, .hover_shadow_top_left_glossyMidnightBlue6s:hover, .active_shadow_top_left_glossyMidnightBlue6s:active:hover { -webkit-box-shadow: -0.5em -0.5em 1em rgba(32, 32, 144, .71); -moz-box-shadow: -0.5em -0.5em 1em rgba(32, 32, 144, .71); box-shadow: -0.5em -0.5em 1em rgba(32, 32, 144, .71); } /* -------------------------- shadow top_right settings --------------------------------*/ .shadow_top_right_glossyMidnightBlue6, .hover_shadow_top_right_glossyMidnightBlue6:hover, .active_shadow_top_right_glossyMidnightBlue6:active:hover { -webkit-box-shadow: 0.5em -0.5em 1em rgba(36, 36, 160, .39); -moz-box-shadow: 0.5em -0.5em 1em rgba(36, 36, 160, .39); box-shadow: 0.5em -0.5em 1em rgba(36, 36, 160, .39); } .shadow_top_right_glossyMidnightBlue6h, .hover_shadow_top_right_glossyMidnightBlue6h:hover, .active_shadow_top_right_glossyMidnightBlue6h:active:hover { -webkit-box-shadow: 0.5em -0.5em 1em rgba(43, 43, 192, .50); -moz-box-shadow: 0.5em -0.5em 1em rgba(43, 43, 192, .50); box-shadow: 0.5em -0.5em 1em rgba(43, 43, 192, .50); } .shadow_top_right_glossyMidnightBlue6a, .hover_shadow_top_right_glossyMidnightBlue6a:hover, .active_shadow_top_right_glossyMidnightBlue6a:active:hover { -webkit-box-shadow: 0.5em -0.5em 1em rgba(32, 32, 144, .63); -moz-box-shadow: 0.5em -0.5em 1em rgba(32, 32, 144, .63); box-shadow: 0.5em -0.5em 1em rgba(32, 32, 144, .63); } .shadow_top_right_glossyMidnightBlue6s, .hover_shadow_top_right_glossyMidnightBlue6s:hover, .active_shadow_top_right_glossyMidnightBlue6s:active:hover { -webkit-box-shadow: 0.5em -0.5em 1em rgba(32, 32, 144, .71); -moz-box-shadow: 0.5em -0.5em 1em rgba(32, 32, 144, .71); box-shadow: 0.5em -0.5em 1em rgba(32, 32, 144, .71); } /* -------------------------- shadow bottom_left settings --------------------------------*/ .shadow_bottom_left_glossyMidnightBlue6, .hover_shadow_bottom_left_glossyMidnightBlue6:hover, .active_shadow_bottom_left_glossyMidnightBlue6:active:hover { -webkit-box-shadow: -0.5em 0.5em 1em rgba(36, 36, 160, .39); -moz-box-shadow: -0.5em 0.5em 1em rgba(36, 36, 160, .39); box-shadow: -0.5em 0.5em 1em rgba(36, 36, 160, .39); } .shadow_bottom_left_glossyMidnightBlue6h, .hover_shadow_bottom_left_glossyMidnightBlue6h:hover, .active_shadow_bottom_left_glossyMidnightBlue6h:active:hover { -webkit-box-shadow: -0.5em 0.5em 1em rgba(43, 43, 192, .50); -moz-box-shadow: -0.5em 0.5em 1em rgba(43, 43, 192, .50); box-shadow: -0.5em 0.5em 1em rgba(43, 43, 192, .50); } .shadow_bottom_left_glossyMidnightBlue6a, .hover_shadow_bottom_left_glossyMidnightBlue6a:hover, .active_shadow_bottom_left_glossyMidnightBlue6a:active:hover { -webkit-box-shadow: -0.5em 0.5em 1em rgba(32, 32, 144, .63); -moz-box-shadow: -0.5em 0.5em 1em rgba(32, 32, 144, .63); box-shadow: -0.5em 0.5em 1em rgba(32, 32, 144, .63); } .shadow_bottom_left_glossyMidnightBlue6s, .hover_shadow_bottom_left_glossyMidnightBlue6s:hover, .active_shadow_bottom_left_glossyMidnightBlue6s:active:hover { -webkit-box-shadow: -0.5em 0.5em 1em rgba(32, 32, 144, .71); -moz-box-shadow: -0.5em 0.5em 1em rgba(32, 32, 144, .71); box-shadow: -0.5em 0.5em 1em rgba(32, 32, 144, .71); } /* -------------------------- shadow bottom_right settings --------------------------------*/ .shadow_bottom_right_glossyMidnightBlue6, .hover_shadow_bottom_right_glossyMidnightBlue6:hover, .active_shadow_bottom_right_glossyMidnightBlue6:active:hover { -webkit-box-shadow: 0.5em 0.5em 1em rgba(36, 36, 160, .39); -moz-box-shadow: 0.5em 0.5em 1em rgba(36, 36, 160, .39); box-shadow: 0.5em 0.5em 1em rgba(36, 36, 160, .39); } .shadow_bottom_right_glossyMidnightBlue6h, .hover_shadow_bottom_right_glossyMidnightBlue6h:hover, .active_shadow_bottom_right_glossyMidnightBlue6h:active:hover { -webkit-box-shadow: 0.5em 0.5em 1em rgba(43, 43, 192, .50); -moz-box-shadow: 0.5em 0.5em 1em rgba(43, 43, 192, .50); box-shadow: 0.5em 0.5em 1em rgba(43, 43, 192, .50); } .shadow_bottom_right_glossyMidnightBlue6a, .hover_shadow_bottom_right_glossyMidnightBlue6a:hover, .active_shadow_bottom_right_glossyMidnightBlue6a:active:hover { -webkit-box-shadow: 0.5em 0.5em 1em rgba(32, 32, 144, .63); -moz-box-shadow: 0.5em 0.5em 1em rgba(32, 32, 144, .63); box-shadow: 0.5em 0.5em 1em rgba(32, 32, 144, .63); } .shadow_bottom_right_glossyMidnightBlue6s, .hover_shadow_bottom_right_glossyMidnightBlue6s:hover, .active_shadow_bottom_right_glossyMidnightBlue6s:active:hover { -webkit-box-shadow: 0.5em 0.5em 1em rgba(32, 32, 144, .71); -moz-box-shadow: 0.5em 0.5em 1em rgba(32, 32, 144, .71); box-shadow: 0.5em 0.5em 1em rgba(32, 32, 144, .71); }
0.424412
0.082291
.halfViewer{ position: absolute; right: 0; bottom: 0; margin: 5px 5px 5px 5px; width: 60%; height: 70%; z-index: 4000; border: 1px solid #ccc; /*overflow-x: scroll; overflow-y: hidden;*/ box-shadow: -2px -2px 13px #333; } .fullViewer{ position: fixed; /*left: 0;*/ right: 0; bottom: 0; /*margin: 5px 5px 5px 5px;*/ width: 100%; height: 100%; z-index: 4000; border: 1px solid #ccc; /*overflow-x: scroll; overflow-y: hidden;*/ } #viewerContainer .magnifyWrapper{ position: absolute; right: 20px; bottom: 20px; z-index: 10; } #viewerContainer .magnifyWrapper button{ margin-bottom: 5px; background-color: #ccc; transition: background-color .3s; outline: none; } #viewerContainer .magnifyWrapper button:hover{ background-color: #fafafa; } #viewerContainer .secondaryContainer{ /*height: 960px;*/ /*height: 20px;*/ } #viewerContainer .thumbnailsWrapper{ height: 620px; /*fullview*/ /*height: 410px;*/ /*halfview*/ background-color: #fafafa; overflow: scroll; padding-bottom: 15px; } #viewerContainer .thumbnailHeader{ padding: 10px; font-size: 12px; border-bottom: 1px solid #ccc; background-color: #eee; } #viewerContainer .thumbnailHeader p { display: inline-block; padding-top: 2px; } #viewerContainer .thumbnailHeader i{ float: right; color: darkgray; padding-top: 3px; } #viewerContainer .thumbnailHeader i:hover{ cursor: pointer; color: #333; } #viewerContainer .thumbnailContent{ height: 150px; /*fullview*/ width: 130px; /*fullview*/ /*height: 100px; */ /*halfview*/ /*width: 100px; */ /*halfview*/ background-color: #fff; border-bottom: 1px solid #ccc; transition: box-shadow .3s; overflow: hidden; } #viewerContainer .thumbnailContent:hover{ box-shadow: 5px 5px 5px #ccc; cursor: pointer; } #viewerContainer .thumbnailContent table th{ font-size: 2px; } #viewerContainer .thumbnailContent table td{ font-size: 2px; } #viewerContainer .thumbnailDate{ font-size: 11px; color: gray; margin-top: 15px; } #viewerContainer .pageNumber{ font-size: 12px; } #viewerContainer .mainContentWrapper{ } #viewerContainer .mainContentHeader{ padding: 8px 0; background-color: #eee; border-left: 1px solid #ccc; border-bottom: 1px solid #ccc; } #viewerContainer .patientName{ font-size: 12px; } #viewerContainer .patientName p{ display: inline-block; margin-top: 5px; } #viewerContainer .patientName i:hover{ cursor: pointer; color: #333; } #viewerContainer .contentWindow{ font-size: 15px; } #viewerContainer .contentWindow i{ margin-right: 6px; color: #bdbdbd; transition: color .3s; } #viewerContainer .contentWindow i:hover{ color: #333; cursor: pointer; } #viewerContainer .mainContent{ overflow: scroll; padding: 20px; height: 620px; /*fullview*/ /*height: 430px;*/ /*halfview*/ background-color: #333; } #viewerContainer .pageContent{ height: 1280px; width: 900px; background-color: #fff; padding: 15px 20px 20px 20px; overflow-y: scroll; } #viewerContainer .contentHeaderRow{ margin-bottom: 8px; } #viewerContainer .doctorsName{ font-size: 13px; display: inline; } #viewerContainer .pageContent table th{ font-size: 13px; } #viewerContainer .pageContent table td{ font-size: 13px; } #viewerContainer .contentIcons{ color: #333; font-size: 12px; } #viewerContainer .contentIcons{ font-size: 13px; color: gray; } #viewerContainer .iconPrint:hover{ color: green; } #viewerContainer .iconPencil:hover{ color: orange; } #minimizer{ z-index: 50000; padding: 10px; background-color: #eee; border: 1px solid #ccc; position: absolute; bottom: 15px; right: 15px; display: none; } #minimizer p{ font-size: 13px; } #minimizer .contentWindow i{ font-size: 12px; margin-left: 5px; color: #bdbdbd; transition: color .3s; } #minimizer .contentWindow i:hover{ color: #333; cursor: pointer; } /*@media only screen and (max-width: 500px) { #thumbnailsContainer{ width: 400px; } }*/ /*@media only screen and (max-width: 1000px) { #viewerContainer .patientName i{ color: darkgray; display: none; } }*/ @media only screen and (max-width: 768px) { #thumbnailsContainer{ position: absolute; z-index: 50; display: none; } #viewerContainer .thumbnailsWrapper{ height: 510px; padding: 0px 2px; } #viewerContainer .thumbnailContent{ height: 100px; width: 80px; } .mainContentWrapper{ width: 100%; } .mainContentHeader{ padding: 15px 0 !important; } .thumbnailHeader{ padding: 17px 10px !important; border-right: 1px solid #ccc; } #viewerContainer .pageContent{ height: 1300px; } #viewerContainer .magnifyWrapper{ position: absolute; right: 10px; bottom: 110px; } } @media only screen and (min-width:1400px) { /* For desktops: */ #viewerContainer .thumbnailsWrapper{ height: 920px; } #viewerContainer .mainContent{ height: 920px; } }
public/css/consultation/viewer.css
.halfViewer{ position: absolute; right: 0; bottom: 0; margin: 5px 5px 5px 5px; width: 60%; height: 70%; z-index: 4000; border: 1px solid #ccc; /*overflow-x: scroll; overflow-y: hidden;*/ box-shadow: -2px -2px 13px #333; } .fullViewer{ position: fixed; /*left: 0;*/ right: 0; bottom: 0; /*margin: 5px 5px 5px 5px;*/ width: 100%; height: 100%; z-index: 4000; border: 1px solid #ccc; /*overflow-x: scroll; overflow-y: hidden;*/ } #viewerContainer .magnifyWrapper{ position: absolute; right: 20px; bottom: 20px; z-index: 10; } #viewerContainer .magnifyWrapper button{ margin-bottom: 5px; background-color: #ccc; transition: background-color .3s; outline: none; } #viewerContainer .magnifyWrapper button:hover{ background-color: #fafafa; } #viewerContainer .secondaryContainer{ /*height: 960px;*/ /*height: 20px;*/ } #viewerContainer .thumbnailsWrapper{ height: 620px; /*fullview*/ /*height: 410px;*/ /*halfview*/ background-color: #fafafa; overflow: scroll; padding-bottom: 15px; } #viewerContainer .thumbnailHeader{ padding: 10px; font-size: 12px; border-bottom: 1px solid #ccc; background-color: #eee; } #viewerContainer .thumbnailHeader p { display: inline-block; padding-top: 2px; } #viewerContainer .thumbnailHeader i{ float: right; color: darkgray; padding-top: 3px; } #viewerContainer .thumbnailHeader i:hover{ cursor: pointer; color: #333; } #viewerContainer .thumbnailContent{ height: 150px; /*fullview*/ width: 130px; /*fullview*/ /*height: 100px; */ /*halfview*/ /*width: 100px; */ /*halfview*/ background-color: #fff; border-bottom: 1px solid #ccc; transition: box-shadow .3s; overflow: hidden; } #viewerContainer .thumbnailContent:hover{ box-shadow: 5px 5px 5px #ccc; cursor: pointer; } #viewerContainer .thumbnailContent table th{ font-size: 2px; } #viewerContainer .thumbnailContent table td{ font-size: 2px; } #viewerContainer .thumbnailDate{ font-size: 11px; color: gray; margin-top: 15px; } #viewerContainer .pageNumber{ font-size: 12px; } #viewerContainer .mainContentWrapper{ } #viewerContainer .mainContentHeader{ padding: 8px 0; background-color: #eee; border-left: 1px solid #ccc; border-bottom: 1px solid #ccc; } #viewerContainer .patientName{ font-size: 12px; } #viewerContainer .patientName p{ display: inline-block; margin-top: 5px; } #viewerContainer .patientName i:hover{ cursor: pointer; color: #333; } #viewerContainer .contentWindow{ font-size: 15px; } #viewerContainer .contentWindow i{ margin-right: 6px; color: #bdbdbd; transition: color .3s; } #viewerContainer .contentWindow i:hover{ color: #333; cursor: pointer; } #viewerContainer .mainContent{ overflow: scroll; padding: 20px; height: 620px; /*fullview*/ /*height: 430px;*/ /*halfview*/ background-color: #333; } #viewerContainer .pageContent{ height: 1280px; width: 900px; background-color: #fff; padding: 15px 20px 20px 20px; overflow-y: scroll; } #viewerContainer .contentHeaderRow{ margin-bottom: 8px; } #viewerContainer .doctorsName{ font-size: 13px; display: inline; } #viewerContainer .pageContent table th{ font-size: 13px; } #viewerContainer .pageContent table td{ font-size: 13px; } #viewerContainer .contentIcons{ color: #333; font-size: 12px; } #viewerContainer .contentIcons{ font-size: 13px; color: gray; } #viewerContainer .iconPrint:hover{ color: green; } #viewerContainer .iconPencil:hover{ color: orange; } #minimizer{ z-index: 50000; padding: 10px; background-color: #eee; border: 1px solid #ccc; position: absolute; bottom: 15px; right: 15px; display: none; } #minimizer p{ font-size: 13px; } #minimizer .contentWindow i{ font-size: 12px; margin-left: 5px; color: #bdbdbd; transition: color .3s; } #minimizer .contentWindow i:hover{ color: #333; cursor: pointer; } /*@media only screen and (max-width: 500px) { #thumbnailsContainer{ width: 400px; } }*/ /*@media only screen and (max-width: 1000px) { #viewerContainer .patientName i{ color: darkgray; display: none; } }*/ @media only screen and (max-width: 768px) { #thumbnailsContainer{ position: absolute; z-index: 50; display: none; } #viewerContainer .thumbnailsWrapper{ height: 510px; padding: 0px 2px; } #viewerContainer .thumbnailContent{ height: 100px; width: 80px; } .mainContentWrapper{ width: 100%; } .mainContentHeader{ padding: 15px 0 !important; } .thumbnailHeader{ padding: 17px 10px !important; border-right: 1px solid #ccc; } #viewerContainer .pageContent{ height: 1300px; } #viewerContainer .magnifyWrapper{ position: absolute; right: 10px; bottom: 110px; } } @media only screen and (min-width:1400px) { /* For desktops: */ #viewerContainer .thumbnailsWrapper{ height: 920px; } #viewerContainer .mainContent{ height: 920px; } }
0.39129
0.080574
html { box-sizing: border-box; } *, *:before, *:after { box-sizing: inherit; } body { background-color: #fff; color: #333; font-family: 'Roboto', sans-serif; margin: 0; padding: 0; } input:focus { outline: none; } header { overflow: hidden; padding: 40px; } header h1 { color: #60311b; font-size: 3.5em; font-weight: 900; margin: 0; padding: 0; text-align: center; } header h2 { color: rgba(255, 255, 255, 0.8); font-size: 2em; font-weight: 400; margin: 0; padding: 0; text-align: center; } sup { color: rgba(255, 255, 255, 0.5); font-size: 16px; } .main-content { margin: 0 auto; line-height: 2; font-weight: 100; } .main-content > h1 { font-size: 2em; text-align: left; } .main-content > section { padding: 20px; margin: 0; } .main-content > section h1 { color: #ae6c49; font-size: 2em; font-weight: 900; padding: 0; margin: 0; } ul.toc { margin: 0; overflow: hidden; padding: 0; transition: all 1s; } ul.toc li { margin: 0; overflow: hidden; position: relative; list-style: none; } ul.toc li a:before { content: '\261E'; color: #60311b; font-size: 1.4em; opacity: 0.5; position: absolute; left: 0; top: 50%; text-align: center; transition: all 0.3s; transform: translateY(-50%); width: 55px; } ul.toc li a:hover:before { color: #fff; opacity: 1; } ul.toc li a { color: #60311b; display: block; padding: 10px 0 10px 65px; font-size: 1.2em; text-decoration: none; transition: all 0.3s; } ul.toc li a:hover { background-color: #60311b; color: #fff; text-decoration: underline; } pre { padding: 0; margin: 0; word-wrap: break-word; } .btn, input[type='submit'], input[type='button'] { border-radius: 3px; background-color: #daab73; border-style: none; color: #60311b; padding: 10px 15px; font-size: 1.2em; min-width: 190px; } form label { float: left; margin-right: 10px; padding: 10px 0; } [type='email'], [type='date'], [type='time'], [type='number'], [type='text'] { border: none; border-radius: 3px; border: 1px solid transparent; border-bottom: 1px solid rgba(0, 0, 0, 0.1); box-shadow: none; display: block; font-size: 1em; font-weight: 400; padding: 10px; margin: 0 0 20px 0; transition: all 0.3s; width: 100%; } /* Desktop */ @media (min-width: 1024px) { .main-content { width: 90%; } ul.toc li { float: left; width: 33.33333%; } } /* Validation */ .data-type,.data-required { transition: all 0.3s; } .valid, .invalid { border-radius: 3px; } .valid { background-color: #80a147; border: 1px solid #556b2f; color: #fff; } .invalid { background-color: #b00; border: 1px solid #6b2f2f; color: #fff; }
demo/public/stylesheets/demo.css
html { box-sizing: border-box; } *, *:before, *:after { box-sizing: inherit; } body { background-color: #fff; color: #333; font-family: 'Roboto', sans-serif; margin: 0; padding: 0; } input:focus { outline: none; } header { overflow: hidden; padding: 40px; } header h1 { color: #60311b; font-size: 3.5em; font-weight: 900; margin: 0; padding: 0; text-align: center; } header h2 { color: rgba(255, 255, 255, 0.8); font-size: 2em; font-weight: 400; margin: 0; padding: 0; text-align: center; } sup { color: rgba(255, 255, 255, 0.5); font-size: 16px; } .main-content { margin: 0 auto; line-height: 2; font-weight: 100; } .main-content > h1 { font-size: 2em; text-align: left; } .main-content > section { padding: 20px; margin: 0; } .main-content > section h1 { color: #ae6c49; font-size: 2em; font-weight: 900; padding: 0; margin: 0; } ul.toc { margin: 0; overflow: hidden; padding: 0; transition: all 1s; } ul.toc li { margin: 0; overflow: hidden; position: relative; list-style: none; } ul.toc li a:before { content: '\261E'; color: #60311b; font-size: 1.4em; opacity: 0.5; position: absolute; left: 0; top: 50%; text-align: center; transition: all 0.3s; transform: translateY(-50%); width: 55px; } ul.toc li a:hover:before { color: #fff; opacity: 1; } ul.toc li a { color: #60311b; display: block; padding: 10px 0 10px 65px; font-size: 1.2em; text-decoration: none; transition: all 0.3s; } ul.toc li a:hover { background-color: #60311b; color: #fff; text-decoration: underline; } pre { padding: 0; margin: 0; word-wrap: break-word; } .btn, input[type='submit'], input[type='button'] { border-radius: 3px; background-color: #daab73; border-style: none; color: #60311b; padding: 10px 15px; font-size: 1.2em; min-width: 190px; } form label { float: left; margin-right: 10px; padding: 10px 0; } [type='email'], [type='date'], [type='time'], [type='number'], [type='text'] { border: none; border-radius: 3px; border: 1px solid transparent; border-bottom: 1px solid rgba(0, 0, 0, 0.1); box-shadow: none; display: block; font-size: 1em; font-weight: 400; padding: 10px; margin: 0 0 20px 0; transition: all 0.3s; width: 100%; } /* Desktop */ @media (min-width: 1024px) { .main-content { width: 90%; } ul.toc li { float: left; width: 33.33333%; } } /* Validation */ .data-type,.data-required { transition: all 0.3s; } .valid, .invalid { border-radius: 3px; } .valid { background-color: #80a147; border: 1px solid #556b2f; color: #fff; } .invalid { background-color: #b00; border: 1px solid #6b2f2f; color: #fff; }
0.58522
0.12213
.started { color: red; font-weight: bold; } [state=started] { color: red; font-weight: bold; } /**** tasklist ****/ /* 残りタスク数 */ #Area_NumberOfTasks { background-color: #999999; color: #FFFFFF; font-size: 14pt; border: none; clear: both; } #Area_NumberOfTasks div { margin: 0px; padding: 0px; border: none; background-color: inherit; float: left; text-align: center; width: 50%; height: 20pt; } /* タスク時間 */ #Area_TimeOfTasks { font-size: 14pt; float: none; background-color: #999999; color: #FFFFFF; font-size: 14pt; border: none; clear: both; } #Area_TimeOfTasks div { background-color: inherit; float: left; text-align: center; width: 50%; height: 20pt; } /* タイマーエリア */ #target {} #targetTask { display: none; padding: 10px; text-align: center; font-size: 20px } #titleTargetTask { padding: 10px; font-size: 20pt; text-align: left; } #lengthTargetTask { font-size: 20pt; text-align: left; } #timer { margin: 5px; padding: 10px; text-align: center; font-size: 40px; clear: both; } #timer.completed { background-color: green; color: white; } #timer.timeup { background-color: red; color: white; } .swipe { float: left; width: 33%; } /* リスト */ ul#tasklist { margin-left: 0px; padding-left: 0px; } ul#tasklist li { display: flex; border-bottom: solid; } /* ヘッダ */ .header { padding: 5px 15px 5px 15px; background-color: blue; color: white; border-bottom: solid; border-bottom-color: white; border-bottom-width: 1px; } /* タスク(個別)*/ li {} ul#tasklist div.info1 { border: solid; border-color: green; } ul#tasklist div.info2 { display: flex; flex-wrap: wrap; width: 90%; border: solid; border-color: blue; } #pg_tasklist div.title { width: 100%; padding: 5px; font-size: 16pt; } #pg_tasklist div.length { width: 33%; font-size: 12pt; } #pg_tasklist div.folder { width: 33%; } #pg_tasklist div.duedate { width: 33%; font-size: 10pt; } /*******************/ /* taskdetail.html */ /*******************/ .td-row { border-bottom: dotted; border-width: 1px; display: flex; padding-top: 5px; padding-bottom: 5px; } .td-icon { width:10%; padding-left: 5px; padding-right: 5px; } #pg_taskdetail ons-icon{} #pg_taskdetail .td-row>div{ border-bottom: dashed; border-width :1px; font-size:medium; width:85%; } #pg_taskdetail .title{ background-color: white; height: 40px; font-size: large; } .edited{ color : red; } #pg_taskdetail input,select{ background-color: inherit; outline:0; border: 0; width:85%; font-size: medium; }
www/css/style.css
.started { color: red; font-weight: bold; } [state=started] { color: red; font-weight: bold; } /**** tasklist ****/ /* 残りタスク数 */ #Area_NumberOfTasks { background-color: #999999; color: #FFFFFF; font-size: 14pt; border: none; clear: both; } #Area_NumberOfTasks div { margin: 0px; padding: 0px; border: none; background-color: inherit; float: left; text-align: center; width: 50%; height: 20pt; } /* タスク時間 */ #Area_TimeOfTasks { font-size: 14pt; float: none; background-color: #999999; color: #FFFFFF; font-size: 14pt; border: none; clear: both; } #Area_TimeOfTasks div { background-color: inherit; float: left; text-align: center; width: 50%; height: 20pt; } /* タイマーエリア */ #target {} #targetTask { display: none; padding: 10px; text-align: center; font-size: 20px } #titleTargetTask { padding: 10px; font-size: 20pt; text-align: left; } #lengthTargetTask { font-size: 20pt; text-align: left; } #timer { margin: 5px; padding: 10px; text-align: center; font-size: 40px; clear: both; } #timer.completed { background-color: green; color: white; } #timer.timeup { background-color: red; color: white; } .swipe { float: left; width: 33%; } /* リスト */ ul#tasklist { margin-left: 0px; padding-left: 0px; } ul#tasklist li { display: flex; border-bottom: solid; } /* ヘッダ */ .header { padding: 5px 15px 5px 15px; background-color: blue; color: white; border-bottom: solid; border-bottom-color: white; border-bottom-width: 1px; } /* タスク(個別)*/ li {} ul#tasklist div.info1 { border: solid; border-color: green; } ul#tasklist div.info2 { display: flex; flex-wrap: wrap; width: 90%; border: solid; border-color: blue; } #pg_tasklist div.title { width: 100%; padding: 5px; font-size: 16pt; } #pg_tasklist div.length { width: 33%; font-size: 12pt; } #pg_tasklist div.folder { width: 33%; } #pg_tasklist div.duedate { width: 33%; font-size: 10pt; } /*******************/ /* taskdetail.html */ /*******************/ .td-row { border-bottom: dotted; border-width: 1px; display: flex; padding-top: 5px; padding-bottom: 5px; } .td-icon { width:10%; padding-left: 5px; padding-right: 5px; } #pg_taskdetail ons-icon{} #pg_taskdetail .td-row>div{ border-bottom: dashed; border-width :1px; font-size:medium; width:85%; } #pg_taskdetail .title{ background-color: white; height: 40px; font-size: large; } .edited{ color : red; } #pg_taskdetail input,select{ background-color: inherit; outline:0; border: 0; width:85%; font-size: medium; }
0.390708
0.131982
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300,700); /* * Main.less * Main Design for theme * This file contains information about the Structure of the theme. * * Index: * * • Pre Requisite/CSS * • Top Bar * • Top Menu * • Search Bar * • Social Icons * • Masthead a.k.a Header * • Slider * • Content * • Primary * • Secondary(if any) * • Footer * • Widget Area(if any) * • Colophon * • Other Responsive Codes (Responsive codes are present, below each section) * */ /* ---------------- Fonts ----------------------------------- */ @font-face { font-family: 'Aleo'; src: url('../fonts/aleo-light-webfont.eot'); src: url('../fonts/aleo-light-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/aleo-light-webfont.woff') format('woff'), url('../fonts/aleo-light-webfont.ttf') format('truetype'), url('../fonts/aleo-light-webfont.svg#aleolight') format('svg'); font-weight: normal; font-style: normal; } @font-face { font-family: '<NAME>'; src: url('../fonts/aleo-regular-webfont.eot'); src: url('../fonts/aleo-regular-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/aleo-regular-webfont.woff') format('woff'), url('../fonts/aleo-regular-webfont.ttf') format('truetype'), url('../fonts/aleo-regular-webfont.svg#aleoregular') format('svg'); font-weight: normal; font-style: normal; } /* ---------------Parametric Mixins ------------------------ */ /* --------------- Color Variables ------------------------- */ /* ---------------- Font Variables ------------------------- */ .site-title-font { font-family: 'Aleo', Arial, sans-serif; } .body-font { font-family: "Open Sans", sans-serif; } /* ------------------- Pre Requisite/Reset ---------------- */ .container { margin: auto; } a:hover { text-decoration: none; } body { overflow-x: hidden; font-family: "Open Sans", sans-serif; color: #28749a; } #content { background: #ffffff; clear: both; } a { color: #28749a; transition: 0.4s all ease; } a:visited { color: #28749a; } a:hover { color: #9c9c9c; } /* ----------------- Top Bar --------------------------- */ #top-bar { box-shadow: 0px 6px 20px 0px #aaa; border-bottom: solid 5px #ddd; margin-bottom: 50px; background: #ffffff; /* outline: dashed 1px #ccc; */ } #top-bar #masthead { text-align: left; padding: 0px; border: none; } #top-bar #masthead .site-title { font-family: 'Aleo', Arial, sans-serif; margin-top: 10px; margin-bottom: -15px; } #top-bar #masthead .site-title a { color: #28749a; font-size: 48px; } #top-bar #masthead .site-title a:hover { color: #9c9c9c; } #top-bar #masthead .site-description { margin-top: 10px; font-size: 18px; margin-bottom: 5px; font-weight: lighter; color: #9c9c9c; } #top-bar #right-head #social-icons { font-size: 18px; padding-top: 4px; float: right; margin-top: 5px; overflow: hidden; } #top-bar #right-head #social-icons i { float: right; padding: 10px 15px; background: #28749a; color: white; border-top-left-radius: 10px; border-top-right-radius: 10px; margin-left: 5px; display: inline-block; padding-bottom: 6px; transition: 0.4s all ease; position: relative; } #top-bar #right-head #social-icons i:hover { background: #3392c2; transform: translateY(6px); } #top-bar #right-head .search-form-top { float: right; padding-top: 5px; margin-right: 30px; } #top-bar #right-head .search-form-top input[type=text] { border-radius: 10px; border-color: #bbb; padding-left: 10px; outline: none; width: 120px; transition: 0.8s all ease; -webkit-transition: 0.8s all ease; -moz-transition: 0.8s all ease; -o-transition: 0.8s all ease; -ms-transition: 0.8s all ease; } #top-bar #right-head .search-form-top input[type=text]:focus { width: 240px; box-shadow: inset 0 0px 5px #aaa; border-color: transparent; } #top-bar #right-head .search-form-top ::-webkit-input-placeholder { color: #a0a0a0; font-weight: lighter; } #top-bar #right-head .search-form-top ::-moz-input-placeholder { color: #3392c2; font-weight: lighter; } #top-bar #site-logo img { max-height: 81px; max-width: 500px; } @media screen and (max-width: 991px) { #top-bar .site-branding { margin-bottom: 30px; text-align: center; } #top-bar #right-head { text-align: center; } #top-bar #right-head .search-form-top { float: none; margin-right: 0px; margin-bottom: 20px; } #top-bar #right-head #social-icons { float: none; padding-bottom: 0px; } #top-bar #right-head #social-icons i { float: none; } } @media screen and (max-width: 600px) { #top-bar #right-head #social-icons { margin-bottom: 30px; } #top-bar #right-head #social-icons i { border-radius: 5px; padding-bottom: 10px; margin-bottom: 7px; } } /*------------------ Navigation -------------- */ #top-nav { clear: both; display: block; } #top-nav #site-navigation { margin-bottom: 50px; text-align: center; font-size: 15px; } #top-nav #site-navigation a { color: #9c9c9c; text-transform: uppercase; padding: 8px 13px; font-family: 'Aleo', Arial, sans-serif; } #top-nav #site-navigation a:hover { color: #28749a; } #top-nav #site-navigation ul li { float: none; display: inline-block; transition: all 0.3s ease-in-out 0s; -webkit-transition: all 0.3s ease-in-out 0s; -moz-transition: all 0.3s ease-in-out 0s; -o-transition: all 0.3s ease-in-out 0s; -ms-transition: all 0.3s ease-in-out 0s; } #top-nav #site-navigation ul ul { background: #ffffff; box-shadow: 0px 3px 5px #888; border-top: solid 1px #28749a; left: 10px; top: 2.3em; z-index: 9999999; } #top-nav #site-navigation ul ul a { padding: 5px; font-size: 12px; text-align: left; padding-left: 10px; } #top-nav #site-navigation ul ul ul { top: -0.1em; } #top-nav #site-navigation div.menu > ul > li > a, #top-nav #site-navigation ul.menu > li > a { text-decoration: none; } #top-nav #site-navigation div.menu > ul > li > a:before, #top-nav #site-navigation ul.menu > li > a:before { content: ""; position: absolute; width: 100%; height: 1px; bottom: 0; left: 0; background-color: #28749a; visibility: hidden; -webkit-transform: scaleX(0); transform: scaleX(0); transition: all 0.3s ease-in-out 0s; -webkit-transition: all 0.3s ease-in-out 0s; -moz-transition: all 0.3s ease-in-out 0s; -o-transition: all 0.3s ease-in-out 0s; -ms-transition: all 0.3s ease-in-out 0s; } #top-nav #site-navigation div.menu > ul > li > a:hover:before, #top-nav #site-navigation ul.menu > li > a:hover:before { visibility: visible; -webkit-transform: scaleX(0.8); transform: scaleX(0.8); } @media screen and (max-width: 767px) { #top-nav h1.menu-toggle { font-family: 'Aleo', Arial, sans-serif; font-size: 18px; text-transform: uppercase; } #top-nav #site-navigation ul ul { display: none !important; } #top-nav #site-navigation li { display: block; clear: both; width: 80%; } #top-nav #site-navigation ul.menu > li > a:hover:before { -webkit-transform: scaleX(0.4); transform: scaleX(0.4); } } /* -------------------- Slider -------------------*/ #slider-wrapper { clear: both; position: relative; margin-bottom: 50px; } #slider-wrapper:after { content: url(../images/shadow.png); position: absolute; bottom: -75px; left: -7px; z-index: -5; } #slider-wrapper #slider-next, #slider-wrapper #slider-prev { font-size: 42px; background: rgba(0, 0, 0, 0.7); padding: 10px 30px; padding-bottom: 9px; display: block; float: left; position: absolute; bottom: 3px; } #slider-wrapper #slider-next a, #slider-wrapper #slider-prev a { color: white; } #slider-wrapper #slider-next { float: right; right: 10px; } #slider-wrapper .slider-caption { position: absolute; bottom: 0px; background: rgba(0, 0, 0, 0.7); padding: 10px; padding-left: 20px; width: 978px; margin-left: 76px; } #slider-wrapper .slider-caption .slider-caption-title { font-family: 'Aleo', Arial, sans-serif; font-size: 24px; margin-bottom: 5px; } #slider-wrapper .slider-caption .slider-caption-desc { font-family: "Open Sans", sans-serif; font-size: 13px; font-weight: lighter; margin-bottom: 10px; } #slider-wrapper a { color: #ffffff; } .bx-wrapper { box-shadow: none; } .bx-wrapper ul { margin-left: 0px; } .bx-wrapper img { min-width: 100%; transform: scale(1.1) rotate(3deg); -webkit-transform: scale(1.1) rotate(3deg); -moz-transform: scale(1.1) rotate(3deg); -ms-transform: scale(1.1) rotate(3deg); } .bx-wrapper .bx-caption { text-align: center; background: rgba(0, 0, 0, 0.5); padding-bottom: 10px; font-size: 20px; width: 80%; margin: auto; } .bx-wrapper .bx-viewport { box-shadow: none; border-color: transparent; border-bottom: solid 3px white; } .bx-wrapper a.bx-next { margin-right: 12px; } .bx-wrapper .bx-pager.bx-default-pager a { width: 20px; border-radius: 0px; height: 8px; background: rgba(68, 68, 68, 0.6); text-indent: 9999px; } .bx-wrapper .bx-pager-item .active { background: black !important; } .bx-wrapper .bx-pager { text-align: right; position: absolute; top: 1px; right: 20px; height: 20px; } @media screen { /* Small Desktops */ /*Large Tablets*/ /* Smaller Devices - Generally, Touch Sensitive */ } @media screen and (max-width: 1199px) and (min-width: 992px) { #slider-wrapper .slider-caption { width: 778px; } #slider-wrapper:after { content: url(../images/shadow1199.png); bottom: -70px; } } @media screen and (max-width: 991px) and (min-width: 768px) { #slider-wrapper { margin-bottom: 30px; } #slider-wrapper .slider-caption { width: 558px; background: rgba(0, 0, 0, 0.4); } #slider-wrapper #slider-next, #slider-wrapper #slider-prev { background: rgba(0, 0, 0, 0.4); } #slider-wrapper:after { content: url(../images/shadow991.png); bottom: -50px; } } @media screen and (max-width: 767px) { #slider-wrapper { margin-bottom: 20px; box-shadow: 0 5px 5px -3px #888888; } #slider-wrapper .slider-caption { width: 100%; margin-left: 0px; padding-top: 4px; padding-bottom: 6px; background: rgba(0, 0, 0, 0.35); } #slider-wrapper .slider-caption .slider-caption-title { font-size: 15px; margin-bottom: 0px; } #slider-wrapper .slider-caption .slider-caption-desc { font-size: 10px; margin-bottom: 3px; } #slider-wrapper .bx-wrapper .bx-viewport { left: 0; } #slider-wrapper #slider-next, #slider-wrapper #slider-prev { display: none; } #slider-wrapper:after { content: none; bottom: -60px; } } /* -------------------- Content ------------------ */ #content { padding-top: 40px; } .page-header { margin-top: -20px; } #home-title { border-bottom: solid 2px #28749a; margin-bottom: 20px; margin-top: -3px; } #home-title span { background: url(../images/pattern3.png); padding: 10px 15px; display: inline-block; font-family: 'Aleo', Arial, sans-serif; text-transform: uppercase; font-weight: normal; } #primary article .after-thumb { overflow: auto; margin-top: -20px; } #primary article .after-thumb .entry-title a { font-size: 22px; color: #28749a; } #primary article .after-thumb .entry-title a:hover { color: #9c9c9c; } #primary article .after-thumb h1.entry-title { margin-top: 4px; margin-bottom: 0px; font-family: 'Aleo', Arial, sans-serif; } #primary .entry-content { margin-top: 0.3em; border-bottom: solid 1px #eee; margin-bottom: 10px; padding-bottom: 10px; } #primary article.grid { display: block; padding-left: 1px; padding-right: 0px; margin-bottom: 1px; overflow: hidden; } @media screen and (min-width: 1200px) { #primary article.grid { min-height: 210px; } } #primary article.grid h1.entry-title { font-family: 'Aleo', Arial, sans-serif; font-size: 16px; margin-top: 12px; margin-bottom: 12px; } #primary article.grid h1.entry-title a { color: white; } #primary article.grid .featured-thumb { padding-right: 0; padding-left: 0; overflow: hidden; } #primary article.grid .featured-thumb img { transition: all 0.9s ease; -webkit-transition: all 0.9s ease; -moz-transition: all 0.9s ease; -o-transition: all 0.9s ease; -ms-transition: all 0.9s ease; -webkit-backface-visibility: hidden; } #primary article.grid .featured-thumb:hover img { transition: all 0.9s ease; -webkit-transition: all 0.9s ease; -moz-transition: all 0.9s ease; -o-transition: all 0.9s ease; -ms-transition: all 0.9s ease; transform: scale(1.1) rotate(-2deg); -webkit-filter: brightness(65%); } #primary article.grid .in-thumb { position: absolute; bottom: 0; padding: 0; width: 100%; transition: all 0.4s ease; -webkit-transition: all 0.4s ease; -moz-transition: all 0.4s ease; -o-transition: all 0.4s ease; -ms-transition: all 0.4s ease; } #primary article.grid .in-thumb h1.entry-title a { display: block; width: 100%; margin-bottom: -12px; background: rgba(40, 116, 154, 0.65); padding: 10px; } #primary article.grid .in-thumb h1.entry-title a:hover { background: rgba(40, 116, 154, 0.85); } @media screen and (max-width: 767px) and (min-width: 401px) { #primary article.grid { width: 50%; clear: none; float: left; } } #primary-mono #main { margin-top: -25px; } #primary-mono h1.entry-title { font-family: 'Aleo', Arial, sans-serif; font-size: 40px; } #primary-mono .entry-meta { font-size: 13px; border-bottom: solid 1px #e9e9e9; border-top: solid 1px #e9e9e9; padding-top: 7px; padding-bottom: 7px; color: #878787; } #primary-mono .entry-meta a { color: #a0a0a0; font-weight: lighter; } #primary-mono .entry-meta i.fa-user { margin-left: 15px; } #primary-mono .entry-meta i.fa { margin-right: 4px; } #primary-mono .entry-content { color: #6d6d6d; } #primary-mono .footer-meta { margin-top: 25px; border-top: solid 1px #e9e9e9; border-bottom: solid 1px #e9e9e9; padding-bottom: 10px; padding-top: 10px; color: #878787; } #primary-mono .footer-meta i.fa { margin-left: 15px; } #primary-mono .footer-meta i:first-child { margin-left: 0px; } #primary-mono .footer-meta a { color: #a0a0a0; font-weight: lighter; } #primary-mono .edit-link { float: right; } #primary-mono code { background: #eee; color: black; font-weight: bold; font-family: 'Aleo', Arial, sans-serif; } #primary-mono article.page h1.entry-title { border-bottom: solid 2px #28749a; margin-bottom: 20px; margin-top: 12px; } #primary-mono article.page h1.entry-title span { background: url(../images/pattern3.png); padding: 10px 15px; display: inline-block; font-family: 'Aleo', Arial, sans-serif; font-size: 15px; text-transform: uppercase; font-weight: normal; } #secondary, #secondary-2 { margin-top: -20px; font-size: 13px; } #secondary h1.widget-title, #secondary-2 h1.widget-title { font-size: 15px; border-bottom: solid 2px #28749a; padding-top: 10px; padding-bottom: 10px; padding-left: 5px; text-transform: uppercase; background: url(../images/pattern3.png); font-family: 'Aleo', Arial, sans-serif; font-weight: normal; } #secondary a, #secondary-2 a { color: #28749a; } #secondary a:hover, #secondary-2 a:hover { color: #9c9c9c; } #secondary ul, #secondary-2 ul { margin-left: 20px; } #secondary ul ul, #secondary-2 ul ul { margin-left: 5px; } /* -------------- custom widget --------------*/ .rp-item { display: block; clear: both; overflow: auto; margin-bottom: 6px; padding-bottom: 5px; border-bottom: none !important; margin-left: -15px; } .rp-item .rp-date { font-size: 11px; color: grey; } .rp-item:before { content: none !important; } .rp-thumb { float: left; width: 64px; margin-right: -5px; margin-top: 3px; } .rp-thumb img { width: 48px; border-radius: 0px; } .rp-thumb .rp-title { clear: none; } .rp-thumb .rp-title a { display: block; } article table { border: solid 1px #eee; } article table tr:nth-child(even) { background: #ffffff; } article table th { background: black; color: white; padding: 5px 10px; } article table td { padding: 5px 10px; } article h1, article h2, article h3 { font-family: 'Aleo', Arial, sans-serif; } /* --------------- archives -------------- */ .archive section#primary h1.page-title { border-bottom: solid 2px #28749a; margin-bottom: 20px; margin-top: 11px; } .archive section#primary h1.page-title span { background: url(../images/pattern3.png); padding: 10px 15px; display: inline-block; font-family: 'Aleo', Arial, sans-serif; font-size: 15px; text-transform: uppercase; font-weight: normal; } .archive section#primary .page-header { border-bottom: none; margin-bottom: 0px; padding-bottom: 0px; } /* --------------- pagination ------------ */ .pagination { margin: 20px 0; padding-top: 25px; text-align: center; width: 100%; clear: both; } .pagination ul { list-style: none; display: inline-block; text-align: center; margin-bottom: 0; margin-left: 0px; } .pagination ul > li { display: inline; } .pagination ul > li > a { color: #18465d; transition: all 0.4s ease; } .pagination ul > li > a:hover { color: #9c9c9c; background: #bfbfbf; } .pagination .current { background: #bfbfbf; } .pagination ul > li > a, .pagination ul > li > span { float: left; padding: 4px 12px; line-height: 20px; text-decoration: none; background-color: #f2f2f2; /* border: 1px solid desaturate(@default-background, 55%); */ border-left-width: 0; display: inline-block; color: #4f6773; } .pagination ul > li:first-child > a, .pagination ul > li:first-child > span { border-left-width: 1px; } .pagination ul > li:last-child > a, .pagination ul > li:last-child > span { border-rigth-width: 1px; } /* --------------- comments -------------- */ #respond input[type=text] { max-width: 450px; } #comments { margin-top: 55px; } #comments h2.comments-title { font-size: x-large; font-family: 'Aleo', Arial, sans-serif; } #comments ol.comment-list { list-style: none; margin-left: 0px; } #comments li.comment { border: solid 1px #eee; padding: 10px; margin-top: 15px; list-style: none; background: #f9f9f9; } #comments li.pingback { background: #f9f9f9; padding: 10px; margin-top: 15px; margin-bottom: 15px; border: solid 1px #eee; font-weight: bold; } #comments li.pingback a { font-weight: normal; } #comments .vcard img { border: solid 4px #e6e6e6; border-radius: 5px; margin: 0 10px 10px 0; } #comments .comment-metadata { font-weight: bold; } @media screen and (max-width: 480px) { li.comment { margin-left: -5%; } } /* -------------- footer widget area -------- */ #footer-sidebar { border-top: solid 5px #28749a; padding-top: 20px; background: url(../images/pattern3.png) top left repeat-x, #f9f9f9; margin-top: 30px; padding-bottom: 50px; } #footer-sidebar h1.widget-title { font-weight: bold; font-family: 'Aleo', Arial, sans-serif; font-size: 20px; color: #24688a; } /* --------------- colophon ---------------- */ #colophon { text-align: center; border-top: solid 1px #eee; padding: 15px; background: #28749a; padding-bottom: 4px; color: #eee; } #colophon .site-info { text-align: left; } #colophon a { color: white; } #colophon .footer-menu { text-align: right; } #colophon .footer-menu ul ul { display: none; } #colophon .footer-menu ul li { display: inline; padding-right: 10px; } @media screen and (max-width: 991px) { #colophon .site-info { text-align: center; margin: 20px; } #colophon .footer-menu { text-align: center; } } /*--------------- responsive cheats ----------- */ @media screen and (max-width: 991px) { #social-icons { float: none; text-align: center; padding-bottom: 20px; overflow: auto; } #social-icons img { float: none !important; } .featured-thumb { margin-bottom: 1px; } #secondary, #secondary-2 { margin-top: 25px; } }
wp-content/themes/white/assets/css/main.css
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300,700); /* * Main.less * Main Design for theme * This file contains information about the Structure of the theme. * * Index: * * • Pre Requisite/CSS * • Top Bar * • Top Menu * • Search Bar * • Social Icons * • Masthead a.k.a Header * • Slider * • Content * • Primary * • Secondary(if any) * • Footer * • Widget Area(if any) * • Colophon * • Other Responsive Codes (Responsive codes are present, below each section) * */ /* ---------------- Fonts ----------------------------------- */ @font-face { font-family: 'Aleo'; src: url('../fonts/aleo-light-webfont.eot'); src: url('../fonts/aleo-light-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/aleo-light-webfont.woff') format('woff'), url('../fonts/aleo-light-webfont.ttf') format('truetype'), url('../fonts/aleo-light-webfont.svg#aleolight') format('svg'); font-weight: normal; font-style: normal; } @font-face { font-family: '<NAME>'; src: url('../fonts/aleo-regular-webfont.eot'); src: url('../fonts/aleo-regular-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/aleo-regular-webfont.woff') format('woff'), url('../fonts/aleo-regular-webfont.ttf') format('truetype'), url('../fonts/aleo-regular-webfont.svg#aleoregular') format('svg'); font-weight: normal; font-style: normal; } /* ---------------Parametric Mixins ------------------------ */ /* --------------- Color Variables ------------------------- */ /* ---------------- Font Variables ------------------------- */ .site-title-font { font-family: 'Aleo', Arial, sans-serif; } .body-font { font-family: "Open Sans", sans-serif; } /* ------------------- Pre Requisite/Reset ---------------- */ .container { margin: auto; } a:hover { text-decoration: none; } body { overflow-x: hidden; font-family: "Open Sans", sans-serif; color: #28749a; } #content { background: #ffffff; clear: both; } a { color: #28749a; transition: 0.4s all ease; } a:visited { color: #28749a; } a:hover { color: #9c9c9c; } /* ----------------- Top Bar --------------------------- */ #top-bar { box-shadow: 0px 6px 20px 0px #aaa; border-bottom: solid 5px #ddd; margin-bottom: 50px; background: #ffffff; /* outline: dashed 1px #ccc; */ } #top-bar #masthead { text-align: left; padding: 0px; border: none; } #top-bar #masthead .site-title { font-family: 'Aleo', Arial, sans-serif; margin-top: 10px; margin-bottom: -15px; } #top-bar #masthead .site-title a { color: #28749a; font-size: 48px; } #top-bar #masthead .site-title a:hover { color: #9c9c9c; } #top-bar #masthead .site-description { margin-top: 10px; font-size: 18px; margin-bottom: 5px; font-weight: lighter; color: #9c9c9c; } #top-bar #right-head #social-icons { font-size: 18px; padding-top: 4px; float: right; margin-top: 5px; overflow: hidden; } #top-bar #right-head #social-icons i { float: right; padding: 10px 15px; background: #28749a; color: white; border-top-left-radius: 10px; border-top-right-radius: 10px; margin-left: 5px; display: inline-block; padding-bottom: 6px; transition: 0.4s all ease; position: relative; } #top-bar #right-head #social-icons i:hover { background: #3392c2; transform: translateY(6px); } #top-bar #right-head .search-form-top { float: right; padding-top: 5px; margin-right: 30px; } #top-bar #right-head .search-form-top input[type=text] { border-radius: 10px; border-color: #bbb; padding-left: 10px; outline: none; width: 120px; transition: 0.8s all ease; -webkit-transition: 0.8s all ease; -moz-transition: 0.8s all ease; -o-transition: 0.8s all ease; -ms-transition: 0.8s all ease; } #top-bar #right-head .search-form-top input[type=text]:focus { width: 240px; box-shadow: inset 0 0px 5px #aaa; border-color: transparent; } #top-bar #right-head .search-form-top ::-webkit-input-placeholder { color: #a0a0a0; font-weight: lighter; } #top-bar #right-head .search-form-top ::-moz-input-placeholder { color: #3392c2; font-weight: lighter; } #top-bar #site-logo img { max-height: 81px; max-width: 500px; } @media screen and (max-width: 991px) { #top-bar .site-branding { margin-bottom: 30px; text-align: center; } #top-bar #right-head { text-align: center; } #top-bar #right-head .search-form-top { float: none; margin-right: 0px; margin-bottom: 20px; } #top-bar #right-head #social-icons { float: none; padding-bottom: 0px; } #top-bar #right-head #social-icons i { float: none; } } @media screen and (max-width: 600px) { #top-bar #right-head #social-icons { margin-bottom: 30px; } #top-bar #right-head #social-icons i { border-radius: 5px; padding-bottom: 10px; margin-bottom: 7px; } } /*------------------ Navigation -------------- */ #top-nav { clear: both; display: block; } #top-nav #site-navigation { margin-bottom: 50px; text-align: center; font-size: 15px; } #top-nav #site-navigation a { color: #9c9c9c; text-transform: uppercase; padding: 8px 13px; font-family: 'Aleo', Arial, sans-serif; } #top-nav #site-navigation a:hover { color: #28749a; } #top-nav #site-navigation ul li { float: none; display: inline-block; transition: all 0.3s ease-in-out 0s; -webkit-transition: all 0.3s ease-in-out 0s; -moz-transition: all 0.3s ease-in-out 0s; -o-transition: all 0.3s ease-in-out 0s; -ms-transition: all 0.3s ease-in-out 0s; } #top-nav #site-navigation ul ul { background: #ffffff; box-shadow: 0px 3px 5px #888; border-top: solid 1px #28749a; left: 10px; top: 2.3em; z-index: 9999999; } #top-nav #site-navigation ul ul a { padding: 5px; font-size: 12px; text-align: left; padding-left: 10px; } #top-nav #site-navigation ul ul ul { top: -0.1em; } #top-nav #site-navigation div.menu > ul > li > a, #top-nav #site-navigation ul.menu > li > a { text-decoration: none; } #top-nav #site-navigation div.menu > ul > li > a:before, #top-nav #site-navigation ul.menu > li > a:before { content: ""; position: absolute; width: 100%; height: 1px; bottom: 0; left: 0; background-color: #28749a; visibility: hidden; -webkit-transform: scaleX(0); transform: scaleX(0); transition: all 0.3s ease-in-out 0s; -webkit-transition: all 0.3s ease-in-out 0s; -moz-transition: all 0.3s ease-in-out 0s; -o-transition: all 0.3s ease-in-out 0s; -ms-transition: all 0.3s ease-in-out 0s; } #top-nav #site-navigation div.menu > ul > li > a:hover:before, #top-nav #site-navigation ul.menu > li > a:hover:before { visibility: visible; -webkit-transform: scaleX(0.8); transform: scaleX(0.8); } @media screen and (max-width: 767px) { #top-nav h1.menu-toggle { font-family: 'Aleo', Arial, sans-serif; font-size: 18px; text-transform: uppercase; } #top-nav #site-navigation ul ul { display: none !important; } #top-nav #site-navigation li { display: block; clear: both; width: 80%; } #top-nav #site-navigation ul.menu > li > a:hover:before { -webkit-transform: scaleX(0.4); transform: scaleX(0.4); } } /* -------------------- Slider -------------------*/ #slider-wrapper { clear: both; position: relative; margin-bottom: 50px; } #slider-wrapper:after { content: url(../images/shadow.png); position: absolute; bottom: -75px; left: -7px; z-index: -5; } #slider-wrapper #slider-next, #slider-wrapper #slider-prev { font-size: 42px; background: rgba(0, 0, 0, 0.7); padding: 10px 30px; padding-bottom: 9px; display: block; float: left; position: absolute; bottom: 3px; } #slider-wrapper #slider-next a, #slider-wrapper #slider-prev a { color: white; } #slider-wrapper #slider-next { float: right; right: 10px; } #slider-wrapper .slider-caption { position: absolute; bottom: 0px; background: rgba(0, 0, 0, 0.7); padding: 10px; padding-left: 20px; width: 978px; margin-left: 76px; } #slider-wrapper .slider-caption .slider-caption-title { font-family: 'Aleo', Arial, sans-serif; font-size: 24px; margin-bottom: 5px; } #slider-wrapper .slider-caption .slider-caption-desc { font-family: "Open Sans", sans-serif; font-size: 13px; font-weight: lighter; margin-bottom: 10px; } #slider-wrapper a { color: #ffffff; } .bx-wrapper { box-shadow: none; } .bx-wrapper ul { margin-left: 0px; } .bx-wrapper img { min-width: 100%; transform: scale(1.1) rotate(3deg); -webkit-transform: scale(1.1) rotate(3deg); -moz-transform: scale(1.1) rotate(3deg); -ms-transform: scale(1.1) rotate(3deg); } .bx-wrapper .bx-caption { text-align: center; background: rgba(0, 0, 0, 0.5); padding-bottom: 10px; font-size: 20px; width: 80%; margin: auto; } .bx-wrapper .bx-viewport { box-shadow: none; border-color: transparent; border-bottom: solid 3px white; } .bx-wrapper a.bx-next { margin-right: 12px; } .bx-wrapper .bx-pager.bx-default-pager a { width: 20px; border-radius: 0px; height: 8px; background: rgba(68, 68, 68, 0.6); text-indent: 9999px; } .bx-wrapper .bx-pager-item .active { background: black !important; } .bx-wrapper .bx-pager { text-align: right; position: absolute; top: 1px; right: 20px; height: 20px; } @media screen { /* Small Desktops */ /*Large Tablets*/ /* Smaller Devices - Generally, Touch Sensitive */ } @media screen and (max-width: 1199px) and (min-width: 992px) { #slider-wrapper .slider-caption { width: 778px; } #slider-wrapper:after { content: url(../images/shadow1199.png); bottom: -70px; } } @media screen and (max-width: 991px) and (min-width: 768px) { #slider-wrapper { margin-bottom: 30px; } #slider-wrapper .slider-caption { width: 558px; background: rgba(0, 0, 0, 0.4); } #slider-wrapper #slider-next, #slider-wrapper #slider-prev { background: rgba(0, 0, 0, 0.4); } #slider-wrapper:after { content: url(../images/shadow991.png); bottom: -50px; } } @media screen and (max-width: 767px) { #slider-wrapper { margin-bottom: 20px; box-shadow: 0 5px 5px -3px #888888; } #slider-wrapper .slider-caption { width: 100%; margin-left: 0px; padding-top: 4px; padding-bottom: 6px; background: rgba(0, 0, 0, 0.35); } #slider-wrapper .slider-caption .slider-caption-title { font-size: 15px; margin-bottom: 0px; } #slider-wrapper .slider-caption .slider-caption-desc { font-size: 10px; margin-bottom: 3px; } #slider-wrapper .bx-wrapper .bx-viewport { left: 0; } #slider-wrapper #slider-next, #slider-wrapper #slider-prev { display: none; } #slider-wrapper:after { content: none; bottom: -60px; } } /* -------------------- Content ------------------ */ #content { padding-top: 40px; } .page-header { margin-top: -20px; } #home-title { border-bottom: solid 2px #28749a; margin-bottom: 20px; margin-top: -3px; } #home-title span { background: url(../images/pattern3.png); padding: 10px 15px; display: inline-block; font-family: 'Aleo', Arial, sans-serif; text-transform: uppercase; font-weight: normal; } #primary article .after-thumb { overflow: auto; margin-top: -20px; } #primary article .after-thumb .entry-title a { font-size: 22px; color: #28749a; } #primary article .after-thumb .entry-title a:hover { color: #9c9c9c; } #primary article .after-thumb h1.entry-title { margin-top: 4px; margin-bottom: 0px; font-family: 'Aleo', Arial, sans-serif; } #primary .entry-content { margin-top: 0.3em; border-bottom: solid 1px #eee; margin-bottom: 10px; padding-bottom: 10px; } #primary article.grid { display: block; padding-left: 1px; padding-right: 0px; margin-bottom: 1px; overflow: hidden; } @media screen and (min-width: 1200px) { #primary article.grid { min-height: 210px; } } #primary article.grid h1.entry-title { font-family: 'Aleo', Arial, sans-serif; font-size: 16px; margin-top: 12px; margin-bottom: 12px; } #primary article.grid h1.entry-title a { color: white; } #primary article.grid .featured-thumb { padding-right: 0; padding-left: 0; overflow: hidden; } #primary article.grid .featured-thumb img { transition: all 0.9s ease; -webkit-transition: all 0.9s ease; -moz-transition: all 0.9s ease; -o-transition: all 0.9s ease; -ms-transition: all 0.9s ease; -webkit-backface-visibility: hidden; } #primary article.grid .featured-thumb:hover img { transition: all 0.9s ease; -webkit-transition: all 0.9s ease; -moz-transition: all 0.9s ease; -o-transition: all 0.9s ease; -ms-transition: all 0.9s ease; transform: scale(1.1) rotate(-2deg); -webkit-filter: brightness(65%); } #primary article.grid .in-thumb { position: absolute; bottom: 0; padding: 0; width: 100%; transition: all 0.4s ease; -webkit-transition: all 0.4s ease; -moz-transition: all 0.4s ease; -o-transition: all 0.4s ease; -ms-transition: all 0.4s ease; } #primary article.grid .in-thumb h1.entry-title a { display: block; width: 100%; margin-bottom: -12px; background: rgba(40, 116, 154, 0.65); padding: 10px; } #primary article.grid .in-thumb h1.entry-title a:hover { background: rgba(40, 116, 154, 0.85); } @media screen and (max-width: 767px) and (min-width: 401px) { #primary article.grid { width: 50%; clear: none; float: left; } } #primary-mono #main { margin-top: -25px; } #primary-mono h1.entry-title { font-family: 'Aleo', Arial, sans-serif; font-size: 40px; } #primary-mono .entry-meta { font-size: 13px; border-bottom: solid 1px #e9e9e9; border-top: solid 1px #e9e9e9; padding-top: 7px; padding-bottom: 7px; color: #878787; } #primary-mono .entry-meta a { color: #a0a0a0; font-weight: lighter; } #primary-mono .entry-meta i.fa-user { margin-left: 15px; } #primary-mono .entry-meta i.fa { margin-right: 4px; } #primary-mono .entry-content { color: #6d6d6d; } #primary-mono .footer-meta { margin-top: 25px; border-top: solid 1px #e9e9e9; border-bottom: solid 1px #e9e9e9; padding-bottom: 10px; padding-top: 10px; color: #878787; } #primary-mono .footer-meta i.fa { margin-left: 15px; } #primary-mono .footer-meta i:first-child { margin-left: 0px; } #primary-mono .footer-meta a { color: #a0a0a0; font-weight: lighter; } #primary-mono .edit-link { float: right; } #primary-mono code { background: #eee; color: black; font-weight: bold; font-family: 'Aleo', Arial, sans-serif; } #primary-mono article.page h1.entry-title { border-bottom: solid 2px #28749a; margin-bottom: 20px; margin-top: 12px; } #primary-mono article.page h1.entry-title span { background: url(../images/pattern3.png); padding: 10px 15px; display: inline-block; font-family: 'Aleo', Arial, sans-serif; font-size: 15px; text-transform: uppercase; font-weight: normal; } #secondary, #secondary-2 { margin-top: -20px; font-size: 13px; } #secondary h1.widget-title, #secondary-2 h1.widget-title { font-size: 15px; border-bottom: solid 2px #28749a; padding-top: 10px; padding-bottom: 10px; padding-left: 5px; text-transform: uppercase; background: url(../images/pattern3.png); font-family: 'Aleo', Arial, sans-serif; font-weight: normal; } #secondary a, #secondary-2 a { color: #28749a; } #secondary a:hover, #secondary-2 a:hover { color: #9c9c9c; } #secondary ul, #secondary-2 ul { margin-left: 20px; } #secondary ul ul, #secondary-2 ul ul { margin-left: 5px; } /* -------------- custom widget --------------*/ .rp-item { display: block; clear: both; overflow: auto; margin-bottom: 6px; padding-bottom: 5px; border-bottom: none !important; margin-left: -15px; } .rp-item .rp-date { font-size: 11px; color: grey; } .rp-item:before { content: none !important; } .rp-thumb { float: left; width: 64px; margin-right: -5px; margin-top: 3px; } .rp-thumb img { width: 48px; border-radius: 0px; } .rp-thumb .rp-title { clear: none; } .rp-thumb .rp-title a { display: block; } article table { border: solid 1px #eee; } article table tr:nth-child(even) { background: #ffffff; } article table th { background: black; color: white; padding: 5px 10px; } article table td { padding: 5px 10px; } article h1, article h2, article h3 { font-family: 'Aleo', Arial, sans-serif; } /* --------------- archives -------------- */ .archive section#primary h1.page-title { border-bottom: solid 2px #28749a; margin-bottom: 20px; margin-top: 11px; } .archive section#primary h1.page-title span { background: url(../images/pattern3.png); padding: 10px 15px; display: inline-block; font-family: 'Aleo', Arial, sans-serif; font-size: 15px; text-transform: uppercase; font-weight: normal; } .archive section#primary .page-header { border-bottom: none; margin-bottom: 0px; padding-bottom: 0px; } /* --------------- pagination ------------ */ .pagination { margin: 20px 0; padding-top: 25px; text-align: center; width: 100%; clear: both; } .pagination ul { list-style: none; display: inline-block; text-align: center; margin-bottom: 0; margin-left: 0px; } .pagination ul > li { display: inline; } .pagination ul > li > a { color: #18465d; transition: all 0.4s ease; } .pagination ul > li > a:hover { color: #9c9c9c; background: #bfbfbf; } .pagination .current { background: #bfbfbf; } .pagination ul > li > a, .pagination ul > li > span { float: left; padding: 4px 12px; line-height: 20px; text-decoration: none; background-color: #f2f2f2; /* border: 1px solid desaturate(@default-background, 55%); */ border-left-width: 0; display: inline-block; color: #4f6773; } .pagination ul > li:first-child > a, .pagination ul > li:first-child > span { border-left-width: 1px; } .pagination ul > li:last-child > a, .pagination ul > li:last-child > span { border-rigth-width: 1px; } /* --------------- comments -------------- */ #respond input[type=text] { max-width: 450px; } #comments { margin-top: 55px; } #comments h2.comments-title { font-size: x-large; font-family: 'Aleo', Arial, sans-serif; } #comments ol.comment-list { list-style: none; margin-left: 0px; } #comments li.comment { border: solid 1px #eee; padding: 10px; margin-top: 15px; list-style: none; background: #f9f9f9; } #comments li.pingback { background: #f9f9f9; padding: 10px; margin-top: 15px; margin-bottom: 15px; border: solid 1px #eee; font-weight: bold; } #comments li.pingback a { font-weight: normal; } #comments .vcard img { border: solid 4px #e6e6e6; border-radius: 5px; margin: 0 10px 10px 0; } #comments .comment-metadata { font-weight: bold; } @media screen and (max-width: 480px) { li.comment { margin-left: -5%; } } /* -------------- footer widget area -------- */ #footer-sidebar { border-top: solid 5px #28749a; padding-top: 20px; background: url(../images/pattern3.png) top left repeat-x, #f9f9f9; margin-top: 30px; padding-bottom: 50px; } #footer-sidebar h1.widget-title { font-weight: bold; font-family: 'Aleo', Arial, sans-serif; font-size: 20px; color: #24688a; } /* --------------- colophon ---------------- */ #colophon { text-align: center; border-top: solid 1px #eee; padding: 15px; background: #28749a; padding-bottom: 4px; color: #eee; } #colophon .site-info { text-align: left; } #colophon a { color: white; } #colophon .footer-menu { text-align: right; } #colophon .footer-menu ul ul { display: none; } #colophon .footer-menu ul li { display: inline; padding-right: 10px; } @media screen and (max-width: 991px) { #colophon .site-info { text-align: center; margin: 20px; } #colophon .footer-menu { text-align: center; } } /*--------------- responsive cheats ----------- */ @media screen and (max-width: 991px) { #social-icons { float: none; text-align: center; padding-bottom: 20px; overflow: auto; } #social-icons img { float: none !important; } .featured-thumb { margin-bottom: 1px; } #secondary, #secondary-2 { margin-top: 25px; } }
0.293303
0.044556
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;700&family=Nunito:wght@400;700&display=swap'); * { margin: 0; padding: 0; border: 0; box-sizing: border-box; } body { width: 100%; height: 100%; } li { list-style: none; } a { text-decoration: none; } img { width: 100%; display: block; } header { background: #222; padding: 15px; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; position: relative; } .menu { display: flex; gap: 30px; } .menu_button { display: none; background: none; padding: 10px; font: 500 1.125em 'Poppins', Arial, Helvetica, sans-serif; color: var(--w); cursor: pointer; position: relative; z-index: 2000; } .menu_button--hamburger { display: block; width: 20px; border-top: 2px solid white; } .menu_button--hamburger::after, .menu_button--hamburger::before { content: ''; display: block; width: 18px; height: 2px; background: white; margin-top: 5px; } .menu_button--hamburger::before { width: 12px; } .logo { color: #afbfc0; font: bold 24px 'Nunito', Arial, sans-serif; } .menu_items { display: flex; flex-wrap: wrap; gap: 30px; align-items: center; } .menu_items li a { font: 16px 'Nunito', Arial, sans-serif; color: #afbfc0; padding: 10px; } .menu_items li a > img { padding: 10px; } .cart_icon { align-self: center; } .cart_icon a > img { width: 25px; height: 25px; } [data-product='number'] { width: 17px; height: 15px; background-color: #afbfc0; border-radius: 5px; color: black; position: relative; right: 42px; bottom: 6px; font: 11px 'Nunito Sans', Helvetica, sans-serif; text-align: center; } .cart { display: none; grid-template-rows: 1fr 100px; position: fixed; padding: 20px 60px; background: #272727; right: 0; top: 0; height: 100vh; overflow-y: auto; z-index: 1000; width: 500px; } .products_cart { position: relative; } .products_cart .close_cart { display: block; width: 40px; padding: 5px; border-radius: 10px; text-align: center; background: white; color: black; font: bold 24px 'Nunito', Arial, sans-serif; cursor: pointer; position: absolute; top: -10px; } .products_cart > h2 { text-align: center; margin-bottom: 40px; font: bold 24px Nunito, Arial, sans-serif; color: white; } .products_list--cart { display: block; align-self: start; } .products_list--cart li { display: grid; grid-template-columns: 1fr 1fr; grid-template-areas: 'image name' 'image price' 'image quantity' 'image type' 'image remove'; padding: 10px 20px; background-color: #edeff1; position: relative; margin-bottom: 20px; max-width: 400px; border-radius: 10px; } .products_list--cart [data-product='image'] { align-self: center; margin-right: 30px; grid-area: image; height: 150px; width: 150px; object-fit: cover; } .products_list--cart [data-product='name'] { font: bold 14px Arial, sans-serif; grid-area: name; } .products_list--cart [data-product='price'] { font: bold 14px Arial, sans-serif; padding-top: 10px; grid-area: price; } .products_list--cart [data-product='type'] { font: bold 14px Arial, sans-serif; padding-top: 10px; color: #6b6b6b; grid-area: type; } .products_list--cart [data-product='quantity'] { display: flex; font: bold 14px Arial, sans-serif; padding-top: 10px; grid-area: quantity; } .products_list--cart [data-product='less'] { font: bold 14px Arial, sans-serif; margin-right: 10px; cursor: pointer; } .products_list--cart [data-product='most'] { font: bold 14px Arial, sans-serif; margin-left: 10px; cursor: pointer; } .products_list--cart [data-product='remove'] { font: bold 12px Arial, sans-serif; padding-top: 10px; color: #6b6b6b; cursor: pointer; grid-area: remove; } .button_remove { padding: 5px !important; font: bold 12px 'Nunito', Arial, Helvetica, sans-serif !important; color: #6b6b6b !important; border-radius: 10px; align-self: center; margin-top: 10px; cursor: pointer; } .cart.show-products { display: grid; animation: showCart 0.4s forwards; } .products_information { align-self: end; display: flex; flex-direction: column; gap: 20px; } .products_information [data-product='totalPrice'] { font: bold 24px 'Nunito Sans', Arial, sans-serif; text-align: center; color: white; } .products_information [data-product='clean'] { font: bold 16px 'Nunito', Arial, sans-serif; background: white; padding: 10px 40px; border-radius: 5px; align-self: center; cursor: pointer; } img { display: block; } .products { margin-top: 100px; } .products_list { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 60px; max-width: 1400px; margin: 0 auto; padding: 0 20px; } .products_list li { display: flex; flex-direction: column; position: relative; } .products_list li > img { align-self: center; padding-top: 15px; height: 250px; width: 250px; object-fit: cover; } .products_list li > h2 { font: bold 16px 'Nunito', Arial, sans-serif; padding-top: 20px; } .products_list li > span { font: bold 16px 'Nunito Sans', Arial, sans-serif; padding-top: 20px; } .products_list li > h3 { font: bold 14px 'Nunito Sans', Arial, sans-serif; padding-top: 20px; color: #6b6b6b; } [data-product='button'] { padding: 10px !important; background: #bbbbbb; font: bold 14px 'Nunito', Arial, sans-serif !important; color: #000 !important; width: 100%; align-self: center; text-align: center; text-transform: uppercase; margin-top: 20px; cursor: pointer; } [data-product='button']:hover { background: #5a5a5a; } @keyframes showCart { from { opacity: 0; transform: translate3d(50px, 0, 0); } to { opacity: 1; transform: translate3d(0, 0, 0); } } @keyframes showMenu { from { opacity: 0; transform: translate3d(-50px, 0, 0); } to { opacity: 1; transform: translate3d(0, 0, 0); } } @media (max-width: 800px) { .logo { color: #afbfc0; font: bold 12px 'Nunito', Arial, sans-serif; text-align: center; } .menu { gap: 0; } .menu_button { display: block; } .menu_items { display: none; } .menu_items.active_menu { display: block; position: absolute; top: 0; left: 0; width: 200px; padding-top: 20px; background: #222; z-index: 2000; animation: showMenu 0.4s forwards; } .menu_items.active_menu li { margin: 0 0 40px 10px; } [data-product='number'] { right: 11px; } } @media (max-width: 600px) { .cart { width: 400px; padding: 20px 40px; } } @media (max-width: 450px) { .cart { width: 300px; padding: 20px 20px; } .products_list--cart [data-product='image'] { height: 100px; width: 100px; } .products_list--cart [data-product='name'] { font-size: 12px; } .products_list--cart [data-product='price'] { font-size: 12px; } .products_list--cart [data-product='type'] { font-size: 12px; } .products_list--cart [data-product='quantity'] { font-size: 12px; } }
css/style.css
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;700&family=Nunito:wght@400;700&display=swap'); * { margin: 0; padding: 0; border: 0; box-sizing: border-box; } body { width: 100%; height: 100%; } li { list-style: none; } a { text-decoration: none; } img { width: 100%; display: block; } header { background: #222; padding: 15px; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; position: relative; } .menu { display: flex; gap: 30px; } .menu_button { display: none; background: none; padding: 10px; font: 500 1.125em 'Poppins', Arial, Helvetica, sans-serif; color: var(--w); cursor: pointer; position: relative; z-index: 2000; } .menu_button--hamburger { display: block; width: 20px; border-top: 2px solid white; } .menu_button--hamburger::after, .menu_button--hamburger::before { content: ''; display: block; width: 18px; height: 2px; background: white; margin-top: 5px; } .menu_button--hamburger::before { width: 12px; } .logo { color: #afbfc0; font: bold 24px 'Nunito', Arial, sans-serif; } .menu_items { display: flex; flex-wrap: wrap; gap: 30px; align-items: center; } .menu_items li a { font: 16px 'Nunito', Arial, sans-serif; color: #afbfc0; padding: 10px; } .menu_items li a > img { padding: 10px; } .cart_icon { align-self: center; } .cart_icon a > img { width: 25px; height: 25px; } [data-product='number'] { width: 17px; height: 15px; background-color: #afbfc0; border-radius: 5px; color: black; position: relative; right: 42px; bottom: 6px; font: 11px 'Nunito Sans', Helvetica, sans-serif; text-align: center; } .cart { display: none; grid-template-rows: 1fr 100px; position: fixed; padding: 20px 60px; background: #272727; right: 0; top: 0; height: 100vh; overflow-y: auto; z-index: 1000; width: 500px; } .products_cart { position: relative; } .products_cart .close_cart { display: block; width: 40px; padding: 5px; border-radius: 10px; text-align: center; background: white; color: black; font: bold 24px 'Nunito', Arial, sans-serif; cursor: pointer; position: absolute; top: -10px; } .products_cart > h2 { text-align: center; margin-bottom: 40px; font: bold 24px Nunito, Arial, sans-serif; color: white; } .products_list--cart { display: block; align-self: start; } .products_list--cart li { display: grid; grid-template-columns: 1fr 1fr; grid-template-areas: 'image name' 'image price' 'image quantity' 'image type' 'image remove'; padding: 10px 20px; background-color: #edeff1; position: relative; margin-bottom: 20px; max-width: 400px; border-radius: 10px; } .products_list--cart [data-product='image'] { align-self: center; margin-right: 30px; grid-area: image; height: 150px; width: 150px; object-fit: cover; } .products_list--cart [data-product='name'] { font: bold 14px Arial, sans-serif; grid-area: name; } .products_list--cart [data-product='price'] { font: bold 14px Arial, sans-serif; padding-top: 10px; grid-area: price; } .products_list--cart [data-product='type'] { font: bold 14px Arial, sans-serif; padding-top: 10px; color: #6b6b6b; grid-area: type; } .products_list--cart [data-product='quantity'] { display: flex; font: bold 14px Arial, sans-serif; padding-top: 10px; grid-area: quantity; } .products_list--cart [data-product='less'] { font: bold 14px Arial, sans-serif; margin-right: 10px; cursor: pointer; } .products_list--cart [data-product='most'] { font: bold 14px Arial, sans-serif; margin-left: 10px; cursor: pointer; } .products_list--cart [data-product='remove'] { font: bold 12px Arial, sans-serif; padding-top: 10px; color: #6b6b6b; cursor: pointer; grid-area: remove; } .button_remove { padding: 5px !important; font: bold 12px 'Nunito', Arial, Helvetica, sans-serif !important; color: #6b6b6b !important; border-radius: 10px; align-self: center; margin-top: 10px; cursor: pointer; } .cart.show-products { display: grid; animation: showCart 0.4s forwards; } .products_information { align-self: end; display: flex; flex-direction: column; gap: 20px; } .products_information [data-product='totalPrice'] { font: bold 24px 'Nunito Sans', Arial, sans-serif; text-align: center; color: white; } .products_information [data-product='clean'] { font: bold 16px 'Nunito', Arial, sans-serif; background: white; padding: 10px 40px; border-radius: 5px; align-self: center; cursor: pointer; } img { display: block; } .products { margin-top: 100px; } .products_list { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 60px; max-width: 1400px; margin: 0 auto; padding: 0 20px; } .products_list li { display: flex; flex-direction: column; position: relative; } .products_list li > img { align-self: center; padding-top: 15px; height: 250px; width: 250px; object-fit: cover; } .products_list li > h2 { font: bold 16px 'Nunito', Arial, sans-serif; padding-top: 20px; } .products_list li > span { font: bold 16px 'Nunito Sans', Arial, sans-serif; padding-top: 20px; } .products_list li > h3 { font: bold 14px 'Nunito Sans', Arial, sans-serif; padding-top: 20px; color: #6b6b6b; } [data-product='button'] { padding: 10px !important; background: #bbbbbb; font: bold 14px 'Nunito', Arial, sans-serif !important; color: #000 !important; width: 100%; align-self: center; text-align: center; text-transform: uppercase; margin-top: 20px; cursor: pointer; } [data-product='button']:hover { background: #5a5a5a; } @keyframes showCart { from { opacity: 0; transform: translate3d(50px, 0, 0); } to { opacity: 1; transform: translate3d(0, 0, 0); } } @keyframes showMenu { from { opacity: 0; transform: translate3d(-50px, 0, 0); } to { opacity: 1; transform: translate3d(0, 0, 0); } } @media (max-width: 800px) { .logo { color: #afbfc0; font: bold 12px 'Nunito', Arial, sans-serif; text-align: center; } .menu { gap: 0; } .menu_button { display: block; } .menu_items { display: none; } .menu_items.active_menu { display: block; position: absolute; top: 0; left: 0; width: 200px; padding-top: 20px; background: #222; z-index: 2000; animation: showMenu 0.4s forwards; } .menu_items.active_menu li { margin: 0 0 40px 10px; } [data-product='number'] { right: 11px; } } @media (max-width: 600px) { .cart { width: 400px; padding: 20px 40px; } } @media (max-width: 450px) { .cart { width: 300px; padding: 20px 20px; } .products_list--cart [data-product='image'] { height: 100px; width: 100px; } .products_list--cart [data-product='name'] { font-size: 12px; } .products_list--cart [data-product='price'] { font-size: 12px; } .products_list--cart [data-product='type'] { font-size: 12px; } .products_list--cart [data-product='quantity'] { font-size: 12px; } }
0.300232
0.068662
body { background: rgb(0, 0, 0) url(../img/background.jpg) no-repeat fixed center; font-family: 'Press Start 2P', cursive; color: #00ccff; } .btn.green-button { background-color: #00ccff; color: black; border: 1px solid #00ccff; } .btn.green-button:hover { background-color: #00ADD8; border: 1px solid #00ADD8; } .hidden { display: none; } div.border-green { border : 3px solid #00ccff; } .form-control:focus, .btn-primary:focus { box-shadow: 0 0 0 .2rem #00ADD8; } .margin-top-50 { margin-top: 50px; } .blink_me { animation: blinker 2s step-start infinite; } @keyframes blinker { 50% { opacity: 0; } } .error-div, .is-invalid { color :red; } select.form-control.is-invalid, select.form-control.is-invalid:focus { border : 3px solid red; } /* GAME LAYER */ #game_layer .container { border-radius: 3px; margin: 50px auto; width: 600px; height: 520px; box-shadow: 3px 3px 30px rgba(0,0,0,0.1); } #game_layer .button-row { text-align: center; margin: 0px auto; } #game_layer .btn { transition: box-shadow 0.3s; font-size: 12px; padding: 20px 25px; width: 150px; margin: 0px 10px 0px 10px; background-color: white; border: 4px solid grey; border-radius: 3px; box-shadow: 2px 2px 2px 0px rgba(168,168,168,1); } #game_layer .btn:hover { box-shadow: 4px 4px 6px 0px rgba(168,168,168,1); } #game_layer .game-message-placement { text-align: center; /* width: 300px; */ margin: 50px auto 0px; } #game_layer #game-message { font-size: 20px; /* height: 185px; */ } #game_layer .game-won { background-color: green; color: white ; border-radius: 10px; } #game_layer .game-draw { background-color: lightgrey; color: #545454; border-radius: 10px; } #game_layer .game-lose { background-color: red; border-radius: 10px; color: white; } #game_layer .computer-message { font-size: 16px; } #game_layer .scoreboard-placement { margin: 0px 15px 0px 15px; border-top: 1px solid lightgrey; text-align: center; } #game_layer .scoreboard-row { font-size: 18px; display: inline-block; } #game_layer #playerWins{ margin-right: 40px; } #game_layer #playerDraws, #game_layer #playerLosses { margin-left: 40px; } #game_layer #reset-scores { text-align: center; margin: 0px auto; width: 100px; color: blue; text-decoration: underline; cursor: pointer; }
css/style.css
body { background: rgb(0, 0, 0) url(../img/background.jpg) no-repeat fixed center; font-family: 'Press Start 2P', cursive; color: #00ccff; } .btn.green-button { background-color: #00ccff; color: black; border: 1px solid #00ccff; } .btn.green-button:hover { background-color: #00ADD8; border: 1px solid #00ADD8; } .hidden { display: none; } div.border-green { border : 3px solid #00ccff; } .form-control:focus, .btn-primary:focus { box-shadow: 0 0 0 .2rem #00ADD8; } .margin-top-50 { margin-top: 50px; } .blink_me { animation: blinker 2s step-start infinite; } @keyframes blinker { 50% { opacity: 0; } } .error-div, .is-invalid { color :red; } select.form-control.is-invalid, select.form-control.is-invalid:focus { border : 3px solid red; } /* GAME LAYER */ #game_layer .container { border-radius: 3px; margin: 50px auto; width: 600px; height: 520px; box-shadow: 3px 3px 30px rgba(0,0,0,0.1); } #game_layer .button-row { text-align: center; margin: 0px auto; } #game_layer .btn { transition: box-shadow 0.3s; font-size: 12px; padding: 20px 25px; width: 150px; margin: 0px 10px 0px 10px; background-color: white; border: 4px solid grey; border-radius: 3px; box-shadow: 2px 2px 2px 0px rgba(168,168,168,1); } #game_layer .btn:hover { box-shadow: 4px 4px 6px 0px rgba(168,168,168,1); } #game_layer .game-message-placement { text-align: center; /* width: 300px; */ margin: 50px auto 0px; } #game_layer #game-message { font-size: 20px; /* height: 185px; */ } #game_layer .game-won { background-color: green; color: white ; border-radius: 10px; } #game_layer .game-draw { background-color: lightgrey; color: #545454; border-radius: 10px; } #game_layer .game-lose { background-color: red; border-radius: 10px; color: white; } #game_layer .computer-message { font-size: 16px; } #game_layer .scoreboard-placement { margin: 0px 15px 0px 15px; border-top: 1px solid lightgrey; text-align: center; } #game_layer .scoreboard-row { font-size: 18px; display: inline-block; } #game_layer #playerWins{ margin-right: 40px; } #game_layer #playerDraws, #game_layer #playerLosses { margin-left: 40px; } #game_layer #reset-scores { text-align: center; margin: 0px auto; width: 100px; color: blue; text-decoration: underline; cursor: pointer; }
0.400046
0.088741
b{ font-weight: 700; } a{ text-decoration: none; color: #333; } p,label{ font-size: 14px; /*font-family: 'Open Sans' !important;*/ color: #333 !important; margin-bottom: 0; line-height: 1; } h1,h2,h3,h4,h5{ margin-top: 10px !important; margin-bottom: 10px !important; /*font-family: 'Open Sans' !important;*/ color: #333 !important; } h5{ font-size: 18px; } h4{ font-size: 23px; } h3{ font-size: 26px; } h2{ font-size: 30px; } h1{ font-size: 35px; } a:hover, a:visited, a:active, a:focus{ text-decoration: none; } a.remove-hover{ color: inherit; background-color: inherit; } input,textarea,button{ /*font-family: 'Open Sans' !important;*/ } /*-------- FONTS FAMILY | SIZES ---------*/ .font-helvetica{ /*font-family: 'Open Sans' !important;*/ } .font-100{ font-size: 100px !important; } .font-80{ font-size: 80px !important; } .font-55{ font-size: 55px !important; } .font-50{ font-size: 50px !important; } .font-45{ font-size: 45px !important; } .font-40{ font-size: 40px !important; } .font-38{ font-size: 38px !important; } .font-35{ font-size: 35px !important; } .font-34{ font-size: 34px !important; } .font-32{ font-size: 32px !important; } .font-30{ font-size: 30px !important; } .font-28{ font-size: 28px !important; } .font-26{ font-size: 26px !important; } .font-25{ font-size: 25px !important; } .font-24{ font-size: 24px !important; } .font-22{ font-size: 22px !important; } .font-21{ font-size: 21px !important; } .font-20{ font-size: 20px !important; } .font-19{ font-size: 19px !important; } .font-18{ font-size: 18px !important; } .font-16{ font-size: 16px !important; } .font-15{ font-size: 15px !important; } .font-14{ font-size: 14px !important; } .font-13{ font-size: 13px !important; } .font-12{ font-size: 12px !important; } .font-11{ font-size: 11px !important; } .font-10{ font-size: 10px !important; } /*-------- TEXT STYLES / ALIGNMENT---------*/ .text-error{ color: #c9302c !important; } .text-success{ color: #449d44 !important; } .text-italic{ font-style: italic; } .text-center{ text-align: center; } .text-left{ text-align: left; } .text-right{ text-align: right; } .text-uppercase{ text-transform: uppercase; } .text-underline{ text-decoration: underline; } .text-weight-700{ font-weight: 700 !important; } .text-weight-500{ font-weight: 500 !important; } /*-------- FLOATS ---------*/ .float-right{ float: right; } .float-left{ float: left; } .float-none{ float: none !important; } /*-------- PADDINGS ---------*/ .no-padding{ padding: 0 !important; } .no-padding-left{ padding-left: 0 !important; } .no-padding-right{ padding-right: 0 !important; } .padding-5{ padding: 5px !important; } .padding-10{ padding: 10px !important; } .padding-20{ padding: 20px !important; } .padding-top-50{ padding-top: 50px !important; } .padding-top-100{ padding-top: 100px !important; } .padding-right-50{ padding-right:50px !important; } .padding-bottom-50{ padding-bottom: 50px !important; } .padding-bottom-100{ padding-bottom: 100px !important; } .padding-left-50{ padding-left:50px !important; } .padding-left-70{ padding-left:70px !important; } .padding-left-80{ padding-left:80px !important; } /*-------- MARGINS ---------*/ .margin-0-10{ margin: 0 10px !important; } .margin-center{ margin: 0 auto; } .no-margin{ margin: 0 !important; } .no-margin-bottom{ margin-bottom: 0 !important; } .no-margin-top{ margin-top: 0 !important; } .margin-top-30{ margin-top: 30px !important; } .margin-bottom-10{ margin-bottom: 10px !important; } .margin-bottom-15{ margin-bottom: 15px !important; } .margin-bottom-20{ margin-bottom: 20px !important; } .margin-bottom-30{ margin-bottom: 30px !important; } .margin-bottom-50{ margin-bottom: 50px !important; } /*-------- WIDTHS ---------*/ .full-width{ width: 100% !important; } .width-80{ width: 80% !important; } .width-70{ width: 70% !important; } .width-60{ width: 60% !important; } .width-50{ width: 50% !important; } .width-30{ width: 30% !important; } .width-20{ width: 20% !important; } .width-50px{ width: 50px !important; } .width-40px{ width: 40px !important; } .width-80px{ width: 100px !important; } .width-100px{ width: 100px !important; } .width-200px{ width: 200px !important; } /*-------- WHITE SPACES ---------*/ .white-space-1{ height: 1px; } .white-space-5{ height: 5px; } .white-space-8{ height: 8px; } .white-space-10{ height: 10px; } .white-space-20{ height: 20px; } .white-space-30{ height: 30px; } .white-space-40{ height: 40px; } .white-space-50{ height: 50px; } .white-space-80{ height: 80px; } .white-space-100{ height: 100px; } /*-------- BORDERS && BORDER RADIUS ---------*/ .border-top{ border-top: 1px solid; } .border-right{ border-right: 1px solid; } .border-bottom{ border-bottom: 1px solid; } .border-left{ border-left: 1px solid; } .border-black{ border-color: #000; } .border-gray{ border-color: #999; } .border-white{ border-color: #eee; } .border-blue{ border-color: #1667AC; } .no-border-radius{ border-radius: 0 !important; } .border-radius-8{ border-radius: 8px; } .border-radius-6{ border-radius: 6px; } .border-radius-4{ border-radius: 4px; } .border-radius-2{ border-radius: 2px; } /*-------- COLORS AND BACKGROUNDS ---------*/ .color-red{ color: #c9302c !important; } .color-green{ color: #449d44 !important; } .color-gray{ color: #999 !important; } .color-black-custom{ color: #343434 !important; } .color-blue-custom{ color: #567996 !important; } .color-black-000{ color: #000 !important; } .color-black-333{ color: #333 !important; } .color-black-555{ color: #555 !important; } .color-black-666{ color: #666 !important; } .color-white{ color: #FFF !important; } .color-white-ccc{ color: #ccc1c1 !important; } .bg-white{ background-color: #FFF !important; } .bg-white-f8f8f8{ background-color: #f8f8f8 !important; } .bg-black{ background-color: #000 !important; } .bg-gray{ background-color: #999 !important; } /*-------- NAVS ---------*/ .nav-inline li{ display: inline-block; } /*-------- LINES ---------*/ .line-bottom-white-e0e0e0{ border-bottom: 1px solid #e0e0e0; } .line-bottom-white-2-e0e0e0{ border-bottom: 2px solid #e0e0e0; } .line-bottom-white-ccc{ border-bottom: 1px solid #ccc1c1; } /*-------- DISPLAY ---------*/ .display-inline-block{ display: inline-block !important; } .display-inline{ display: inline !important; } .display-block{ display: block !important; } .display-flex{ display: flex !important; } /*---------- FLEX ----------*/ .flex-align-center{ align-items: center!important; } /*---------- CARDS ----------*/ .white-box{ background-color: #FFF; box-shadow: 1px 1px 10px #dadada; min-height: 320px; width: 100%; /*padding: 20px;*/ } /*---- LINE -----*/ .line-height-1{ line-height: 1; } /*------- POSTION -------*/ .position-relative{ position: relative; } .position-absolute{ position: absolute; } /*------- CURSOR -------*/ .cursor-pointer{ cursor: pointer; }
public/css/custom.css
b{ font-weight: 700; } a{ text-decoration: none; color: #333; } p,label{ font-size: 14px; /*font-family: 'Open Sans' !important;*/ color: #333 !important; margin-bottom: 0; line-height: 1; } h1,h2,h3,h4,h5{ margin-top: 10px !important; margin-bottom: 10px !important; /*font-family: 'Open Sans' !important;*/ color: #333 !important; } h5{ font-size: 18px; } h4{ font-size: 23px; } h3{ font-size: 26px; } h2{ font-size: 30px; } h1{ font-size: 35px; } a:hover, a:visited, a:active, a:focus{ text-decoration: none; } a.remove-hover{ color: inherit; background-color: inherit; } input,textarea,button{ /*font-family: 'Open Sans' !important;*/ } /*-------- FONTS FAMILY | SIZES ---------*/ .font-helvetica{ /*font-family: 'Open Sans' !important;*/ } .font-100{ font-size: 100px !important; } .font-80{ font-size: 80px !important; } .font-55{ font-size: 55px !important; } .font-50{ font-size: 50px !important; } .font-45{ font-size: 45px !important; } .font-40{ font-size: 40px !important; } .font-38{ font-size: 38px !important; } .font-35{ font-size: 35px !important; } .font-34{ font-size: 34px !important; } .font-32{ font-size: 32px !important; } .font-30{ font-size: 30px !important; } .font-28{ font-size: 28px !important; } .font-26{ font-size: 26px !important; } .font-25{ font-size: 25px !important; } .font-24{ font-size: 24px !important; } .font-22{ font-size: 22px !important; } .font-21{ font-size: 21px !important; } .font-20{ font-size: 20px !important; } .font-19{ font-size: 19px !important; } .font-18{ font-size: 18px !important; } .font-16{ font-size: 16px !important; } .font-15{ font-size: 15px !important; } .font-14{ font-size: 14px !important; } .font-13{ font-size: 13px !important; } .font-12{ font-size: 12px !important; } .font-11{ font-size: 11px !important; } .font-10{ font-size: 10px !important; } /*-------- TEXT STYLES / ALIGNMENT---------*/ .text-error{ color: #c9302c !important; } .text-success{ color: #449d44 !important; } .text-italic{ font-style: italic; } .text-center{ text-align: center; } .text-left{ text-align: left; } .text-right{ text-align: right; } .text-uppercase{ text-transform: uppercase; } .text-underline{ text-decoration: underline; } .text-weight-700{ font-weight: 700 !important; } .text-weight-500{ font-weight: 500 !important; } /*-------- FLOATS ---------*/ .float-right{ float: right; } .float-left{ float: left; } .float-none{ float: none !important; } /*-------- PADDINGS ---------*/ .no-padding{ padding: 0 !important; } .no-padding-left{ padding-left: 0 !important; } .no-padding-right{ padding-right: 0 !important; } .padding-5{ padding: 5px !important; } .padding-10{ padding: 10px !important; } .padding-20{ padding: 20px !important; } .padding-top-50{ padding-top: 50px !important; } .padding-top-100{ padding-top: 100px !important; } .padding-right-50{ padding-right:50px !important; } .padding-bottom-50{ padding-bottom: 50px !important; } .padding-bottom-100{ padding-bottom: 100px !important; } .padding-left-50{ padding-left:50px !important; } .padding-left-70{ padding-left:70px !important; } .padding-left-80{ padding-left:80px !important; } /*-------- MARGINS ---------*/ .margin-0-10{ margin: 0 10px !important; } .margin-center{ margin: 0 auto; } .no-margin{ margin: 0 !important; } .no-margin-bottom{ margin-bottom: 0 !important; } .no-margin-top{ margin-top: 0 !important; } .margin-top-30{ margin-top: 30px !important; } .margin-bottom-10{ margin-bottom: 10px !important; } .margin-bottom-15{ margin-bottom: 15px !important; } .margin-bottom-20{ margin-bottom: 20px !important; } .margin-bottom-30{ margin-bottom: 30px !important; } .margin-bottom-50{ margin-bottom: 50px !important; } /*-------- WIDTHS ---------*/ .full-width{ width: 100% !important; } .width-80{ width: 80% !important; } .width-70{ width: 70% !important; } .width-60{ width: 60% !important; } .width-50{ width: 50% !important; } .width-30{ width: 30% !important; } .width-20{ width: 20% !important; } .width-50px{ width: 50px !important; } .width-40px{ width: 40px !important; } .width-80px{ width: 100px !important; } .width-100px{ width: 100px !important; } .width-200px{ width: 200px !important; } /*-------- WHITE SPACES ---------*/ .white-space-1{ height: 1px; } .white-space-5{ height: 5px; } .white-space-8{ height: 8px; } .white-space-10{ height: 10px; } .white-space-20{ height: 20px; } .white-space-30{ height: 30px; } .white-space-40{ height: 40px; } .white-space-50{ height: 50px; } .white-space-80{ height: 80px; } .white-space-100{ height: 100px; } /*-------- BORDERS && BORDER RADIUS ---------*/ .border-top{ border-top: 1px solid; } .border-right{ border-right: 1px solid; } .border-bottom{ border-bottom: 1px solid; } .border-left{ border-left: 1px solid; } .border-black{ border-color: #000; } .border-gray{ border-color: #999; } .border-white{ border-color: #eee; } .border-blue{ border-color: #1667AC; } .no-border-radius{ border-radius: 0 !important; } .border-radius-8{ border-radius: 8px; } .border-radius-6{ border-radius: 6px; } .border-radius-4{ border-radius: 4px; } .border-radius-2{ border-radius: 2px; } /*-------- COLORS AND BACKGROUNDS ---------*/ .color-red{ color: #c9302c !important; } .color-green{ color: #449d44 !important; } .color-gray{ color: #999 !important; } .color-black-custom{ color: #343434 !important; } .color-blue-custom{ color: #567996 !important; } .color-black-000{ color: #000 !important; } .color-black-333{ color: #333 !important; } .color-black-555{ color: #555 !important; } .color-black-666{ color: #666 !important; } .color-white{ color: #FFF !important; } .color-white-ccc{ color: #ccc1c1 !important; } .bg-white{ background-color: #FFF !important; } .bg-white-f8f8f8{ background-color: #f8f8f8 !important; } .bg-black{ background-color: #000 !important; } .bg-gray{ background-color: #999 !important; } /*-------- NAVS ---------*/ .nav-inline li{ display: inline-block; } /*-------- LINES ---------*/ .line-bottom-white-e0e0e0{ border-bottom: 1px solid #e0e0e0; } .line-bottom-white-2-e0e0e0{ border-bottom: 2px solid #e0e0e0; } .line-bottom-white-ccc{ border-bottom: 1px solid #ccc1c1; } /*-------- DISPLAY ---------*/ .display-inline-block{ display: inline-block !important; } .display-inline{ display: inline !important; } .display-block{ display: block !important; } .display-flex{ display: flex !important; } /*---------- FLEX ----------*/ .flex-align-center{ align-items: center!important; } /*---------- CARDS ----------*/ .white-box{ background-color: #FFF; box-shadow: 1px 1px 10px #dadada; min-height: 320px; width: 100%; /*padding: 20px;*/ } /*---- LINE -----*/ .line-height-1{ line-height: 1; } /*------- POSTION -------*/ .position-relative{ position: relative; } .position-absolute{ position: absolute; } /*------- CURSOR -------*/ .cursor-pointer{ cursor: pointer; }
0.231093
0.082328
@font-face { font-family: "Playfair Display"; font-weight: 400; font-style: normal; font-display: swap; src: local("Playfair Display"), url("../fonts/playfair-display-v22-cyrillic-regular.woff2") format("woff2"), url("../fonts/playfair-display-v22-cyrillic-regular.woff") format("woff"); } @font-face { font-family: "Playfair Display"; font-weight: 700; font-style: normal; font-display: swap; src: local("Playfair Display"), url("../fonts/playfair-display-v22-cyrillic-700.woff2") format("woff2"), url("../fonts/playfair-display-v22-cyrillic-700.woff") format("woff"); } @font-face { font-family: "Playfair Display"; font-weight: 400; font-style: italic; font-display: swap; src: local("Playfair Display"), url("../fonts/playfair-display-v22-cyrillic-italic.woff2") format("woff2"), url("../fonts/playfair-display-v22-cyrillic-italic.woff") format("woff"); } @font-face { font-family: "Montserrat"; font-weight: 400; font-style: normal; font-display: swap; src: local("Montserrat"), url("../fonts/montserrat-v18-cyrillic-regular.woff2") format("woff2"), url("../fonts/montserrat-v18-cyrillic-regular.woff") format("woff"); } @font-face { font-family: "Montserrat"; font-weight: 500; font-style: normal; font-display: swap; src: local("Montserrat"), url("../fonts/montserrat-v18-cyrillic-500.woff2") format("woff2"), url("../fonts/montserrat-v18-cyrillic-500.woff") format("woff"); } /* Variables */ :root { --basic-white: #fff; --basic-pink: #ae7c78; --basic-dark-pink: #795654; --basic-light-pink: #d89999; --basic-grey: #f7fafc; } /* Global */ html { box-sizing: border-box; height: 100%; } *, *::before, *::after { box-sizing: inherit; } body { font-family: "Montserrat", "Arial", sans-serif; font-size: 16px; font-weight: 400; font-style: normal; line-height: 1.2; display: grid; min-width: 1220px; min-height: 100%; margin: 0; margin-top: 25px; padding: 0; color: var(--basic-pink); background-color: var(--basic-white); grid-template-rows: min-content 1fr min-content; align-content: start; } a { text-decoration: none; } img { max-width: 100%; height: auto; pointer-events: none; } .visually-hidden:not(:focus):not(:active), input[type="checkbox"].visually-hidden, input[type="radio"].visually-hidden { position: absolute; overflow: hidden; clip: rect(0 0 0 0); width: 1px; height: 1px; margin: -1px; padding: 0; white-space: nowrap; border: 0; -webkit-clip-path: inset(100%); clip-path: inset(100%); } .title { font-family: "Playfair Display", "Georgia", serif; font-size: 36px; font-weight: 700; } .subtitle { font-weight: 500; } .btn { display: block; width: 285px; padding: 30px 10px; transition: background-color 0.2s ease-in-out; text-align: center; word-break: break-word; color: var(--basic-white); border-radius: 40px; background-color: var(--basic-light-pink); } .btn:hover, .btn:focus { background-color: var(--basic-dark-pink); } /* main-header */ .main-header { margin-bottom: 82px; border-top: 1px solid var(--basic-pink); border-bottom: 1px solid var(--basic-pink); } /* main-nav */ .main-nav { display: grid; grid-template-columns: 1fr 184px 1fr; column-gap: 20px; } .main-nav__logo { order: 2; justify-self: center; align-self: center; } .main-nav__list { display: contents; } .main-nav__left { display: grid; grid-template-columns: 1fr 3fr 1fr; justify-items: center; order: 1; } .main-nav__right { display: grid; grid-template-columns: 2fr 2fr 1fr; justify-items: center; order: 3; } .main-nav__link { display: block; overflow: hidden; padding: 23px 0 21px; transition: color 0.2s ease-in-out; word-break: break-word; color: var(--basic-pink); } .main-nav__link:first-child { justify-self: start; } .main-nav__link:last-child { justify-self: end; } .main-nav__link:hover, .main-nav__link:focus { color: var(--basic-dark-pink); } /* logo */ .logo { display: block; width: 100px; height: 33px; } .logo[href] { transition: opacity 0.2s ease-in-out; opacity: 1; } .logo[href]:hover, .logo[href]:focus { opacity: 0.5; } /* container */ .container { width: 1220px; margin: 0 auto; padding: 0 10px; } /* entry */ .entry { display: grid; margin-bottom: 45px; grid-template-columns: 1fr 2fr; column-gap: 10px; } .entry__title { font-size: 44px; font-weight: 400; line-height: 1.35; margin: 0; word-break: break-word; } .entry__description { font-size: 24px; margin-bottom: 66px; word-break: break-word; } /* features */ .features { margin-bottom: 85px; } .features__list { display: grid; margin: 0; padding: 0; list-style: none; grid-template-columns: 1fr 1fr 1fr; grid-gap: 20px; } .features__item { padding-left: 102px; background-repeat: no-repeat; } .features__item--send { background-image: url("../img/icons/icon-lorry.svg"); } .features__item--fresh { background-image: url("../img/icons/icon-bouquet.svg"); background-position: 29px 0; } .features__item--photo { background-image: url("../img/icons/icon-camera.svg"); background-position: 23px 0; } .features__subtitle { font-size: 16px; margin: 0; margin-bottom: 10px; word-break: break-word; } .features__description { margin: 0; word-break: break-word; } /* popular */ .popular { margin-bottom: 54px; } .popular__title { margin: 0; margin-bottom: 38px; margin-left: 11px; text-align: center; letter-spacing: 0.8px; word-break: break-word; } .popular__slider { width: 794px; min-height: 488px; margin: 0 auto; } .popular__content { padding-top: 28px; } .popular__subtitle { font-size: 24px; margin: 0; margin-bottom: 22px; word-break: break-word; } .popular__description { margin: 0; margin-bottom: 25px; word-break: break-word; word-break: break-word; } .popular__size { margin: 0; margin-bottom: 25px; word-break: break-word; } .popular__price { font-size: 24px; margin: 0; margin-bottom: 64px; word-break: break-word; } /* slider */ .slider__list { margin: 0; padding: 0; list-style: none; } .slider__item { display: grid; grid-template-columns: 1fr 1fr; column-gap: 20px; } .slider__nav { display: flex; width: 122px; margin: 0 auto; justify-content: space-between; } .slider__btn { font-size: 16px; font-weight: 400; line-height: 1.5; display: inline-block; padding: 11px 0; cursor: pointer; -webkit-user-select: none; -moz-user-select: none; user-select: none; text-align: center; vertical-align: middle; text-decoration: none; word-break: break-word; color: #212529; border: none; background-color: transparent; } .slider__btn svg { cursor: pointer; transition: fill 0.2s ease-in-out; fill: var(--basic-pink); } .slider__btn:hover svg, .slider__btn:focus svg { fill: var(--basic-dark-pink); } /* gallery */ .gallery { margin-bottom: 80px; } .gallery__list { display: grid; margin: 0; padding: 0; list-style: none; grid-template-columns: repeat(3, 387px); grid-gap: 20px; } .gallery__link { display: flex; flex-direction: column; min-height: 442px; padding: 10px; transition: background-color 0.2s ease-in-out; word-break: break-word; color: var(--basic-white); border-radius: 10px; background-color: rgba(174, 124, 120, 0.6); background-repeat: no-repeat; background-position: center; background-size: cover; justify-content: center; align-items: center; background-blend-mode: multiply; } .gallery__link:hover, .gallery__link:focus { background-color: transparent; } .gallery__link--wedding { background-image: url("../img/gallery/bg-wedding-bouquets-desktop@1x.jpg"); } .gallery__link--peonies { background-image: url("../img/gallery/bg-bouquet-of-peonies-desktop@1x.jpg"); } .gallery__link--choose { background-image: url("../img/gallery/bg-choose-a-bouquet-desktop@1x.jpg"); } .gallery__subtitle { margin: 0; margin-bottom: 11px; letter-spacing: 0.7px; word-break: break-word; } .gallery__description { margin: 0; word-break: break-word; } /* discount */ .discount { display: grid; margin-bottom: 83px; background-color: var(--basic-pink); grid-template-columns: 1fr 1fr; column-gap: 20px; } .discount__content { padding: 42px 103px; color: var(--basic-white); } .discount__title { font-size: 44px; font-weight: 400; line-height: 1.3; margin: 0; margin-bottom: 28px; letter-spacing: 0.8px; word-break: break-word; } .discount__description { font-size: 24px; line-height: 1.23; margin: 0; word-break: break-word; } .discount__img img { display: block; height: 100%; object-fit: cover; } /* pathway */ .pathway { margin-bottom: 79px; } .pathway__title { margin: 0; margin-bottom: 38px; text-align: center; letter-spacing: 0.7px; word-break: break-word; } .pathway__list { display: grid; margin: 0; padding: 0; list-style: none; grid-template-columns: 1fr 1fr 1fr 1fr; grid-gap: 20px; } .pathway__item { padding-top: 62px; background-repeat: no-repeat; background-position: center top; } .pathway__item--order { background-image: url("../img/icons/icon-order.svg"); } .pathway__item--details { background-image: url("../img/icons/icon-woman.svg"); } .pathway__item--payment { background-image: url("../img/icons/icon-payment.svg"); } .pathway__item--delivery { background-image: url("../img/icons/icon-lorry.svg"); } .pathway__subtitle { font-size: 16px; margin: 0; padding-bottom: 8px; text-align: center; word-break: break-word; } .pathway__description { line-height: 1.3; margin: 0; text-align: center; word-break: break-word; } /* news */ .news { display: grid; margin-bottom: 40px; grid-template-columns: 387px 1fr; column-gap: 120px; } .news__content { padding-top: 72px; } .news__title { line-height: 1.3; margin: 0; margin-bottom: 43px; letter-spacing: 0.7px; word-break: break-word; } .news__description { font-size: 24px; line-height: 1.21; margin: 0; margin-bottom: 34px; word-break: break-word; } .news__social { position: relative; left: -3px; margin-bottom: 40px; } .news figure { display: grid; margin: 0; grid-template-columns: 285px 387px; grid-gap: 20px; grid-template-areas: "small-top big" "small-bottom big"; } .news picture { display: contents; } .news__img { display: block; object-fit: cover; } .news__img--big { grid-area: big; } .news__img--small-top { grid-area: small-top; } .news__img--small-bottom { grid-area: small-bottom; } /* reviews */ .reviews { margin-bottom: 80px; padding-top: 42px; padding-bottom: 63px; word-break: break-word; border: 1px solid var(--basic-pink); } .reviews__title { margin: 0; margin-bottom: 43px; text-align: center; word-break: break-word; } .reviews__list { display: grid; margin: 0; padding: 0; list-style: none; grid-template-columns: 1fr 1fr 1fr; grid-gap: 20px; } .reviews__item { text-align: center; } .reviews__description { line-height: 1.3; margin: 0 42px 16px; word-break: break-word; } .reviews__author { font-weight: 500; font-style: normal; margin: 0; } /* main-footer */ .main-footer__content { background-color: var(--basic-pink); } .main-footer__wrapper { display: grid; padding: 24px 0 40px; grid-template-columns: 100px 1fr 100px; } .main-footer__logo { margin-left: 4px; } .main-footer__social { position: relative; left: 5px; } /* contacts */ .main-footer__map { position: relative; min-height: 644px; background-color: var(--basic-grey); } .main-footer__map iframe { position: absolute; z-index: 1; top: 50%; left: 50%; width: 100%; height: 100%; min-height: 644px; transform: translate(-50%, -50%); border: none; } .main-footer__map img { position: absolute; top: 50%; left: 50%; width: 1440px; height: 644px; transform: translate(-50%, -50%); } .contacts { padding-top: 52px; padding-left: 102px; } .contacts__content { position: relative; z-index: 2; width: 386px; padding: 43px 35px 62px; border-radius: 12px; background-color: var(--basic-grey); box-shadow: 0 4px 40px rgba(217, 217, 217, 0.3); } .contacts__subtitle { margin-top: 0; margin-bottom: 41px; word-break: break-word; } .contacts__list { margin: 0; } .contacts__list dt { line-height: 1.3; margin-bottom: 16px; word-break: break-word; } .contacts__list dd { font-weight: 500; line-height: 1.3; margin-bottom: 29px; margin-left: 0; word-break: break-word; } .contacts__list dd:last-of-type { margin-bottom: 0; } .contacts__list a { transition: color 0.2s ease-in-out; color: var(--basic-pink); } .contacts__list a:hover, .contacts__list a:focus { color: var(--basic-dark-pink); } /* footer-nav */ .footer-nav__list { display: grid; margin: 0; padding: 0; list-style: none; grid-template-columns: repeat(auto-fit, 181px); justify-content: center; justify-items: center; align-items: center; } .footer-nav__link { display: block; padding: 7px 0; transition: color 0.2s ease-in-out; word-break: break-word; color: var(--basic-white); } .footer-nav__link:hover, .footer-nav__link:focus { color: var(--basic-dark-pink); } /* social */ .social__list { display: grid; margin: 0; padding: 0; list-style: none; grid-template-columns: repeat(auto-fill, 26px); grid-template-rows: repeat(auto-fill, 20px); grid-gap: 11px; justify-items: center; } .social__link { display: block; padding: 5px; word-break: break-word; } .social__link svg { fill: var(--basic-light-pink); } .social--footer svg { transition: fill 0.2s ease-in-out; fill: var(--basic-white); } .social__link:hover svg, .social__link:focus svg { fill: var(--basic-dark-pink); } @media (min-resolution: 144dpi), (min-resolution: 1.5dppx) { .gallery__link--wedding { background-image: url("../img/gallery/bg-wedding-bouquets-desktop@2x.jpg"); } .gallery__link--peonies { background-image: url("../img/gallery/bg-bouquet-of-peonies-desktop@2x.jpg"); } .gallery__link--choose { background-image: url("../img/gallery/bg-choose-a-bouquet-desktop@2x.jpg"); } }
css/style.css
@font-face { font-family: "Playfair Display"; font-weight: 400; font-style: normal; font-display: swap; src: local("Playfair Display"), url("../fonts/playfair-display-v22-cyrillic-regular.woff2") format("woff2"), url("../fonts/playfair-display-v22-cyrillic-regular.woff") format("woff"); } @font-face { font-family: "Playfair Display"; font-weight: 700; font-style: normal; font-display: swap; src: local("Playfair Display"), url("../fonts/playfair-display-v22-cyrillic-700.woff2") format("woff2"), url("../fonts/playfair-display-v22-cyrillic-700.woff") format("woff"); } @font-face { font-family: "Playfair Display"; font-weight: 400; font-style: italic; font-display: swap; src: local("Playfair Display"), url("../fonts/playfair-display-v22-cyrillic-italic.woff2") format("woff2"), url("../fonts/playfair-display-v22-cyrillic-italic.woff") format("woff"); } @font-face { font-family: "Montserrat"; font-weight: 400; font-style: normal; font-display: swap; src: local("Montserrat"), url("../fonts/montserrat-v18-cyrillic-regular.woff2") format("woff2"), url("../fonts/montserrat-v18-cyrillic-regular.woff") format("woff"); } @font-face { font-family: "Montserrat"; font-weight: 500; font-style: normal; font-display: swap; src: local("Montserrat"), url("../fonts/montserrat-v18-cyrillic-500.woff2") format("woff2"), url("../fonts/montserrat-v18-cyrillic-500.woff") format("woff"); } /* Variables */ :root { --basic-white: #fff; --basic-pink: #ae7c78; --basic-dark-pink: #795654; --basic-light-pink: #d89999; --basic-grey: #f7fafc; } /* Global */ html { box-sizing: border-box; height: 100%; } *, *::before, *::after { box-sizing: inherit; } body { font-family: "Montserrat", "Arial", sans-serif; font-size: 16px; font-weight: 400; font-style: normal; line-height: 1.2; display: grid; min-width: 1220px; min-height: 100%; margin: 0; margin-top: 25px; padding: 0; color: var(--basic-pink); background-color: var(--basic-white); grid-template-rows: min-content 1fr min-content; align-content: start; } a { text-decoration: none; } img { max-width: 100%; height: auto; pointer-events: none; } .visually-hidden:not(:focus):not(:active), input[type="checkbox"].visually-hidden, input[type="radio"].visually-hidden { position: absolute; overflow: hidden; clip: rect(0 0 0 0); width: 1px; height: 1px; margin: -1px; padding: 0; white-space: nowrap; border: 0; -webkit-clip-path: inset(100%); clip-path: inset(100%); } .title { font-family: "Playfair Display", "Georgia", serif; font-size: 36px; font-weight: 700; } .subtitle { font-weight: 500; } .btn { display: block; width: 285px; padding: 30px 10px; transition: background-color 0.2s ease-in-out; text-align: center; word-break: break-word; color: var(--basic-white); border-radius: 40px; background-color: var(--basic-light-pink); } .btn:hover, .btn:focus { background-color: var(--basic-dark-pink); } /* main-header */ .main-header { margin-bottom: 82px; border-top: 1px solid var(--basic-pink); border-bottom: 1px solid var(--basic-pink); } /* main-nav */ .main-nav { display: grid; grid-template-columns: 1fr 184px 1fr; column-gap: 20px; } .main-nav__logo { order: 2; justify-self: center; align-self: center; } .main-nav__list { display: contents; } .main-nav__left { display: grid; grid-template-columns: 1fr 3fr 1fr; justify-items: center; order: 1; } .main-nav__right { display: grid; grid-template-columns: 2fr 2fr 1fr; justify-items: center; order: 3; } .main-nav__link { display: block; overflow: hidden; padding: 23px 0 21px; transition: color 0.2s ease-in-out; word-break: break-word; color: var(--basic-pink); } .main-nav__link:first-child { justify-self: start; } .main-nav__link:last-child { justify-self: end; } .main-nav__link:hover, .main-nav__link:focus { color: var(--basic-dark-pink); } /* logo */ .logo { display: block; width: 100px; height: 33px; } .logo[href] { transition: opacity 0.2s ease-in-out; opacity: 1; } .logo[href]:hover, .logo[href]:focus { opacity: 0.5; } /* container */ .container { width: 1220px; margin: 0 auto; padding: 0 10px; } /* entry */ .entry { display: grid; margin-bottom: 45px; grid-template-columns: 1fr 2fr; column-gap: 10px; } .entry__title { font-size: 44px; font-weight: 400; line-height: 1.35; margin: 0; word-break: break-word; } .entry__description { font-size: 24px; margin-bottom: 66px; word-break: break-word; } /* features */ .features { margin-bottom: 85px; } .features__list { display: grid; margin: 0; padding: 0; list-style: none; grid-template-columns: 1fr 1fr 1fr; grid-gap: 20px; } .features__item { padding-left: 102px; background-repeat: no-repeat; } .features__item--send { background-image: url("../img/icons/icon-lorry.svg"); } .features__item--fresh { background-image: url("../img/icons/icon-bouquet.svg"); background-position: 29px 0; } .features__item--photo { background-image: url("../img/icons/icon-camera.svg"); background-position: 23px 0; } .features__subtitle { font-size: 16px; margin: 0; margin-bottom: 10px; word-break: break-word; } .features__description { margin: 0; word-break: break-word; } /* popular */ .popular { margin-bottom: 54px; } .popular__title { margin: 0; margin-bottom: 38px; margin-left: 11px; text-align: center; letter-spacing: 0.8px; word-break: break-word; } .popular__slider { width: 794px; min-height: 488px; margin: 0 auto; } .popular__content { padding-top: 28px; } .popular__subtitle { font-size: 24px; margin: 0; margin-bottom: 22px; word-break: break-word; } .popular__description { margin: 0; margin-bottom: 25px; word-break: break-word; word-break: break-word; } .popular__size { margin: 0; margin-bottom: 25px; word-break: break-word; } .popular__price { font-size: 24px; margin: 0; margin-bottom: 64px; word-break: break-word; } /* slider */ .slider__list { margin: 0; padding: 0; list-style: none; } .slider__item { display: grid; grid-template-columns: 1fr 1fr; column-gap: 20px; } .slider__nav { display: flex; width: 122px; margin: 0 auto; justify-content: space-between; } .slider__btn { font-size: 16px; font-weight: 400; line-height: 1.5; display: inline-block; padding: 11px 0; cursor: pointer; -webkit-user-select: none; -moz-user-select: none; user-select: none; text-align: center; vertical-align: middle; text-decoration: none; word-break: break-word; color: #212529; border: none; background-color: transparent; } .slider__btn svg { cursor: pointer; transition: fill 0.2s ease-in-out; fill: var(--basic-pink); } .slider__btn:hover svg, .slider__btn:focus svg { fill: var(--basic-dark-pink); } /* gallery */ .gallery { margin-bottom: 80px; } .gallery__list { display: grid; margin: 0; padding: 0; list-style: none; grid-template-columns: repeat(3, 387px); grid-gap: 20px; } .gallery__link { display: flex; flex-direction: column; min-height: 442px; padding: 10px; transition: background-color 0.2s ease-in-out; word-break: break-word; color: var(--basic-white); border-radius: 10px; background-color: rgba(174, 124, 120, 0.6); background-repeat: no-repeat; background-position: center; background-size: cover; justify-content: center; align-items: center; background-blend-mode: multiply; } .gallery__link:hover, .gallery__link:focus { background-color: transparent; } .gallery__link--wedding { background-image: url("../img/gallery/bg-wedding-bouquets-desktop@1x.jpg"); } .gallery__link--peonies { background-image: url("../img/gallery/bg-bouquet-of-peonies-desktop@1x.jpg"); } .gallery__link--choose { background-image: url("../img/gallery/bg-choose-a-bouquet-desktop@1x.jpg"); } .gallery__subtitle { margin: 0; margin-bottom: 11px; letter-spacing: 0.7px; word-break: break-word; } .gallery__description { margin: 0; word-break: break-word; } /* discount */ .discount { display: grid; margin-bottom: 83px; background-color: var(--basic-pink); grid-template-columns: 1fr 1fr; column-gap: 20px; } .discount__content { padding: 42px 103px; color: var(--basic-white); } .discount__title { font-size: 44px; font-weight: 400; line-height: 1.3; margin: 0; margin-bottom: 28px; letter-spacing: 0.8px; word-break: break-word; } .discount__description { font-size: 24px; line-height: 1.23; margin: 0; word-break: break-word; } .discount__img img { display: block; height: 100%; object-fit: cover; } /* pathway */ .pathway { margin-bottom: 79px; } .pathway__title { margin: 0; margin-bottom: 38px; text-align: center; letter-spacing: 0.7px; word-break: break-word; } .pathway__list { display: grid; margin: 0; padding: 0; list-style: none; grid-template-columns: 1fr 1fr 1fr 1fr; grid-gap: 20px; } .pathway__item { padding-top: 62px; background-repeat: no-repeat; background-position: center top; } .pathway__item--order { background-image: url("../img/icons/icon-order.svg"); } .pathway__item--details { background-image: url("../img/icons/icon-woman.svg"); } .pathway__item--payment { background-image: url("../img/icons/icon-payment.svg"); } .pathway__item--delivery { background-image: url("../img/icons/icon-lorry.svg"); } .pathway__subtitle { font-size: 16px; margin: 0; padding-bottom: 8px; text-align: center; word-break: break-word; } .pathway__description { line-height: 1.3; margin: 0; text-align: center; word-break: break-word; } /* news */ .news { display: grid; margin-bottom: 40px; grid-template-columns: 387px 1fr; column-gap: 120px; } .news__content { padding-top: 72px; } .news__title { line-height: 1.3; margin: 0; margin-bottom: 43px; letter-spacing: 0.7px; word-break: break-word; } .news__description { font-size: 24px; line-height: 1.21; margin: 0; margin-bottom: 34px; word-break: break-word; } .news__social { position: relative; left: -3px; margin-bottom: 40px; } .news figure { display: grid; margin: 0; grid-template-columns: 285px 387px; grid-gap: 20px; grid-template-areas: "small-top big" "small-bottom big"; } .news picture { display: contents; } .news__img { display: block; object-fit: cover; } .news__img--big { grid-area: big; } .news__img--small-top { grid-area: small-top; } .news__img--small-bottom { grid-area: small-bottom; } /* reviews */ .reviews { margin-bottom: 80px; padding-top: 42px; padding-bottom: 63px; word-break: break-word; border: 1px solid var(--basic-pink); } .reviews__title { margin: 0; margin-bottom: 43px; text-align: center; word-break: break-word; } .reviews__list { display: grid; margin: 0; padding: 0; list-style: none; grid-template-columns: 1fr 1fr 1fr; grid-gap: 20px; } .reviews__item { text-align: center; } .reviews__description { line-height: 1.3; margin: 0 42px 16px; word-break: break-word; } .reviews__author { font-weight: 500; font-style: normal; margin: 0; } /* main-footer */ .main-footer__content { background-color: var(--basic-pink); } .main-footer__wrapper { display: grid; padding: 24px 0 40px; grid-template-columns: 100px 1fr 100px; } .main-footer__logo { margin-left: 4px; } .main-footer__social { position: relative; left: 5px; } /* contacts */ .main-footer__map { position: relative; min-height: 644px; background-color: var(--basic-grey); } .main-footer__map iframe { position: absolute; z-index: 1; top: 50%; left: 50%; width: 100%; height: 100%; min-height: 644px; transform: translate(-50%, -50%); border: none; } .main-footer__map img { position: absolute; top: 50%; left: 50%; width: 1440px; height: 644px; transform: translate(-50%, -50%); } .contacts { padding-top: 52px; padding-left: 102px; } .contacts__content { position: relative; z-index: 2; width: 386px; padding: 43px 35px 62px; border-radius: 12px; background-color: var(--basic-grey); box-shadow: 0 4px 40px rgba(217, 217, 217, 0.3); } .contacts__subtitle { margin-top: 0; margin-bottom: 41px; word-break: break-word; } .contacts__list { margin: 0; } .contacts__list dt { line-height: 1.3; margin-bottom: 16px; word-break: break-word; } .contacts__list dd { font-weight: 500; line-height: 1.3; margin-bottom: 29px; margin-left: 0; word-break: break-word; } .contacts__list dd:last-of-type { margin-bottom: 0; } .contacts__list a { transition: color 0.2s ease-in-out; color: var(--basic-pink); } .contacts__list a:hover, .contacts__list a:focus { color: var(--basic-dark-pink); } /* footer-nav */ .footer-nav__list { display: grid; margin: 0; padding: 0; list-style: none; grid-template-columns: repeat(auto-fit, 181px); justify-content: center; justify-items: center; align-items: center; } .footer-nav__link { display: block; padding: 7px 0; transition: color 0.2s ease-in-out; word-break: break-word; color: var(--basic-white); } .footer-nav__link:hover, .footer-nav__link:focus { color: var(--basic-dark-pink); } /* social */ .social__list { display: grid; margin: 0; padding: 0; list-style: none; grid-template-columns: repeat(auto-fill, 26px); grid-template-rows: repeat(auto-fill, 20px); grid-gap: 11px; justify-items: center; } .social__link { display: block; padding: 5px; word-break: break-word; } .social__link svg { fill: var(--basic-light-pink); } .social--footer svg { transition: fill 0.2s ease-in-out; fill: var(--basic-white); } .social__link:hover svg, .social__link:focus svg { fill: var(--basic-dark-pink); } @media (min-resolution: 144dpi), (min-resolution: 1.5dppx) { .gallery__link--wedding { background-image: url("../img/gallery/bg-wedding-bouquets-desktop@2x.jpg"); } .gallery__link--peonies { background-image: url("../img/gallery/bg-bouquet-of-peonies-desktop@2x.jpg"); } .gallery__link--choose { background-image: url("../img/gallery/bg-choose-a-bouquet-desktop@2x.jpg"); } }
0.37777
0.072637
@import url("https://use.typekit.net/kyz0ydh.css"); /* styles */ :root { --blue: #34495e; --green: #e74c3c; --yellow: #C9C243; --orange: #FFA644; --red: #3498db; --card-bg:#17141d; --text-normal:white; --hover-gradient:linear-gradient(90deg,#ff8a00,#e52e71); } body { background: none; font-family: bebas-neue-pro, sans-serif; color: #34495e; } main { max-width: 1850px; margin: auto; padding: 60px; height: 100%; } main h1 { display:flex; column-span:all; padding-bottom: 20px; padding-top: 30px; } header { max-width: 1200px; margin: 0 auto; padding: 20px 20px 0; } .title { font-size: 2.6em; text-align: center; color: white; margin-bottom: 20px } .figure-img { display: block; width: 100%; object: fit; } h1 { font-size: 5rem; font-weight: 1000; max-width: 1730px; margin: auto; height: 100%; } h2 { font-size: 1.4em; padding: 10px; } p { margin-bottom: 1em; padding: 0 10px; } .info-link { text-decoration: none; color: var(--green); padding: 10px; display: block; } .options { display: flex; align-items: center; justify-content: space-around; padding: 10px; border-top: 3px solid var(--red); border-radius: 3px; background-color: white; } .options-link { text-decoration: none; font-size: 0.9em; color: var(--red); } section { border-radius: 16px; background: var(--card-bg); /*box-shadow: -1rem 0 3rem #000;*/ transition: .2s; margin-bottom: 20px; overflow: hidden; } .section p { font-size: 20px; margin: 0 0 1rem; color: #bcbccf; } .section p b { font-weight: 900; } .section p i { font-weight: 300; font-style: italic; } .section extra{ font-size: 20px; margin: 0 0 1rem; color: #bcbccf; } .section h2 { font-size: 35px; font-weight: 750; margin: .25rem 0 auto; text-decoration: none; color: inherit; border: 0; display: inline-block; cursor: pointer; } .section h2:hover { background: var(--hover-gradient); text-shadow: none; -webkit-text-fill-color: transparent; -webkit-background-clip: text; background-clip: text; } .section img { width: 100%; display: inline; padding: 20px; border-radius: 40px; margin: 0 auto; } .section iframe { width: 100%; display: inline; height: 265px; padding: 20px; border-radius: 40px; margin: 0 auto; } .section img:hover { transform: translateZ(400px); break-inside: avoid; break-before: avoid; break-after: avoid; } .section iframe:hover { transform: translateZ(400px); break-inside: avoid; break-before: avoid; break-after: avoid; } /*TODO: Temporary fix for these images*/ .section div img { width: 49%; float: left; display: block; alignment: center; } .section big-bottom { } .section.bigtitle { padding: 0; } .section.bigtitle-title { color: white; background-color: var(--red); margin-bottom: 10px; } .section.bigbottom-link { background-color: var(--green); color: white; } .profile { width: 80%; border-radius: 50%; margin-bottom: 10px; } space { padding: var(--size, 10px); color: transparent; background: transparent; display: block; align-items: center; justify-content: center; } @media (min-width: 620px) { .options-link { font-size: 1.4em; } } .section:hover { transform: scale(1.1) translateZ(400px); box-shadow: -1rem 0 3rem #000; break-inside: avoid; break-before: avoid; break-after: avoid; } .section:hover extra{ display: inline; } .section extra { display: none; } .section audio { background: var(--card-bg); color: var(--text-normal); display: block; width: 80%; margin-left: 10%; margin-top: 20px; margin-bottom: 20px; alignment: center; } .section experience{ border-top-color: #3498db; } .fa { padding: 20px; font-size: 30px; width: 50px; text-align: center; text-decoration: none; background: rgba(0,0,0,0); color: white; } /* Add a hover effect if you want */ .fa:hover { opacity: 0.7; } printonly { display: none; } @media print { .section img { width: 30%; display: none; padding: 20px; border-radius: 40px; margin: 0 auto; } .section iframe { width: 30%; display: none; padding: 20px; border-radius: 40px; margin: 0 auto; } /*TODO: This is ratchet*/ .section div img { display: none; } .section extra { display: inline; } printonly { display: inline; } .fa { display: none; } } @media (min-width: 850px) { main { column-count: 2; column-gap: 20px; padding: 60px; } section { break-inside: avoid; page-break-inside: avoid; -webkit-column-break-inside: avoid; } } @media (min-width: 1280px) { main { column-count: 3; padding: 60px; } section { break-inside: avoid; page-break-inside: avoid; -webkit-column-break-inside: avoid; } } /*for phones to not have too much padding on the sides*/ @media (max-width: 600px){ main { column-count: 0; padding: 60px; } main h1{ font-size: max(15vw, 20pt); } main{ padding: 20px; } canvas{ display: none; } .section:hover { transform: scale(1.05) translateZ(400px); } } subtle{ opacity: 0.6; color: darkslategray; alignment: center; } /*The below is questionable*/ .submit-your-work{ } .submit-your-work:hover{ transform: scale(1.3) translateZ(400px); } .submit-your-work h2{ font-size: 50pt; font-weight: 800; } .submit-your-work a-container{ color: var(--text-normal); padding: 15px; display: block; font-size: 22pt; font-weight: 850; border-radius: 15px; background: var(--card-bg); } .a-container a{ color: var(--text-normal); display: flow; } .submit-your-work a:hover { background: var(--hover-gradient); text-shadow: none; -webkit-text-fill-color: transparent; -webkit-background-clip: text; background-clip: text; } /*The above is questionable */ @media (max-height: 4in){ .main{ padding-right: 100px; padding-top: 0; padding-bottom: 0; margin-right: 100px; width: 166.666666667vw; position: page; padding-left: 0; margin-left: 0; transform: scale(0.6) translateX(-55vw); } .info-link{ position: sticky; bottom: 0; padding-bottom: 0; } } .submit-your-work{ display: none; } body{ max-width: none; } .main { display: flex; max-width: none; overflow-x: scroll; padding: 8rem; } .titles{ background: rgba(0,0,0,0); backdrop-filter: none; -webkit-backdrop-filter: none; position: relative; padding-bottom: 0; font-size: max(1.3em, 15px); } .space{ display: none; padding: 0; } .main h1 { margin: 10px; z-index: -1; display: none; break-inside: avoid; } .main::-webkit-scrollbar { width: 10px; height: 10px; } .main::-webkit-scrollbar-thumb { background: var(--hover-gradient); border-radius: 10px; box-shadow: inset 2px 2px 2px hsla(0,0%,100%,.25), inset -2px -2px 2px rgba(0,0,0,.25); } .main::-webkit-scrollbar-track { background: white; } .section { height: 470px; width: 350px; min-width: 300px; padding: 1.5rem; border-radius: 16px; background: rgba(23,20,29,1); display: flex; flex-direction: column; transition: .2s; margin: -60px; scroll-snap-align: start; clear: both; position: relative; child-align: top; } .section img { width: 100%; height: auto; padding: 0; border-radius: 5px; } /* if backdrop support: very transparent and blurred */ @supports ((-webkit-backdrop-filter: blur(2px)) or (backdrop-filter: blur(2px))) { .section { background: rgba(23,20,29,0.9); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); } } .info-link{ position: sticky; bottom: 0; padding-bottom: 0; } .info-links{ position: sticky; bottom: 0; } .info-links info-link{ display: block; position: relative; } .section p { max-height: 30%; padding: 5px; overflow-x: hidden; } .section p::-webkit-scrollbar { width: 10px; height: 10px; } .section p::-webkit-scrollbar-thumb { background: #201c29; border-radius: 10px; box-shadow: inset 2px 2px 2px hsla(0,0%,100%,.25), inset -2px -2px 2px rgba(0,0,0,.25); } .section p::-webkit-scrollbar-track { background: linear-gradient(90deg,#201c29,#201c29 1px,#17141d 0,#17141d); } .section:focus-within~.section, .section:hover~.section { transform: translateX(130px); } .section:hover { transform: translateY(-1rem); box-shadow: -1rem 0 3rem #000; }
css/cardview.css
@import url("https://use.typekit.net/kyz0ydh.css"); /* styles */ :root { --blue: #34495e; --green: #e74c3c; --yellow: #C9C243; --orange: #FFA644; --red: #3498db; --card-bg:#17141d; --text-normal:white; --hover-gradient:linear-gradient(90deg,#ff8a00,#e52e71); } body { background: none; font-family: bebas-neue-pro, sans-serif; color: #34495e; } main { max-width: 1850px; margin: auto; padding: 60px; height: 100%; } main h1 { display:flex; column-span:all; padding-bottom: 20px; padding-top: 30px; } header { max-width: 1200px; margin: 0 auto; padding: 20px 20px 0; } .title { font-size: 2.6em; text-align: center; color: white; margin-bottom: 20px } .figure-img { display: block; width: 100%; object: fit; } h1 { font-size: 5rem; font-weight: 1000; max-width: 1730px; margin: auto; height: 100%; } h2 { font-size: 1.4em; padding: 10px; } p { margin-bottom: 1em; padding: 0 10px; } .info-link { text-decoration: none; color: var(--green); padding: 10px; display: block; } .options { display: flex; align-items: center; justify-content: space-around; padding: 10px; border-top: 3px solid var(--red); border-radius: 3px; background-color: white; } .options-link { text-decoration: none; font-size: 0.9em; color: var(--red); } section { border-radius: 16px; background: var(--card-bg); /*box-shadow: -1rem 0 3rem #000;*/ transition: .2s; margin-bottom: 20px; overflow: hidden; } .section p { font-size: 20px; margin: 0 0 1rem; color: #bcbccf; } .section p b { font-weight: 900; } .section p i { font-weight: 300; font-style: italic; } .section extra{ font-size: 20px; margin: 0 0 1rem; color: #bcbccf; } .section h2 { font-size: 35px; font-weight: 750; margin: .25rem 0 auto; text-decoration: none; color: inherit; border: 0; display: inline-block; cursor: pointer; } .section h2:hover { background: var(--hover-gradient); text-shadow: none; -webkit-text-fill-color: transparent; -webkit-background-clip: text; background-clip: text; } .section img { width: 100%; display: inline; padding: 20px; border-radius: 40px; margin: 0 auto; } .section iframe { width: 100%; display: inline; height: 265px; padding: 20px; border-radius: 40px; margin: 0 auto; } .section img:hover { transform: translateZ(400px); break-inside: avoid; break-before: avoid; break-after: avoid; } .section iframe:hover { transform: translateZ(400px); break-inside: avoid; break-before: avoid; break-after: avoid; } /*TODO: Temporary fix for these images*/ .section div img { width: 49%; float: left; display: block; alignment: center; } .section big-bottom { } .section.bigtitle { padding: 0; } .section.bigtitle-title { color: white; background-color: var(--red); margin-bottom: 10px; } .section.bigbottom-link { background-color: var(--green); color: white; } .profile { width: 80%; border-radius: 50%; margin-bottom: 10px; } space { padding: var(--size, 10px); color: transparent; background: transparent; display: block; align-items: center; justify-content: center; } @media (min-width: 620px) { .options-link { font-size: 1.4em; } } .section:hover { transform: scale(1.1) translateZ(400px); box-shadow: -1rem 0 3rem #000; break-inside: avoid; break-before: avoid; break-after: avoid; } .section:hover extra{ display: inline; } .section extra { display: none; } .section audio { background: var(--card-bg); color: var(--text-normal); display: block; width: 80%; margin-left: 10%; margin-top: 20px; margin-bottom: 20px; alignment: center; } .section experience{ border-top-color: #3498db; } .fa { padding: 20px; font-size: 30px; width: 50px; text-align: center; text-decoration: none; background: rgba(0,0,0,0); color: white; } /* Add a hover effect if you want */ .fa:hover { opacity: 0.7; } printonly { display: none; } @media print { .section img { width: 30%; display: none; padding: 20px; border-radius: 40px; margin: 0 auto; } .section iframe { width: 30%; display: none; padding: 20px; border-radius: 40px; margin: 0 auto; } /*TODO: This is ratchet*/ .section div img { display: none; } .section extra { display: inline; } printonly { display: inline; } .fa { display: none; } } @media (min-width: 850px) { main { column-count: 2; column-gap: 20px; padding: 60px; } section { break-inside: avoid; page-break-inside: avoid; -webkit-column-break-inside: avoid; } } @media (min-width: 1280px) { main { column-count: 3; padding: 60px; } section { break-inside: avoid; page-break-inside: avoid; -webkit-column-break-inside: avoid; } } /*for phones to not have too much padding on the sides*/ @media (max-width: 600px){ main { column-count: 0; padding: 60px; } main h1{ font-size: max(15vw, 20pt); } main{ padding: 20px; } canvas{ display: none; } .section:hover { transform: scale(1.05) translateZ(400px); } } subtle{ opacity: 0.6; color: darkslategray; alignment: center; } /*The below is questionable*/ .submit-your-work{ } .submit-your-work:hover{ transform: scale(1.3) translateZ(400px); } .submit-your-work h2{ font-size: 50pt; font-weight: 800; } .submit-your-work a-container{ color: var(--text-normal); padding: 15px; display: block; font-size: 22pt; font-weight: 850; border-radius: 15px; background: var(--card-bg); } .a-container a{ color: var(--text-normal); display: flow; } .submit-your-work a:hover { background: var(--hover-gradient); text-shadow: none; -webkit-text-fill-color: transparent; -webkit-background-clip: text; background-clip: text; } /*The above is questionable */ @media (max-height: 4in){ .main{ padding-right: 100px; padding-top: 0; padding-bottom: 0; margin-right: 100px; width: 166.666666667vw; position: page; padding-left: 0; margin-left: 0; transform: scale(0.6) translateX(-55vw); } .info-link{ position: sticky; bottom: 0; padding-bottom: 0; } } .submit-your-work{ display: none; } body{ max-width: none; } .main { display: flex; max-width: none; overflow-x: scroll; padding: 8rem; } .titles{ background: rgba(0,0,0,0); backdrop-filter: none; -webkit-backdrop-filter: none; position: relative; padding-bottom: 0; font-size: max(1.3em, 15px); } .space{ display: none; padding: 0; } .main h1 { margin: 10px; z-index: -1; display: none; break-inside: avoid; } .main::-webkit-scrollbar { width: 10px; height: 10px; } .main::-webkit-scrollbar-thumb { background: var(--hover-gradient); border-radius: 10px; box-shadow: inset 2px 2px 2px hsla(0,0%,100%,.25), inset -2px -2px 2px rgba(0,0,0,.25); } .main::-webkit-scrollbar-track { background: white; } .section { height: 470px; width: 350px; min-width: 300px; padding: 1.5rem; border-radius: 16px; background: rgba(23,20,29,1); display: flex; flex-direction: column; transition: .2s; margin: -60px; scroll-snap-align: start; clear: both; position: relative; child-align: top; } .section img { width: 100%; height: auto; padding: 0; border-radius: 5px; } /* if backdrop support: very transparent and blurred */ @supports ((-webkit-backdrop-filter: blur(2px)) or (backdrop-filter: blur(2px))) { .section { background: rgba(23,20,29,0.9); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); } } .info-link{ position: sticky; bottom: 0; padding-bottom: 0; } .info-links{ position: sticky; bottom: 0; } .info-links info-link{ display: block; position: relative; } .section p { max-height: 30%; padding: 5px; overflow-x: hidden; } .section p::-webkit-scrollbar { width: 10px; height: 10px; } .section p::-webkit-scrollbar-thumb { background: #201c29; border-radius: 10px; box-shadow: inset 2px 2px 2px hsla(0,0%,100%,.25), inset -2px -2px 2px rgba(0,0,0,.25); } .section p::-webkit-scrollbar-track { background: linear-gradient(90deg,#201c29,#201c29 1px,#17141d 0,#17141d); } .section:focus-within~.section, .section:hover~.section { transform: translateX(130px); } .section:hover { transform: translateY(-1rem); box-shadow: -1rem 0 3rem #000; }
0.254046
0.089216
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; } *, *::before, *::after { -webkit-box-sizing: border-box; box-sizing: border-box; } body, html { font-size: 14px; height: 100%; min-height: 100%; position: relative; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; } .security-header { background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f7f7f7)); background: linear-gradient(to bottom, #ffffff, #f7f7f7); text-align: center; } .security-header .wrapper { padding: 162px 20px 76px; max-width: 1040px; margin: 0 auto; position: relative; } .security-header .logo { position: absolute; left: 20px; top: 30px; } .security-header h1 { font-size: 2.85714rem; font-weight: normal; font-style: normal; font-stretch: normal; line-height: 1.17; color: #4c4c4c; margin-bottom: 12px; } .security-header .subtitle { font-size: 1.35714rem; font-weight: normal; font-style: normal; font-stretch: normal; line-height: 1.47; text-align: center; color: #8f8f8f; width: 100%; max-width: 550px; margin: 0 auto; display: block; } @media screen and (max-width: 768px) { .security-header { padding: 0; } .security-header .wrapper { padding: 120px 20px 70px; } .security-header .logo { max-width: 100px; } .security-header h1 { font-size: 2rem; margin-bottom: 7px; } .security-header .subtitle { font-size: 1.28571rem; } .security-header .button { margin-top: 20px; } } .security-content { padding: 100px 0 160px; } .security-content .wrapper { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: start; -ms-flex-align: start; align-items: flex-start; padding: 0 20px; max-width: 1040px; margin: 0 auto; } .security-content .left { max-width: 300px; -webkit-box-flex: 0; -ms-flex: none; flex: none; position: -webkit-sticky; position: sticky; top: 100px; } .security-content .left .table-of-contents { padding: 20px; border: 1px solid #e8edf2; font-size: 0.875rem; border-radius: 4px; overflow: auto; height: calc(100vh - 120px); max-height: -webkit-fit-content; max-height: -moz-fit-content; max-height: fit-content; } .security-content .left .table-of-contents h4 { text-transform: uppercase; color: #474747; line-height: 1.4; font-weight: 600; padding-bottom: 8px; font-size: 1rem; } .security-content .left .table-of-contents ul li { margin-top: 15px; } .security-content .left .table-of-contents ul li.active a { color: var(--global-color); } .security-content .left .table-of-contents ul li.active a::before { border-color: var(--global-color); } .security-content .left .table-of-contents ul li a { color: #878787; position: relative; padding-left: 20px; display: inline-block; line-height: 1.4; text-decoration: none; font-size: 1rem; -webkit-transition: .2s ease; transition: .2s ease; } .security-content .left .table-of-contents ul li a:hover { color: var(--global-color); } .security-content .left .table-of-contents ul li a:hover::before { border-color: var(--global-color); } .security-content .left .table-of-contents ul li a::before { content: ' '; display: block; width: 6px; height: 6px; border: 2px solid #dedede; border-radius: 50%; position: absolute; left: 0; top: 6px; -webkit-box-sizing: content-box; box-sizing: content-box; } .security-content .right { padding-left: 40px; } .security-content .right h2 { font-size: 2rem; line-height: 1.4; color: #333538; font-weight: 600; } .security-content .right * + h2 { margin-top: 35px; } .security-content .right h3 { font-size: 1.28571rem; line-height: 1.4; color: #333538; font-weight: 600; margin-top: 25px; } .security-content .right a { color: var(--global-color); text-decoration: none; } .security-content .right a:hover { text-decoration: underline; } .security-content .right p { margin-top: 15px; color: #757575; font-size: 1.14286rem; line-height: 27px; } .security-content .right strong { font-weight: bold; } .security-content .right ul { display: block; } .security-content .right ul li { color: #757575; font-size: 1.14286rem; line-height: 27px; padding-left: 28px; position: relative; margin-top: 15px; display: block; } .security-content .right ul li::before { content: ' '; display: block; background: #dadada; width: 6px; height: 6px; border-radius: 50%; position: absolute; left: 0; top: 10px; } @media screen and (max-width: 768px) { .security-content { padding: 40px 0 160px; } .security-content .wrapper { display: block; } .security-content .left { display: none; } .security-content .right { float: none; width: 100%; max-width: 100%; padding: 0; } } .security-footer { background-color: #f9f9f9; padding: 80px 0; } .security-footer .wrapper { padding: 0 20px; max-width: 1040px; margin: 0 auto; position: relative; text-align: center; font-size: 1rem; color: #717171; }
docs/css/style.css
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, 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; } *, *::before, *::after { -webkit-box-sizing: border-box; box-sizing: border-box; } body, html { font-size: 14px; height: 100%; min-height: 100%; position: relative; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; } .security-header { background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f7f7f7)); background: linear-gradient(to bottom, #ffffff, #f7f7f7); text-align: center; } .security-header .wrapper { padding: 162px 20px 76px; max-width: 1040px; margin: 0 auto; position: relative; } .security-header .logo { position: absolute; left: 20px; top: 30px; } .security-header h1 { font-size: 2.85714rem; font-weight: normal; font-style: normal; font-stretch: normal; line-height: 1.17; color: #4c4c4c; margin-bottom: 12px; } .security-header .subtitle { font-size: 1.35714rem; font-weight: normal; font-style: normal; font-stretch: normal; line-height: 1.47; text-align: center; color: #8f8f8f; width: 100%; max-width: 550px; margin: 0 auto; display: block; } @media screen and (max-width: 768px) { .security-header { padding: 0; } .security-header .wrapper { padding: 120px 20px 70px; } .security-header .logo { max-width: 100px; } .security-header h1 { font-size: 2rem; margin-bottom: 7px; } .security-header .subtitle { font-size: 1.28571rem; } .security-header .button { margin-top: 20px; } } .security-content { padding: 100px 0 160px; } .security-content .wrapper { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: start; -ms-flex-align: start; align-items: flex-start; padding: 0 20px; max-width: 1040px; margin: 0 auto; } .security-content .left { max-width: 300px; -webkit-box-flex: 0; -ms-flex: none; flex: none; position: -webkit-sticky; position: sticky; top: 100px; } .security-content .left .table-of-contents { padding: 20px; border: 1px solid #e8edf2; font-size: 0.875rem; border-radius: 4px; overflow: auto; height: calc(100vh - 120px); max-height: -webkit-fit-content; max-height: -moz-fit-content; max-height: fit-content; } .security-content .left .table-of-contents h4 { text-transform: uppercase; color: #474747; line-height: 1.4; font-weight: 600; padding-bottom: 8px; font-size: 1rem; } .security-content .left .table-of-contents ul li { margin-top: 15px; } .security-content .left .table-of-contents ul li.active a { color: var(--global-color); } .security-content .left .table-of-contents ul li.active a::before { border-color: var(--global-color); } .security-content .left .table-of-contents ul li a { color: #878787; position: relative; padding-left: 20px; display: inline-block; line-height: 1.4; text-decoration: none; font-size: 1rem; -webkit-transition: .2s ease; transition: .2s ease; } .security-content .left .table-of-contents ul li a:hover { color: var(--global-color); } .security-content .left .table-of-contents ul li a:hover::before { border-color: var(--global-color); } .security-content .left .table-of-contents ul li a::before { content: ' '; display: block; width: 6px; height: 6px; border: 2px solid #dedede; border-radius: 50%; position: absolute; left: 0; top: 6px; -webkit-box-sizing: content-box; box-sizing: content-box; } .security-content .right { padding-left: 40px; } .security-content .right h2 { font-size: 2rem; line-height: 1.4; color: #333538; font-weight: 600; } .security-content .right * + h2 { margin-top: 35px; } .security-content .right h3 { font-size: 1.28571rem; line-height: 1.4; color: #333538; font-weight: 600; margin-top: 25px; } .security-content .right a { color: var(--global-color); text-decoration: none; } .security-content .right a:hover { text-decoration: underline; } .security-content .right p { margin-top: 15px; color: #757575; font-size: 1.14286rem; line-height: 27px; } .security-content .right strong { font-weight: bold; } .security-content .right ul { display: block; } .security-content .right ul li { color: #757575; font-size: 1.14286rem; line-height: 27px; padding-left: 28px; position: relative; margin-top: 15px; display: block; } .security-content .right ul li::before { content: ' '; display: block; background: #dadada; width: 6px; height: 6px; border-radius: 50%; position: absolute; left: 0; top: 10px; } @media screen and (max-width: 768px) { .security-content { padding: 40px 0 160px; } .security-content .wrapper { display: block; } .security-content .left { display: none; } .security-content .right { float: none; width: 100%; max-width: 100%; padding: 0; } } .security-footer { background-color: #f9f9f9; padding: 80px 0; } .security-footer .wrapper { padding: 0 20px; max-width: 1040px; margin: 0 auto; position: relative; text-align: center; font-size: 1rem; color: #717171; }
0.387343
0.067087
* { margin: 0; padding: 0; } body { background-size: 100%; display: grid; font-family: 'Source Sans Pro', sans-serif; grid-template-rows: 7(1fr); height: 100vh; width: 99vw; } /* MENU */ .dropMenu { font-size: 1.3em; list-style: none; text-align: center; } .menu li { display: inline-block; padding: 2% 2%; } .menu a { color: black; text-decoration: none; font-weight: bolder; } .menu a:hover { color: #0096C7; } .menu li:hover { transform: scale(1.2); } /* BOTÃO ACESSIBILIDADE */ .imgZoom { position: fixed; top: 5px; left: 10px; } .imgZoom img:hover { transform: scale(1.2); } /* LOGOTIPO */ .imgLogo { position: relative; } .imgLogo img { position: absolute; bottom: 0; right: 10px; width: 90px; } /* SECTION IMG INICIAL */ #covidVac { width: 100%; } /* SECTION PROTOCOLO DE PREVENÇÃO */ .boxProtocolo { display: flex; margin-left: 15%; flex-wrap: wrap; } .titulo { text-align: center; padding: 2% 0; } h2 { font-size: 2em; padding: 1% 0; text-align: center; } .box1, .box2, .box3, .box4, .box5, .box6 { background-color: #CAF0F8; border-radius: 10%; margin: 1% 2%; text-align: center; padding: 2%; height: 19em; width: 15em; } p { font-size: 1.3em; } #imgMao, #imgMascara, #imgCasa, #imgDistancia, #imgBoca, #imgFebre { padding: 5% 0; } /* SECTION VACINAS APROVADAS */ .infoVac { display: flex; padding-top: 5%; padding-bottom: 2%; } .imgVacina { margin-left: 5%; padding-right: 2%; } .infoConteudo p { background-color: #90E0EF; border-radius: 20px; padding: 0 5% 5% 5%; line-height: 1.5; white-space: pre-wrap; } .infoConteudo h1 { text-align: center; font-size: 2.5em; margin-top: 3%; margin-bottom: 3%; } .infoConteudo { margin-right: 3%; } /* SECTION CAMPVAC CAROUSEL IMAGENS */ .campVac img { width: 50%; } button { border: none; background-color: white; padding: 20px 30px; } button:hover { background-color: #e0e0e0; } .divSlider, .botoesImgCampanha { text-align: center; } .divSlider img { border-radius: 5%; } /* SECTION DUVIDAS FREQUENTES */ .duvidas { display: flex; padding: 3%; } .duvidas img { width: 300px; } .divTabs h2 { padding-bottom: 3%; } .divTabs p { /* justify-content: left; */ } #tabs p { text-align: justify; } .divTabs { padding-left: 3%; } /* BOTAO ANCORA */ .btnAncora { position: fixed; bottom: 0px; right: 0px; } /* FOOTER */ footer { background-color: #0096C7; padding-top: 3%; } .imgRedes { margin-right: 6%; float: right; } .imgRedes img:hover { transform: scale(1.2); } .imgRedes img { padding: 0 1px; } .divImgRelogio { position: relative; } .divImgRelogio img { position: absolute; left: 1%; } .divImgRelogio p { position: absolute; left: 5%; }
JQUERY/Projeto Covid/css/index.css
* { margin: 0; padding: 0; } body { background-size: 100%; display: grid; font-family: 'Source Sans Pro', sans-serif; grid-template-rows: 7(1fr); height: 100vh; width: 99vw; } /* MENU */ .dropMenu { font-size: 1.3em; list-style: none; text-align: center; } .menu li { display: inline-block; padding: 2% 2%; } .menu a { color: black; text-decoration: none; font-weight: bolder; } .menu a:hover { color: #0096C7; } .menu li:hover { transform: scale(1.2); } /* BOTÃO ACESSIBILIDADE */ .imgZoom { position: fixed; top: 5px; left: 10px; } .imgZoom img:hover { transform: scale(1.2); } /* LOGOTIPO */ .imgLogo { position: relative; } .imgLogo img { position: absolute; bottom: 0; right: 10px; width: 90px; } /* SECTION IMG INICIAL */ #covidVac { width: 100%; } /* SECTION PROTOCOLO DE PREVENÇÃO */ .boxProtocolo { display: flex; margin-left: 15%; flex-wrap: wrap; } .titulo { text-align: center; padding: 2% 0; } h2 { font-size: 2em; padding: 1% 0; text-align: center; } .box1, .box2, .box3, .box4, .box5, .box6 { background-color: #CAF0F8; border-radius: 10%; margin: 1% 2%; text-align: center; padding: 2%; height: 19em; width: 15em; } p { font-size: 1.3em; } #imgMao, #imgMascara, #imgCasa, #imgDistancia, #imgBoca, #imgFebre { padding: 5% 0; } /* SECTION VACINAS APROVADAS */ .infoVac { display: flex; padding-top: 5%; padding-bottom: 2%; } .imgVacina { margin-left: 5%; padding-right: 2%; } .infoConteudo p { background-color: #90E0EF; border-radius: 20px; padding: 0 5% 5% 5%; line-height: 1.5; white-space: pre-wrap; } .infoConteudo h1 { text-align: center; font-size: 2.5em; margin-top: 3%; margin-bottom: 3%; } .infoConteudo { margin-right: 3%; } /* SECTION CAMPVAC CAROUSEL IMAGENS */ .campVac img { width: 50%; } button { border: none; background-color: white; padding: 20px 30px; } button:hover { background-color: #e0e0e0; } .divSlider, .botoesImgCampanha { text-align: center; } .divSlider img { border-radius: 5%; } /* SECTION DUVIDAS FREQUENTES */ .duvidas { display: flex; padding: 3%; } .duvidas img { width: 300px; } .divTabs h2 { padding-bottom: 3%; } .divTabs p { /* justify-content: left; */ } #tabs p { text-align: justify; } .divTabs { padding-left: 3%; } /* BOTAO ANCORA */ .btnAncora { position: fixed; bottom: 0px; right: 0px; } /* FOOTER */ footer { background-color: #0096C7; padding-top: 3%; } .imgRedes { margin-right: 6%; float: right; } .imgRedes img:hover { transform: scale(1.2); } .imgRedes img { padding: 0 1px; } .divImgRelogio { position: relative; } .divImgRelogio img { position: absolute; left: 1%; } .divImgRelogio p { position: absolute; left: 5%; }
0.428114
0.132038
.main-div{ display: flex; margin: 0 1rem; height: auto; justify-content: center; } .proj-description { margin-right: 1rem; } .proj-description > span{ color: #1c2b40; font-weight: 600; font-size: 1.3125rem; } .separator{ border-left: 3px solid #e5e5e5; margin: 2em 0; padding-right: 2em; } .heading{ color: #1c2b40; font-weight: 600; font-size: 0.875rem } .label-name{ display: flex; flex-direction: column; } .data-types{ display: grid; grid-template-columns: repeat(3, 1fr); grid-gap: 1em; margin-top: 1em } .data-types > div{ background-color: #e5e5e5; max-width: 14em; border-radius: 6px; max-height: 3em; } .form-controls{ display: flex; margin-top: 1em; } .visibility-msg{ color: #919191; padding-left: 2.5em } .readME{ margin-top: 1em; } .readme-msg{ color: #919191; padding-left: 2.5em; margin: 0; } .customize{ width: 180px; top: 16em; right: 44.5em; z-index: 10; } .text-input { max-width: 40ch; } .text-input:focus { -webkit-box-shadow: 0 0 10px #99ddff; box-shadow: 0 0 8px #99ddff; } .proj-desc-textarea{ overflow: auto; margin: 0.5rem 0 2rem; padding: 6px 10px; width: 100%; border: 1px solid #dfdfdf; border-radius: 4px; transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; background-clip: padding-box; } .proj-desc-textarea:focus{ -webkit-box-shadow: 0 0 10px #99ddff; box-shadow: 0 0 8px #99ddff; } .create-project .form-control { border-left: solid 1px var(--secondary); } #visibility-icon{ width: 1em; margin-left: 0; margin-right: 4px; } #nameSpace{ min-width: 160px !important; padding-top: 0.4em !important; padding-bottom: 0.2em !important; } .data-types-container { display: flex; flex-wrap: wrap; margin-bottom: 2rem; } .data-types-sec { display: flex; flex-direction: column; flex: 0 0 100%; max-width: 220px; } .data-types-sec div { padding: 0.1rem 1rem; padding-left: 0; margin: 0.3rem; background-color: var(--light); } .data-type-disabled { margin: 0.5rem 0; color: var(--secondary); } .create-project-url-container { display: flex; flex-wrap: wrap; }
web/src/components/views/CreateProject/createProject.css
.main-div{ display: flex; margin: 0 1rem; height: auto; justify-content: center; } .proj-description { margin-right: 1rem; } .proj-description > span{ color: #1c2b40; font-weight: 600; font-size: 1.3125rem; } .separator{ border-left: 3px solid #e5e5e5; margin: 2em 0; padding-right: 2em; } .heading{ color: #1c2b40; font-weight: 600; font-size: 0.875rem } .label-name{ display: flex; flex-direction: column; } .data-types{ display: grid; grid-template-columns: repeat(3, 1fr); grid-gap: 1em; margin-top: 1em } .data-types > div{ background-color: #e5e5e5; max-width: 14em; border-radius: 6px; max-height: 3em; } .form-controls{ display: flex; margin-top: 1em; } .visibility-msg{ color: #919191; padding-left: 2.5em } .readME{ margin-top: 1em; } .readme-msg{ color: #919191; padding-left: 2.5em; margin: 0; } .customize{ width: 180px; top: 16em; right: 44.5em; z-index: 10; } .text-input { max-width: 40ch; } .text-input:focus { -webkit-box-shadow: 0 0 10px #99ddff; box-shadow: 0 0 8px #99ddff; } .proj-desc-textarea{ overflow: auto; margin: 0.5rem 0 2rem; padding: 6px 10px; width: 100%; border: 1px solid #dfdfdf; border-radius: 4px; transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; background-clip: padding-box; } .proj-desc-textarea:focus{ -webkit-box-shadow: 0 0 10px #99ddff; box-shadow: 0 0 8px #99ddff; } .create-project .form-control { border-left: solid 1px var(--secondary); } #visibility-icon{ width: 1em; margin-left: 0; margin-right: 4px; } #nameSpace{ min-width: 160px !important; padding-top: 0.4em !important; padding-bottom: 0.2em !important; } .data-types-container { display: flex; flex-wrap: wrap; margin-bottom: 2rem; } .data-types-sec { display: flex; flex-direction: column; flex: 0 0 100%; max-width: 220px; } .data-types-sec div { padding: 0.1rem 1rem; padding-left: 0; margin: 0.3rem; background-color: var(--light); } .data-type-disabled { margin: 0.5rem 0; color: var(--secondary); } .create-project-url-container { display: flex; flex-wrap: wrap; }
0.394434
0.137967
.sbox .txt,.sbox .selt .sval, .rbox .e strong,.rbox .e label,.rbox .e i, .xbox .face .name,.xbox .face .p,.xbox .face .icons, .xname span, .ibox .e .txt,.ibox .e label, .pname .txt,.pbox .e, .abox .aname{overflow:hidden;text-overflow:ellipsis;white-space:nowrap} /* .sbox .e.e_ta label,input[type="date"],input[type="month"],.xbox .face .icons,.abox .tab a{ -webkit-box-sizing:border-box; -moz-box-sizing:border-box; -o-box-sizing:border-box; -ms-box-sizing:border-box; box-sizing:border-box; } */ /*--简历修改--*/ .sec .face{ position:relative; min-height:82px; line-height:24px; padding:15px 120px 20px 22px; } .face .base_img{ position:absolute; top:50%;right:20px; transform:translateY(-50%); } .mess .base_name{ width:100%; height:24px; line-height:24px; font-size:16px; color:#ff7e3e; margin-bottom:5px; } .mess .base_name span{ position:relative; padding-right:30px; } .mess .base_name span:after{ position:absolute; content:""; width:20px;height:20px; right:0;top:0;background:url(../img/index/minggi/log/icons_4.png) -104px -102px no-repeat; background-size:135px auto} .mess .gender{ width:100%; height:24px; line-height:24px; font-size:13px; color:#333; margin-bottom:5px; } .mess .gender span{position:relative;float:left} .mess .gender span:nth-child(2){padding-left:0} .mess .base_adr,.mess .base_phone,.mess .base_state,.mess .base_bir{ position:relative; height:20px; line-height:20px; font-size:13px; color:#333; margin-bottom:6px; padding-left:20px; } .mess .info_icon:before{ position:absolute; width:20px; height:20px; content:"\00a0"; top:0;left:0; background:url(../img/index/minggi/log/icons_4.png) 0px 0px no-repeat; background-size:135px auto; } .mess .base_bir:before{background-position:-10px -102px} .mess .base_adr:before{background-position:-42px -102px} .mess .base_phone:before{background-position:-72px -102px} .base_info{padding:10px 20px 10px} .base_info .t{ position:relative; line-height:22px; font-size:13px; color:#333; margin-bottom:5px; padding-left:82px; } .base_info .t:last-child{margin-bottom:0} .base_info .t label{position:absolute;color:#727272;top:0;left:0px} .base_info .t div{max-width:100%;white-space:nowrap;text-overflow:ellipsis;overflow:hidden} .sec .job_exp{text-align:center;padding:12px 10px} .sec .job_exp a{ display:block; width:28%; height:30px; line-height:30px; font-size:13px; color:#ff7e3e; margin:0 auto 9px; border:1px solid #ff7e3e; border-radius:30px; } .sec .job_exp p{font-size:13px;color:#727272} .jobx{position:relative;padding:12px 10px} .jobx.bot{border-bottom:1px solid #e5e5e5} .jobx .lbar{padding-left:8px} .jobx .bn{position:relative;line-height:22px;;word-break:break-all;padding:0 0 10px} .jobx .bn.on{padding:0 90px 10px 21px} .jobx .bn .nt{position:absolute;width:120px;font-size:13px;color:#727272;text-align:right;right:0;top:0} .jobx .bn p:nth-child(n+2){padding-right:120px;margin:7px 0px} .jobx .bn p:nth-child(3){font-size:13px} .jobx .amend{position:absolute;width:90px;bottom:18px;right:0px} .jobx .amend i{ position:relative; float:left;width:44px; height:36px; line-height:68px; color:#ff7e3e; text-indent:0; text-align:center; } .jobx .amend i:first-child{border-right:1px solid #e5e5e5} .jobx .amend i:after{ position:absolute; width:20px; height:20px; content:"\00a0"; top:-4px; left:50%; margin-left:-10px; background:url(../img/index/minggi/log/icon2.png) -97px -165px no-repeat; background-size:429px auto; } .jobx .amend i:last-child:after{background-position:-121px -165px} /*--简历修改END--*/ /*简历头部*/ .main.po{padding-bottom:0} .top{ position:relative; height:45px; line-height:45px; text-align:center; font-size:16px; background-color:#fff; z-index:2; box-shadow:0 0 3px 2px #ccc } .top .back{ position:absolute; width:45px; height:45px;top:0;left:0;background:url(../img/index/minggi/log/arrow.png) center no-repeat; transform:rotate(180deg); background-size:10px auto; } /*简历列表*/ .speed{display:block;position:relative;padding:12px 15px;overflow:hidden} .speed:after{ position:absolute; width:100%;height:1px; content:"\00a0";bottom:0px; left:10px;background-color:#e5e5e5; } .speed.turn:before{ position:absolute; width:20px; height:32px; content:'\00a0'; top:0;right:8px;background:url(../img/index/minggi/log/icon1.png) -134px -8px no-repeat; background-size:342px auto } .speed p{position:relative;height:16px;line-height:16px;font-size:15px;color:#f87432;text-indent:6px} .speed .edit{ position:absolute; width:30px; height:40px; line-height:32px; color:#f66f17; top:0px;right:10px; background:url(../img/index/minggi/log/icon1.png) -124px -4px no-repeat; background-size:342px auto; } .sbox .e{ position:relative; display:block; min-height:32px; line-height:32px; color:#444; padding:8px 12px 8px 95px; background-color:#fff; } .sbox .upbox.e{padding:4px 12px 4px 95px} .sbox .must{ position:relative; min-height:32px; line-height:32px; color:#333; padding:8px 0 8px 47px; background-color:#fff; } .sbox .must:before{ position:absolute; width:24px; height:32px; content:"\00a0"; top:8px;left:21px; background:url(../img/index/minggi/log/icon2.png) -42px -14px no-repeat; background-size:429px auto; } .sbox .must span{font-size:12px;color:#ff6161} .sbox .imp .selt:after, .ibox .selt:after, .sbox .imp:after, .Fm .imp:before, .sbox a.imp:after{ position:absolute; width:20px;height:32px; content:'\00a0'; top:0px;top:50%; margin-top:-16px; right:11px; background:url(../img/index/minggi/log/icon1.png) -136px -8px no-repeat; background-size:342px auto; } .sbox a.auth:after{ position:absolute;width:20px; height:18px;content:'\00a0';top:50%; right:6px;margin-top:-9px; background:url(../img/index/minggi/log/bbs_icon.png) -4px -120px no-repeat; background-size:130px 180px} .sbox .e:before,.sbox .e.lb_w:after, .sbox .must:after,.Fm .must:after, .sec .must:after,.stit:before, .ibox .e:before,.ibox .e.lb_w:after, .sbox .custom.lb_w:before, .sbox .custom:after,.pbox .e:before{ position:absolute; height:0;content:'\00a0'; font-size:0;left:10px; right:0px;bottom:0; border-bottom:1px solid #f4f4f4; } .ibox .e:last-child:before{display:none} .sbox .e.pe,.sbox .e.imp{padding:8px 35px 8px 95px} .sbox .pe .mod{ position:absolute;height:20px; line-height:20px;font-size:12px; color:#f97432;text-align:center; top:14px;right:15px;padding:0 10px; background-color:#FFF; border:1px solid #f97432;z-index:2; border-radius:4px} .sbox .e.eb:before{display:block} .sbox .e.e2{padding-right:0} .sbox .e.long{padding-left:118px} .sbox .e.lb_w,.ibox .e.lb_w{margin-top:-1px;padding:8px 26px} .sbox .e.lb_w:after,.ibox .e.lb_w:after,.sbox .custom.lb_w:before{top:0;border-bottom-style:dashed} .sbox .e.e_ta{padding:0 11px 8px 11px} .sbox .e.e_ta label{position:relative;display:block;left:11px;margin-bottom:16px} .sbox .e.e_ta .error{line-height:30px} .sbox .e.e_ta .error:before{height:30px} .sbox .e.e_ini label{line-height:16px;top:8px} .sbox .e.e_ini i{display:block;font-size:12px;color:#868686} .sbox .e label{position:absolute;color:#727170;font-size:15px;text-align:left;left:21px;top:8px} .sbox .e label em{position:absolute;color:#ff6000;left:-8px;top:0} .sbox .e input[type="text"]{background-color:transparent} .sbox .e .birth_d{ float:left;width:90%; height:32px;line-height:32px; text-align:right;margin-top:3px; border:0 none;padding-right:20px;} .sbox .e .error{line-height:20px;font-size:12px;color:#F00;text-align:right} .sbox .e .error.m{position:relative;top:0;right:-20px} .sbox .e .error:before{ display:inline-block;width:15px; height:20px;content:'\00a0';margin-right:5px; background:url(../img/index/minggi/log/icon_a.png) -19px -76px no-repeat; background-size:40px auto} .sbox .txt{display:block;width:100%;height:32px;line-height:32px;color:#444;text-align:right} .sbox .sh .txt{padding-right:35px} .sbox .sh .cm{position:absolute;top:8px;right:12px;z-index:2} .sbox .authen{display:block;width:100%;height:32px;line-height:32px;color:#c7c7c7;text-align:right} .sbox .ptxa{height:130px;padding:6px 11px;background-color:#f6f6f6} .sbox .ptxa.noNum{height:110px} .sbox .ptxa textarea{ width:100%;height:110px;line-height:20px; font-size:12px;vertical-align:top;padding:0; background-color:transparent;border:none;} .sbox .ptxa .gray{line-height:20px;font-size:12px;text-align:right} .sbox .tbox{position:relative;min-height:32px;padding-right:60px} .sbox .tbox .wy{position:absolute;top:0;right:26px} .sbox .tbox .arr2{ position:absolute;width:12px;height:12px;top:50%;right:11px;margin-top:-6px; background:url(../img/index/minggi/log/arr2.png) center no-repeat; background-size:12px auto} .sbox .e.on .tbox .arr2{ transform:rotate(180deg)} .sbox .custom{position:relative;padding:0 11px;background-color:#fff} .sbox .custom:after{bottom:-1px;z-index:2} .sbox .custom.lb_w{margin-top:-1px} .sbox .custom.lb_w:before{top:-1px} .sbox .custom .e{padding-right:16px;background-color:#fff8ed} .sbox .custom .e label{left:11px} .sbox .custom .e:before{left:0;right:0} .sbox .custom .e.e_ta{padding:0} .sbox .custom .ptxa{border-top:1px solid #e6e6e6} .sbox .custom .tbox{padding-right:34px} .sbox .custom .tbox .wy{right:0} .sbox .custom .e.e_ta .error{right:16px} .sbox .custom .iptb{line-height:32px;text-align:right;padding:8px 15px;background-color:#fff8ed} .sbox .custom .iptb .error{line-height:20px;font-size:12px;color:#F00;text-align:right} .sbox .custom .iptb .error:before{ display:inline-block;width:15px; height:20px;content:'\00a0';margin-right:5px; background:url(../img/index/minggi/log/icon_err.png) center no-repeat; background-size:15px} .sbox .custom .slash{display:inline-block;padding:0 11px} .sbox .custom .ipt .txt{background-color:transparent} .sbox .custom .ipt{display:inline-block;width:60px;top:0} .sbox .custom .warn{ font-size:12px;color:#4c99ff;text-align:right; padding-right:16px;background-color:#ede8e1} .sbox .custom .warn:before{ display:inline-block;width:12px; height:100%;content:'\00a0';margin-right:5px; background:url(../img/index/minggi/log/icon_warn.png) center no-repeat; background-size:12px} .sbox .rdob{text-align:right} .sbox .rdo{position:relative;display:inline-block;height:22px;line-height:22px;padding-left:50px} .sbox .rdo:after{ position:absolute;width:22px;height:22px;left:20px;content:'\00a0'; background:url(../img/index/minggi/log/icon2.png) -116px -203px no-repeat; background-size:429px auto } .sbox .rdo.on:after{background-position:-93px -203px} .sbox .rdo.en:after{background-position:-50px 0} .pbox .e.off{color:#868686} .pbox .e.off:after{background-position:-50px 0} .sbox .selt .sval,.ibox .selt .sval{display:block;text-align:right} .sbox .selt select,.ibox .selt select,input[type="date"],input[type="month"]{ position:absolute;width:100%;height:100%; overflow:visible;top:0;left:0; opacity:0;border:0 none;z-index:2} input[type="date"],input[type="month"]{min-width:100%} .sbox .rt{float:right} .sbox .rt .selt,.sbox .rt .rdob{float:left} .sbox .rt .rdob{position:relative;margin-right:10px;z-index:3} .sbox .user:after{display:block;width:0;height:0;font-size:0;content:'\00a0';clear:both} .sbox .user label{top:12px} .sbox .user .cmax{position:absolute;width:100%;height:48px;top:0;right:0;opacity:0} .sbox .user .cmax input[type="file"]{width:100%;height:100%;vertical-align:top} .sbox .user .upimg{float:right;width:41px;height:40px} .sbox .c_default,.ibox .c_default{color:#999} .Fm .eval{padding:12px 21px;background-color:#fff} .Fm .eval .self{ width:100%;height:77px;line-height:18px; color:#333;word-break:break-all; resize:none;overflow-y:auto;padding:5px; border:1px solid #e5e5e5; border-radius:10px} /*--求职意向--*/ .myFm .fe{position:relative;overflow:hidden;margin-bottom:8px;background-color:#fff} .myFm .e{position:relative;display:block;min-height:45px;line-height:45px} .myFm .e:after{ position:absolute;width:100%; height:1px;content:' ';left:10px; bottom:0;background-color:#d4d4d4;z-index:5} .myFm .e:last-child:after{display:none} .myFm .fetitle{position:relative;height:38px;line-height:38px;text-indent:23px;border-bottom:1px solid #d4d4d4} .myFm .fetitle:before{ position:absolute;width:3px;height:14px; content:' ';left:15px;top:12px; background-color:#f66f17; border-radius:20px} .fbut{display:block;width:100%;height:40px;line-height:40px;font-size:15px;color:#f66f17;background-color:#fff} .fbtm{margin:20px 15px} .skip{text-align:center} .skip a{color:#55bbf1} .elswitch{position:absolute; width:46px;height:26px;top:50%; right:15px;margin-top:-15px; background-color:#fff;border:2px solid #e1e1e1; border-radius:20px; transition: all .3s ease} .elswitch:before{ position:absolute;width:26px;height:26px;content:' ';top:0;left:0;background-color:#fff; box-shadow:0 0 2px 1px #ccc; transition: all .3s ease} .elswitch.on{background-color:#f66f17;border-color:#f66f17} .elswitch.on:before{left:20px} .myFm .link{color:#333} .myFm .link:before,.myFm .select:after{ position:absolute;width:8px;height:13px;content:' ';right:15px;top:50%;margin-top:-6px; background:url(../img/index/minggi/log/icon_a.png) no-repeat 0 -20px; background-size:40px auto; } .myFm .linetitle,.myFm .mlinetitle,.myFm .tlinetitle{display:block;margin:0 34px 0 10px} .myFm .mlinetitle{margin-right:120px} .myFm .minfo{position:absolute;height:45px;overflow:hidden;top:0;right:34px;z-index:1} .myFm .minfo i{font-style:normal} .myFm .lnt{ position:absolute;width:100%;height:45px; text-align:right;overflow:hidden;top:0; left:0;padding-right:35px;z-index:1; } .myFm .tlinetitle{margin-right:10px} /*--base--*/ html{height:100%} body{height:100%;font-size:14px;font-family:"Microsoft YaHei";color:#333;background-color:#f8f8f8} /*--主要内容--*/ .main{position:relative;min-height:100%;padding-bottom:64px;background-color:#f5f5f5} .main .sec{margin-bottom:7px;background-color:#fff} .main .sec:last-child{margin-bottom:0} .main footer{ position:absolute; width:100%; line-height:16px; color:#969696; text-align:center; left:0; bottom:0px; padding:15px; z-index:1; } .main footer a{font-size:12px;color:#969696} /*分页头部*/ .head .goback:after{ position: absolute; content: ''; width: 20px; height: 20px; top: 50%; left: 0; margin-top: -10px; background: url(../img/index/minggi/log/icon2.png) -91px -272px; background-size: 429px auto; } /*导航*/ nav{height:44px; line-height:44px; color:#f97432; overflow:hidden; padding-left:10px; background-color:#fff; } nav a{color:#999} nav span{padding:0 8px}
public/css/resume.css
.sbox .txt,.sbox .selt .sval, .rbox .e strong,.rbox .e label,.rbox .e i, .xbox .face .name,.xbox .face .p,.xbox .face .icons, .xname span, .ibox .e .txt,.ibox .e label, .pname .txt,.pbox .e, .abox .aname{overflow:hidden;text-overflow:ellipsis;white-space:nowrap} /* .sbox .e.e_ta label,input[type="date"],input[type="month"],.xbox .face .icons,.abox .tab a{ -webkit-box-sizing:border-box; -moz-box-sizing:border-box; -o-box-sizing:border-box; -ms-box-sizing:border-box; box-sizing:border-box; } */ /*--简历修改--*/ .sec .face{ position:relative; min-height:82px; line-height:24px; padding:15px 120px 20px 22px; } .face .base_img{ position:absolute; top:50%;right:20px; transform:translateY(-50%); } .mess .base_name{ width:100%; height:24px; line-height:24px; font-size:16px; color:#ff7e3e; margin-bottom:5px; } .mess .base_name span{ position:relative; padding-right:30px; } .mess .base_name span:after{ position:absolute; content:""; width:20px;height:20px; right:0;top:0;background:url(../img/index/minggi/log/icons_4.png) -104px -102px no-repeat; background-size:135px auto} .mess .gender{ width:100%; height:24px; line-height:24px; font-size:13px; color:#333; margin-bottom:5px; } .mess .gender span{position:relative;float:left} .mess .gender span:nth-child(2){padding-left:0} .mess .base_adr,.mess .base_phone,.mess .base_state,.mess .base_bir{ position:relative; height:20px; line-height:20px; font-size:13px; color:#333; margin-bottom:6px; padding-left:20px; } .mess .info_icon:before{ position:absolute; width:20px; height:20px; content:"\00a0"; top:0;left:0; background:url(../img/index/minggi/log/icons_4.png) 0px 0px no-repeat; background-size:135px auto; } .mess .base_bir:before{background-position:-10px -102px} .mess .base_adr:before{background-position:-42px -102px} .mess .base_phone:before{background-position:-72px -102px} .base_info{padding:10px 20px 10px} .base_info .t{ position:relative; line-height:22px; font-size:13px; color:#333; margin-bottom:5px; padding-left:82px; } .base_info .t:last-child{margin-bottom:0} .base_info .t label{position:absolute;color:#727272;top:0;left:0px} .base_info .t div{max-width:100%;white-space:nowrap;text-overflow:ellipsis;overflow:hidden} .sec .job_exp{text-align:center;padding:12px 10px} .sec .job_exp a{ display:block; width:28%; height:30px; line-height:30px; font-size:13px; color:#ff7e3e; margin:0 auto 9px; border:1px solid #ff7e3e; border-radius:30px; } .sec .job_exp p{font-size:13px;color:#727272} .jobx{position:relative;padding:12px 10px} .jobx.bot{border-bottom:1px solid #e5e5e5} .jobx .lbar{padding-left:8px} .jobx .bn{position:relative;line-height:22px;;word-break:break-all;padding:0 0 10px} .jobx .bn.on{padding:0 90px 10px 21px} .jobx .bn .nt{position:absolute;width:120px;font-size:13px;color:#727272;text-align:right;right:0;top:0} .jobx .bn p:nth-child(n+2){padding-right:120px;margin:7px 0px} .jobx .bn p:nth-child(3){font-size:13px} .jobx .amend{position:absolute;width:90px;bottom:18px;right:0px} .jobx .amend i{ position:relative; float:left;width:44px; height:36px; line-height:68px; color:#ff7e3e; text-indent:0; text-align:center; } .jobx .amend i:first-child{border-right:1px solid #e5e5e5} .jobx .amend i:after{ position:absolute; width:20px; height:20px; content:"\00a0"; top:-4px; left:50%; margin-left:-10px; background:url(../img/index/minggi/log/icon2.png) -97px -165px no-repeat; background-size:429px auto; } .jobx .amend i:last-child:after{background-position:-121px -165px} /*--简历修改END--*/ /*简历头部*/ .main.po{padding-bottom:0} .top{ position:relative; height:45px; line-height:45px; text-align:center; font-size:16px; background-color:#fff; z-index:2; box-shadow:0 0 3px 2px #ccc } .top .back{ position:absolute; width:45px; height:45px;top:0;left:0;background:url(../img/index/minggi/log/arrow.png) center no-repeat; transform:rotate(180deg); background-size:10px auto; } /*简历列表*/ .speed{display:block;position:relative;padding:12px 15px;overflow:hidden} .speed:after{ position:absolute; width:100%;height:1px; content:"\00a0";bottom:0px; left:10px;background-color:#e5e5e5; } .speed.turn:before{ position:absolute; width:20px; height:32px; content:'\00a0'; top:0;right:8px;background:url(../img/index/minggi/log/icon1.png) -134px -8px no-repeat; background-size:342px auto } .speed p{position:relative;height:16px;line-height:16px;font-size:15px;color:#f87432;text-indent:6px} .speed .edit{ position:absolute; width:30px; height:40px; line-height:32px; color:#f66f17; top:0px;right:10px; background:url(../img/index/minggi/log/icon1.png) -124px -4px no-repeat; background-size:342px auto; } .sbox .e{ position:relative; display:block; min-height:32px; line-height:32px; color:#444; padding:8px 12px 8px 95px; background-color:#fff; } .sbox .upbox.e{padding:4px 12px 4px 95px} .sbox .must{ position:relative; min-height:32px; line-height:32px; color:#333; padding:8px 0 8px 47px; background-color:#fff; } .sbox .must:before{ position:absolute; width:24px; height:32px; content:"\00a0"; top:8px;left:21px; background:url(../img/index/minggi/log/icon2.png) -42px -14px no-repeat; background-size:429px auto; } .sbox .must span{font-size:12px;color:#ff6161} .sbox .imp .selt:after, .ibox .selt:after, .sbox .imp:after, .Fm .imp:before, .sbox a.imp:after{ position:absolute; width:20px;height:32px; content:'\00a0'; top:0px;top:50%; margin-top:-16px; right:11px; background:url(../img/index/minggi/log/icon1.png) -136px -8px no-repeat; background-size:342px auto; } .sbox a.auth:after{ position:absolute;width:20px; height:18px;content:'\00a0';top:50%; right:6px;margin-top:-9px; background:url(../img/index/minggi/log/bbs_icon.png) -4px -120px no-repeat; background-size:130px 180px} .sbox .e:before,.sbox .e.lb_w:after, .sbox .must:after,.Fm .must:after, .sec .must:after,.stit:before, .ibox .e:before,.ibox .e.lb_w:after, .sbox .custom.lb_w:before, .sbox .custom:after,.pbox .e:before{ position:absolute; height:0;content:'\00a0'; font-size:0;left:10px; right:0px;bottom:0; border-bottom:1px solid #f4f4f4; } .ibox .e:last-child:before{display:none} .sbox .e.pe,.sbox .e.imp{padding:8px 35px 8px 95px} .sbox .pe .mod{ position:absolute;height:20px; line-height:20px;font-size:12px; color:#f97432;text-align:center; top:14px;right:15px;padding:0 10px; background-color:#FFF; border:1px solid #f97432;z-index:2; border-radius:4px} .sbox .e.eb:before{display:block} .sbox .e.e2{padding-right:0} .sbox .e.long{padding-left:118px} .sbox .e.lb_w,.ibox .e.lb_w{margin-top:-1px;padding:8px 26px} .sbox .e.lb_w:after,.ibox .e.lb_w:after,.sbox .custom.lb_w:before{top:0;border-bottom-style:dashed} .sbox .e.e_ta{padding:0 11px 8px 11px} .sbox .e.e_ta label{position:relative;display:block;left:11px;margin-bottom:16px} .sbox .e.e_ta .error{line-height:30px} .sbox .e.e_ta .error:before{height:30px} .sbox .e.e_ini label{line-height:16px;top:8px} .sbox .e.e_ini i{display:block;font-size:12px;color:#868686} .sbox .e label{position:absolute;color:#727170;font-size:15px;text-align:left;left:21px;top:8px} .sbox .e label em{position:absolute;color:#ff6000;left:-8px;top:0} .sbox .e input[type="text"]{background-color:transparent} .sbox .e .birth_d{ float:left;width:90%; height:32px;line-height:32px; text-align:right;margin-top:3px; border:0 none;padding-right:20px;} .sbox .e .error{line-height:20px;font-size:12px;color:#F00;text-align:right} .sbox .e .error.m{position:relative;top:0;right:-20px} .sbox .e .error:before{ display:inline-block;width:15px; height:20px;content:'\00a0';margin-right:5px; background:url(../img/index/minggi/log/icon_a.png) -19px -76px no-repeat; background-size:40px auto} .sbox .txt{display:block;width:100%;height:32px;line-height:32px;color:#444;text-align:right} .sbox .sh .txt{padding-right:35px} .sbox .sh .cm{position:absolute;top:8px;right:12px;z-index:2} .sbox .authen{display:block;width:100%;height:32px;line-height:32px;color:#c7c7c7;text-align:right} .sbox .ptxa{height:130px;padding:6px 11px;background-color:#f6f6f6} .sbox .ptxa.noNum{height:110px} .sbox .ptxa textarea{ width:100%;height:110px;line-height:20px; font-size:12px;vertical-align:top;padding:0; background-color:transparent;border:none;} .sbox .ptxa .gray{line-height:20px;font-size:12px;text-align:right} .sbox .tbox{position:relative;min-height:32px;padding-right:60px} .sbox .tbox .wy{position:absolute;top:0;right:26px} .sbox .tbox .arr2{ position:absolute;width:12px;height:12px;top:50%;right:11px;margin-top:-6px; background:url(../img/index/minggi/log/arr2.png) center no-repeat; background-size:12px auto} .sbox .e.on .tbox .arr2{ transform:rotate(180deg)} .sbox .custom{position:relative;padding:0 11px;background-color:#fff} .sbox .custom:after{bottom:-1px;z-index:2} .sbox .custom.lb_w{margin-top:-1px} .sbox .custom.lb_w:before{top:-1px} .sbox .custom .e{padding-right:16px;background-color:#fff8ed} .sbox .custom .e label{left:11px} .sbox .custom .e:before{left:0;right:0} .sbox .custom .e.e_ta{padding:0} .sbox .custom .ptxa{border-top:1px solid #e6e6e6} .sbox .custom .tbox{padding-right:34px} .sbox .custom .tbox .wy{right:0} .sbox .custom .e.e_ta .error{right:16px} .sbox .custom .iptb{line-height:32px;text-align:right;padding:8px 15px;background-color:#fff8ed} .sbox .custom .iptb .error{line-height:20px;font-size:12px;color:#F00;text-align:right} .sbox .custom .iptb .error:before{ display:inline-block;width:15px; height:20px;content:'\00a0';margin-right:5px; background:url(../img/index/minggi/log/icon_err.png) center no-repeat; background-size:15px} .sbox .custom .slash{display:inline-block;padding:0 11px} .sbox .custom .ipt .txt{background-color:transparent} .sbox .custom .ipt{display:inline-block;width:60px;top:0} .sbox .custom .warn{ font-size:12px;color:#4c99ff;text-align:right; padding-right:16px;background-color:#ede8e1} .sbox .custom .warn:before{ display:inline-block;width:12px; height:100%;content:'\00a0';margin-right:5px; background:url(../img/index/minggi/log/icon_warn.png) center no-repeat; background-size:12px} .sbox .rdob{text-align:right} .sbox .rdo{position:relative;display:inline-block;height:22px;line-height:22px;padding-left:50px} .sbox .rdo:after{ position:absolute;width:22px;height:22px;left:20px;content:'\00a0'; background:url(../img/index/minggi/log/icon2.png) -116px -203px no-repeat; background-size:429px auto } .sbox .rdo.on:after{background-position:-93px -203px} .sbox .rdo.en:after{background-position:-50px 0} .pbox .e.off{color:#868686} .pbox .e.off:after{background-position:-50px 0} .sbox .selt .sval,.ibox .selt .sval{display:block;text-align:right} .sbox .selt select,.ibox .selt select,input[type="date"],input[type="month"]{ position:absolute;width:100%;height:100%; overflow:visible;top:0;left:0; opacity:0;border:0 none;z-index:2} input[type="date"],input[type="month"]{min-width:100%} .sbox .rt{float:right} .sbox .rt .selt,.sbox .rt .rdob{float:left} .sbox .rt .rdob{position:relative;margin-right:10px;z-index:3} .sbox .user:after{display:block;width:0;height:0;font-size:0;content:'\00a0';clear:both} .sbox .user label{top:12px} .sbox .user .cmax{position:absolute;width:100%;height:48px;top:0;right:0;opacity:0} .sbox .user .cmax input[type="file"]{width:100%;height:100%;vertical-align:top} .sbox .user .upimg{float:right;width:41px;height:40px} .sbox .c_default,.ibox .c_default{color:#999} .Fm .eval{padding:12px 21px;background-color:#fff} .Fm .eval .self{ width:100%;height:77px;line-height:18px; color:#333;word-break:break-all; resize:none;overflow-y:auto;padding:5px; border:1px solid #e5e5e5; border-radius:10px} /*--求职意向--*/ .myFm .fe{position:relative;overflow:hidden;margin-bottom:8px;background-color:#fff} .myFm .e{position:relative;display:block;min-height:45px;line-height:45px} .myFm .e:after{ position:absolute;width:100%; height:1px;content:' ';left:10px; bottom:0;background-color:#d4d4d4;z-index:5} .myFm .e:last-child:after{display:none} .myFm .fetitle{position:relative;height:38px;line-height:38px;text-indent:23px;border-bottom:1px solid #d4d4d4} .myFm .fetitle:before{ position:absolute;width:3px;height:14px; content:' ';left:15px;top:12px; background-color:#f66f17; border-radius:20px} .fbut{display:block;width:100%;height:40px;line-height:40px;font-size:15px;color:#f66f17;background-color:#fff} .fbtm{margin:20px 15px} .skip{text-align:center} .skip a{color:#55bbf1} .elswitch{position:absolute; width:46px;height:26px;top:50%; right:15px;margin-top:-15px; background-color:#fff;border:2px solid #e1e1e1; border-radius:20px; transition: all .3s ease} .elswitch:before{ position:absolute;width:26px;height:26px;content:' ';top:0;left:0;background-color:#fff; box-shadow:0 0 2px 1px #ccc; transition: all .3s ease} .elswitch.on{background-color:#f66f17;border-color:#f66f17} .elswitch.on:before{left:20px} .myFm .link{color:#333} .myFm .link:before,.myFm .select:after{ position:absolute;width:8px;height:13px;content:' ';right:15px;top:50%;margin-top:-6px; background:url(../img/index/minggi/log/icon_a.png) no-repeat 0 -20px; background-size:40px auto; } .myFm .linetitle,.myFm .mlinetitle,.myFm .tlinetitle{display:block;margin:0 34px 0 10px} .myFm .mlinetitle{margin-right:120px} .myFm .minfo{position:absolute;height:45px;overflow:hidden;top:0;right:34px;z-index:1} .myFm .minfo i{font-style:normal} .myFm .lnt{ position:absolute;width:100%;height:45px; text-align:right;overflow:hidden;top:0; left:0;padding-right:35px;z-index:1; } .myFm .tlinetitle{margin-right:10px} /*--base--*/ html{height:100%} body{height:100%;font-size:14px;font-family:"Microsoft YaHei";color:#333;background-color:#f8f8f8} /*--主要内容--*/ .main{position:relative;min-height:100%;padding-bottom:64px;background-color:#f5f5f5} .main .sec{margin-bottom:7px;background-color:#fff} .main .sec:last-child{margin-bottom:0} .main footer{ position:absolute; width:100%; line-height:16px; color:#969696; text-align:center; left:0; bottom:0px; padding:15px; z-index:1; } .main footer a{font-size:12px;color:#969696} /*分页头部*/ .head .goback:after{ position: absolute; content: ''; width: 20px; height: 20px; top: 50%; left: 0; margin-top: -10px; background: url(../img/index/minggi/log/icon2.png) -91px -272px; background-size: 429px auto; } /*导航*/ nav{height:44px; line-height:44px; color:#f97432; overflow:hidden; padding-left:10px; background-color:#fff; } nav a{color:#999} nav span{padding:0 8px}
0.18188
0.073796
@media (max-width:1199px){ .footer-area .footer-top .widget-link { padding: 0px 42px 0px 37px; } .footer-area .footer-top .widget-news { padding-left: 2px; } .footer-area .footer-top .recent-widget li .recent-post-text{ width: 68%; } .footer-area .footer-top .recent-widget li .recent-post-text h5 a{ letter-spacing: -0.86px; font-size: 13px; } .footer-area .footer-top .recent-widget li img { margin-right: 7px; } .map-contact-area .contact-info .info { padding: 0px 0px 0px 36px; } .question-area .question-contact-form { padding: 0 42px; } .question-area .question-content { padding: 0px; } .latest-blog-area .latest .blog .img-hover{ max-width: 275px; } .latest-blog-area .latest .blog.blog-info{ margin-left: 0px; } .latest-blog-area .latest .blog.blog-info1{ margin-left: 0px; } .latest-blog-area .latest .blog .blog-content h2{ font-size: 14px; } .about-area .about-content .texts{ padding: 36px 20px 0px 25px; } .about-area .about-content .texts h2{ font-size: 20px; } .about-area .about-content .texts p{ padding-top: 15px; } .about-area .about-content .texts .button { margin-top: 30px; } .about-text-area .about-text h2::after{ right: 128px; } .about-text-area .about-img{ margin-top: 111px; } .about-text-area .about-text .text{ padding: 0px 0px 0px 0px; text-align: left; } .blog-area .side-bar-section{ padding: 30px 0px 0px; } .blog-area .side-bar-section .widget .widget-inner .recent-post .media-left{ padding-right: 10px; } .blog-area .side-bar-section .widget .widget-inner .recent-post .media-body .post-title{ font-size: 16px; } .contact-area .contact-info-section .contact-info.first-info { padding-right: 90px; } .contact-area .contact-info-section .contact-info.info-middle { padding-left: 16px; } .contact-area .contact-info-section .contact-info.last-info { padding-left: 100px; } .services-area .service .services-item{ padding-right: 0px; } .services-area .service .service-img { margin-top: 64px; padding-left: 50px; } .services-area .service.services2 .service-img { padding-left: 0px; padding-right: 59px; } .services-area .service.services2 .services-item { padding-left: 8px; } .services-area .service + .service { padding-top: 60px; } } @media (max-width:991px){ .work-progressbar-area .work-progress .work-progressbar{ padding-bottom: 35px; } .work-progressbar-area{ padding: 120px 0px 67px; } .footer-area .footer-top .widget-link{ padding-bottom: 113px; padding-left: 0; } .footer-area .footer-top .recent-widget{ padding: 0px 15px; } .footer-area .footer-top .recent-widget li .recent-post-text { width: 73%; } .footer-area .footer-top .recent-widget li .recent-post-text h5 a{ font-size: 14px; letter-spacing: 0; } .footer-area .footer-bottom .social-nav ul li + li { padding-left: 15px; } .map-contact-area .contact-info .info { padding: 0px; } .map-contact-area .contact-info .info .box .media-body ul li{ font-size: 14px; } .question-area .question-contact-form { padding: 0px; } .question-area .question-content h2 { font-size: 33px; } .question-area .question-contact-form .submit{ padding: 0px 70px; } .latest-blog-area .latest .blog .img-hover { max-width: 100%; } .latest-blog-area .latest .blog { margin-bottom: 30px; } .clients-about-area .slider-carousel{ padding: 115px 0px 0px; } .clients-about-area .slider-carousel .owl-next { right: -20px; } .clients-about-area .slider-carousel .owl-prev { left: -20px; } .clients-about-area .slider-carousel .slider-content .text{ padding: 34px 10px 37px 15px; } .clients-about-area .slider-carousel .slider-content .text p{ font-size: 15px; } .about-area .about-content .about-img{ max-width: 350px; height: 368px; } .about-area .about-content .about-img img{ max-width: 350px; height: 368px; } .about-area .about-content .about-img .content{ padding: 29px 0px 0px 15px; } .about-area .about-content .about-img .content h3{ padding-right: 60px; padding-bottom: 178px; font-size: 25px; } .about-area .about-content .about-img .content h4{ padding-left: 41px; } .about-area .about-content .texts p{ font-size: 13px; } .about-area .about-content .texts{ padding: 36px 5px 0px 0px; } .about-area .about-content .texts h2 { font-size: 17px; } .features-area .features-content{ padding-right: 0px; height: 268px; } .features-area .features-content p{ font-size: 15px; } .main-slider-area .slide-tittle h2{ font-size: 50px; line-height: 60px; } .about-text-area .about-text .text{ width: 100%; } .about-text-area .about-text .text.text2{ padding: 0px; } .about-text-area .about-text h2::after { right: 13px; } .team-area .teams .team{ height: 362px; margin-bottom: 30px; } .team-area { padding-bottom: 84px; } .blog-area .blog-section p{ font-size: 15px; line-height: 27px; padding-top: 22px; } .blog-area .blog-section p + p { padding-top: 5px; } .blog-area .side-bar-section .widget .widget-inner .recent-post .media-body .post-title{ font-size: 15px; } .contact-area .contact-info-section .contact-info.first-info { padding-right: 0px; } .contact-area .contact-info-section .contact-info.info { padding-right: 0px; } .contact-area .contact-info-section .contact-info.info-middle { padding-left: 0px; } .contact-area .contact-info-section .contact-info.last-info { padding-left: 18px; } .services-area { padding: 120px 0px 118px; } .services-area .service .common{ float: none; } .services-area .service.services2 .services-item { padding-left: 0px; } .services-area .service .services-item { padding-top: 10px; } .services-area .service .service-img { margin-top: 0px; } .service.services2 .service-img { padding-right: 0px; } .services-area .service.services2 .service-img { padding-right: 0px; padding-left: 10px; } .work-progressbar-area .work-progress .work-progressbar .circle .chart-percent { left: 50%; transform: translate(-50%); } .work-progressbar-area .work-progress .work-progressbar{ text-align: center; } } @media (max-width:767px){ .about-text-area .about-text h2{ font-size: 23px; } .latest-blog-area .latest .blog .img-hover{ max-width: 100%; } .latest-blog-area .latest .blog .blog-content h2{ font-size: 16px; } .latest-blog-area .latest .blog .blog-content { padding: 18px 15px 17px 14px; } .footer-area .footer-bottom{ text-align: center; } .footer-area .footer-bottom .social-nav ul { text-align: center; } .footer-area .footer-bottom .footer-nav { padding: 10px 0px; } .footer-area .footer-bottom .social-nav ul li + li { padding-left: 40px; } .question-area .question-content{ padding: 0px 50px 30px; } .question-area .question-contact-form { padding: 0px 50px; } .question-area .question-contact-form .contact-button{ display: block; text-align: center; } .clients-about-area .slider-carousel{ padding: 115px 30px 0px; } .clients-about-area .slider-carousel .slider-content .text { padding: 34px 20px 37px 20px; } .clients-about-area .slider-carousel .owl-next { right: 0px; } .clients-about-area .slider-carousel .owl-prev { left: 0px; } .about-area .about-content .media-left{ display: block; padding-right: 0px; } .about-area .about-content .about-img{ margin: 0 auto; } .about-area .about-content{ background: none; } .about-area .about-content .media-body{ background: #f8f8f8; padding-bottom: 40px; } .about-area .about-content .texts{ padding: 36px 10px 0px 15px; } .about-area .about-content .texts h2{ font-size: 20px; } .about-area .about-content .texts p{ font-size: 15px; } .main-slider-area .slide-tittle h2{ font-size: 35px; } .blog-area .side-bar-section{ max-width: 300px; margin: 0 auto; } .blog-area .side-bar-section .widget .widget-inner .recent-post .media-body .post-title{ font-size: 16px; } .blog-area .side-bar-section .widget .widget-inner .recent-post .media-left{ padding-right: 15px; } .blog-area .blog-section p{ font-size: 18px; line-height: 32px; } .contact-area .contact-info-section .contact-info.last-info { padding-left: 0px; } .contact-area .contact-info-section .contact-info.last-info{ padding-left: 112px; padding-right: 112px; } .contact-area .contact-info-section .contact-info { margin-bottom: 30px; } .contact-area .contact-info-section .contact-info.info-middle{ padding-left: 65px; padding-right: 65px; } .contact-area .contact-form-box .form-group.name { padding-right: 0px; } .contact-area .contact-form-box .form-group.email { padding-left: 0px; padding-right: 0px; } .contact-area .contact-form-box .form-group.tel { padding-left: 0px; } } @media (max-width:719px){ .footer-area .footer-top .widget-link{ padding-bottom: 135px; } .map-contact-area .contact-info .info .box .media-left.icon { padding-right: 0px; } .map-contact-area .contact-info .info .box .media-left{ padding-right: 10px; } .footer-area .footer-top .recent-widget li .recent-post-text { width: 70%; } .latest-blog-area .latest .blog .img-hover { max-width: 96%; } } @media (max-width:700px){ .about-text-area .col-xs-7{ width: 100%; } .about-text-area .col-xs-5{ width: 100%; } .about-text-area .about-img { margin-top: 111px; max-width: 450px; margin: 111px auto 0 auto; } .about-text-area .about-text h2{ font-size: 25px; display: inline-block; } .about-text-area .about-text h2::after { right: -121px; } .contact-area .contact-info-section .contact-info.last-info{ padding-left: 0px; padding-right: 0px; } .contact-area .contact-info-section .contact-info.info-middle{ padding-left: 0px; padding-right: 0px; } } @media (max-width:600px){ .footer-area .footer-top .widget-link { padding-bottom: 157px; } .footer-area .footer-top .recent-widget li .recent-post-text h5 a{ font-size: 13px; } .footer-area .footer-top .recent-widget li .recent-post-text { width: 68%; } .map-contact-area .contact-info .info .box .media-body h2{ font-size: 16px; } .map-contact-area .contact-info .info .box .media-body ul li { font-size: 13px; } .latest-blog-area .latest .blog .blog-content h2{ font-size: 13px; } .latest-blog-area .latest .blog .blog-content { padding: 18px 5px 17px 10px; } .features-area .section-title{ font-size: 16px; } .main-slider-area .slide-tittle h2{ font-size: 25px; line-height: 40px; } .services-area .service .service-img .img:after{ display: none; } .services-area .service .service-img { padding-left: 10px; } } @media (max-width:570px){ .latest-blog-area .latest .blog .blog-content p { font-size: 16px; } .latest-blog-area .latest .blog{ max-width: 300px; margin: 0 auto; } .latest-blog-area .latest .blog .img-hover { max-width: 95%; } .latest-blog-area .latest .blog.blog-info1{ margin-left: auto; } .latest-blog-area .latest .col-xs-6{ width: 100%; } .latest-blog-area .latest .blog.blog-info{ margin-left: auto; } .latest-blog-area .latest { padding-top: 70px; } .latest-blog-area { padding: 80px 0px 86px; } .latest-blog-area .latest .blog { margin-bottom: 30px; } .latest-blog-area .btn-button { margin: 50px auto 0 auto; } } @media (max-width:540px){ .footer-area .footer-top .col-xs-6{ width: 100%; } .footer-area .footer-top .footer{ max-width: 300px; margin: 0 auto; } .footer-area .footer-top{ padding-bottom: 20px; } .footer-area .footer-top .widget-link{ padding-right: 0; padding-bottom: 0; } .footer-area .footer-top .recent-widget li .recent-post-text { width: 70%; } .footer-area .footer-top .recent-widget li .recent-post-text h5 a{ font-size: 12px; } .footer-area .footer-top .widget{ padding-bottom: 30px; } .map-contact-area .contact-info .col-xs-6{ width: 100%; } .map-contact-area .contact-info .info .box .media-left { padding-right: 20px; } .map-contact-area .contact-info .info .box .media-left.icon{ padding-right: 21px; } .map-contact-area .contact-info .info { max-width: 300px; margin: 0 auto; padding-bottom: 30px; } .map-contact-area .contact-info { padding: 78px 0px 40px; } .clients-about-area .slider-carousel .slider-content .text{ padding: 25px 5px 28px 10px; } .clients-about-area .slider-carousel .slider-content .text p{ font-size: 13px; line-height: 20px; } .work-progressbar-area .work-progress .work-progressbar p{ font-size: 14px; } .features-area .section-title:after{ right: -130px; } .about-text-area .about-text h2::after { right: -112px; } .about-text-area .about-text h2 { font-size: 20px; } .team-area .col-xs-6{ width: 100%; } .team-area .teams .team{ max-width: 300px; margin: 0 auto 30px auto; } .team-area .teams { padding-top: 60px; } .tp-tabs, .tp-thumbs, .tp-bullets { display: none; } .features-area .features{ padding-top: 0px; } .clients-about-area .slider-carousel { padding: 40px 30px 0px; } .clients-about-area .clients-btn { margin: 60px auto 0; } .partner-logo-area .partner-carousel{ padding-top: 40px; } } @media (max-width:480px){ .question-area .question-contact-form .contact-form { padding: 33px 20px 40px; } .question-area .question-contact-form { padding: 0px 15px; } .question-area .question-content { padding: 0px 15px 30px; } .question-area .question-content h2 { font-size: 27px; line-height: 40px; } .question-area .question-content p { padding: 33px 0px 0px 0px; } .section-title::after{ right: -120px; } .section-title::after{ width: 60px; right: -80px; } .work-progressbar-area .work-progress .col-xs-6{ width: 100%; } .work-progressbar-area .work-progress .work-progressbar{ max-width: 300px; margin: 0 auto; text-align: center; } .work-progressbar-area .work-progress .work-progressbar .circle .chart-percent{ left: 50%; transform: translate(-50%); } .about-area .about-content .texts h2{ font-size: 17px; } .about-area .about-content .about-img .content h4 { padding-left: 29px; } .features-area .section-title{ letter-spacing: 0.10px; } .features-area .section-title:after{ right: -73px; } } @media (max-width:430px){ .features-area .features-content{ max-width: 300px; margin: 0 auto; } .features-area{ padding-bottom: 50px; } .features-area .features .col-xs-6{ width: 100%; height: 252px; } .features-area .features { padding-top: 25px; } .blog-area .blog-section .tag{ font-size: 12px; } .blog-area .blog-section .tag h3{ font-size: 12px; } .blog-area .blog-section h2{ font-size: 24px; } .work-progressbar-area { padding: 64px 0px 64px; } .partner-logo-area{ padding: 64px 0px 64px; } .about-area .about-content { margin-top: 64px; } } @media (max-width:360px){ .footer-area .footer-bottom .footer-nav li + li { padding-left: 10px; } .footer-area .footer-bottom .footer-nav li + li::after{ left: 3px; } .section-title::after{ display: none; } .about-area .about-content .about-img{ max-width: 100%; height: 300px; } .about-area .about-content .about-img img{ max-width: 100%; height: 300px } .about-area .about-content .about-img .content h3{ padding-bottom: 112px; } .about-area .about-content .about-img .content h4{ padding-left: 6px; font-size: 17px; } .about-text-area .about-text h2::after { display: none; } .services-area { padding: 100px 0px 95px; } } @media (max-width:340px){ .question-area .question-content h2 { font-size: 23px; line-height: 37px; } .question-area .question-contact-form .submit { padding: 0px 66px; } .about-area .about-content .about-img .content h3 { padding-right: 10px; } .blog-area .side-bar-section .widget .widget-inner .recent-post .media-body .post-title{ font-size: 15px; } .blog-area .blog-section .tag, .blog-area .blog-section .tag h3 { font-size: 11px; } .footer-area .footer-top .recent-widget .media .media-left{ padding-right: 9px; } .contact-area .contact-info-section .contact-info h5 { font-size: 14px; } .services-area .service .services-item p{ font-size: 14px; } } @media (max-width:330px){ .latest-blog-area .latest .blog { height: 367px; } .latest-blog-area .latest .blog .blog-content p { font-size: 15px; } }
public/css/responsive.css
@media (max-width:1199px){ .footer-area .footer-top .widget-link { padding: 0px 42px 0px 37px; } .footer-area .footer-top .widget-news { padding-left: 2px; } .footer-area .footer-top .recent-widget li .recent-post-text{ width: 68%; } .footer-area .footer-top .recent-widget li .recent-post-text h5 a{ letter-spacing: -0.86px; font-size: 13px; } .footer-area .footer-top .recent-widget li img { margin-right: 7px; } .map-contact-area .contact-info .info { padding: 0px 0px 0px 36px; } .question-area .question-contact-form { padding: 0 42px; } .question-area .question-content { padding: 0px; } .latest-blog-area .latest .blog .img-hover{ max-width: 275px; } .latest-blog-area .latest .blog.blog-info{ margin-left: 0px; } .latest-blog-area .latest .blog.blog-info1{ margin-left: 0px; } .latest-blog-area .latest .blog .blog-content h2{ font-size: 14px; } .about-area .about-content .texts{ padding: 36px 20px 0px 25px; } .about-area .about-content .texts h2{ font-size: 20px; } .about-area .about-content .texts p{ padding-top: 15px; } .about-area .about-content .texts .button { margin-top: 30px; } .about-text-area .about-text h2::after{ right: 128px; } .about-text-area .about-img{ margin-top: 111px; } .about-text-area .about-text .text{ padding: 0px 0px 0px 0px; text-align: left; } .blog-area .side-bar-section{ padding: 30px 0px 0px; } .blog-area .side-bar-section .widget .widget-inner .recent-post .media-left{ padding-right: 10px; } .blog-area .side-bar-section .widget .widget-inner .recent-post .media-body .post-title{ font-size: 16px; } .contact-area .contact-info-section .contact-info.first-info { padding-right: 90px; } .contact-area .contact-info-section .contact-info.info-middle { padding-left: 16px; } .contact-area .contact-info-section .contact-info.last-info { padding-left: 100px; } .services-area .service .services-item{ padding-right: 0px; } .services-area .service .service-img { margin-top: 64px; padding-left: 50px; } .services-area .service.services2 .service-img { padding-left: 0px; padding-right: 59px; } .services-area .service.services2 .services-item { padding-left: 8px; } .services-area .service + .service { padding-top: 60px; } } @media (max-width:991px){ .work-progressbar-area .work-progress .work-progressbar{ padding-bottom: 35px; } .work-progressbar-area{ padding: 120px 0px 67px; } .footer-area .footer-top .widget-link{ padding-bottom: 113px; padding-left: 0; } .footer-area .footer-top .recent-widget{ padding: 0px 15px; } .footer-area .footer-top .recent-widget li .recent-post-text { width: 73%; } .footer-area .footer-top .recent-widget li .recent-post-text h5 a{ font-size: 14px; letter-spacing: 0; } .footer-area .footer-bottom .social-nav ul li + li { padding-left: 15px; } .map-contact-area .contact-info .info { padding: 0px; } .map-contact-area .contact-info .info .box .media-body ul li{ font-size: 14px; } .question-area .question-contact-form { padding: 0px; } .question-area .question-content h2 { font-size: 33px; } .question-area .question-contact-form .submit{ padding: 0px 70px; } .latest-blog-area .latest .blog .img-hover { max-width: 100%; } .latest-blog-area .latest .blog { margin-bottom: 30px; } .clients-about-area .slider-carousel{ padding: 115px 0px 0px; } .clients-about-area .slider-carousel .owl-next { right: -20px; } .clients-about-area .slider-carousel .owl-prev { left: -20px; } .clients-about-area .slider-carousel .slider-content .text{ padding: 34px 10px 37px 15px; } .clients-about-area .slider-carousel .slider-content .text p{ font-size: 15px; } .about-area .about-content .about-img{ max-width: 350px; height: 368px; } .about-area .about-content .about-img img{ max-width: 350px; height: 368px; } .about-area .about-content .about-img .content{ padding: 29px 0px 0px 15px; } .about-area .about-content .about-img .content h3{ padding-right: 60px; padding-bottom: 178px; font-size: 25px; } .about-area .about-content .about-img .content h4{ padding-left: 41px; } .about-area .about-content .texts p{ font-size: 13px; } .about-area .about-content .texts{ padding: 36px 5px 0px 0px; } .about-area .about-content .texts h2 { font-size: 17px; } .features-area .features-content{ padding-right: 0px; height: 268px; } .features-area .features-content p{ font-size: 15px; } .main-slider-area .slide-tittle h2{ font-size: 50px; line-height: 60px; } .about-text-area .about-text .text{ width: 100%; } .about-text-area .about-text .text.text2{ padding: 0px; } .about-text-area .about-text h2::after { right: 13px; } .team-area .teams .team{ height: 362px; margin-bottom: 30px; } .team-area { padding-bottom: 84px; } .blog-area .blog-section p{ font-size: 15px; line-height: 27px; padding-top: 22px; } .blog-area .blog-section p + p { padding-top: 5px; } .blog-area .side-bar-section .widget .widget-inner .recent-post .media-body .post-title{ font-size: 15px; } .contact-area .contact-info-section .contact-info.first-info { padding-right: 0px; } .contact-area .contact-info-section .contact-info.info { padding-right: 0px; } .contact-area .contact-info-section .contact-info.info-middle { padding-left: 0px; } .contact-area .contact-info-section .contact-info.last-info { padding-left: 18px; } .services-area { padding: 120px 0px 118px; } .services-area .service .common{ float: none; } .services-area .service.services2 .services-item { padding-left: 0px; } .services-area .service .services-item { padding-top: 10px; } .services-area .service .service-img { margin-top: 0px; } .service.services2 .service-img { padding-right: 0px; } .services-area .service.services2 .service-img { padding-right: 0px; padding-left: 10px; } .work-progressbar-area .work-progress .work-progressbar .circle .chart-percent { left: 50%; transform: translate(-50%); } .work-progressbar-area .work-progress .work-progressbar{ text-align: center; } } @media (max-width:767px){ .about-text-area .about-text h2{ font-size: 23px; } .latest-blog-area .latest .blog .img-hover{ max-width: 100%; } .latest-blog-area .latest .blog .blog-content h2{ font-size: 16px; } .latest-blog-area .latest .blog .blog-content { padding: 18px 15px 17px 14px; } .footer-area .footer-bottom{ text-align: center; } .footer-area .footer-bottom .social-nav ul { text-align: center; } .footer-area .footer-bottom .footer-nav { padding: 10px 0px; } .footer-area .footer-bottom .social-nav ul li + li { padding-left: 40px; } .question-area .question-content{ padding: 0px 50px 30px; } .question-area .question-contact-form { padding: 0px 50px; } .question-area .question-contact-form .contact-button{ display: block; text-align: center; } .clients-about-area .slider-carousel{ padding: 115px 30px 0px; } .clients-about-area .slider-carousel .slider-content .text { padding: 34px 20px 37px 20px; } .clients-about-area .slider-carousel .owl-next { right: 0px; } .clients-about-area .slider-carousel .owl-prev { left: 0px; } .about-area .about-content .media-left{ display: block; padding-right: 0px; } .about-area .about-content .about-img{ margin: 0 auto; } .about-area .about-content{ background: none; } .about-area .about-content .media-body{ background: #f8f8f8; padding-bottom: 40px; } .about-area .about-content .texts{ padding: 36px 10px 0px 15px; } .about-area .about-content .texts h2{ font-size: 20px; } .about-area .about-content .texts p{ font-size: 15px; } .main-slider-area .slide-tittle h2{ font-size: 35px; } .blog-area .side-bar-section{ max-width: 300px; margin: 0 auto; } .blog-area .side-bar-section .widget .widget-inner .recent-post .media-body .post-title{ font-size: 16px; } .blog-area .side-bar-section .widget .widget-inner .recent-post .media-left{ padding-right: 15px; } .blog-area .blog-section p{ font-size: 18px; line-height: 32px; } .contact-area .contact-info-section .contact-info.last-info { padding-left: 0px; } .contact-area .contact-info-section .contact-info.last-info{ padding-left: 112px; padding-right: 112px; } .contact-area .contact-info-section .contact-info { margin-bottom: 30px; } .contact-area .contact-info-section .contact-info.info-middle{ padding-left: 65px; padding-right: 65px; } .contact-area .contact-form-box .form-group.name { padding-right: 0px; } .contact-area .contact-form-box .form-group.email { padding-left: 0px; padding-right: 0px; } .contact-area .contact-form-box .form-group.tel { padding-left: 0px; } } @media (max-width:719px){ .footer-area .footer-top .widget-link{ padding-bottom: 135px; } .map-contact-area .contact-info .info .box .media-left.icon { padding-right: 0px; } .map-contact-area .contact-info .info .box .media-left{ padding-right: 10px; } .footer-area .footer-top .recent-widget li .recent-post-text { width: 70%; } .latest-blog-area .latest .blog .img-hover { max-width: 96%; } } @media (max-width:700px){ .about-text-area .col-xs-7{ width: 100%; } .about-text-area .col-xs-5{ width: 100%; } .about-text-area .about-img { margin-top: 111px; max-width: 450px; margin: 111px auto 0 auto; } .about-text-area .about-text h2{ font-size: 25px; display: inline-block; } .about-text-area .about-text h2::after { right: -121px; } .contact-area .contact-info-section .contact-info.last-info{ padding-left: 0px; padding-right: 0px; } .contact-area .contact-info-section .contact-info.info-middle{ padding-left: 0px; padding-right: 0px; } } @media (max-width:600px){ .footer-area .footer-top .widget-link { padding-bottom: 157px; } .footer-area .footer-top .recent-widget li .recent-post-text h5 a{ font-size: 13px; } .footer-area .footer-top .recent-widget li .recent-post-text { width: 68%; } .map-contact-area .contact-info .info .box .media-body h2{ font-size: 16px; } .map-contact-area .contact-info .info .box .media-body ul li { font-size: 13px; } .latest-blog-area .latest .blog .blog-content h2{ font-size: 13px; } .latest-blog-area .latest .blog .blog-content { padding: 18px 5px 17px 10px; } .features-area .section-title{ font-size: 16px; } .main-slider-area .slide-tittle h2{ font-size: 25px; line-height: 40px; } .services-area .service .service-img .img:after{ display: none; } .services-area .service .service-img { padding-left: 10px; } } @media (max-width:570px){ .latest-blog-area .latest .blog .blog-content p { font-size: 16px; } .latest-blog-area .latest .blog{ max-width: 300px; margin: 0 auto; } .latest-blog-area .latest .blog .img-hover { max-width: 95%; } .latest-blog-area .latest .blog.blog-info1{ margin-left: auto; } .latest-blog-area .latest .col-xs-6{ width: 100%; } .latest-blog-area .latest .blog.blog-info{ margin-left: auto; } .latest-blog-area .latest { padding-top: 70px; } .latest-blog-area { padding: 80px 0px 86px; } .latest-blog-area .latest .blog { margin-bottom: 30px; } .latest-blog-area .btn-button { margin: 50px auto 0 auto; } } @media (max-width:540px){ .footer-area .footer-top .col-xs-6{ width: 100%; } .footer-area .footer-top .footer{ max-width: 300px; margin: 0 auto; } .footer-area .footer-top{ padding-bottom: 20px; } .footer-area .footer-top .widget-link{ padding-right: 0; padding-bottom: 0; } .footer-area .footer-top .recent-widget li .recent-post-text { width: 70%; } .footer-area .footer-top .recent-widget li .recent-post-text h5 a{ font-size: 12px; } .footer-area .footer-top .widget{ padding-bottom: 30px; } .map-contact-area .contact-info .col-xs-6{ width: 100%; } .map-contact-area .contact-info .info .box .media-left { padding-right: 20px; } .map-contact-area .contact-info .info .box .media-left.icon{ padding-right: 21px; } .map-contact-area .contact-info .info { max-width: 300px; margin: 0 auto; padding-bottom: 30px; } .map-contact-area .contact-info { padding: 78px 0px 40px; } .clients-about-area .slider-carousel .slider-content .text{ padding: 25px 5px 28px 10px; } .clients-about-area .slider-carousel .slider-content .text p{ font-size: 13px; line-height: 20px; } .work-progressbar-area .work-progress .work-progressbar p{ font-size: 14px; } .features-area .section-title:after{ right: -130px; } .about-text-area .about-text h2::after { right: -112px; } .about-text-area .about-text h2 { font-size: 20px; } .team-area .col-xs-6{ width: 100%; } .team-area .teams .team{ max-width: 300px; margin: 0 auto 30px auto; } .team-area .teams { padding-top: 60px; } .tp-tabs, .tp-thumbs, .tp-bullets { display: none; } .features-area .features{ padding-top: 0px; } .clients-about-area .slider-carousel { padding: 40px 30px 0px; } .clients-about-area .clients-btn { margin: 60px auto 0; } .partner-logo-area .partner-carousel{ padding-top: 40px; } } @media (max-width:480px){ .question-area .question-contact-form .contact-form { padding: 33px 20px 40px; } .question-area .question-contact-form { padding: 0px 15px; } .question-area .question-content { padding: 0px 15px 30px; } .question-area .question-content h2 { font-size: 27px; line-height: 40px; } .question-area .question-content p { padding: 33px 0px 0px 0px; } .section-title::after{ right: -120px; } .section-title::after{ width: 60px; right: -80px; } .work-progressbar-area .work-progress .col-xs-6{ width: 100%; } .work-progressbar-area .work-progress .work-progressbar{ max-width: 300px; margin: 0 auto; text-align: center; } .work-progressbar-area .work-progress .work-progressbar .circle .chart-percent{ left: 50%; transform: translate(-50%); } .about-area .about-content .texts h2{ font-size: 17px; } .about-area .about-content .about-img .content h4 { padding-left: 29px; } .features-area .section-title{ letter-spacing: 0.10px; } .features-area .section-title:after{ right: -73px; } } @media (max-width:430px){ .features-area .features-content{ max-width: 300px; margin: 0 auto; } .features-area{ padding-bottom: 50px; } .features-area .features .col-xs-6{ width: 100%; height: 252px; } .features-area .features { padding-top: 25px; } .blog-area .blog-section .tag{ font-size: 12px; } .blog-area .blog-section .tag h3{ font-size: 12px; } .blog-area .blog-section h2{ font-size: 24px; } .work-progressbar-area { padding: 64px 0px 64px; } .partner-logo-area{ padding: 64px 0px 64px; } .about-area .about-content { margin-top: 64px; } } @media (max-width:360px){ .footer-area .footer-bottom .footer-nav li + li { padding-left: 10px; } .footer-area .footer-bottom .footer-nav li + li::after{ left: 3px; } .section-title::after{ display: none; } .about-area .about-content .about-img{ max-width: 100%; height: 300px; } .about-area .about-content .about-img img{ max-width: 100%; height: 300px } .about-area .about-content .about-img .content h3{ padding-bottom: 112px; } .about-area .about-content .about-img .content h4{ padding-left: 6px; font-size: 17px; } .about-text-area .about-text h2::after { display: none; } .services-area { padding: 100px 0px 95px; } } @media (max-width:340px){ .question-area .question-content h2 { font-size: 23px; line-height: 37px; } .question-area .question-contact-form .submit { padding: 0px 66px; } .about-area .about-content .about-img .content h3 { padding-right: 10px; } .blog-area .side-bar-section .widget .widget-inner .recent-post .media-body .post-title{ font-size: 15px; } .blog-area .blog-section .tag, .blog-area .blog-section .tag h3 { font-size: 11px; } .footer-area .footer-top .recent-widget .media .media-left{ padding-right: 9px; } .contact-area .contact-info-section .contact-info h5 { font-size: 14px; } .services-area .service .services-item p{ font-size: 14px; } } @media (max-width:330px){ .latest-blog-area .latest .blog { height: 367px; } .latest-blog-area .latest .blog .blog-content p { font-size: 15px; } }
0.277571
0.073596
@import url(https://fonts.googleapis.com/css?family=Lato:300,400); *, *:before, *:after { box-sizing: border-box; -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } html { background: #012 url('../images/background.jpg') no-repeat center center fixed; background-size: cover; } body { background-color: #00060C; background: -moz-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .75) 100%); background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%,rgba(0, 0, 0, .75) 100%); background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%,rgba(0, 0, 0, .75) 100%); border-right: 1px solid #FFF; color: #FFF; display: inline-block; font-family: Lato; font-weight: 300; height: 100vh; overflow: hidden; margin: 0; padding: 20vh 10vw 3vw 3vw; width: calc(100% - calc(100vh / 3 + 5vh)); } a { outline: 0; } h1 { cursor: default; font-size: 7vw; font-family: Lato; font-weight: 300; display: block; margin: 0; text-shadow: 0 5px 5px #000; } #bio { height: 0; overflow: hidden; width: 0; } ul#tagline { cursor: default; margin: 0; padding: 0; } ul#tagline li { display: inline; font-size: 2vw; font-family: Lato; font-weight: 300; text-shadow: 0 5px 5px #000; } ul#tagline li::after { content: "\00B7"; margin: 0 .75vw; opacity: .5; } ul#tagline li:first-child::before { content: "Software "; } ul#tagline li:last-child::after { content: ""; } #contact { cursor: default; font-size: calc(1.5vw); margin-top: 6vw; } #contact .text { color: #89A !important; text-shadow: 0 5px 5px #000; } #contact .text::after { content: "For all inquiries, please email me at:"; } #contact .email { color: #FFF; display: table; text-decoration: none; text-shadow: 0 5px 5px #000; } #contact .email:hover { color: #89A; } #social { cursor: default; position: absolute; right: 0; top: 0; } #social .fa-stack { display: block; font-size: calc(100vh / 3 / 2); margin: 0 calc(2.5vh) 0; opacity: .25; } #social .fa-stack:hover { cursor: pointer !important; opacity: .5; } #social .fa-stack:active i { opacity: .25; } #social .fa-stack:active, #social .fa-stack:active a { opacity: 1; } #social .fa-stack i { color: #000; } #social .fa-stack a { color: #FFF; text-decoration: none; } /* Cool effects. */ #cover { background-color: #00060C; color: #FFF; height: 100vh; left: 0; position: absolute; top: 0; width: 100vw; } #cover img { position: absolute; left: calc(50% - 100px); top: calc(50% - 100px); } /* Media queries. */ @media (min-width: 220vh) { body { padding: 10vh 10vw 3vw 3vw; } } @media (max-width: 1200px) { ul#tagline li { font-size: 2vw; } #contact { font-size: 3vw; } } @media (orientation: portrait) { body { background-image: none; border-right: none; padding: 0; text-align: center; width: 100vw; } h1 { background-color: rgba(0, 0, 0, .5); border-bottom: 1px solid rgba(255, 255, 255, .25); font-size: 10vw; font-weight: 400; margin: 0; padding: 5vh 0 3vh; width: 100vw; } ul#tagline { margin: 7vh 0; width: 100vw; } ul#tagline li { font-size: 5vw; } ul#tagline li:first-child::before { content: ""; } ul#tagline li::after { content: "/"; margin: 0 1vw; opacity: .25; } #contact { bottom: 10vh; font-size: 7vw; position: absolute; width: 100vw; } #contact .text { font-weight: 400; } #contact .text::after { content: "For all inquiries:"; } #contact .email { display: block; } #social { cursor: default; left: 0; position: absolute; top: 40vh } #social .fa-stack { display: inline-block; font-size: calc(100vw / 3.5 / 2); margin: 0; opacity: .5; } #social .fa-stack:hover { opacity: 1; } #social .fa-stack i { text-shadow: 1px 1px 0 rgba(255, 255, 255, .25), 1px -1px 0 rgba(255, 255, 255, .25), -1px 1px 0 rgba(255, 255, 255, .25), -1px -1px 0 rgba(255, 255, 255, .25); } } /* Unobfuscate email address. */ .email:before { content: attr(data-website) "\0040" attr(data-user); unicode-bidi: bidi-override; direction: rtl; }
css/main.css
@import url(https://fonts.googleapis.com/css?family=Lato:300,400); *, *:before, *:after { box-sizing: border-box; -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } html { background: #012 url('../images/background.jpg') no-repeat center center fixed; background-size: cover; } body { background-color: #00060C; background: -moz-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .75) 100%); background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%,rgba(0, 0, 0, .75) 100%); background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%,rgba(0, 0, 0, .75) 100%); border-right: 1px solid #FFF; color: #FFF; display: inline-block; font-family: Lato; font-weight: 300; height: 100vh; overflow: hidden; margin: 0; padding: 20vh 10vw 3vw 3vw; width: calc(100% - calc(100vh / 3 + 5vh)); } a { outline: 0; } h1 { cursor: default; font-size: 7vw; font-family: Lato; font-weight: 300; display: block; margin: 0; text-shadow: 0 5px 5px #000; } #bio { height: 0; overflow: hidden; width: 0; } ul#tagline { cursor: default; margin: 0; padding: 0; } ul#tagline li { display: inline; font-size: 2vw; font-family: Lato; font-weight: 300; text-shadow: 0 5px 5px #000; } ul#tagline li::after { content: "\00B7"; margin: 0 .75vw; opacity: .5; } ul#tagline li:first-child::before { content: "Software "; } ul#tagline li:last-child::after { content: ""; } #contact { cursor: default; font-size: calc(1.5vw); margin-top: 6vw; } #contact .text { color: #89A !important; text-shadow: 0 5px 5px #000; } #contact .text::after { content: "For all inquiries, please email me at:"; } #contact .email { color: #FFF; display: table; text-decoration: none; text-shadow: 0 5px 5px #000; } #contact .email:hover { color: #89A; } #social { cursor: default; position: absolute; right: 0; top: 0; } #social .fa-stack { display: block; font-size: calc(100vh / 3 / 2); margin: 0 calc(2.5vh) 0; opacity: .25; } #social .fa-stack:hover { cursor: pointer !important; opacity: .5; } #social .fa-stack:active i { opacity: .25; } #social .fa-stack:active, #social .fa-stack:active a { opacity: 1; } #social .fa-stack i { color: #000; } #social .fa-stack a { color: #FFF; text-decoration: none; } /* Cool effects. */ #cover { background-color: #00060C; color: #FFF; height: 100vh; left: 0; position: absolute; top: 0; width: 100vw; } #cover img { position: absolute; left: calc(50% - 100px); top: calc(50% - 100px); } /* Media queries. */ @media (min-width: 220vh) { body { padding: 10vh 10vw 3vw 3vw; } } @media (max-width: 1200px) { ul#tagline li { font-size: 2vw; } #contact { font-size: 3vw; } } @media (orientation: portrait) { body { background-image: none; border-right: none; padding: 0; text-align: center; width: 100vw; } h1 { background-color: rgba(0, 0, 0, .5); border-bottom: 1px solid rgba(255, 255, 255, .25); font-size: 10vw; font-weight: 400; margin: 0; padding: 5vh 0 3vh; width: 100vw; } ul#tagline { margin: 7vh 0; width: 100vw; } ul#tagline li { font-size: 5vw; } ul#tagline li:first-child::before { content: ""; } ul#tagline li::after { content: "/"; margin: 0 1vw; opacity: .25; } #contact { bottom: 10vh; font-size: 7vw; position: absolute; width: 100vw; } #contact .text { font-weight: 400; } #contact .text::after { content: "For all inquiries:"; } #contact .email { display: block; } #social { cursor: default; left: 0; position: absolute; top: 40vh } #social .fa-stack { display: inline-block; font-size: calc(100vw / 3.5 / 2); margin: 0; opacity: .5; } #social .fa-stack:hover { opacity: 1; } #social .fa-stack i { text-shadow: 1px 1px 0 rgba(255, 255, 255, .25), 1px -1px 0 rgba(255, 255, 255, .25), -1px 1px 0 rgba(255, 255, 255, .25), -1px -1px 0 rgba(255, 255, 255, .25); } } /* Unobfuscate email address. */ .email:before { content: attr(data-website) "\0040" attr(data-user); unicode-bidi: bidi-override; direction: rtl; }
0.265595
0.063948
.hero-image{ background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)); width: 100%; height: 50vh; background-position: center; background-repeat: no-repeat; background-size: cover; position: relative; filter: brightness(60%); object-fit: cover; } body { background: #F2F1ED; font-family: 'Fjalla One', sans-serif; } .logo { height: 85px; width: 100px; object-fit: cover; border-radius: 200%; border: 3px solid #84703e; } /*dropdowns positioned using z-index which is layering on top of the hero-image*/ .dropdown { z-index: 999999; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 18px; justify-content: space-evenly; margin: 0; padding: 0 } .dropdownSelect :hover { background-color: #cbb68e; } header { box-sizing: border-box; background: #ae4c1b; text-align: left; position: relative; padding: 5px 5px 5px 5px; height: 100px; display: flex; justify-content: left; } .dropdown-content { display: none; position: absolute; background-color: #ffffff; min-width: 160px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); /*z-index: 1;*/ } header .logo { position: relative; float: left; padding-left: 0px; margin-left: 0px; } /*html { display: flex; }*/ #eaterySelect, #parkSelect, #attractionSelect { flex-direction: row; justify-items: stretch; } .previewSection{ border-style: ouset; display: flex; margin-top: 5px; float: left; width: 100%; justify-content: space-evenly; } .parkCard { border-radius: 30px; background-color: rgb(200, 208, 157); margin-top: 30px; margin-bottom: 30px; padding: 15px; } .attractionCard { border-radius: 30px; background-color: rgb(200, 208, 157); margin-top: 30px; margin-bottom: 30px; padding: 15px; } .eateryCard { border-radius: 30px; background-color: rgb(200, 208, 157); margin-top: 30px; margin-bottom: 30px; padding: 15px; } #eateryLocation, #attractionLocation { margin: 30px; /* creates margin between city, state and details button.. but centers location? */ } .button { box-shadow:inset 0px 1px 0px 0px #ffffff; background:linear-gradient(to bottom, #ededed 5%, #dfdfdf 100%); background-color:#ededed; border-radius:6px; border:1px solid #dcdcdc; display:inline-block; cursor:pointer; color:#555454; font-family:Arial; font-size:15px; font-weight:bold; padding:6px 24px; text-decoration:none; text-shadow:0px 1px 0px #ffffff; } .button:hover { background:linear-gradient(to bottom, #dfdfdf 5%, #ededed 100%); background-color:#dfdfdf; } .button:active { position:relative; top:1px; } .button:disabled { filter: opacity(30%); } #dropContain { display: flex; padding: 2em 1em 2em 2em; background: rgba(178, 192, 219, 0.8); box-sizing: border-box; filter: opacity(80%); border-radius: 10px; } .aside { /*float: right;*/ background-color: rgb(200, 208, 157); border-top-left-radius: 30px; border-bottom-left-radius: 30px; border-top-right-radius: 30px; border-bottom-right-radius: 30px; position: relative; padding: 30px; overflow: auto; width: 30%; margin-left: 15px; margin-right: 10px; float:inline-end; } #parkForecast { display: flex; justify-content: space-around; } .weatherCard { padding: 10px; margin-right: 15px; text-align: center; /* border:2px solid #ae4c1b; */ /* border-radius: 15px; */ } .weatherCard h3{ color: #ffffff; padding: 10px; margin-bottom: 0%; background:#ae4c1b; border-top:2px solid #ae4c1b; border-right:2px solid #ae4c1b; border-left:2px solid #ae4c1b; border-top-left-radius: 15px; border-top-right-radius: 15px; } .weatherCard h4, p { margin: 0%; margin-top: -5px; padding-top: 0%; padding-bottom: 0%; padding-left: 10px; padding-right: 10px; background:#ffffff; border-right:2px solid #ae4c1b; border-left:2px solid #ae4c1b; } .weatherCard img { margin: 0%; padding-bottom: 0%; width: 96.7%; background:#ffffff; border-right:2px solid #ae4c1b; border-left:2px solid #ae4c1b; } .weatherCardBottom { background: #ffffff; border-bottom:2px solid #ae4c1b; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; } a:link { color:#ae4c1b; } a:hover { color: #4D7A5C; } a:visited { color:#84703e; } #attractionSection h2, p { background-color: rgb(200, 208, 157); } .forecastCardTemp { background-color: #ffffff; } .footer { margin-bottom: 0%; }
styles/main.css
.hero-image{ background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)); width: 100%; height: 50vh; background-position: center; background-repeat: no-repeat; background-size: cover; position: relative; filter: brightness(60%); object-fit: cover; } body { background: #F2F1ED; font-family: 'Fjalla One', sans-serif; } .logo { height: 85px; width: 100px; object-fit: cover; border-radius: 200%; border: 3px solid #84703e; } /*dropdowns positioned using z-index which is layering on top of the hero-image*/ .dropdown { z-index: 999999; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 18px; justify-content: space-evenly; margin: 0; padding: 0 } .dropdownSelect :hover { background-color: #cbb68e; } header { box-sizing: border-box; background: #ae4c1b; text-align: left; position: relative; padding: 5px 5px 5px 5px; height: 100px; display: flex; justify-content: left; } .dropdown-content { display: none; position: absolute; background-color: #ffffff; min-width: 160px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); /*z-index: 1;*/ } header .logo { position: relative; float: left; padding-left: 0px; margin-left: 0px; } /*html { display: flex; }*/ #eaterySelect, #parkSelect, #attractionSelect { flex-direction: row; justify-items: stretch; } .previewSection{ border-style: ouset; display: flex; margin-top: 5px; float: left; width: 100%; justify-content: space-evenly; } .parkCard { border-radius: 30px; background-color: rgb(200, 208, 157); margin-top: 30px; margin-bottom: 30px; padding: 15px; } .attractionCard { border-radius: 30px; background-color: rgb(200, 208, 157); margin-top: 30px; margin-bottom: 30px; padding: 15px; } .eateryCard { border-radius: 30px; background-color: rgb(200, 208, 157); margin-top: 30px; margin-bottom: 30px; padding: 15px; } #eateryLocation, #attractionLocation { margin: 30px; /* creates margin between city, state and details button.. but centers location? */ } .button { box-shadow:inset 0px 1px 0px 0px #ffffff; background:linear-gradient(to bottom, #ededed 5%, #dfdfdf 100%); background-color:#ededed; border-radius:6px; border:1px solid #dcdcdc; display:inline-block; cursor:pointer; color:#555454; font-family:Arial; font-size:15px; font-weight:bold; padding:6px 24px; text-decoration:none; text-shadow:0px 1px 0px #ffffff; } .button:hover { background:linear-gradient(to bottom, #dfdfdf 5%, #ededed 100%); background-color:#dfdfdf; } .button:active { position:relative; top:1px; } .button:disabled { filter: opacity(30%); } #dropContain { display: flex; padding: 2em 1em 2em 2em; background: rgba(178, 192, 219, 0.8); box-sizing: border-box; filter: opacity(80%); border-radius: 10px; } .aside { /*float: right;*/ background-color: rgb(200, 208, 157); border-top-left-radius: 30px; border-bottom-left-radius: 30px; border-top-right-radius: 30px; border-bottom-right-radius: 30px; position: relative; padding: 30px; overflow: auto; width: 30%; margin-left: 15px; margin-right: 10px; float:inline-end; } #parkForecast { display: flex; justify-content: space-around; } .weatherCard { padding: 10px; margin-right: 15px; text-align: center; /* border:2px solid #ae4c1b; */ /* border-radius: 15px; */ } .weatherCard h3{ color: #ffffff; padding: 10px; margin-bottom: 0%; background:#ae4c1b; border-top:2px solid #ae4c1b; border-right:2px solid #ae4c1b; border-left:2px solid #ae4c1b; border-top-left-radius: 15px; border-top-right-radius: 15px; } .weatherCard h4, p { margin: 0%; margin-top: -5px; padding-top: 0%; padding-bottom: 0%; padding-left: 10px; padding-right: 10px; background:#ffffff; border-right:2px solid #ae4c1b; border-left:2px solid #ae4c1b; } .weatherCard img { margin: 0%; padding-bottom: 0%; width: 96.7%; background:#ffffff; border-right:2px solid #ae4c1b; border-left:2px solid #ae4c1b; } .weatherCardBottom { background: #ffffff; border-bottom:2px solid #ae4c1b; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; } a:link { color:#ae4c1b; } a:hover { color: #4D7A5C; } a:visited { color:#84703e; } #attractionSection h2, p { background-color: rgb(200, 208, 157); } .forecastCardTemp { background-color: #ffffff; } .footer { margin-bottom: 0%; }
0.47025
0.106458